PRINT_PARAMETERS SAP Method of class PRINT_PARAMETERS









Below is documentation, parameters and attributes of ABAP Method PRINT_PARAMETERS within SAP class PRINT_PARAMETERS. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name PRINT_PARAMETERS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method PRINT_PARAMETERS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method PRINT_PARAMETERS

.

NameTypeData TypeDescriptionDefault Value
ID_BUKRSImportingTYPE
BUKRS
Company Code
ID_BUSABImportingTYPE
BUSAB
Accounting Clerk
ID_KONTOImportingTYPE
KUNNR
Customer Number 1
ID_LAND1ImportingTYPE
LAND1_GP
Country Key
ID_REGIOImportingTYPE
REGIO
Region (State, Province, County)
ID_SPRASImportingTYPE
SPRAS
Language Key
ID_VBUNDImportingTYPE
VBUND
Company ID
ID_VZSKZImportingTYPE
VZSKZEX
Interest calculation indicator or account number
ED_FAX_COVERExportingTYPE
FORMC
Layout for cover sheet
ED_MAIL_TEXTExportingTYPE
TDOBNAME
Name
CD_INTADChangingTYPE
INTAD
Internet address of partner company clerk
CD_TLFXSChangingTYPE
TLFXS
Accounting clerk's fax number at the customer/vendor
CS_DOCPARAMSChangingTYPE
SFPDOCPARAMS
Form Parameters for Form Processing
CS_OUTPUTPARAMSChangingTYPE
SFPOUTPUTPARAMS
Form Processing Output Parameter



Exceptions of Method PRINT_PARAMETERS

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO PRINT_PARAMETERS.
DATA: lv_CD_INTAD TYPE INTAD,
lv_CD_TLFXS TYPE TLFXS,
lv_CS_DOCPARAMS TYPE SFPDOCPARAMS,
lv_CS_OUTPUTPARAMS TYPE SFPOUTPUTPARAMS,
lv_ED_FAX_COVER TYPE FORMC,
lv_ED_MAIL_TEXT TYPE TDOBNAME,
lv_ID_BUKRS TYPE BUKRS,
lv_ID_BUSAB TYPE BUSAB,
lv_ID_KONTO TYPE KUNNR,
lv_ID_LAND1 TYPE LAND1_GP,
lv_ID_REGIO TYPE REGIO,
lv_ID_SPRAS TYPE SPRAS,
lv_ID_VBUND TYPE VBUND,
lv_ID_VZSKZ TYPE VZSKZEX,
lv_other TYPE c.

CALL METHOD lo_class=>PRINT_PARAMETERS(
EXPORTING
ID_BUKRS = lv_ID_BUKRS
ID_BUSAB = lv_ID_BUSAB
ID_KONTO = lv_ID_KONTO
ID_LAND1 = lv_ID_LAND1
ID_REGIO = lv_ID_REGIO
ID_SPRAS = lv_ID_SPRAS
ID_VBUND = lv_ID_VBUND
ID_VZSKZ = lv_ID_VZSKZ
IMPORTING
ED_FAX_COVER = lv_ED_FAX_COVER
ED_MAIL_TEXT = lv_ED_MAIL_TEXT
CHANGING
CD_INTAD = lv_CD_INTAD
CD_TLFXS = lv_CD_TLFXS
CS_DOCPARAMS = lv_CS_DOCPARAMS
CS_OUTPUTPARAMS = lv_CS_OUTPUTPARAMS ).

Links to Related Class(s)

PRINT_PA...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!