‎2006 Jul 17 10:17 AM
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?
‎2006 Jul 17 10:22 AM
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
‎2006 Jul 17 10:22 AM
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
‎2006 Jul 17 10:24 AM
‎2012 May 28 12:15 PM
‎2006 Jul 17 10:30 AM
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.
‎2006 Jul 17 10:34 AM
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,
‎2006 Jul 17 10:35 AM
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
‎2006 Jul 17 10:39 AM
Hello,
While submitting use like
Submit rep via selection-screen and return
EXporting list to memory.
Reward if helps.
Thanks,
Krishnakumar
‎2006 Jul 17 10:43 AM
Thanks Everybody. I've solved it on my own.
Problem is with the login Language.