SAP TEM_RAW_EXPOSURE_MAINTAIN_UI Function Module for Display and Maintenance of Raw Exposure
TEM_RAW_EXPOSURE_MAINTAIN_UI is a standard tem raw exposure maintain ui SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Display and Maintenance of Raw Exposure 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 tem raw exposure maintain ui FM, simply by entering the name TEM_RAW_EXPOSURE_MAINTAIN_UI into the relevant SAP transaction such as SE37 or SE38.
Function Group: TEM_RAW_EXPOSURE_UI
Program Name: SAPLTEM_RAW_EXPOSURE_UI
Main Program: SAPLTEM_RAW_EXPOSURE_UI
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TEM_RAW_EXPOSURE_MAINTAIN_UI 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 'TEM_RAW_EXPOSURE_MAINTAIN_UI'"Display and Maintenance of Raw Exposure.
EXPORTING
IM_MODE = "1=Nur Eingabe; 2=Planungsprofil;3=Attribute; 4=Anzeige
IM_TAB_RAWEXPOS_UI = "Table of Raw Exposures
* IM_TAB_IRRELEVANT_FIELD = "Logical DB Field Selection: Field Name
* IM_PLANNING_PROFILE = "Planning Profile
* IM_VERSION_DATE = "Version Date
* IM_VARIANT = "Layout
IM_PROTOCOL_HANDLER = "Protocol Manager
* IM_FLG_SHOW_RELEASED = TEMCO_XTRUE "Freigegebene Exposures anzeigen
EXCEPTIONS
LOCKED = 1
IMPORTING Parameters details for TEM_RAW_EXPOSURE_MAINTAIN_UI
IM_MODE - 1=Nur Eingabe; 2=Planungsprofil;3=Attribute; 4=Anzeige
Data type: IOptional: No
Call by Reference: Yes
IM_TAB_RAWEXPOS_UI - Table of Raw Exposures
Data type: TEMY_RAWEXPOS_UIOptional: No
Call by Reference: Yes
IM_TAB_IRRELEVANT_FIELD - Logical DB Field Selection: Field Name
Data type: RSFSFIELDSTOptional: Yes
Call by Reference: Yes
IM_PLANNING_PROFILE - Planning Profile
Data type: TEM_PLANNING_PROFILEOptional: Yes
Call by Reference: Yes
IM_VERSION_DATE - Version Date
Data type: TEM_VERSION_DATEOptional: Yes
Call by Reference: Yes
IM_VARIANT - Layout
Data type: DISVARIANTOptional: Yes
Call by Reference: Yes
IM_PROTOCOL_HANDLER - Protocol Manager
Data type: CL_PROTOCOL_HANDLER_TRPOptional: No
Call by Reference: Yes
IM_FLG_SHOW_RELEASED - Freigegebene Exposures anzeigen
Data type: FLAGDefault: TEMCO_XTRUE
Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
LOCKED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for TEM_RAW_EXPOSURE_MAINTAIN_UI 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_locked | TYPE STRING, " | |||
| lv_im_mode | TYPE I, " | |||
| lv_im_tab_rawexpos_ui | TYPE TEMY_RAWEXPOS_UI, " | |||
| lv_im_tab_irrelevant_field | TYPE RSFSFIELDST, " | |||
| lv_im_planning_profile | TYPE TEM_PLANNING_PROFILE, " | |||
| lv_im_version_date | TYPE TEM_VERSION_DATE, " | |||
| lv_im_variant | TYPE DISVARIANT, " | |||
| lv_im_protocol_handler | TYPE CL_PROTOCOL_HANDLER_TRP, " | |||
| lv_im_flg_show_released | TYPE FLAG. " TEMCO_XTRUE |
|   CALL FUNCTION 'TEM_RAW_EXPOSURE_MAINTAIN_UI' "Display and Maintenance of Raw Exposure |
| EXPORTING | ||
| IM_MODE | = lv_im_mode | |
| IM_TAB_RAWEXPOS_UI | = lv_im_tab_rawexpos_ui | |
| IM_TAB_IRRELEVANT_FIELD | = lv_im_tab_irrelevant_field | |
| IM_PLANNING_PROFILE | = lv_im_planning_profile | |
| IM_VERSION_DATE | = lv_im_version_date | |
| IM_VARIANT | = lv_im_variant | |
| IM_PROTOCOL_HANDLER | = lv_im_protocol_handler | |
| IM_FLG_SHOW_RELEASED | = lv_im_flg_show_released | |
| EXCEPTIONS | ||
| LOCKED = 1 | ||
| . " TEM_RAW_EXPOSURE_MAINTAIN_UI | ||
ABAP code using 7.40 inline data declarations to call FM TEM_RAW_EXPOSURE_MAINTAIN_UI
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_im_flg_show_released) | = TEMCO_XTRUE. | |||
Search for further information about these or an SAP related objects