lundi 3 janvier 2011

How to pass values from form to report

1. Make the report as Interactive.

image

2. Create Method initFromCaller and pass the args to it.  

image
 

 
3. Set the report caption (it will appear in dialog)/. 

image

4. The Method initFromCaller.
Method initFromCaller
public void initFromCaller(Args _args)
{
InventJournalTable inventJournalTable;
QueryBuildDataSource qbds;
;
if (_args.caller())
{
if (! _args.record().recId)
throw error(strfmt("@SYS22338",funcname()));
switch (_args.dataset())
{
case tablenum(InventJournalTable):
 
inventJournalTable = _args.record();
if (inventJournalTable.journalType != InventJournalType::Transfer)
throw error(strfmt("@SYS23396",funcname()));
 
break;
default:
throw error(strfmt("@SYS23396",funcname()));
}
}
 
if (true || inventJournalTable.journalId) 
{
qbds = element.query().dataSourceTable(tablenum(InventJournalTrans)); 
SysQuery::findOrCreateRange(qbds, fieldnum(InventJournalTrans, journalId)).value(inventJournalTable.journalId);
SysQuery::findOrCreateRange(qbds, fieldnum(InventJournalTrans, journalType)).value(queryValue(InventJournalType::Transfer)); 
}
}
Happy Daxing !

Aucun commentaire:

Enregistrer un commentaire