SAP CIIC_PM_SETTINGS_INSERT_DB Function Module for NOTRANSL: Einfügen von Customizingeinstellungen der Prozeßkoordination
CIIC_PM_SETTINGS_INSERT_DB is a standard ciic pm settings insert db 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: Einfügen von Customizingeinstellungen der Prozeßkoordination 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 ciic pm settings insert db FM, simply by entering the name CIIC_PM_SETTINGS_INSERT_DB into the relevant SAP transaction such as SE37 or SE38.
Function Group: CIIC
Program Name: SAPLCIIC
Main Program:
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update: 3

Function CIIC_PM_SETTINGS_INSERT_DB 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 'CIIC_PM_SETTINGS_INSERT_DB'"NOTRANSL: Einfügen von Customizingeinstellungen der Prozeßkoordination.
TABLES
XTC50 = "PP-PI: Proc.Message Categories/ Proc.Instruction Categories
XTC52 = "Control Recipe Destinations
XTC57 = "Assignment of Process Instructions to Ctrl Recipe Destinatns
XTC52A = "Customizing of Process Instruction Positions in PI Sheet
XTC53 = "Characteristics Groups for Process Messages and Instructions
XTC51 = "Process Management: Destinations
XTC55 = "Destination-Specific Target Fields for Message Destinations
XTC50T = "Process Message/Instr. Categories: Lang.-Dependent Texts
XTC51T = "Message Destinatiosn: Language-Dependent Texts
XTC55T = "Destination-Specific Target Fields: Language-Dependent Texts
XTC50C = "Characteristics for Process Messages / Process Instructions
XTC50D = "Process Management: Message Destinations
XTC50P = "Message Characteristics for Dest.-Specific Target Fields
TABLES Parameters details for CIIC_PM_SETTINGS_INSERT_DB
XTC50 - PP-PI: Proc.Message Categories/ Proc.Instruction Categories
Data type: TC50Optional: No
Call by Reference: No ( called with pass by value option)
XTC52 - Control Recipe Destinations
Data type: TC52Optional: No
Call by Reference: No ( called with pass by value option)
XTC57 - Assignment of Process Instructions to Ctrl Recipe Destinatns
Data type: TC57Optional: No
Call by Reference: No ( called with pass by value option)
XTC52A - Customizing of Process Instruction Positions in PI Sheet
Data type: TC52AOptional: No
Call by Reference: No ( called with pass by value option)
XTC53 - Characteristics Groups for Process Messages and Instructions
Data type: TC53Optional: No
Call by Reference: No ( called with pass by value option)
XTC51 - Process Management: Destinations
Data type: TC51Optional: No
Call by Reference: No ( called with pass by value option)
XTC55 - Destination-Specific Target Fields for Message Destinations
Data type: TC55Optional: No
Call by Reference: No ( called with pass by value option)
XTC50T - Process Message/Instr. Categories: Lang.-Dependent Texts
Data type: TC50TOptional: No
Call by Reference: No ( called with pass by value option)
XTC51T - Message Destinatiosn: Language-Dependent Texts
Data type: TC51TOptional: No
Call by Reference: No ( called with pass by value option)
XTC55T - Destination-Specific Target Fields: Language-Dependent Texts
Data type: TC55TOptional: No
Call by Reference: No ( called with pass by value option)
XTC50C - Characteristics for Process Messages / Process Instructions
Data type: TC50COptional: No
Call by Reference: No ( called with pass by value option)
XTC50D - Process Management: Message Destinations
Data type: TC50DOptional: No
Call by Reference: No ( called with pass by value option)
XTC50P - Message Characteristics for Dest.-Specific Target Fields
Data type: TC50POptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CIIC_PM_SETTINGS_INSERT_DB 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_xtc50 | TYPE STANDARD TABLE OF TC50, " | |||
| lt_xtc52 | TYPE STANDARD TABLE OF TC52, " | |||
| lt_xtc57 | TYPE STANDARD TABLE OF TC57, " | |||
| lt_xtc52a | TYPE STANDARD TABLE OF TC52A, " | |||
| lt_xtc53 | TYPE STANDARD TABLE OF TC53, " | |||
| lt_xtc51 | TYPE STANDARD TABLE OF TC51, " | |||
| lt_xtc55 | TYPE STANDARD TABLE OF TC55, " | |||
| lt_xtc50t | TYPE STANDARD TABLE OF TC50T, " | |||
| lt_xtc51t | TYPE STANDARD TABLE OF TC51T, " | |||
| lt_xtc55t | TYPE STANDARD TABLE OF TC55T, " | |||
| lt_xtc50c | TYPE STANDARD TABLE OF TC50C, " | |||
| lt_xtc50d | TYPE STANDARD TABLE OF TC50D, " | |||
| lt_xtc50p | TYPE STANDARD TABLE OF TC50P. " |
|   CALL FUNCTION 'CIIC_PM_SETTINGS_INSERT_DB' "NOTRANSL: Einfügen von Customizingeinstellungen der Prozeßkoordination |
| TABLES | ||
| XTC50 | = lt_xtc50 | |
| XTC52 | = lt_xtc52 | |
| XTC57 | = lt_xtc57 | |
| XTC52A | = lt_xtc52a | |
| XTC53 | = lt_xtc53 | |
| XTC51 | = lt_xtc51 | |
| XTC55 | = lt_xtc55 | |
| XTC50T | = lt_xtc50t | |
| XTC51T | = lt_xtc51t | |
| XTC55T | = lt_xtc55t | |
| XTC50C | = lt_xtc50c | |
| XTC50D | = lt_xtc50d | |
| XTC50P | = lt_xtc50p | |
| . " CIIC_PM_SETTINGS_INSERT_DB | ||
ABAP code using 7.40 inline data declarations to call FM CIIC_PM_SETTINGS_INSERT_DB
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