Deewakar Kumar

Tectura

Tel:                (+91) 120 3051928

Mobile:           (+91) 987 3440056

________________________________

From: Kumar, Deewakar 
Sent: Monday, January 07, 2008 4:10 PM
To: 'development-axapta@yahoogroups.com'
Subject: RE: [development-axapta] Pass temporary table data from form to
report

 

Hi VG,

 

This job might help you.

 

static void Job31(Args _args)

{

    table1  t1, t2;   //table1 is a temporary table having one field
'Field1'

 

    void  x(table1 _t)

    {

        print(_t.Field1);

        while select _t

        {

            print(_t.Field1);

 

        }

        pause;

    }

    

 

    t1.Field1 = '1';

    t1.insert();

    t1.Field1 = '2';

    t1.insert();

    t2.setTmpData(t1);

    x(t2);

 

}

 

Thanks

Deewakar Kumar

 

From: development-axapta@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of V G
Sent: Sunday, January 06, 2008 9:51 PM
To: [EMAIL PROTECTED];
development-axapta@yahoogroups.com
Subject: [development-axapta] Pass temporary table data from form to
report

 

Hi
I have a form where I insert data in a temporary table.
>From the form a report is called on the click of a menuitembutton.
Is there a way that I can retreive the data of the temporary table(which
is
created in the form) in the report.

Thanks in advance
VG

[Non-text portions of this message have been removed]

 



[Non-text portions of this message have been removed]

Reply via email to