DETERMINE_C_CTR_AREA SAP Method of class /DSD/IF_EX_HH_READ_DRIVER









Below is documentation, parameters and attributes of ABAP Method DETERMINE_C_CTR_AREA within SAP class /DSD/IF_EX_HH_READ_DRIVER. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /DSD/IF_EX_HH_READ_DRIVER 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 DETERMINE_C_CTR_AREA can also be found below:

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


Parameters of Method DETERMINE_C_CTR_AREA

.

NameTypeData TypeDescriptionDefault Value
I_DRIVER_KNB1ImportingTYPE
KNB1
Customer Master (Company Code)
I_DRIVER_KNVVImportingTYPE
KNVV
Customer Master Sales Data
I_DRIVER_NUMBERImportingTYPE
KUNNR
Customer Number 1
I_T001ImportingTYPE
T001
Company Codes
I_T001CMImportingTYPE
T001CM
Permitted Credit Control Areas per Company Code
I_TVTAImportingTYPE
TVTA
Organizational Unit: Sales Area(s)
C_CTR_AREAChangingTYPE
KKBER
Credit control area



Exceptions of Method DETERMINE_C_CTR_AREA

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO /DSD/IF_EX_HH_READ_DRIVER.
DATA: lv_C_CTR_AREA TYPE KKBER,
lv_I_DRIVER_KNB1 TYPE KNB1,
lv_I_DRIVER_KNVV TYPE KNVV,
lv_I_DRIVER_NUMBER TYPE KUNNR,
lv_I_T001 TYPE T001,
lv_I_T001CM TYPE T001CM,
lv_I_TVTA TYPE TVTA,
lv_other TYPE c.

CALL METHOD lo_class=>DETERMINE_C_CTR_AREA(
EXPORTING
I_DRIVER_KNB1 = lv_I_DRIVER_KNB1
I_DRIVER_KNVV = lv_I_DRIVER_KNVV
I_DRIVER_NUMBER = lv_I_DRIVER_NUMBER
I_T001 = lv_I_T001
I_T001CM = lv_I_T001CM
I_TVTA = lv_I_TVTA
CHANGING
C_CTR_AREA = lv_C_CTR_AREA ).

Links to Related Class(s)

/DSD/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!