SAP Function Modules

J_8A3_C_CENTRAL_SEQUENCE SAP Function module - Central sequence for IXOS-DesktopLink Version >= 5.0B







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
Normal function module settings


Pattern for FM J_8A3_C_CENTRAL_SEQUENCE - J 8A3 C CENTRAL SEQUENCE





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

ABAP code example for Function Module 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).

DATA:
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 .

DATA(ld_pc_ole_appl) = 'Check type of data required'.
DATA(ld_pc_ole_table) = 'Check type of data required'.
DATA(ld_pc_ole_enumerator) = 'Check type of data required'.

DATA(ld_pi_objecttype) = some text here

DATA(ld_pi_objectid) = some text here

"populate fields of struture and append to itab
append wa_pt_parameter_ix to it_pt_parameter_ix.

"populate fields of struture and append to itab
append wa_pt_object to it_pt_object. . CALL FUNCTION 'J_8A3_C_CENTRAL_SEQUENCE' EXPORTING pi_objecttype = ld_pi_objecttype pi_objectid = ld_pi_objectid TABLES pt_parameter_ix = it_pt_parameter_ix pt_object = it_pt_object CHANGING pc_ole_appl = ld_pc_ole_appl pc_ole_table = ld_pc_ole_table pc_ole_enumerator = ld_pc_ole_enumerator 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 LARS_MISSING_PORT = 11 LARS_MISSING_SERVICE = 12 LARS_VERSION_NOT_MAINTAINED = 13 LARS_CUSTOMIZING_MISSING = 14 LARS_RENDITION_ERROR = 15 LARS_SYSTEM_FAILURE = 16 LARS_COMMUNICATION_ERROR = 17 LARS_ERROR = 18 . " J_8A3_C_CENTRAL_SEQUENCE
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 3. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 4. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 5. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 6. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 7. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 8. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 9. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 10. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 11. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 12. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 13. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 14. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 15. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 16. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 17. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 18. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

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 .

ld_pc_ole_appl = 'Check type of data required'.

ld_pi_objecttype = some text here

"populate fields of struture and append to itab
append wa_pt_parameter_ix to it_pt_parameter_ix.
ld_pc_ole_table = 'Check type of data required'.

ld_pi_objectid = some text here

"populate fields of struture and append to itab
append wa_pt_object to it_pt_object.
ld_pc_ole_enumerator = 'Check type of data required'.

Contribute (Add Comments)

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.