Dave Dai
- Total activity 20
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 8
Posts
Recent activity by Dave Dai-
double click a UDF to launch SQL report
I have a UDF which is 254 chars long. so double clicking on it, SAP would popup the "Details" window. (see screenshot below, you've probably seen it). What I want to do is, to popup a SQL report ...
-
Support ticket status becomes "resolved" as soon as I submit it
I guess this post is for people in boyum support team. This has happened twice, as soon as I've finished submitting a ticket, its status becomes resolved. Then I had to submit a new ticket (thi...
-
How to do insert with the SQL macro command?
I'm trying to create a Macro type universal function with something like this: SQL(insert into my_table values('test')) It seems the parenthesis within the SQL statement conflicts with the Macro ...
-
any way to use string interpolation in csharp code?
CSharp string interpolation syntax: string name = "Mark"; var date = DateTime.Now; // Composite formatting: Console.WriteLine("Hello, {0}! Today is {1}, it's {2:HH:mm} now.", name, date.DayOfWeek,...
-
@MYOWNSTORE as opposed to @STORE1
I was looking at a macro created by someone else. In the macro, there is this line: @STORE1 = @GetARItemMatrix This stores the number of rows in the matrix on the sales order form in @STORE1. I t...
-
How to send dunning letters using print and delivery?
We are trying to use Boyum Print and Delivery to send dunning letters. The only document we found on this topic is https://help.boyum-it.com/B1PrintAndDelivery/index.html?dunningwizard.html , whic...
-
use OpenFileDialog in "Dynamic code (.NET SDK" type universal function
Trying to create a OpenFileDialog like: using (OpenFileDialog openFileDialog = new OpenFileDialog()) { openFileDialog.InitialDirectory = "c:\\"; openFileDialog.Filter = "txt files (*.txt...