SAP SCMS_DOC_ADJUST Function Module for CMS: Adapt Document Format
SCMS_DOC_ADJUST is a standard scms doc adjust SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for CMS: Adapt Document Format 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 scms doc adjust FM, simply by entering the name SCMS_DOC_ADJUST into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCMS_API
Program Name: SAPLSCMS_API
Main Program: SAPLSCMS_API
Appliation area:
Release date: 02-Nov-2001
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SCMS_DOC_ADJUST 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 'SCMS_DOC_ADJUST'"CMS: Adapt Document Format.
EXPORTING
CREP_ID = "
DOCID = "
TABLES
REQ_ACCESS_INFO = "SCMS: Information on Document Contents in Internal Tables
ACCESS_INFO = "SCMS: Information on Document Contents in Internal Tables
CONTENT_TXT = "SDOK: Line of text document content for WWW server
CONTENT_BIN = "SDOK: Line of binary document content for WWW server
EXCEPTIONS
ERROR_PARAMETER = 1 COMP_MISSING = 2 ERROR = 3
IMPORTING Parameters details for SCMS_DOC_ADJUST
CREP_ID -
Data type: COptional: No
Call by Reference: Yes
DOCID -
Data type: COptional: No
Call by Reference: Yes
TABLES Parameters details for SCMS_DOC_ADJUST
REQ_ACCESS_INFO - SCMS: Information on Document Contents in Internal Tables
Data type: SCMS_ACINFOptional: No
Call by Reference: Yes
ACCESS_INFO - SCMS: Information on Document Contents in Internal Tables
Data type: SCMS_ACINFOptional: No
Call by Reference: Yes
CONTENT_TXT - SDOK: Line of text document content for WWW server
Data type: SDOKCNTASCOptional: No
Call by Reference: Yes
CONTENT_BIN - SDOK: Line of binary document content for WWW server
Data type: SDOKCNTBINOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR_PARAMETER - Parameter error
Data type:Optional: No
Call by Reference: Yes
COMP_MISSING - Component Missing
Data type:Optional: No
Call by Reference: Yes
ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SCMS_DOC_ADJUST 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_crep_id | TYPE C, " | |||
| lv_error_parameter | TYPE C, " | |||
| lt_req_access_info | TYPE STANDARD TABLE OF SCMS_ACINF, " | |||
| lv_docid | TYPE C, " | |||
| lt_access_info | TYPE STANDARD TABLE OF SCMS_ACINF, " | |||
| lv_comp_missing | TYPE SCMS_ACINF, " | |||
| lv_error | TYPE SCMS_ACINF, " | |||
| lt_content_txt | TYPE STANDARD TABLE OF SDOKCNTASC, " | |||
| lt_content_bin | TYPE STANDARD TABLE OF SDOKCNTBIN. " |
|   CALL FUNCTION 'SCMS_DOC_ADJUST' "CMS: Adapt Document Format |
| EXPORTING | ||
| CREP_ID | = lv_crep_id | |
| DOCID | = lv_docid | |
| TABLES | ||
| REQ_ACCESS_INFO | = lt_req_access_info | |
| ACCESS_INFO | = lt_access_info | |
| CONTENT_TXT | = lt_content_txt | |
| CONTENT_BIN | = lt_content_bin | |
| EXCEPTIONS | ||
| ERROR_PARAMETER = 1 | ||
| COMP_MISSING = 2 | ||
| ERROR = 3 | ||
| . " SCMS_DOC_ADJUST | ||
ABAP code using 7.40 inline data declarations to call FM SCMS_DOC_ADJUST
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