Hi to all abap guru's my querry is as follows How to trigger
the page break in smartforms forcibly ? and how to trigger
the page break in the scripts forcibly ? means for every 10
records i have to trigger the page break ? and in smart form
also ?
thanks in advance
Answer Posted / prabha
in SMARTFORMS.
as of me we have to use 'command' from
create------->flowlogic---------->command.
but dont write command node in main window
by using this u can do page break.
in SAPSCRIPTS u have to use FM 'contorl_form'
CALL FUNCTION 'CONTROL_FORM'
EXPORTING
command = new-page
* EXCEPTIONS
* UNOPENED = 1
* UNSTARTED = 2
* OTHERS = 3
.
IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is the use of a pretty printer?
Hello All, Requesting to all user of this site. Please post your Questions in Proper sub Category of chosen category. Some users post the questions in common category whether sub category for that is available ..like some users still post the SAP Script & ALE Related questions in common ABAP Category. Due to this it becomes very difficult to find the topic wise Questions. Please cooperate with the site & to other users. Thanks & Regards Tamseel
What is step-loop? Explain all the steps?
can any one answer these questions 1)How do you convert non-character field to character field? 2)How do you work with semi colon separated files? 3)why cant we use normal function module for data transfer? 4)what is the structure of CTU-PARAMS? 5)can we use transfer dataset to transfer data in internal table?
Explain what are the problems in processing batch input sessions? How is batch input process different from processing on line?
How will u handle the situation – In a report using function module to generate a IDOC, How will u handle the error IDOC in the same report ?
How do you process errors in call transaction method? : abap bdc
What is amdp (abap managed data procedures)?
What is an interactive report?
any 1 having notes on SAP-ABAP certification, or even if any 1 could provide the url for getting notes on SAP-ABAP certification, would be appreciated.
How will you find manager of an employee
How are BAPI different from normal function modules?
What is a badi?
What are the techniques involved in using SAP supplied programs? Do you prefer to write your own programs to load master data? Why?
What takes most time in SAP script programming?