SAP EAMS_VB_BTE_PM000030_ORDER Function Module for ISE Callback Auftrag(BTE)
EAMS_VB_BTE_PM000030_ORDER is a standard eams vb bte pm000030 order SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ISE Callback Auftrag(BTE) processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for eams vb bte pm000030 order FM, simply by entering the name EAMS_VB_BTE_PM000030_ORDER into the relevant SAP transaction such as SE37 or SE38.
Function Group: EAMS_BO_VB
Program Name: SAPLEAMS_BO_VB
Main Program: SAPLEAMS_BO_VB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EAMS_VB_BTE_PM000030_ORDER pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'EAMS_VB_BTE_PM000030_ORDER'"ISE Callback Auftrag(BTE).
EXPORTING
CAUFVD_OLD = "
CAUFVD_NEW = "
TABLES
* AFVGTAB_OLD = "
* AFVGTAB_NEW = "
* IHPATAB_OLD = "
* IHPATAB_NEW = "
* RESBTAB_OLD = "
* RESBTAB_NEW = "
IMPORTING Parameters details for EAMS_VB_BTE_PM000030_ORDER
CAUFVD_OLD -
Data type: CAUFVDOptional: No
Call by Reference: Yes
CAUFVD_NEW -
Data type: CAUFVDOptional: No
Call by Reference: Yes
TABLES Parameters details for EAMS_VB_BTE_PM000030_ORDER
AFVGTAB_OLD -
Data type: AFVGDOptional: Yes
Call by Reference: No ( called with pass by value option)
AFVGTAB_NEW -
Data type: AFVGDGETOptional: Yes
Call by Reference: No ( called with pass by value option)
IHPATAB_OLD -
Data type: IHPAVBOptional: Yes
Call by Reference: No ( called with pass by value option)
IHPATAB_NEW -
Data type: IHPAVBOptional: Yes
Call by Reference: No ( called with pass by value option)
RESBTAB_OLD -
Data type: ARESBOptional: Yes
Call by Reference: No ( called with pass by value option)
RESBTAB_NEW -
Data type: RESBDGETOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EAMS_VB_BTE_PM000030_ORDER Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_caufvd_old | TYPE CAUFVD, " | |||
| lt_afvgtab_old | TYPE STANDARD TABLE OF AFVGD, " | |||
| lv_caufvd_new | TYPE CAUFVD, " | |||
| lt_afvgtab_new | TYPE STANDARD TABLE OF AFVGDGET, " | |||
| lt_ihpatab_old | TYPE STANDARD TABLE OF IHPAVB, " | |||
| lt_ihpatab_new | TYPE STANDARD TABLE OF IHPAVB, " | |||
| lt_resbtab_old | TYPE STANDARD TABLE OF ARESB, " | |||
| lt_resbtab_new | TYPE STANDARD TABLE OF RESBDGET. " |
|   CALL FUNCTION 'EAMS_VB_BTE_PM000030_ORDER' "ISE Callback Auftrag(BTE) |
| EXPORTING | ||
| CAUFVD_OLD | = lv_caufvd_old | |
| CAUFVD_NEW | = lv_caufvd_new | |
| TABLES | ||
| AFVGTAB_OLD | = lt_afvgtab_old | |
| AFVGTAB_NEW | = lt_afvgtab_new | |
| IHPATAB_OLD | = lt_ihpatab_old | |
| IHPATAB_NEW | = lt_ihpatab_new | |
| RESBTAB_OLD | = lt_resbtab_old | |
| RESBTAB_NEW | = lt_resbtab_new | |
| . " EAMS_VB_BTE_PM000030_ORDER | ||
ABAP code using 7.40 inline data declarations to call FM EAMS_VB_BTE_PM000030_ORDER
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects