SAP CRM_INTLAY_PUT_INFO_APPLOG Function Module for
CRM_INTLAY_PUT_INFO_APPLOG is a standard crm intlay put info applog 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 crm intlay put info applog FM, simply by entering the name CRM_INTLAY_PUT_INFO_APPLOG into the relevant SAP transaction such as SE37 or SE38.
Function Group: CRM_INTLAY_APPLOG
Program Name: SAPLCRM_INTLAY_APPLOG
Main Program: SAPLCRM_INTLAY_APPLOG
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:
Function CRM_INTLAY_PUT_INFO_APPLOG 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 'CRM_INTLAY_PUT_INFO_APPLOG'".
EXPORTING
* IV_FIRST_CALL = "
* IV_PUT_FIRST_CALL = FALSE "Logical Variable
* IV_LOG_HANDLE = "Application Log: Log Handle
* IV_PUT_LOG_HANDLE = FALSE "Logical Variable
* IS_MESSAGE_INFO = "Information Structure via a Message Line
* IV_PUT_MESSAGE_INFO = FALSE "Logical Variable
IMPORTING Parameters details for CRM_INTLAY_PUT_INFO_APPLOG
IV_FIRST_CALL -
Data type: CRMT_BOOLEANOptional: Yes
Call by Reference: Yes
IV_PUT_FIRST_CALL - Logical Variable
Data type: CRMT_BOOLEANDefault: FALSE
Optional: Yes
Call by Reference: Yes
IV_LOG_HANDLE - Application Log: Log Handle
Data type: BALLOGHNDLOptional: Yes
Call by Reference: Yes
IV_PUT_LOG_HANDLE - Logical Variable
Data type: CRMT_BOOLEANDefault: FALSE
Optional: Yes
Call by Reference: Yes
IS_MESSAGE_INFO - Information Structure via a Message Line
Data type: CRMT_MSG_INFOOptional: Yes
Call by Reference: Yes
IV_PUT_MESSAGE_INFO - Logical Variable
Data type: CRMT_BOOLEANDefault: FALSE
Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for CRM_INTLAY_PUT_INFO_APPLOG 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_iv_first_call | TYPE CRMT_BOOLEAN, " | |||
lv_iv_put_first_call | TYPE CRMT_BOOLEAN, " FALSE | |||
lv_iv_log_handle | TYPE BALLOGHNDL, " | |||
lv_iv_put_log_handle | TYPE CRMT_BOOLEAN, " FALSE | |||
lv_is_message_info | TYPE CRMT_MSG_INFO, " | |||
lv_iv_put_message_info | TYPE CRMT_BOOLEAN. " FALSE |
  CALL FUNCTION 'CRM_INTLAY_PUT_INFO_APPLOG' " |
EXPORTING | ||
IV_FIRST_CALL | = lv_iv_first_call | |
IV_PUT_FIRST_CALL | = lv_iv_put_first_call | |
IV_LOG_HANDLE | = lv_iv_log_handle | |
IV_PUT_LOG_HANDLE | = lv_iv_put_log_handle | |
IS_MESSAGE_INFO | = lv_is_message_info | |
IV_PUT_MESSAGE_INFO | = lv_iv_put_message_info | |
. " CRM_INTLAY_PUT_INFO_APPLOG |
ABAP code using 7.40 inline data declarations to call FM CRM_INTLAY_PUT_INFO_APPLOG
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_iv_put_first_call) | = FALSE. | |||
DATA(ld_iv_put_log_handle) | = FALSE. | |||
DATA(ld_iv_put_message_info) | = FALSE. | |||
Search for further information about these or an SAP related objects