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

Function CMX_OTHER_USAGES_SHOW_OBJECT 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 'CMX_OTHER_USAGES_SHOW_OBJECT'"Details.
EXPORTING
IS_OBJECT = "Object List for Where-Used List for Chars and Char. Values
TABLES
* ICOCFVD = "PI Characteristics for Process Orders with External Key
* ICOFTP = "PI Sheet: Process Instructions
* ICOMH = "PP-PI: Header Data for Process Messages
* ICOMHR = "Process Message Record: Message Header Data
* ICORP = "Process Management: Evaluation Versions
* ITC50 = "Generated Table for View V_TC50_1
* ITC58 = "Generated Table for View V_TC58
IMPORTING Parameters details for CMX_OTHER_USAGES_SHOW_OBJECT
IS_OBJECT - Object List for Where-Used List for Chars and Char. Values
Data type: CTWUL_OUTPUTOptional: No
Call by Reference: Yes
TABLES Parameters details for CMX_OTHER_USAGES_SHOW_OBJECT
ICOCFVD - PI Characteristics for Process Orders with External Key
Data type: RCOCFVDOptional: Yes
Call by Reference: Yes
ICOFTP - PI Sheet: Process Instructions
Data type: COFTPOptional: Yes
Call by Reference: Yes
ICOMH - PP-PI: Header Data for Process Messages
Data type: COMHOptional: Yes
Call by Reference: Yes
ICOMHR - Process Message Record: Message Header Data
Data type: COMHROptional: Yes
Call by Reference: Yes
ICORP - Process Management: Evaluation Versions
Data type: CORPOptional: Yes
Call by Reference: Yes
ITC50 - Generated Table for View V_TC50_1
Data type: V_TC50_1Optional: Yes
Call by Reference: Yes
ITC58 - Generated Table for View V_TC58
Data type: V_TC58Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for CMX_OTHER_USAGES_SHOW_OBJECT 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_icocfvd | TYPE STANDARD TABLE OF RCOCFVD, " | |||
| lv_is_object | TYPE CTWUL_OUTPUT, " | |||
| lt_icoftp | TYPE STANDARD TABLE OF COFTP, " | |||
| lt_icomh | TYPE STANDARD TABLE OF COMH, " | |||
| lt_icomhr | TYPE STANDARD TABLE OF COMHR, " | |||
| lt_icorp | TYPE STANDARD TABLE OF CORP, " | |||
| lt_itc50 | TYPE STANDARD TABLE OF V_TC50_1, " | |||
| lt_itc58 | TYPE STANDARD TABLE OF V_TC58. " |
|   CALL FUNCTION 'CMX_OTHER_USAGES_SHOW_OBJECT' "Details |
| EXPORTING | ||
| IS_OBJECT | = lv_is_object | |
| TABLES | ||
| ICOCFVD | = lt_icocfvd | |
| ICOFTP | = lt_icoftp | |
| ICOMH | = lt_icomh | |
| ICOMHR | = lt_icomhr | |
| ICORP | = lt_icorp | |
| ITC50 | = lt_itc50 | |
| ITC58 | = lt_itc58 | |
| . " CMX_OTHER_USAGES_SHOW_OBJECT | ||
ABAP code using 7.40 inline data declarations to call FM CMX_OTHER_USAGES_SHOW_OBJECT
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