‎2009 Sep 24 9:41 AM
Hi All,
Kindly provide me help in:
How to call a Z-Report which generates a flat file in the Application server. And which I want to call using a Function Module and display all the fields which are generated in the file.
Steps I've already done:
1) I've created a Function Module
2) Created a structure which I've used in the Tables tab of the FM
3) Used:
SUBMIT ZSCOMAR
VIA SELECTION-SCREEN
USING SELECTION-SET 'Variant'
AND RETURN.
Output whichI'm receiving:
Only the no. of rows is shown but not the fields individually.
Thanks in Advance.
Regards,
Sreedhar.
‎2009 Sep 24 9:44 AM
you can either :
display the data from the ZPROGRAM(by editing it)
or
by reading the file again in you FM using open dataset, read dataset, close dataset. and display the content
‎2009 Sep 24 9:44 AM
you can either :
display the data from the ZPROGRAM(by editing it)
or
by reading the file again in you FM using open dataset, read dataset, close dataset. and display the content
‎2009 Sep 24 9:55 AM