SAP KKA_ABGR_AUFPOSKOPF_GLFT_TABG Function Module for









KKA_ABGR_AUFPOSKOPF_GLFT_TABG is a standard kka abgr aufposkopf glft tabg 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 kka abgr aufposkopf glft tabg FM, simply by entering the name KKA_ABGR_AUFPOSKOPF_GLFT_TABG into the relevant SAP transaction such as SE37 or SE38.

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



Function KKA_ABGR_AUFPOSKOPF_GLFT_TABG 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 'KKA_ABGR_AUFPOSKOPF_GLFT_TABG'"
EXPORTING
OBJNP = "
PERIO = "
GJAHR = "

IMPORTING
POSITION_GLFT = "
POSITIONEN_GLFT = "
KOPF_TABG = "
KOPF_GLFT = "
WIP_ELEMENT_AUFTRAG = "

EXCEPTIONS
OBJEKTART_NICHT_UNTERSTUETZT = 1 FEHLER_WEITERGEREICHT = 2 FELD_NICHT_GEFUELLT = 3 KOPF_GIBT_ES_NICHT = 4 POSITION_GIBT_ES_NICHT = 5 AUFTRAGSTYP_NICHT_UNTERSTUETZT = 6
.



IMPORTING Parameters details for KKA_ABGR_AUFPOSKOPF_GLFT_TABG

OBJNP -

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

PERIO -

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

GJAHR -

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

EXPORTING Parameters details for KKA_ABGR_AUFPOSKOPF_GLFT_TABG

POSITION_GLFT -

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

POSITIONEN_GLFT -

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

KOPF_TABG -

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

KOPF_GLFT -

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

WIP_ELEMENT_AUFTRAG -

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

EXCEPTIONS details

OBJEKTART_NICHT_UNTERSTUETZT -

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

FEHLER_WEITERGEREICHT -

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

FELD_NICHT_GEFUELLT -

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

KOPF_GIBT_ES_NICHT -

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

POSITION_GIBT_ES_NICHT -

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

AUFTRAGSTYP_NICHT_UNTERSTUETZT -

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

Copy and paste ABAP code example for KKA_ABGR_AUFPOSKOPF_GLFT_TABG 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_objnp  TYPE AFPO-OBJNP, "   
lv_position_glft  TYPE KKACHR1, "   
lv_objektart_nicht_unterstuetzt  TYPE KKACHR1, "   
lv_perio  TYPE COEP-PERIO, "   
lv_positionen_glft  TYPE KKACHR1, "   
lv_fehler_weitergereicht  TYPE KKACHR1, "   
lv_gjahr  TYPE COEP-GJAHR, "   
lv_kopf_tabg  TYPE KKACHR1, "   
lv_feld_nicht_gefuellt  TYPE KKACHR1, "   
lv_kopf_glft  TYPE KKACHR1, "   
lv_kopf_gibt_es_nicht  TYPE KKACHR1, "   
lv_wip_element_auftrag  TYPE KKA_LKKAA-AUF_WIP_EL, "   
lv_position_gibt_es_nicht  TYPE KKA_LKKAA, "   
lv_auftragstyp_nicht_unterstuetzt  TYPE KKA_LKKAA. "   

  CALL FUNCTION 'KKA_ABGR_AUFPOSKOPF_GLFT_TABG'  "
    EXPORTING
         OBJNP = lv_objnp
         PERIO = lv_perio
         GJAHR = lv_gjahr
    IMPORTING
         POSITION_GLFT = lv_position_glft
         POSITIONEN_GLFT = lv_positionen_glft
         KOPF_TABG = lv_kopf_tabg
         KOPF_GLFT = lv_kopf_glft
         WIP_ELEMENT_AUFTRAG = lv_wip_element_auftrag
    EXCEPTIONS
        OBJEKTART_NICHT_UNTERSTUETZT = 1
        FEHLER_WEITERGEREICHT = 2
        FELD_NICHT_GEFUELLT = 3
        KOPF_GIBT_ES_NICHT = 4
        POSITION_GIBT_ES_NICHT = 5
        AUFTRAGSTYP_NICHT_UNTERSTUETZT = 6
. " KKA_ABGR_AUFPOSKOPF_GLFT_TABG




ABAP code using 7.40 inline data declarations to call FM KKA_ABGR_AUFPOSKOPF_GLFT_TABG

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 OBJNP FROM AFPO INTO @DATA(ld_objnp).
 
 
 
"SELECT single PERIO FROM COEP INTO @DATA(ld_perio).
 
 
 
"SELECT single GJAHR FROM COEP INTO @DATA(ld_gjahr).
 
 
 
 
 
"SELECT single AUF_WIP_EL FROM KKA_LKKAA INTO @DATA(ld_wip_element_auftrag).
 
 
 


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!