Search found 3 matches

by bweeks
Sun Jul 17, 2016 7:25 am
Forum: Questions & Answers
Topic: VLF-WIN - execute command handler
Replies: 2
Views: 6547

Re: VLF-WIN - execute command handler

The syntax for a business object name (attendance), to call the command handler for command (edit) would be:

Code: Select all

Invoke Method(#avFrameworkManager.avSwitch) To(BusinessObject) Named(attendance2) Execute(Edit) Caller(#Com_Owner)
by bweeks
Fri Jul 15, 2016 4:45 am
Forum: Questions & Answers
Topic: VLF-WIN - execute command handler
Replies: 2
Views: 6547

VLF-WIN - execute command handler

What is the syntax to programmatically call/invoke the command handler within the VLF framework ?

Instead of selecting a row from the filter, I want to invoke the command handler when a button is pressed.
by bweeks
Fri Jun 03, 2016 3:54 am
Forum: Questions & Answers
Topic: Group by on Select_SQL
Replies: 1
Views: 5857

Group by on Select_SQL

I have a file with sales by salesman number and amount. I'm trying to produce a list of
the top salesmans for a given day. Most salesman have multiple entries.

In SQL I would code it as:

Select SMN,sum(amt)
from Sales
Group by SMN
Order by sum(amt) desc

How would I code my Select_SQL to Group ...