ISU_READ_SINGLE_BBP_FROM_ARCH 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 ISU_READ_SINGLE_BBP_FROM_ARCH into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
E26C
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISU_READ_SINGLE_BBP_FROM_ARCH' "Internal: Read Budget Billing Plan from Archive
EXPORTING
x_archivekey = " admi_files-archiv_key Archive File
x_offset = " arch_idx-offset Offset of Data Object in File
TABLES
yt_eabp = " eabp Budget Billing Plan
yt_fkkop = " fkkop
yt_fkkopw = " fkkopw
yt_ejvl = " ejvl
* yt_eabpl = " eabpl
* yt_eabplreq = " eabplreq
* yt_epslreqs = " epslreqs
EXCEPTIONS
NOT_FOUND = 1 "
INTERNAL_ERROR = 2 "
. " ISU_READ_SINGLE_BBP_FROM_ARCH
The ABAP code below is a full code listing to execute function module ISU_READ_SINGLE_BBP_FROM_ARCH 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_yt_eabp | TYPE STANDARD TABLE OF EABP,"TABLES PARAM |
| wa_yt_eabp | LIKE LINE OF it_yt_eabp , |
| it_yt_fkkop | TYPE STANDARD TABLE OF FKKOP,"TABLES PARAM |
| wa_yt_fkkop | LIKE LINE OF it_yt_fkkop , |
| it_yt_fkkopw | TYPE STANDARD TABLE OF FKKOPW,"TABLES PARAM |
| wa_yt_fkkopw | LIKE LINE OF it_yt_fkkopw , |
| it_yt_ejvl | TYPE STANDARD TABLE OF EJVL,"TABLES PARAM |
| wa_yt_ejvl | LIKE LINE OF it_yt_ejvl , |
| it_yt_eabpl | TYPE STANDARD TABLE OF EABPL,"TABLES PARAM |
| wa_yt_eabpl | LIKE LINE OF it_yt_eabpl , |
| it_yt_eabplreq | TYPE STANDARD TABLE OF EABPLREQ,"TABLES PARAM |
| wa_yt_eabplreq | LIKE LINE OF it_yt_eabplreq , |
| it_yt_epslreqs | TYPE STANDARD TABLE OF EPSLREQS,"TABLES PARAM |
| wa_yt_epslreqs | LIKE LINE OF it_yt_epslreqs . |
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_x_archivekey | TYPE ADMI_FILES-ARCHIV_KEY , |
| it_yt_eabp | TYPE STANDARD TABLE OF EABP , |
| wa_yt_eabp | LIKE LINE OF it_yt_eabp, |
| ld_x_offset | TYPE ARCH_IDX-OFFSET , |
| it_yt_fkkop | TYPE STANDARD TABLE OF FKKOP , |
| wa_yt_fkkop | LIKE LINE OF it_yt_fkkop, |
| it_yt_fkkopw | TYPE STANDARD TABLE OF FKKOPW , |
| wa_yt_fkkopw | LIKE LINE OF it_yt_fkkopw, |
| it_yt_ejvl | TYPE STANDARD TABLE OF EJVL , |
| wa_yt_ejvl | LIKE LINE OF it_yt_ejvl, |
| it_yt_eabpl | TYPE STANDARD TABLE OF EABPL , |
| wa_yt_eabpl | LIKE LINE OF it_yt_eabpl, |
| it_yt_eabplreq | TYPE STANDARD TABLE OF EABPLREQ , |
| wa_yt_eabplreq | LIKE LINE OF it_yt_eabplreq, |
| it_yt_epslreqs | TYPE STANDARD TABLE OF EPSLREQS , |
| wa_yt_epslreqs | LIKE LINE OF it_yt_epslreqs. |
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 ISU_READ_SINGLE_BBP_FROM_ARCH or its description.
ISU_READ_SINGLE_BBP_FROM_ARCH - Internal: Read Budget Billing Plan from Archive ISU_READ_R001_R020 - IS-U: Determine Business Area ISU_READ_PDF - Internal: Read PDF Data from Database ISU_READ_FOLLOW_UP_ACTION_DATA - IS-U: Read Additional Data for Subsequent Functions of a Task (MDI) ISU_READ_ENROLL_RESPONSE_DATA - ISU_READ_BAL_MESSAGES -