SAP CONDS_DATA_PER_OBJECT_PROVIDE Function Module for NOTRANSL: Spezifizierte Konditionssatzdaten für Archivierungsobjekt bereit









CONDS_DATA_PER_OBJECT_PROVIDE is a standard conds data per object provide 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: Spezifizierte Konditionssatzdaten für Archivierungsobjekt bereit 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 conds data per object provide FM, simply by entering the name CONDS_DATA_PER_OBJECT_PROVIDE into the relevant SAP transaction such as SE37 or SE38.

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



Function CONDS_DATA_PER_OBJECT_PROVIDE 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 'CONDS_DATA_PER_OBJECT_PROVIDE'"NOTRANSL: Spezifizierte Konditionssatzdaten für Archivierungsobjekt bereit
EXPORTING
PI_ARCHIVE_HANDLE = "Internal Tables, Current Row Index
* PI_ALL_DATA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* PI_KNUMH = "Condition Record Number
* PI_EXP_SCALES = "DE-EN-LANG-SWITCH-NO-TRANSLATION

TABLES
* PI_KNUMH_TAB = "Condition Record Number
* PE_T_KONP_DEL = "Conditions (Item)
* PE_T_KONM_DEL = "Conditions (1-Dimensional Quantity Scale)
* PE_T_KONW_DEL = "Conditions (1-Dimensional Value Scale)
* PE_T_KONP_NON_DEL = "Conditions (Item)
* PE_T_KONM_NON_DEL = "Conditions (1-Dimensional Quantity Scale)
* PE_T_KONW_NON_DEL = "Conditions (1-Dimensional Value Scale)

EXCEPTIONS
REQUEST_NOT_UNIQUE = 1 ALL_REQUESTS_INITIAL = 2
.



IMPORTING Parameters details for CONDS_DATA_PER_OBJECT_PROVIDE

PI_ARCHIVE_HANDLE - Internal Tables, Current Row Index

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

PI_ALL_DATA - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

PI_KNUMH - Condition Record Number

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

PI_EXP_SCALES - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

TABLES Parameters details for CONDS_DATA_PER_OBJECT_PROVIDE

PI_KNUMH_TAB - Condition Record Number

Data type: COND_KNUMH
Optional: Yes
Call by Reference: Yes

PE_T_KONP_DEL - Conditions (Item)

Data type: KONP
Optional: Yes
Call by Reference: Yes

PE_T_KONM_DEL - Conditions (1-Dimensional Quantity Scale)

Data type: KONM
Optional: Yes
Call by Reference: Yes

PE_T_KONW_DEL - Conditions (1-Dimensional Value Scale)

Data type: KONW
Optional: Yes
Call by Reference: Yes

PE_T_KONP_NON_DEL - Conditions (Item)

Data type: KONP
Optional: Yes
Call by Reference: Yes

PE_T_KONM_NON_DEL - Conditions (1-Dimensional Quantity Scale)

Data type: KONM
Optional: Yes
Call by Reference: Yes

PE_T_KONW_NON_DEL - Conditions (1-Dimensional Value Scale)

Data type: KONW
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

REQUEST_NOT_UNIQUE - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

ALL_REQUESTS_INITIAL - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CONDS_DATA_PER_OBJECT_PROVIDE 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:
lt_pi_knumh_tab  TYPE STANDARD TABLE OF COND_KNUMH, "   
lv_pi_archive_handle  TYPE SY-TABIX, "   
lv_request_not_unique  TYPE SY, "   
lv_pi_all_data  TYPE XFELD, "   
lt_pe_t_konp_del  TYPE STANDARD TABLE OF KONP, "   
lv_all_requests_initial  TYPE KONP, "   
lv_pi_knumh  TYPE KNUMH, "   
lt_pe_t_konm_del  TYPE STANDARD TABLE OF KONM, "   
lt_pe_t_konw_del  TYPE STANDARD TABLE OF KONW, "   
lv_pi_exp_scales  TYPE XFELD, "   
lt_pe_t_konp_non_del  TYPE STANDARD TABLE OF KONP, "   
lt_pe_t_konm_non_del  TYPE STANDARD TABLE OF KONM, "   
lt_pe_t_konw_non_del  TYPE STANDARD TABLE OF KONW. "   

  CALL FUNCTION 'CONDS_DATA_PER_OBJECT_PROVIDE'  "NOTRANSL: Spezifizierte Konditionssatzdaten für Archivierungsobjekt bereit
    EXPORTING
         PI_ARCHIVE_HANDLE = lv_pi_archive_handle
         PI_ALL_DATA = lv_pi_all_data
         PI_KNUMH = lv_pi_knumh
         PI_EXP_SCALES = lv_pi_exp_scales
    TABLES
         PI_KNUMH_TAB = lt_pi_knumh_tab
         PE_T_KONP_DEL = lt_pe_t_konp_del
         PE_T_KONM_DEL = lt_pe_t_konm_del
         PE_T_KONW_DEL = lt_pe_t_konw_del
         PE_T_KONP_NON_DEL = lt_pe_t_konp_non_del
         PE_T_KONM_NON_DEL = lt_pe_t_konm_non_del
         PE_T_KONW_NON_DEL = lt_pe_t_konw_non_del
    EXCEPTIONS
        REQUEST_NOT_UNIQUE = 1
        ALL_REQUESTS_INITIAL = 2
. " CONDS_DATA_PER_OBJECT_PROVIDE




ABAP code using 7.40 inline data declarations to call FM CONDS_DATA_PER_OBJECT_PROVIDE

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 TABIX FROM SY INTO @DATA(ld_pi_archive_handle).
 
 
 
 
 
 
 
 
 
 
 
 


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!