-
Content Count
245 -
Joined
-
Last visited
-
Days Won
8
siroos12 last won the day on April 29 2018
siroos12 had the most liked content!
Community Reputation
17 GoodAbout siroos12
-
Rank
member
Profile Information
-
Gender
Male
-
Location
Canada
Contact Methods
-
Website URL
https://iavenue.ca/
-
Skype
siroos.jafary
FileMaker Experience
-
Skill Level
Expert
-
FM Application
18
Platform Environment
-
OS Platform
Windows
-
OS Version
Win 10
Recent Profile Visitors
-
Adding credit card fees to QB Expense account
siroos12 replied to siroos12's topic in FM Books Connector
Thanks @bcooney So, for future references, A Deposit needed to be recorded in QB in order to distribute the payments and fees correctly. Here is the process: 1- Add invoice for $100 using "InvoiceAdd" SDK aggregate 2- Add a payment for $100 for that invoice using "ReceivePaymentAdd" SDK aggregate 2- Add a deposit with below steps: Set Variable [ $$Result; Value:PCQB_RqNew("DepositAdd" ; "") ] Set Variable [ $$Result; Value:PCQB_RqAddFieldWithValue( "TxnDate"; PAYMENTS::Date )] Set Variable [ $$Result; Value:PCQB_RqAddFieldWithValue( "Depos -
siroos12 started following Adding credit card fees to QB Expense account
-
Hi All, In my application, I process credit card payments and post them to QB under CC Deposit account. I use "ReceivePaymentAdd" SDK aggregate to push these payments to QB. i.e. I charge a client cc for $100.00 in my application and this breaks down to $97.00 paid to us and $3.00 cc card processing fee charged by Stripe. Currently, I post the invoice with its line items for $100.00 and a payment associated to it for $100.00. I need to find a way to post this $3.00 fees to QB as an expense using SDK. So, it would add an invoice for $100.00 a payment for $100
-
You may either set a global variable at opening the popover to save the popover name and then use it in your record creating script or hardcode the popover name in script parameters. I hope that above does make sense. It would be easier if you could send us a mockup file so we could better understand the issue .
-
Why not using script parameters to pass the name of the button to the script?
-
Create Named Folder on Desktop (PC)
siroos12 replied to Rich's topic in Script Workspace and Script Triggers
You did not specify the folder name. Try something like this: /C:/Users/Siroos/Desktop/test folder/1.pdf The formula to achieve above can be something like this: Get ( DesktopPath ) & "test folder" & "/" & GetContainerAttribute ( Yourtable::YourContainerField; "fileName" ) -
Create Named Folder on Desktop (PC)
siroos12 replied to Rich's topic in Script Workspace and Script Triggers
Can you type the path you used here so we can have a better idea? -
Quick find numbers wildcard
siroos12 replied to siroos12's topic in Community Videos, Tips, & Techniques, Articles.
I am so sorry for this. Can you please retry. I tested it on 2 computers and a cellphone and a tablet and they all opened almost immediately. Sorry Comment, That is my mistake. I was not aware of Community Articles, Tips, & Techniques section. I will post my next posts in that area. -
Quick find numbers wildcard
siroos12 replied to siroos12's topic in Community Videos, Tips, & Techniques, Articles.
Peter, Thanks for clarification. I am agreed with you in this subject but, we should try to find workarounds for existing shortcomings for the time being. Hopefully FileMaker will work on improving Quick Find functionality and any other known problems, but my experience with new releases of FileMaker tells me that solving most of the known issues take ages for FileMaker. For example, it is years that we all crying for being able to send html e-mails with multiple attachments from FileMaker and what we got after all these years is ability to attach multiple attachments into -
Hi every one, I’d recently been asked by a client to build an alternative method for FileMaker Quick find. The native FileMaker quick find use word-based search while there are lots of situations that users need to search for only a part of a word like a wildcard search. Also, you can not use FileMaker Quick Find on solutions that requires hiding the status area or when you open your solution on FileMaker go. Here is a blog post explaining two different techniques used to achieve a user-friendly quick find solution in FileMaker: https://iavenue.ca/filemaker
-
Create Named Folder on Desktop (PC)
siroos12 replied to Rich's topic in Script Workspace and Script Triggers
Have you tried "Create directory" option on "Export Field Contents" or "Export records" in FileMaker 17 instead of "Send Event? https://fmhelp.filemaker.com/help/17/fmp/en/index.html#page/FMP_Help/export-field-contents.html Export Field Contents [ Create directories:Yes ] Export Records [ Create directories:Yes ] -
Happy that you could solve it. Please mark the correct answe. Good luck.
-
Do you have any script trigger on any of the fields causing the commit?
-
You should not commit the record until your data entry is not finished. I would suggest to set up tab orders for all the files so you can easily navigate between fields without committing. As soon as you commit the sort will trigger.
-
Help searching time on timestamplist
siroos12 replied to chadski021's topic in Calculation Engine (Define Fields)
If the list is stored in a field of the same table, it means that it stores the list on each and every record, therefore performing a find would results showing all records. -
Installing Menu set on Re-Login
siroos12 replied to Wickerman's topic in Script Workspace and Script Triggers
Hi Wickerman, Is re-login script set to run script with full access privileges? If that is the case, "Get(CurrentPrivilegeSetName)" returns [Full Access]. That is why it does not set the custom menu. I'd suggest to set a variable for "Get(CurrentPrivilegeSetName)" and see what it returns using data viewer and script debugger.