DETERMINE_PARTY_CLC_DETAILS SAP Method Get the CLC amount and currency for a trq party
Below is documentation, parameters and attributes of ABAP Method DETERMINE_PARTY_CLC_DETAILS 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 directlyThe following technical details of method DETERMINE_PARTY_CLC_DETAILS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DETERMINE_PARTY_CLC_DETAILS
.| Name | Type | Data Type | Description | Default Value |
| IS_PARTY | Importing | TYPE /SCMTMS/S_TRQ_PARTY_K | Item Party | |
| IS_TRQ_ROOT | Importing | TYPE /SCMTMS/S_TRQ_ROOT_K | Transportation Request Root | |
| IT_CHARGE_ITEM | Importing | TYPE /SCMTMS/T_TCC_CHRGITEM_K | Charge Item | |
| IT_PARTY | Importing | TYPE /SCMTMS/T_TRQ_PARTY_K | Item Party | |
| ES_CHRG_ITM_AMT_CURR | Exporting | TYPE /SCMTMS/S_AMOUNT_CURR | Amount and Currency | |
| ES_CLC_AMOUNT_CURR | Exporting | TYPE /SCMTMS/S_AMOUNT_CURR | Amount and Currency | |
| EV_CALC_AMOUNT | Exporting | TYPE /SCMTMS/AMOUNT | Amount | |
| EV_PARTY_UUID_CHRG | Exporting | TYPE /SCMTMS/BUPAUUID | Business Partner |
Exceptions of Method DETERMINE_PARTY_CLC_DETAILS
This method does not have any exceptionsExample ABAP coding
DATA: lv_ES_CHRG_ITM_AMT_CURR TYPE /SCMTMS/S_AMOUNT_CURR,
lv_ES_CLC_AMOUNT_CURR TYPE /SCMTMS/S_AMOUNT_CURR,
lv_EV_CALC_AMOUNT TYPE /SCMTMS/AMOUNT,
lv_EV_PARTY_UUID_CHRG TYPE /SCMTMS/BUPAUUID,
lv_IS_PARTY TYPE /SCMTMS/S_TRQ_PARTY_K,
lv_IS_TRQ_ROOT TYPE /SCMTMS/S_TRQ_ROOT_K,
lv_IT_CHARGE_ITEM TYPE /SCMTMS/T_TCC_CHRGITEM_K,
lv_IT_PARTY TYPE /SCMTMS/T_TRQ_PARTY_K,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_CLC_HELPER=>DETERMINE_PARTY_CLC_DETAILS(
EXPORTING
IS_PARTY = lv_IS_PARTY
IS_TRQ_ROOT = lv_IS_TRQ_ROOT
IT_CHARGE_ITEM = lv_IT_CHARGE_ITEM
IT_PARTY = lv_IT_PARTY
IMPORTING
ES_CHRG_ITM_AMT_CURR = lv_ES_CHRG_ITM_AMT_CURR
ES_CLC_AMOUNT_CURR = lv_ES_CLC_AMOUNT_CURR
EV_CALC_AMOUNT = lv_EV_CALC_AMOUNT
EV_PARTY_UUID_CHRG = lv_EV_PARTY_UUID_CHRG ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects