SAP HU_PAST_PROCESS_INBOUNDDEL Function Module for NOTRANSL: übergibt den fcode









HU_PAST_PROCESS_INBOUNDDEL is a standard hu past process inbounddel SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: übergibt den fcode 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 hu past process inbounddel FM, simply by entering the name HU_PAST_PROCESS_INBOUNDDEL into the relevant SAP transaction such as SE37 or SE38.

Function Group: HU_PACKING_STATION
Program Name: SAPLHU_PACKING_STATION
Main Program: SAPLHU_PACKING_STATION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HU_PAST_PROCESS_INBOUNDDEL 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 'HU_PAST_PROCESS_INBOUNDDEL'"NOTRANSL: übergibt den fcode
EXPORTING
* IF_DIALOG = 'CHNG' "Area Not More Closely Defined, Possibly Used for Patchlevels

CHANGING
* CF_OK_CODE = ' ' "Screens, Function Code That Triggered PAI
* CF_DATA_CHANGED = ' ' "Single-Character Indicator
CT_LIPS = "WEB Inbound Delivery - Delivery Items
.



IMPORTING Parameters details for HU_PAST_PROCESS_INBOUNDDEL

IF_DIALOG - Area Not More Closely Defined, Possibly Used for Patchlevels

Data type: CHAR4
Default: 'CHNG'
Optional: Yes
Call by Reference: Yes

CHANGING Parameters details for HU_PAST_PROCESS_INBOUNDDEL

CF_OK_CODE - Screens, Function Code That Triggered PAI

Data type: SY-UCOMM
Default: SPACE
Optional: Yes
Call by Reference: Yes

CF_DATA_CHANGED - Single-Character Indicator

Data type: CHAR1
Default: SPACE
Optional: Yes
Call by Reference: Yes

CT_LIPS - WEB Inbound Delivery - Delivery Items

Data type: LESHP_T_WEB_IBDLV_ITEM
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HU_PAST_PROCESS_INBOUNDDEL 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_if_dialog  TYPE CHAR4, "   'CHNG'
lv_cf_ok_code  TYPE SY-UCOMM, "   SPACE
lv_cf_data_changed  TYPE CHAR1, "   SPACE
lv_ct_lips  TYPE LESHP_T_WEB_IBDLV_ITEM. "   

  CALL FUNCTION 'HU_PAST_PROCESS_INBOUNDDEL'  "NOTRANSL: übergibt den fcode
    EXPORTING
         IF_DIALOG = lv_if_dialog
    CHANGING
         CF_OK_CODE = lv_cf_ok_code
         CF_DATA_CHANGED = lv_cf_data_changed
         CT_LIPS = lv_ct_lips
. " HU_PAST_PROCESS_INBOUNDDEL




ABAP code using 7.40 inline data declarations to call FM HU_PAST_PROCESS_INBOUNDDEL

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.

DATA(ld_if_dialog) = 'CHNG'.
 
"SELECT single UCOMM FROM SY INTO @DATA(ld_cf_ok_code).
DATA(ld_cf_ok_code) = ' '.
 
DATA(ld_cf_data_changed) = ' '.
 
 


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!