Skip to main content

Set report ranges using code..?

I'm calling report using output menuItem from specified form. what i really want is to set the report Ranges by the caller record from the form so the following is the situation:

1. Output meneItem on the form.

2. On the init() method in the report the following

tableBuffer = element.args().record();

3. The required now is to set the report query (Ranges) by using one of the TableBuff fields.

I see what you are saying. Basically, if you start from a menu item with NO record, you want to basically NOT use what is stored in usage data. At that point, couldn't you do something like this:

public void init()
{
CustTable ct;
;

super();
if (element.args().record())
{
this.query().dataSourceTable(TableNum(CustTable)).addRange(FieldNum(CustTable,Name)).value(ct.Name);
}
else
{
this.query().datasourceTable(TableNum(CustTable)).addRange(FieldNum(CustTable,Name)).value("");
}

}

Granted, the range value would hav to make sense based on the field(s) being cleared, but I would think the above would be acceptible. Otherwise, you may want to override the unpack method of the report to not get the usage data if the record in args() is empty as well.
========
Remember that when a menuitem is used, the currently active record in the datasource is assigned to the record value of Args. So, for example, if the menu item is on a form where CustTable is the datasource, on the called form, you could do the following for the init method of the called form datasource:

public void init()
{
CustTable ct;
;

super();
if (element.args().record())
{
this.query().dataSourceTable(TableNum(CustTable)).addRange(FieldNum(CustTable,Name)).value(ct.Name);
}

}

I have not tested this, so it may not be quite correct syntactically, but it should be pretty close to what you are asking.
======
I see what you are saying. Basically, if you start from a menu item with NO record, you want to basically NOT use what is stored in usage data. At that point, couldn't you do something like this:

public void init()
{
CustTable ct;
;

super();
if (element.args().record())
{
this.query().dataSourceTable(TableNum(CustTable)).addRange(FieldNum(CustTable,Name)).value(ct.Name);
}
else
{
this.query().datasourceTable(TableNum(CustTable)).addRange(FieldNum(CustTable,Name)).value("");
}

}

Granted, the range value would hav to make sense based on the field(s) being cleared, but I would think the above would be acceptible. Otherwise, you may want to override the unpack method of the report to not get the usage data if the record in args() is empty as well.

Popular posts from this blog

Dynamics Axapta: Sales Orders & Business Connector

Well, again folllowing my same idea of writting close to nothing and pasting code, I'll paste in some code to create a sales order from some basic data and the invoice it. I'll try to explain more in the future. AxaptaObject axSalesTable = ax.CreateAxaptaObject("AxSalesTable"); AxaptaRecord rcInventDim = ax.CreateAxaptaRecord("InventDim"); AxaptaRecord rcCustTable = ax.CreateAxaptaRecord("CustTable"); rcCustTable.ExecuteStmt("select * from %1 where %1.AccountNum == '" + MySalesOrderObject.CustAccount + "'"); if (MySalesOrderObject.CurrencyCode.Trim().Length == 0) MySalesOrderObject.CurrencyCode = rcCustTable.get_Field("Currency").ToString().Trim(); string sTaxGroup = rcCustTable.get_Field("taxgroup").ToString().Trim(); //set header level fields axSalesTable.Call("parmSalesName", MySalesOrderObject.SalesName.Trim()); axSalesTable.Call("parmCustAccount", M

Passing values between form and class

Class name is EmplDuplication and Form is EmplTable . void clicked() {    MenuFunction mf;    args args = new Args();    ;     args.record(EmplTable);     mf = new menufunction(identifierstr(EmplDuplication), MenuItemType::Action); mf.run(args); } Meanwhile, in the main() method of the EmplDuplication class, we need to put this Axapta x++ code to get the datasource: static void main(Args args) {     EmplDuplication EmplDuplication; EmplTable localEmplTable; ;     if(args.record().TableId == tablenum(EmplTable)) localEmplTable = args.record();     ... }