GET_LOCATION_IAMCUSTOMER_SCM SAP Method Customer View: Determines Location (Customer, Supplier etc.)









Below is documentation, parameters and attributes of ABAP Method GET_LOCATION_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_LOCATION_IAMCUSTOMER_SCM can also be found below:

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


Parameters of Method GET_LOCATION_IAMCUSTOMER_SCM

.

NameTypeData TypeDescriptionDefault Value
IO_BOImportingTYPE REF TO
/SCMB/CL_SCR_BO
Business Object in Supply Chain Analytical Tools
IS_BTD_LOC_CImportingTYPE
/SCMB/SCR_BIF_BTD_LOC
Proxy Structure (Generated)
IS_BTD_LOC_C_DEFAULTImportingTYPE
/SCMB/SCR_BIF_BTD_LOC
Proxy Structure (Generated)
IS_BTD_LOC_FImportingTYPE
/SCMB/SCR_BIF_BTD_LOC
Proxy Structure (Generated)
IS_BTD_LOC_F_DEFAULTImportingTYPE
/SCMB/SCR_BIF_BTD_LOC
Proxy Structure (Generated)
IS_BTD_LOC_TImportingTYPE
/SCMB/SCR_BIF_BTD_LOC
Proxy Structure (Generated)
IS_BTD_LOC_T_DEFAULTImportingTYPE
/SCMB/SCR_BIF_BTD_LOC
Proxy Structure (Generated)
EV_LOCAT_CExportingTYPE
/SCMB/SCR_AO_PROD_LOCAT_C
Customer Location
EV_LOCAT_FExportingTYPE
/SCMB/SCR_AO_PROD_LOCAT_F
Delivery Location
EV_LOCAT_GExportingTYPE
/SCMB/SPLR_LOCGRP_SHPTO
Location Group: Next Parent Location of Location Hierarchy
EV_LOCAT_IExportingTYPE
/SCMB/SPLR_LOC_MASTER
Assigned Location of a CP
EV_LOCAT_TExportingTYPE
/SCMB/SCR_AO_PROD_LOCAT_T
Ship-To Location
EV_LTYPE_FExportingTYPE
/SCMB/SPLR_LOCTY_SHPTO
Location Type of Ship-From Location
EV_LTYPE_IExportingTYPE
/SCMB/SPLR_LOCTY_MASTER
Location Type of Location Assigned to CP
EV_LTYPE_TExportingTYPE
/SCMB/SPLR_LOCTY_SHPTO
Location Type of Customer Location



Exceptions of Method GET_LOCATION_IAMCUSTOMER_SCM

This method does not have any exceptions

Example 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_G TYPE /SCMB/SPLR_LOCGRP_SHPTO,
lv_EV_LOCAT_I TYPE /SCMB/SPLR_LOC_MASTER,
lv_EV_LOCAT_T TYPE /SCMB/SCR_AO_PROD_LOCAT_T,
lv_EV_LTYPE_F TYPE /SCMB/SPLR_LOCTY_SHPTO,
lv_EV_LTYPE_I TYPE /SCMB/SPLR_LOCTY_MASTER,
lv_EV_LTYPE_T TYPE /SCMB/SPLR_LOCTY_SHPTO,
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_IAMCUSTOMER_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_G = lv_EV_LOCAT_G
EV_LOCAT_I = lv_EV_LOCAT_I
EV_LOCAT_T = lv_EV_LOCAT_T
EV_LTYPE_F = lv_EV_LTYPE_F
EV_LTYPE_I = lv_EV_LTYPE_I
EV_LTYPE_T = lv_EV_LTYPE_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



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!