J_8A3_C_CENTRAL_SEQUENCE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name J_8A3_C_CENTRAL_SEQUENCE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
J8A3
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'J_8A3_C_CENTRAL_SEQUENCE' "Central sequence for IXOS-DesktopLink Version >= 5.0B
EXPORTING
pi_objecttype = " swotobjid-objtype
pi_objectid = " swotobjid-objkey
TABLES
pt_parameter_ix = " j_8a3s0005
pt_object = " objectconn
CHANGING
pc_ole_appl = " obj_record
pc_ole_table = " obj_record
pc_ole_enumerator = " obj_record
EXCEPTIONS
NO_AUTHORITY = 1 "
NOT_FOUND = 2 "
USER_CANCEL = 3 "
ERROR_OLE_CONNECTION = 4 "
INTERNAL_ERROR = 5 "
PROBLEM_CREATING_LINK_ENTRY = 6 "
PROBLEM_CREATING_WORK_ITEM = 7 "
DOCUMENT_LOCKED = 8 "
END = 9 "
LARS_HOSTNAME = 10 " Hostname of Lars is missing
LARS_MISSING_PORT = 11 " Lars port is not customized
LARS_MISSING_SERVICE = 12 " LARS Service is not maintained
LARS_VERSION_NOT_MAINTAINED = 13 " Lars version is missing
LARS_CUSTOMIZING_MISSING = 14 " Lars is not customized
LARS_RENDITION_ERROR = 15 " Error during rendition
LARS_SYSTEM_FAILURE = 16 " Lars system failure
LARS_COMMUNICATION_ERROR = 17 " HTTP comunication error
LARS_ERROR = 18 " undefined error of LARS
. " J_8A3_C_CENTRAL_SEQUENCE
The ABAP code below is a full code listing to execute function module J_8A3_C_CENTRAL_SEQUENCE including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_pt_parameter_ix | TYPE STANDARD TABLE OF J_8A3S0005,"TABLES PARAM |
| wa_pt_parameter_ix | LIKE LINE OF it_pt_parameter_ix , |
| it_pt_object | TYPE STANDARD TABLE OF OBJECTCONN,"TABLES PARAM |
| wa_pt_object | LIKE LINE OF it_pt_object . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_pc_ole_appl | TYPE OBJ_RECORD , |
| ld_pi_objecttype | TYPE SWOTOBJID-OBJTYPE , |
| it_pt_parameter_ix | TYPE STANDARD TABLE OF J_8A3S0005 , |
| wa_pt_parameter_ix | LIKE LINE OF it_pt_parameter_ix, |
| ld_pc_ole_table | TYPE OBJ_RECORD , |
| ld_pi_objectid | TYPE SWOTOBJID-OBJKEY , |
| it_pt_object | TYPE STANDARD TABLE OF OBJECTCONN , |
| wa_pt_object | LIKE LINE OF it_pt_object, |
| ld_pc_ole_enumerator | TYPE OBJ_RECORD . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name J_8A3_C_CENTRAL_SEQUENCE or its description.
J_8A3_C_CENTRAL_SEQUENCE - Central sequence for IXOS-DesktopLink Version >= 5.0B J_8A3_C_ARCHIVING_VIA_OLE - Archiving via OLE J_8A3_CUX_SELECT_KEY - Model for Customerexit 'KEY' J_8A3_CUX_INSERT_INTO_TABLES - Model for Customerexit 'INSE' J_8A3_CUX_GET_ARCHIV_OBJECT - Model for Customerexit 'GET' J_8A3_CHECK_SAP_RELEASE - Check, whether actuall SAP-Release lays in from-to range