SET_BLOCK_H_REG_H010_ALL SAP Method Fill Block H Registers: H010
Below is documentation, parameters and attributes of ABAP Method SET_BLOCK_H_REG_H010_ALL within SAP class IF_EX_BADI_J_1BEFD. 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 IF_EX_BADI_J_1BEFD 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 SET_BLOCK_H_REG_H010_ALL can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SET_BLOCK_H_REG_H010_ALL
.| Name | Type | Data Type | Description | Default Value |
| IS_H005 | Importing | TYPE J_1BEFDS_H_2_H005 | EFD: Inventory Totals | |
| CS_H005 | Changing | TYPE J_1BEFDS_H_2_H005 | EFD: Inventory Totals | |
| CT_H010 | Changing | TYPE J_1BEFDT_H_3_H010 | EFD: Inventory | |
| C_FILLED_BY_BADI | Changing | TYPE CHAR1 | Single-Character Indicator |
Exceptions of Method SET_BLOCK_H_REG_H010_ALL
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_J_1BEFD.
DATA: lv_CS_H005 TYPE J_1BEFDS_H_2_H005,
lv_CT_H010 TYPE J_1BEFDT_H_3_H010,
lv_C_FILLED_BY_BADI TYPE CHAR1,
lv_IS_H005 TYPE J_1BEFDS_H_2_H005,
lv_other TYPE c.
CALL METHOD lo_class=>SET_BLOCK_H_REG_H010_ALL(
EXPORTING
IS_H005 = lv_IS_H005
CHANGING
CS_H005 = lv_CS_H005
CT_H010 = lv_CT_H010
C_FILLED_BY_BADI = lv_C_FILLED_BY_BADI ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects