SAP NEW-PAGE PRINT - Obsolete ABAP Statements

Get Example source ABAP code based on a different SAP table
  


• ARCHIVE MODE NEW-PAGE PRINT ON - obsolete
• COPIES NEW-PAGE PRINT ON - obsolete
• COVER PAGE NEW-PAGE PRINT ON - obsolete
• COVER TEXT NEW-PAGE PRINT ON - obsolete
• DESTINATION NEW-PAGE PRINT ON - obsolete
• DATASET EXPIRATION NEW-PAGE PRINT ON - obsolete
• DEPARTMENT NEW-PAGE PRINT ON - obsolete
• IMMEDIATELY NEW-PAGE PRINT ON - obsolete
• KEEP IN SPOOL NEW-PAGE PRINT ON - obsolete
• LAYOUT NEW-PAGE PRINT ON - obsolete
• LINE-COUNT NEW-PAGE PRINT ON - obsolete
• LINE-SIZE NEW-PAGE PRINT ON - obsolete
• LIST AUTHORITY NEW-PAGE PRINT ON - obsolete
• LIST DATASET NEW-PAGE PRINT ON - obsolete
• LIST NAME NEW-PAGE PRINT ON - obsolete
• NEW LIST IDENTIFICATION NEW-PAGE PRINT ON - obsolete
• RECEIVER NEW-PAGE PRINT ON - obsolete
• SAP COVER PAGE NEW-PAGE PRINT ON - obsolete
• ARCHIVE MODE SUBMIT TO SAP-SPOOL - obsolete
• COPIES SUBMIT TO SAP-SPOOL - obsolete
• COVER PAGE SUBMIT TO SAP-SPOOL - obsolete
• COVER TEXT SUBMIT TO SAP-SPOOL - obsolete
• DESTINATION SUBMIT TO SAP-SPOOL - obsolete
• DATASET EXPIRATION SUBMIT TO SAP-SPOOL - obsolete
• DEPARTMENT SUBMIT TO SAP-SPOOL - obsolete
• IMMEDIATELY SUBMIT TO SAP-SPOOL - obsolete
• KEEP IN SPOOL SUBMIT TO SAP-SPOOL - obsolete
• LAYOUT SUBMIT TO SAP-SPOOL - obsolete
• LINE-COUNT SUBMIT TO SAP-SPOOL - obsolete
• LINE-SIZE SUBMIT TO SAP-SPOOL - obsolete
• LIST AUTHORITY SUBMIT TO SAP-SPOOL - obsolete
• LIST DATASET SUBMIT TO SAP-SPOOL - obsolete
• LIST NAME SUBMIT TO SAP-SPOOL - obsolete
• NEW LIST IDENTIFICATION SUBMIT TO SAP-SPOOL - obsolete
• RECEIVER SUBMIT TO SAP-SPOOL - obsolete
• SAP COVER PAGE SUBMIT TO SAP-SPOOL - obsolete

Obsolete spool parameters specified

When using the statements NEW-PAGE PRINT ON SUBMIT ... TO SAP-SPOOL

to create spool lists, you must ensure that either the spool parameters window is displayed or that a consistent set of spool parameters is passed. The additions [SPOOL] PARAMETERS ARCHIVE PARAMETERS

of the statements above are used to pass the spool parameters. They use the function module GET_PRINT_PARAMETERS to pass filled structures to the SAP spool system The statements NEW-PAGE PRINT ON NO DIALOG and SUBMIT ... TO SAP-SPOOL WITHOUT SPOOL DYNPRO used without passing spool parameters at the same time produce a syntax error in classes and a syntax warning outside of classes.

As well as these additions, the obsolete additions in the table below also exist. Each of these additions passes only one spool parameter, and cannot therefore ensure the consistency and completeness of the passed parameters. These obsolete additions were replaced by the additions [SPOOL] PARAMETERS and ARCHIVE PARAMETERS. The second column of the table provides, for each obsolete addition, the corresponding input parameter of the function module GET_PRINT_PARAMETERS. The required value should be passed to this parameter instead of using the addition. For the meaning of the spool parameters, see Spool Parameters Overview. Obsolete AdditionInput Parameters ARCHIVE MODE arcmodeARCHIVE_MODE COPIES copCOPIES COVER PAGE flag (only for SUBMIT)COVER_PAGE COVER TEXT textLIST_TEXT DESTINATION destDESTINATION DATASET EXPIRATION daysEXPIRATION DEPARTMENT depDEPARTMENT IMMEDIATELY flagIMMEDIATELY KEEP IN SPOOL flagRELEASE LAYOUT layoutLAYOUT LINE-COUNT lineLINE_COUNT LINE-SIZE colLINE_SIZE LIST AUTHORITY authAUTHORITY LIST DATASET dsnDATA_SET LIST NAME nameLIST_NAME NEW LIST IDENTIFICATION flagNEW_LIST_ID RECEIVER userRECEIVER SAP COVER PAGE modeSAP_COVER_PAGE

You must specify a single-character text field for flag, with a space character activating the parameter and any other character deactivating the parameter. KEEP IN SPOOL has the reverse semantics of the function module's parameter RELEASE. This means that a space character passes an 'X' to the function module. In all other cases, the parameters correspond to the possible values for the input parameters of the function module.

Return to menu