GET_LOCATION_IAMSUPPLIER_SCM SAP Method Delivery View: Determines the Loc. (Customer, Supplier. etc)
Below is documentation, parameters and attributes of ABAP Method GET_LOCATION_IAMSUPPLIER_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_LOCATION_IAMSUPPLIER_SCM can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_LOCATION_IAMSUPPLIER_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_LOC_C | Importing | TYPE /SCMB/SCR_BIF_BTD_LOC | Proxy Structure (Generated) | |
| IS_BTD_LOC_C_DEFAULT | Importing | TYPE /SCMB/SCR_BIF_BTD_LOC | Proxy Structure (Generated) | |
| IS_BTD_LOC_F | Importing | TYPE /SCMB/SCR_BIF_BTD_LOC | Proxy Structure (Generated) | |
| IS_BTD_LOC_F_DEFAULT | Importing | TYPE /SCMB/SCR_BIF_BTD_LOC | Proxy Structure (Generated) | |
| IS_BTD_LOC_T | Importing | TYPE /SCMB/SCR_BIF_BTD_LOC | Proxy Structure (Generated) | |
| IS_BTD_LOC_T_DEFAULT | Importing | TYPE /SCMB/SCR_BIF_BTD_LOC | Proxy Structure (Generated) | |
| EV_LOCAT_C | Exporting | TYPE /SCMB/SCR_AO_PROD_LOCAT_C | Customer Location | |
| EV_LOCAT_F | Exporting | TYPE /SCMB/SCR_AO_PROD_LOCAT_F | Delivery Location | |
| EV_LOCAT_T | Exporting | TYPE /SCMB/SCR_AO_PROD_LOCAT_T | Ship-To Location |
Exceptions of Method GET_LOCATION_IAMSUPPLIER_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_LOCAT_C TYPE /SCMB/SCR_AO_PROD_LOCAT_C,
lv_EV_LOCAT_F TYPE /SCMB/SCR_AO_PROD_LOCAT_F,
lv_EV_LOCAT_T TYPE /SCMB/SCR_AO_PROD_LOCAT_T,
lv_IO_BO TYPE /SCMB/CL_SCR_BO,
lv_IS_BTD_LOC_C TYPE /SCMB/SCR_BIF_BTD_LOC,
lv_IS_BTD_LOC_C_DEFAULT TYPE /SCMB/SCR_BIF_BTD_LOC,
lv_IS_BTD_LOC_F TYPE /SCMB/SCR_BIF_BTD_LOC,
lv_IS_BTD_LOC_F_DEFAULT TYPE /SCMB/SCR_BIF_BTD_LOC,
lv_IS_BTD_LOC_T TYPE /SCMB/SCR_BIF_BTD_LOC,
lv_IS_BTD_LOC_T_DEFAULT TYPE /SCMB/SCR_BIF_BTD_LOC,
lv_other TYPE c.
CALL METHOD lo_class=>GET_LOCATION_IAMSUPPLIER_SCM(
EXPORTING
IO_BO = lv_IO_BO
IS_BTD_LOC_C = lv_IS_BTD_LOC_C
IS_BTD_LOC_C_DEFAULT = lv_IS_BTD_LOC_C_DEFAULT
IS_BTD_LOC_F = lv_IS_BTD_LOC_F
IS_BTD_LOC_F_DEFAULT = lv_IS_BTD_LOC_F_DEFAULT
IS_BTD_LOC_T = lv_IS_BTD_LOC_T
IS_BTD_LOC_T_DEFAULT = lv_IS_BTD_LOC_T_DEFAULT
IMPORTING
EV_LOCAT_C = lv_EV_LOCAT_C
EV_LOCAT_F = lv_EV_LOCAT_F
EV_LOCAT_T = lv_EV_LOCAT_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