GET_PAYM_TERMS_FOR_PRINT SAP Method Format the Terms of Payments for Printing









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

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_WLF_PAYM_TERMS_KRED_PRINT 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 GET_PAYM_TERMS_FOR_PRINT can also be found below:

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


Parameters of Method GET_PAYM_TERMS_FOR_PRINT

.

NameTypeData TypeDescriptionDefault Value
IT_RATE_INFOImportingTYPE
WLF_RATE_INFO_TAB
AB: Table - Structure RATE_INFO
I_LANGUAGEImportingTYPE
SPRAS
Language Key
I_T052ImportingTYPE
T052
Terms of Payment
I_TOCOUNTRYImportingTYPE
LAND1
Country key
I_VALDTImportingTYPE
WVALDT
Fixed Value Date
I_WAERLImportingTYPE
WAERL
Currency of Agency Document
I_ZTERMImportingTYPE
DZTERM
Terms of payment key
ET_TTEXT80ExportingTYPE
WLF_TTEXT80_TAB
AB: Table - TTEXT80



Exceptions of Method GET_PAYM_TERMS_FOR_PRINT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_WLF_PAYM_TERMS_KRED_PRINT.
DATA: lv_ET_TTEXT80 TYPE WLF_TTEXT80_TAB,
lv_IT_RATE_INFO TYPE WLF_RATE_INFO_TAB,
lv_I_LANGUAGE TYPE SPRAS,
lv_I_T052 TYPE T052,
lv_I_TOCOUNTRY TYPE LAND1,
lv_I_VALDT TYPE WVALDT,
lv_I_WAERL TYPE WAERL,
lv_I_ZTERM TYPE DZTERM,
lv_other TYPE c.

CALL METHOD lo_class=>GET_PAYM_TERMS_FOR_PRINT(
EXPORTING
IT_RATE_INFO = lv_IT_RATE_INFO
I_LANGUAGE = lv_I_LANGUAGE
I_T052 = lv_I_T052
I_TOCOUNTRY = lv_I_TOCOUNTRY
I_VALDT = lv_I_VALDT
I_WAERL = lv_I_WAERL
I_ZTERM = lv_I_ZTERM
IMPORTING
ET_TTEXT80 = lv_ET_TTEXT80 ).

Links to Related Class(s)

IF_WLF_P...
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!