SAP J_8AM_ARCHIV_FILE_OBJECT_CONN Function Module for









J_8AM_ARCHIV_FILE_OBJECT_CONN is a standard j 8am archiv file object conn SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 j 8am archiv file object conn FM, simply by entering the name J_8AM_ARCHIV_FILE_OBJECT_CONN into the relevant SAP transaction such as SE37 or SE38.

Function Group: J8AM
Program Name: SAPLJ8AM
Main Program: SAPLJ8AM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function J_8AM_ARCHIV_FILE_OBJECT_CONN 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 'J_8AM_ARCHIV_FILE_OBJECT_CONN'"
EXPORTING
* OBJECTTYPE = ' ' "
* OBJECTID = ' ' "

TABLES
OBJECT = "
PARAMETER = "

EXCEPTIONS
NOT_FOUND = 1 ERROR_GET_FILENAME = 1 ERROR_ARCHIV_DTFILE_SAVE = 10 ERROR_CONVERSION_OR_ARCHIVING = 11 USER_CANCEL = 14 NO_AUTHORITY = 2 FILE_HAS_NO_SUFFIX = 2 NO_DOC_CLASS_LIKE_SUFFIX = 3 NO_DOC_TYPES_WITH_DOC_CLASS = 4 NO_DOCUMENT_TYPES_IN_LINKTABLE = 5 ERROR_READING_HITLIST = 6 ERROR_GET_CONVERTER = 7 NO_REPORT_NUMBER_FOR_COLD_TYPE = 8 ERROR_ARCHIV_CONNECTION_INSERT = 9
.



IMPORTING Parameters details for J_8AM_ARCHIV_FILE_OBJECT_CONN

OBJECTTYPE -

Data type: SWOTOBJID-OBJTYPE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

OBJECTID -

Data type: SWOTOBJID-OBJKEY
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for J_8AM_ARCHIV_FILE_OBJECT_CONN

OBJECT -

Data type: OBJECTCONN
Optional: No
Call by Reference: No ( called with pass by value option)

PARAMETER -

Data type: PARAMETERS
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NOT_FOUND -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_GET_FILENAME -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_ARCHIV_DTFILE_SAVE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_CONVERSION_OR_ARCHIVING -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

USER_CANCEL -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_AUTHORITY -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

FILE_HAS_NO_SUFFIX -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_DOC_CLASS_LIKE_SUFFIX -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_DOC_TYPES_WITH_DOC_CLASS -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_DOCUMENT_TYPES_IN_LINKTABLE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_READING_HITLIST -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_GET_CONVERTER -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_REPORT_NUMBER_FOR_COLD_TYPE -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_ARCHIV_CONNECTION_INSERT -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for J_8AM_ARCHIV_FILE_OBJECT_CONN 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_object  TYPE STANDARD TABLE OF OBJECTCONN, "   
lv_not_found  TYPE OBJECTCONN, "   
lv_objecttype  TYPE SWOTOBJID-OBJTYPE, "   SPACE
lv_error_get_filename  TYPE SWOTOBJID, "   
lv_error_archiv_dtfile_save  TYPE SWOTOBJID, "   
lv_error_conversion_or_archiving  TYPE SWOTOBJID, "   
lv_user_cancel  TYPE SWOTOBJID, "   
lv_objectid  TYPE SWOTOBJID-OBJKEY, "   SPACE
lt_parameter  TYPE STANDARD TABLE OF PARAMETERS, "   
lv_no_authority  TYPE PARAMETERS, "   
lv_file_has_no_suffix  TYPE PARAMETERS, "   
lv_no_doc_class_like_suffix  TYPE PARAMETERS, "   
lv_no_doc_types_with_doc_class  TYPE PARAMETERS, "   
lv_no_document_types_in_linktable  TYPE PARAMETERS, "   
lv_error_reading_hitlist  TYPE PARAMETERS, "   
lv_error_get_converter  TYPE PARAMETERS, "   
lv_no_report_number_for_cold_type  TYPE PARAMETERS, "   
lv_error_archiv_connection_insert  TYPE PARAMETERS. "   

  CALL FUNCTION 'J_8AM_ARCHIV_FILE_OBJECT_CONN'  "
    EXPORTING
         OBJECTTYPE = lv_objecttype
         OBJECTID = lv_objectid
    TABLES
         OBJECT = lt_object
         PARAMETER = lt_parameter
    EXCEPTIONS
        NOT_FOUND = 1
        ERROR_GET_FILENAME = 1
        ERROR_ARCHIV_DTFILE_SAVE = 10
        ERROR_CONVERSION_OR_ARCHIVING = 11
        USER_CANCEL = 14
        NO_AUTHORITY = 2
        FILE_HAS_NO_SUFFIX = 2
        NO_DOC_CLASS_LIKE_SUFFIX = 3
        NO_DOC_TYPES_WITH_DOC_CLASS = 4
        NO_DOCUMENT_TYPES_IN_LINKTABLE = 5
        ERROR_READING_HITLIST = 6
        ERROR_GET_CONVERTER = 7
        NO_REPORT_NUMBER_FOR_COLD_TYPE = 8
        ERROR_ARCHIV_CONNECTION_INSERT = 9
. " J_8AM_ARCHIV_FILE_OBJECT_CONN




ABAP code using 7.40 inline data declarations to call FM J_8AM_ARCHIV_FILE_OBJECT_CONN

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.

 
 
"SELECT single OBJTYPE FROM SWOTOBJID INTO @DATA(ld_objecttype).
DATA(ld_objecttype) = ' '.
 
 
 
 
 
"SELECT single OBJKEY FROM SWOTOBJID INTO @DATA(ld_objectid).
DATA(ld_objectid) = ' '.
 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!