GET_PARTNER_IAMCUSTOMER_SCM SAP Method Customer View: Determines the Partner (Customer, Suppl. etc)
Below is documentation, parameters and attributes of ABAP Method GET_PARTNER_IAMCUSTOMER_SCM within SAP class /SCMB/IF_EX_SCR_BIF_CONVERT. 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 /SCMB/IF_EX_SCR_BIF_CONVERT 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_PARTNER_IAMCUSTOMER_SCM can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_PARTNER_IAMCUSTOMER_SCM
.| Name | Type | Data Type | Description | Default Value |
| IO_BO | Importing | TYPE REF TO /SCMB/CL_SCR_BO | Business Object in Supply Chain Analytical Tools | |
| IS_BTD_PARTY_B | Importing | TYPE /SCMB/SCR_BIF_BTD_PARTY | Proxy Structure (Generated) | |
| IS_BTD_PARTY_C | Importing | TYPE /SCMB/SCR_BIF_BTD_PARTY | Proxy Structure (Generated) | |
| IS_BTD_PARTY_C_DEFAULT | Importing | TYPE /SCMB/SCR_BIF_BTD_PARTY | Proxy Structure (Generated) | |
| IS_BTD_PARTY_F | Importing | TYPE /SCMB/SCR_BIF_BTD_PARTY | Proxy Structure (Generated) | |
| IS_BTD_PARTY_F_DEFAULT | Importing | TYPE /SCMB/SCR_BIF_BTD_PARTY | Proxy Structure (Generated) | |
| IS_BTD_PARTY_T | Importing | TYPE /SCMB/SCR_BIF_BTD_PARTY | Proxy Structure (Generated) | |
| IS_BTD_PARTY_T_DEFAULT | Importing | TYPE /SCMB/SCR_BIF_BTD_PARTY | Proxy Structure (Generated) | |
| EV_BPART_B | Exporting | TYPE /SCMB/SCR_AO_PROD_BPART_B | Bill-to party | |
| EV_BPART_C | Exporting | TYPE /SCMB/SCR_AO_PROD_BPART_C | Customer | |
| EV_BPART_F | Exporting | TYPE /SCMB/SCR_AO_PROD_BPART_F | Supplier | |
| EV_BPART_T | Exporting | TYPE /SCMB/SCR_AO_PROD_BPART_T | Ship-To Party |
Exceptions of Method GET_PARTNER_IAMCUSTOMER_SCM
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMB/IF_EX_SCR_BIF_CONVERT.
DATA: lv_EV_BPART_B TYPE /SCMB/SCR_AO_PROD_BPART_B,
lv_EV_BPART_C TYPE /SCMB/SCR_AO_PROD_BPART_C,
lv_EV_BPART_F TYPE /SCMB/SCR_AO_PROD_BPART_F,
lv_EV_BPART_T TYPE /SCMB/SCR_AO_PROD_BPART_T,
lv_IO_BO TYPE /SCMB/CL_SCR_BO,
lv_IS_BTD_PARTY_B TYPE /SCMB/SCR_BIF_BTD_PARTY,
lv_IS_BTD_PARTY_C TYPE /SCMB/SCR_BIF_BTD_PARTY,
lv_IS_BTD_PARTY_C_DEFAULT TYPE /SCMB/SCR_BIF_BTD_PARTY,
lv_IS_BTD_PARTY_F TYPE /SCMB/SCR_BIF_BTD_PARTY,
lv_IS_BTD_PARTY_F_DEFAULT TYPE /SCMB/SCR_BIF_BTD_PARTY,
lv_IS_BTD_PARTY_T TYPE /SCMB/SCR_BIF_BTD_PARTY,
lv_IS_BTD_PARTY_T_DEFAULT TYPE /SCMB/SCR_BIF_BTD_PARTY,
lv_other TYPE c.
CALL METHOD lo_class=>GET_PARTNER_IAMCUSTOMER_SCM(
EXPORTING
IO_BO = lv_IO_BO
IS_BTD_PARTY_B = lv_IS_BTD_PARTY_B
IS_BTD_PARTY_C = lv_IS_BTD_PARTY_C
IS_BTD_PARTY_C_DEFAULT = lv_IS_BTD_PARTY_C_DEFAULT
IS_BTD_PARTY_F = lv_IS_BTD_PARTY_F
IS_BTD_PARTY_F_DEFAULT = lv_IS_BTD_PARTY_F_DEFAULT
IS_BTD_PARTY_T = lv_IS_BTD_PARTY_T
IS_BTD_PARTY_T_DEFAULT = lv_IS_BTD_PARTY_T_DEFAULT
IMPORTING
EV_BPART_B = lv_EV_BPART_B
EV_BPART_C = lv_EV_BPART_C
EV_BPART_F = lv_EV_BPART_F
EV_BPART_T = lv_EV_BPART_T ).
Links to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects