report

Hi all,

How to get the report for the selected record(highlighted record) from the form by button click on the form.

Thanks

Nitish

Hi Nitish,

Go through this: http://dynamicsuser.net/forums/p/51111/264189.aspx#264189

this might help you…!

Regards,

Ankit_M

Please try to make your subject more descriptive in the future when posting to assist users in opening the thread.

Hi Nitish Kumar,

my Table Name is “Admission”.How i used the code to generate record for current record.I think this will help you better.

1.In init mathod

public void init()

{

; super();

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

}

2.In fetch method

public boolean fetch()

{

boolean ret;

element.send(admission);

return true;

}

3.Now you’ll get the output for the current record.