‎2006 Feb 16 5:16 PM
i am passing internal table.
for some condition i want to do page break through calling program.
is i need to use control_form function module?
if yes ,what value should be in exporting parameter(command)
‎2006 Feb 16 5:20 PM
Hi Anutosh,
You can create an element for the condition & call the element for your condition.
In the script form,write like this in the window.
<b>/E PAGE
/: NEW-PAGE</b>
‎2006 Feb 16 5:18 PM
Hi,
Use NEW-PAGE.
CALL FUNCTION 'CONTROL_FORM'
EXPORTING COMMAND = 'NEW-PAGE'.
IF SY-SUBRC NE 0.
.
ENDIF.
Lanka
‎2006 Feb 16 5:20 PM
Hi Anutosh,
You can create an element for the condition & call the element for your condition.
In the script form,write like this in the window.
<b>/E PAGE
/: NEW-PAGE</b>