VALIDATEEXTENSIONIN SAP Method of class /BA1/IF_EX_F4_SEC_GL_BAPI
Below is documentation, parameters and attributes of ABAP Method VALIDATEEXTENSIONIN within SAP class /BA1/IF_EX_F4_SEC_GL_BAPI. 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 /BA1/IF_EX_F4_SEC_GL_BAPI 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 VALIDATEEXTENSIONIN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method VALIDATEEXTENSIONIN
.| Name | Type | Data Type | Description | Default Value |
| IM_DIRTYFLAG | Importing | TYPE /BA1/BAPIF4_DTE_DIRTY_FLAG | Ind.: Accrued Interest (Include/Exclude Accrued Interest) | |
| IM_EXCHANGE | Importing | TYPE /BA1/BAPIF4_DTE_EXCH | Name of the Exchange | |
| IM_EXTNUMBER | Importing | TYPE /BA1/BAPIF4_DTE_EXT_NO | External Number | |
| IM_MDCODE | Importing | TYPE /BA1/BAPIF4_DTE_MDCODE | Market Data Area | |
| IM_PRTYPE | Importing | TYPE /BA1/BAPIF4_DTE_CLASS | Price Type | |
| IM_STATUS | Importing | TYPE /BA1/BAPIF4_DTE_STATUS | Market Date Status | |
| IM_SYS_TIME | Importing | TYPE /BA1/BAPIF4_DTE_SYS_TIME | System Date/Time | |
| IM_TAB_EXTENSIONIN | Importing | TYPE BAPIPAREXTAB | Table with BAPIPAREX as Row Type | |
| IM_VALIDFROM | Importing | TYPE /BA1/BAPIF4_DTE_VALID_FROM | Valid-From Date | |
| IM_VALIDTO | Importing | TYPE /BA1/BAPIF4_DTE_VALID_TO | Valid-To Date | |
| IM_PRTYPE | Importing | TYPE /BA1/BAPIF4_DTE_CLASS | Exchange Rate Category | |
| EX_RETURN | Exporting | TYPE BAPIRET2_T | Return Table |
Exceptions of Method VALIDATEEXTENSIONIN
DATA_INVALID -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 /BA1/IF_EX_F4_SEC_GL_BAPI.
DATA: lv_EX_RETURN TYPE BAPIRET2_T,
lv_IM_DIRTYFLAG TYPE /BA1/BAPIF4_DTE_DIRTY_FLAG,
lv_IM_EXCHANGE TYPE /BA1/BAPIF4_DTE_EXCH,
lv_IM_EXTNUMBER TYPE /BA1/BAPIF4_DTE_EXT_NO,
lv_IM_MDCODE TYPE /BA1/BAPIF4_DTE_MDCODE,
lv_IM_PRTYPE TYPE /BA1/BAPIF4_DTE_CLASS,
lv_IM_STATUS TYPE /BA1/BAPIF4_DTE_STATUS,
lv_IM_SYS_TIME TYPE /BA1/BAPIF4_DTE_SYS_TIME,
lv_IM_TAB_EXTENSIONIN TYPE BAPIPAREXTAB,
lv_IM_VALIDFROM TYPE /BA1/BAPIF4_DTE_VALID_FROM,
lv_IM_VALIDTO TYPE /BA1/BAPIF4_DTE_VALID_TO,
lv_IM_PRTYPE TYPE /BA1/BAPIF4_DTE_CLASS,
lv_other TYPE c.
CALL METHOD lo_class=>VALIDATEEXTENSIONIN(
EXPORTING
IM_DIRTYFLAG = lv_IM_DIRTYFLAG
IM_EXCHANGE = lv_IM_EXCHANGE
IM_EXTNUMBER = lv_IM_EXTNUMBER
IM_MDCODE = lv_IM_MDCODE
IM_PRTYPE = lv_IM_PRTYPE
IM_STATUS = lv_IM_STATUS
IM_SYS_TIME = lv_IM_SYS_TIME
IM_TAB_EXTENSIONIN = lv_IM_TAB_EXTENSIONIN
IM_VALIDFROM = lv_IM_VALIDFROM
IM_VALIDTO = lv_IM_VALIDTO
IM_PRTYPE = lv_IM_PRTYPE
IMPORTING
EX_RETURN = lv_EX_RETURN ).
Links to Related Class(s)
/BA1/IF_...Full list of available SAP object classes
Search for further information about these or an SAP related objects