SAP SOC_POST_MODIFY Function Module for Post Modify Function
SOC_POST_MODIFY is a standard soc post modify SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Post Modify Function 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 soc post modify FM, simply by entering the name SOC_POST_MODIFY into the relevant SAP transaction such as SE37 or SE38.
Function Group: CRM_SOC_DB
Program Name: SAPLCRM_SOC_DB
Main Program: SAPLCRM_SOC_DB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SOC_POST_MODIFY 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 'SOC_POST_MODIFY'"Post Modify Function.
EXPORTING
IV_GUID = "Object GUID in Generic Interaction Layer
IS_ATTRIBUTES = "Social Media Data
IT_CHANGED_FIELDS = "Table of Attribute Names
EXCEPTIONS
TARGET_POST_NOT_EXISTED = 1 MODIFY_POST_NOT_SUCCESSFUL = 2 AUTHORIZATION_CHECK_FAILS = 3
IMPORTING Parameters details for SOC_POST_MODIFY
IV_GUID - Object GUID in Generic Interaction Layer
Data type: CRMT_GENIL_OBJECT_GUIDOptional: No
Call by Reference: Yes
IS_ATTRIBUTES - Social Media Data
Data type: CRMT_SOC_POST_ATTROptional: No
Call by Reference: Yes
IT_CHANGED_FIELDS - Table of Attribute Names
Data type: CRMT_ATTR_NAME_TABOptional: No
Call by Reference: Yes
EXCEPTIONS details
TARGET_POST_NOT_EXISTED - target post not existed
Data type:Optional: No
Call by Reference: Yes
MODIFY_POST_NOT_SUCCESSFUL - modify target post not successful
Data type:Optional: No
Call by Reference: Yes
AUTHORIZATION_CHECK_FAILS - Authorization check fails
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SOC_POST_MODIFY 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_guid | TYPE CRMT_GENIL_OBJECT_GUID, " | |||
| lv_target_post_not_existed | TYPE CRMT_GENIL_OBJECT_GUID, " | |||
| lv_is_attributes | TYPE CRMT_SOC_POST_ATTR, " | |||
| lv_modify_post_not_successful | TYPE CRMT_SOC_POST_ATTR, " | |||
| lv_it_changed_fields | TYPE CRMT_ATTR_NAME_TAB, " | |||
| lv_authorization_check_fails | TYPE CRMT_ATTR_NAME_TAB. " |
|   CALL FUNCTION 'SOC_POST_MODIFY' "Post Modify Function |
| EXPORTING | ||
| IV_GUID | = lv_iv_guid | |
| IS_ATTRIBUTES | = lv_is_attributes | |
| IT_CHANGED_FIELDS | = lv_it_changed_fields | |
| EXCEPTIONS | ||
| TARGET_POST_NOT_EXISTED = 1 | ||
| MODIFY_POST_NOT_SUCCESSFUL = 2 | ||
| AUTHORIZATION_CHECK_FAILS = 3 | ||
| . " SOC_POST_MODIFY | ||
ABAP code using 7.40 inline data declarations to call FM SOC_POST_MODIFY
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