BADI_HH_F4_HELP_VEHICLE SAP Method Search Help for Vehicles
Below is documentation, parameters and attributes of ABAP Method BADI_HH_F4_HELP_VEHICLE within SAP class /DSD/IF_EX_HH_READ_VEHICLE. 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 /DSD/IF_EX_HH_READ_VEHICLE 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 BADI_HH_F4_HELP_VEHICLE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method BADI_HH_F4_HELP_VEHICLE
.| Name | Type | Data Type | Description | Default Value |
| IF_F4_TRAILER | Importing | TYPE /DSD/HH_CHECKBOX | F4 Help for Trailers | |
| IF_F4_VEHICLE | Importing | TYPE /DSD/HH_CHECKBOX | F4 Help for Trailers | |
| EF_TRAILER | Exporting | TYPE /DSD/HH_FZGNR | Vehicle Number | |
| EF_VEHICLE | Exporting | TYPE /DSD/HH_FZGNR | Vehicle Number |
Exceptions of Method BADI_HH_F4_HELP_VEHICLE
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /DSD/IF_EX_HH_READ_VEHICLE.
DATA: lv_EF_TRAILER TYPE /DSD/HH_FZGNR,
lv_EF_VEHICLE TYPE /DSD/HH_FZGNR,
lv_IF_F4_TRAILER TYPE /DSD/HH_CHECKBOX,
lv_IF_F4_VEHICLE TYPE /DSD/HH_CHECKBOX,
lv_other TYPE c.
CALL METHOD lo_class=>BADI_HH_F4_HELP_VEHICLE(
EXPORTING
IF_F4_TRAILER = lv_IF_F4_TRAILER
IF_F4_VEHICLE = lv_IF_F4_VEHICLE
IMPORTING
EF_TRAILER = lv_EF_TRAILER
EF_VEHICLE = lv_EF_VEHICLE ).
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