PREPARE_RESULT_SET_FOR_FSCM SAP Method Prepare result set for FSCM commitment.









Below is documentation, parameters and attributes of ABAP Method PREPARE_RESULT_SET_FOR_FSCM within SAP class /SCMTMS/CL_CLC_HELPER. 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 /SCMTMS/CL_CLC_HELPER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

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

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


Parameters of Method PREPARE_RESULT_SET_FOR_FSCM

.

NameTypeData TypeDescriptionDefault Value
IS_TRQ_ROOTImportingTYPE
/SCMTMS/S_TRQ_ROOT_K
Transportation Request Root
IT_CLC_REL_PARTY_BEFImportingTYPE
/SCMTMS/T_TRQ_PARTY_K
Item Party
IT_CLC_REL_PARTY_CURRImportingTYPE
/SCMTMS/T_TRQ_PARTY_K
Item Party
IT_PARTY_STG_ASSGN_DELImportingTYPE
TT_PARTY
IT_TRQ_PARTYImportingTYPE
/SCMTMS/T_TRQ_PARTY_K
Item Party
IT_TRQ_PARTY_BEFImportingTYPE
/SCMTMS/T_TRQ_PARTY_K
Item Party
IT_TRQ_ROOT_BFImportingTYPE
/SCMTMS/T_TRQ_ROOT_K
Transportation Request Root
EV_CLC_NOT_REQUIREDExportingTYPE
BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)



Exceptions of Method PREPARE_RESULT_SET_FOR_FSCM

This method does not have any exceptions

Example ABAP coding


DATA: lv_EV_CLC_NOT_REQUIRED TYPE BOOLEAN,
lv_IS_TRQ_ROOT TYPE /SCMTMS/S_TRQ_ROOT_K,
lv_IT_CLC_REL_PARTY_BEF TYPE /SCMTMS/T_TRQ_PARTY_K,
lv_IT_CLC_REL_PARTY_CURR TYPE /SCMTMS/T_TRQ_PARTY_K,
lv_IT_PARTY_STG_ASSGN_DEL TYPE TT_PARTY,
lv_IT_TRQ_PARTY TYPE /SCMTMS/T_TRQ_PARTY_K,
lv_IT_TRQ_PARTY_BEF TYPE /SCMTMS/T_TRQ_PARTY_K,
lv_IT_TRQ_ROOT_BF TYPE /SCMTMS/T_TRQ_ROOT_K,
lv_other TYPE c.

CALL METHOD /SCMTMS/CL_CLC_HELPER=>PREPARE_RESULT_SET_FOR_FSCM(
EXPORTING
IS_TRQ_ROOT = lv_IS_TRQ_ROOT
IT_CLC_REL_PARTY_BEF = lv_IT_CLC_REL_PARTY_BEF
IT_CLC_REL_PARTY_CURR = lv_IT_CLC_REL_PARTY_CURR
IT_PARTY_STG_ASSGN_DEL = lv_IT_PARTY_STG_ASSGN_DEL
IT_TRQ_PARTY = lv_IT_TRQ_PARTY
IT_TRQ_PARTY_BEF = lv_IT_TRQ_PARTY_BEF
IT_TRQ_ROOT_BF = lv_IT_TRQ_ROOT_BF
IMPORTING
EV_CLC_NOT_REQUIRED = lv_EV_CLC_NOT_REQUIRED ).

Links to Related Class(s)

/SCMTMS/...
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!