SAP /AIN/DM_AOBJ_CTX_DELETE_BY_FIE Function Module for Delete acion object ctx from the DB a field (deleted - DO NOT USE)
/AIN/DM_AOBJ_CTX_DELETE_BY_FIE is a standard /ain/dm aobj ctx delete by fie SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Delete acion object ctx from the DB a field (deleted - DO NOT USE) 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 /ain/dm aobj ctx delete by fie FM, simply by entering the name /AIN/DM_AOBJ_CTX_DELETE_BY_FIE into the relevant SAP transaction such as SE37 or SE38.
Function Group: /AIN/DM_ACTION
Program Name: /AIN/SAPLDM_ACTION
Main Program: /AIN/SAPLDM_ACTION
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function /AIN/DM_AOBJ_CTX_DELETE_BY_FIE 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 '/AIN/DM_AOBJ_CTX_DELETE_BY_FIE'"Delete acion object ctx from the DB a field (deleted - DO NOT USE).
EXPORTING
IV_ACT_GUID = "Action GUID
IV_OBJ_GUID = "Object GUID
IV_FIELD_NAME = "Element name
EXCEPTIONS
ACT_OBJ_CONTEXT_NOT_FOUND = 1 OPEN_SQL_ERROR = 2 INSUFFICIENT_DATA = 3 ERROR_DELETING_ACT_OBJ_CONTEXT = 4
IMPORTING Parameters details for /AIN/DM_AOBJ_CTX_DELETE_BY_FIE
IV_ACT_GUID - Action GUID
Data type: /AIN/DM_ACT_GUIDOptional: No
Call by Reference: Yes
IV_OBJ_GUID - Object GUID
Data type: /AIN/DM_OBJ_GUIDOptional: No
Call by Reference: Yes
IV_FIELD_NAME - Element name
Data type: /AIN/PRF_ELEMENTOptional: No
Call by Reference: Yes
EXCEPTIONS details
ACT_OBJ_CONTEXT_NOT_FOUND - Action object contexts do not exist in the database
Data type:Optional: No
Call by Reference: Yes
OPEN_SQL_ERROR - An Open SQL exception occurred
Data type:Optional: No
Call by Reference: Yes
INSUFFICIENT_DATA - Insufficient input data
Data type:Optional: No
Call by Reference: Yes
ERROR_DELETING_ACT_OBJ_CONTEXT - Error while deleting action object contexts
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for /AIN/DM_AOBJ_CTX_DELETE_BY_FIE 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_act_guid | TYPE /AIN/DM_ACT_GUID, " | |||
| lv_act_obj_context_not_found | TYPE /AIN/DM_ACT_GUID, " | |||
| lv_iv_obj_guid | TYPE /AIN/DM_OBJ_GUID, " | |||
| lv_open_sql_error | TYPE /AIN/DM_OBJ_GUID, " | |||
| lv_iv_field_name | TYPE /AIN/PRF_ELEMENT, " | |||
| lv_insufficient_data | TYPE /AIN/PRF_ELEMENT, " | |||
| lv_error_deleting_act_obj_context | TYPE /AIN/PRF_ELEMENT. " |
|   CALL FUNCTION '/AIN/DM_AOBJ_CTX_DELETE_BY_FIE' "Delete acion object ctx from the DB a field (deleted - DO NOT USE) |
| EXPORTING | ||
| IV_ACT_GUID | = lv_iv_act_guid | |
| IV_OBJ_GUID | = lv_iv_obj_guid | |
| IV_FIELD_NAME | = lv_iv_field_name | |
| EXCEPTIONS | ||
| ACT_OBJ_CONTEXT_NOT_FOUND = 1 | ||
| OPEN_SQL_ERROR = 2 | ||
| INSUFFICIENT_DATA = 3 | ||
| ERROR_DELETING_ACT_OBJ_CONTEXT = 4 | ||
| . " /AIN/DM_AOBJ_CTX_DELETE_BY_FIE | ||
ABAP code using 7.40 inline data declarations to call FM /AIN/DM_AOBJ_CTX_DELETE_BY_FIE
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