Geoff Booth
Comments
Recent activity by Geoff Booth
-
Can you post your current code?
- View comment
- 0 votes
-
Either your screen shot is missing the OK Cancel buttons at the bottom or the form did not load properly. Did you exit out of SAP after changing the Default Group to Mandatory and restart. Check t...
- View comment
- 0 votes
-
Although the field has been "moved" on to the main form it is technically a new field on the form (although linked to the UDF). It will have a field ID similar to BOY_1. You need to re-create the U...
- View comment
- 0 votes
-
Try the following @STORE3 = SQL(Select TO_Decimal($[LLRESULT.NUMBER] *0.16)); //Multiply kg and set as pos variable @STORE4 = SQL(Select TO_Decimal($[LLRESULT.NUMBER] *0.16*-1)); //Multiply kg ...
- View comment
- 0 votes
-
Something happened on Line Loop 4 which produced an error (Invalid Index). This error likely "broke" the execution which resulted in all the other errors. So the question is what is wrong with the ...
- View comment
- 0 votes
-
Use: Click(91); // This will "click" the golden arrow beside the Freight field to open form 3007 Row 53 and 54 seems very strange to me. Do you really have 54 rows in the table. Please add a scr...
- View comment
- 0 votes
-
You should be able to use the Final Result UF to calculate the values using $[LLRESULT.NUMBER] (see Boyum Help); Open form 3007 and then Set the value. If you have troubles post your UF so we can r...
- View comment
- 0 votes
-
Try the following as you are simply entering values in an existing line: Set($[$39.1.0.FIRST]|Lumpsum); // Description ColumnSet($[$39.2.0.FIRST]|7001); // GLAccount Column
- View comment
- 0 votes
-
I would modify the UF being called by the button. If the validation "always runs" then add a statement to call the UF: Sample: UF(UF-002); will call the Universal Function with Code = UF-002 If the...
- View comment
- 0 votes
-
How are you "loading" the data. Is this coming from a Boyum UF or ?. Do you exit the field after loading the data?
- View comment
- 0 votes