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
Explain what are standard layouts sets in the sap script?
how to see the tables of 200 in client 100?
What are the different kinds of lock modes?
What does the extract statement do in extract datasets? : abap modularization
Structures can contain data only during the runtime of a program (t/f) : abap data dictionary
Explain the difference between a dialog program and a report?
Explain what is sap script? What is the purpose of sap script? Difference between sap script and report?
What are the steps to be followed to set lockobjects? : sap abap data dictionary
What are the two ways for restricting the value range for a domain? : sap abap data dictionary
What will you code in start-of-selection & end-of-selecton & why?
Sy index and sy tabix
What is the project you are currently working and work that you are doing
Explain the advantages and disadvantages of different types of bdc's?
What are the control break events in abap? : abap data dictionary
Can we handle two transaction codes in the same program using call transaction bdc input method? : abap bdc