Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Calling a report from Module Pool

Former Member
0 Likes
991

While calling a report from the module pool I'm not able to display th alv. The skeleton of the ALV is coming. But the data and headings are also not displayed.

But where as calling the same program from a report it is coming properly. can somebody please guide me where did I go wrong?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
881

Hello Phani,

R u using the Submit satatemt to call the report.

Check the FM REUSE_ALV_* in the debug mode and check whether the fieldcat table and outtab is having data.

If useful reward points.

Regards,

Vasanth

8 REPLIES 8
Read only

Former Member
0 Likes
882

Hello Phani,

R u using the Submit satatemt to call the report.

Check the FM REUSE_ALV_* in the debug mode and check whether the fieldcat table and outtab is having data.

If useful reward points.

Regards,

Vasanth

Read only

andreas_mann3
Active Contributor
0 Likes
881

hi,

pls post your coding where you submit the report

A.

Read only

0 Likes
881

Hi Andreas Mann,

can you help me with this.

http://scn.sap.com/message/13282557#13282557

Read only

Former Member
0 Likes
881

MODULE user_command_1001 INPUT.

w_ok_code = ok_code.

CLEAR ok_code.

CASE w_ok_code.

WHEN 'BACK'.

LEAVE PROGRAM .

WHEN 'CREATE'.

CALL TRANSACTION 'Z_FIRST_TIME'.

WHEN 'SYNC'.

CALL TRANSACTION 'Z_SYNC'.

WHEN 'APPROVE'.

SUBMIT zds_xx_approval_status WITH po_aname EQ sy-uname AND RETURN.

WHEN 'OVERVIEW'.

PERFORM show_all_reqids.

ENDCASE.

ENDMODULE.

Read only

0 Likes
881

Hi,

Check the syntax written for Submit report, use the following syntax,

SUBMIT REPORT01

VIA SELECTION-SCREEN

USING SELECTION-SET 'VARIANT1'

USING SELECTION-SETS OF PROGRAM 'REPORT00'

AND RETURN.

Hope this helps,

Rgds,

Read only

0 Likes
881

Hi,

check this ,I have written like this , it is working for me.

SUBMIT z_interface_flow USING SELECTION-SCREEN '1000'

WITH p_fld1 EQ x_fld1

AND RETURN.

Regards

Appana

Read only

Former Member
0 Likes
881

Hello,

While submitting use like

Submit rep via selection-screen and return

EXporting list to memory.

Reward if helps.

Thanks,

Krishnakumar

Read only

Former Member
0 Likes
881

Thanks Everybody. I've solved it on my own.

Problem is with the login Language.