SAP J_7L_PRICEANALYSIS_DISPLAY Function Module for NOTRANSL: REA: Anzeige Preislistenanalyse
J_7L_PRICEANALYSIS_DISPLAY is a standard j 7l priceanalysis display 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: REA: Anzeige Preislistenanalyse 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 j 7l priceanalysis display FM, simply by entering the name J_7L_PRICEANALYSIS_DISPLAY into the relevant SAP transaction such as SE37 or SE38.
Function Group: J7LL
Program Name: SAPLJ7LL
Main Program: SAPLJ7LL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function J_7L_PRICEANALYSIS_DISPLAY 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 'J_7L_PRICEANALYSIS_DISPLAY'"NOTRANSL: REA: Anzeige Preislistenanalyse.
EXPORTING
I_HEADER = "
* IS_CONTROL = "
* IS_LOGGER = "
I_FCODE = "
I_DATAB = "Date
I_DATBI = "Date
* IS_ARTICLE = "REA Article Master: Communication Structure Dialog Programs
* IS_PACKAGING = "REA Packaging Master: Communication Structure Dialog Progr.
* IS_COMPANYCODE = "REA Company Codes: Common Company Codes
* IS_PRICEFRML = "REA Communication Structure Price Calculation
* IS_PRICELIST = "REA Price List: Versions
TABLES
* IT_PRICETAB = "
IT_TABLE = "
EXCEPTIONS
PARAMETER_MISSING = 1 INTERNAL_ERROR = 2 NO_ENTRIES = 3
IMPORTING Parameters details for J_7L_PRICEANALYSIS_DISPLAY
I_HEADER -
Data type: COptional: No
Call by Reference: Yes
IS_CONTROL -
Data type: J_7LC09Optional: Yes
Call by Reference: Yes
IS_LOGGER -
Data type: J_7LCL_MWINDOW_LOGGEROptional: Yes
Call by Reference: Yes
I_FCODE -
Data type: COptional: No
Call by Reference: Yes
I_DATAB - Date
Data type: DATUMOptional: No
Call by Reference: Yes
I_DATBI - Date
Data type: DATUMOptional: No
Call by Reference: Yes
IS_ARTICLE - REA Article Master: Communication Structure Dialog Programs
Data type: J_7LKM1Optional: Yes
Call by Reference: Yes
IS_PACKAGING - REA Packaging Master: Communication Structure Dialog Progr.
Data type: J_7LKV1Optional: Yes
Call by Reference: Yes
IS_COMPANYCODE - REA Company Codes: Common Company Codes
Data type: J_7LC02Optional: Yes
Call by Reference: Yes
IS_PRICEFRML - REA Communication Structure Price Calculation
Data type: J_7LKP01Optional: Yes
Call by Reference: Yes
IS_PRICELIST - REA Price List: Versions
Data type: J_7LP01Optional: Yes
Call by Reference: Yes
TABLES Parameters details for J_7L_PRICEANALYSIS_DISPLAY
IT_PRICETAB -
Data type: TABLEOptional: Yes
Call by Reference: Yes
IT_TABLE -
Data type: TABLEOptional: No
Call by Reference: Yes
EXCEPTIONS details
PARAMETER_MISSING - Parameter missing
Data type:Optional: No
Call by Reference: Yes
INTERNAL_ERROR - Internal Processing Error
Data type:Optional: No
Call by Reference: Yes
NO_ENTRIES - No Entries Exist
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for J_7L_PRICEANALYSIS_DISPLAY 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_i_header | TYPE C, " | |||
| lt_it_pricetab | TYPE STANDARD TABLE OF TABLE, " | |||
| lv_parameter_missing | TYPE TABLE, " | |||
| lv_is_control | TYPE J_7LC09, " | |||
| lv_is_logger | TYPE J_7LCL_MWINDOW_LOGGER, " | |||
| lv_i_fcode | TYPE C, " | |||
| lt_it_table | TYPE STANDARD TABLE OF TABLE, " | |||
| lv_internal_error | TYPE TABLE, " | |||
| lv_i_datab | TYPE DATUM, " | |||
| lv_no_entries | TYPE DATUM, " | |||
| lv_i_datbi | TYPE DATUM, " | |||
| lv_is_article | TYPE J_7LKM1, " | |||
| lv_is_packaging | TYPE J_7LKV1, " | |||
| lv_is_companycode | TYPE J_7LC02, " | |||
| lv_is_pricefrml | TYPE J_7LKP01, " | |||
| lv_is_pricelist | TYPE J_7LP01. " |
|   CALL FUNCTION 'J_7L_PRICEANALYSIS_DISPLAY' "NOTRANSL: REA: Anzeige Preislistenanalyse |
| EXPORTING | ||
| I_HEADER | = lv_i_header | |
| IS_CONTROL | = lv_is_control | |
| IS_LOGGER | = lv_is_logger | |
| I_FCODE | = lv_i_fcode | |
| I_DATAB | = lv_i_datab | |
| I_DATBI | = lv_i_datbi | |
| IS_ARTICLE | = lv_is_article | |
| IS_PACKAGING | = lv_is_packaging | |
| IS_COMPANYCODE | = lv_is_companycode | |
| IS_PRICEFRML | = lv_is_pricefrml | |
| IS_PRICELIST | = lv_is_pricelist | |
| TABLES | ||
| IT_PRICETAB | = lt_it_pricetab | |
| IT_TABLE | = lt_it_table | |
| EXCEPTIONS | ||
| PARAMETER_MISSING = 1 | ||
| INTERNAL_ERROR = 2 | ||
| NO_ENTRIES = 3 | ||
| . " J_7L_PRICEANALYSIS_DISPLAY | ||
ABAP code using 7.40 inline data declarations to call FM J_7L_PRICEANALYSIS_DISPLAY
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