‎2007 Mar 20 2:49 PM
while submiting the report name can i pass the report name dynamiclly in submit as
SET PARAMETER ID 'RID' FIELD v_pname.
v_pname = sy-repid.
SUBMIT v_pname AND RETURN.
this is moving to dump, is it possible.
‎2007 Mar 20 2:53 PM
Try with the paranthesis..().
SET PARAMETER ID 'RID' FIELD v_pname.
v_pname = sy-repid.
SUBMIT (v_pname) AND RETURN.
or, how about?
<b>submit sy-repid and return.</b>
Regards,
Ravi
‎2007 Mar 20 2:55 PM
Hi!
Put the name variant into brackets.
SUBMIT (v_pname).
Regards
Tamá
‎2007 Mar 20 2:59 PM
Hi,
Please try this and perhaps you want to add an options.
SET PARAMETER ID 'RID' FIELD v_pname.
v_pname = sy-repid.
SUBMIT (v_pname)[USING SELECTION-SCREEN dynnr]
[VIA SELECTION-SCREEN]
[selscreen_parameters] ...
AND RETURN.
Please check this for more information.
http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba51a35c111d1829f0000e829fbfe/frameset.htm
Regards,
Ferry Lianto