SAP K_ALLOCATIONS_SEGMENT_REVERSE Function Module for









K_ALLOCATIONS_SEGMENT_REVERSE is a standard k allocations segment reverse SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 k allocations segment reverse FM, simply by entering the name K_ALLOCATIONS_SEGMENT_REVERSE into the relevant SAP transaction such as SE37 or SE38.

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



Function K_ALLOCATIONS_SEGMENT_REVERSE 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 'K_ALLOCATIONS_SEGMENT_REVERSE'"
EXPORTING
IRKGA2U = "
IRKGA2U2 = "
IRKGA2VAR = "
KUMUFLAG = "
RCKUMUFLAG = "
* REVERSE_BEFORE_RUN = ' ' "
TITLE = "
GROUP = "

TABLES
IT811CT = "
IT811S_SEL = "
ITRKGA2H = "
* BPL = "

EXCEPTIONS
FOREIGN_LOCK = 1 NO_CYCLE = 2 NO_REVERSE = 3 REVERSE_CANCELED = 4 WRONG_CYCLE = 5 ERROR_IN_REVERSE = 6
.



IMPORTING Parameters details for K_ALLOCATIONS_SEGMENT_REVERSE

IRKGA2U -

Data type: RKGA2U
Optional: No
Call by Reference: No ( called with pass by value option)

IRKGA2U2 -

Data type: RKGA2U2
Optional: No
Call by Reference: No ( called with pass by value option)

IRKGA2VAR -

Data type: RKGA2VAR
Optional: No
Call by Reference: No ( called with pass by value option)

KUMUFLAG -

Data type: T811C-KUMUFLAG
Optional: No
Call by Reference: No ( called with pass by value option)

RCKUMUFLAG -

Data type: T811C-RCKUMUFLAG
Optional: No
Call by Reference: No ( called with pass by value option)

REVERSE_BEFORE_RUN -

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

TITLE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

GROUP -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for K_ALLOCATIONS_SEGMENT_REVERSE

IT811CT -

Data type: T811CT
Optional: No
Call by Reference: No ( called with pass by value option)

IT811S_SEL -

Data type: T811S_SEL
Optional: No
Call by Reference: No ( called with pass by value option)

ITRKGA2H -

Data type: RKGA2H
Optional: No
Call by Reference: No ( called with pass by value option)

BPL -

Data type: RKGABPL
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

FOREIGN_LOCK -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_CYCLE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_REVERSE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

REVERSE_CANCELED -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

WRONG_CYCLE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_IN_REVERSE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for K_ALLOCATIONS_SEGMENT_REVERSE 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_irkga2u  TYPE RKGA2U, "   
lt_it811ct  TYPE STANDARD TABLE OF T811CT, "   
lv_foreign_lock  TYPE T811CT, "   
lv_irkga2u2  TYPE RKGA2U2, "   
lv_no_cycle  TYPE RKGA2U2, "   
lt_it811s_sel  TYPE STANDARD TABLE OF T811S_SEL, "   
lt_itrkga2h  TYPE STANDARD TABLE OF RKGA2H, "   
lv_irkga2var  TYPE RKGA2VAR, "   
lv_no_reverse  TYPE RKGA2VAR, "   
lt_bpl  TYPE STANDARD TABLE OF RKGABPL, "   
lv_kumuflag  TYPE T811C-KUMUFLAG, "   
lv_reverse_canceled  TYPE T811C, "   
lv_rckumuflag  TYPE T811C-RCKUMUFLAG, "   
lv_wrong_cycle  TYPE T811C, "   
lv_error_in_reverse  TYPE T811C, "   
lv_reverse_before_run  TYPE T811C, "   SPACE
lv_title  TYPE T811C, "   
lv_group  TYPE T811C. "   

  CALL FUNCTION 'K_ALLOCATIONS_SEGMENT_REVERSE'  "
    EXPORTING
         IRKGA2U = lv_irkga2u
         IRKGA2U2 = lv_irkga2u2
         IRKGA2VAR = lv_irkga2var
         KUMUFLAG = lv_kumuflag
         RCKUMUFLAG = lv_rckumuflag
         REVERSE_BEFORE_RUN = lv_reverse_before_run
         TITLE = lv_title
         GROUP = lv_group
    TABLES
         IT811CT = lt_it811ct
         IT811S_SEL = lt_it811s_sel
         ITRKGA2H = lt_itrkga2h
         BPL = lt_bpl
    EXCEPTIONS
        FOREIGN_LOCK = 1
        NO_CYCLE = 2
        NO_REVERSE = 3
        REVERSE_CANCELED = 4
        WRONG_CYCLE = 5
        ERROR_IN_REVERSE = 6
. " K_ALLOCATIONS_SEGMENT_REVERSE




ABAP code using 7.40 inline data declarations to call FM K_ALLOCATIONS_SEGMENT_REVERSE

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.

 
 
 
 
 
 
 
 
 
 
"SELECT single KUMUFLAG FROM T811C INTO @DATA(ld_kumuflag).
 
 
"SELECT single RCKUMUFLAG FROM T811C INTO @DATA(ld_rckumuflag).
 
 
 
DATA(ld_reverse_before_run) = ' '.
 
 
 


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!