SAP ISP_ADPROOFDATA_GET Function Module for IS-M/AM Accesses TS and Receives Data for an Ad Proof (e.g. EPSF,PS,..)
ISP_ADPROOFDATA_GET is a standard isp adproofdata get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/AM Accesses TS and Receives Data for an Ad Proof (e.g. EPSF,PS,..) 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 isp adproofdata get FM, simply by entering the name ISP_ADPROOFDATA_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: JHTS
Program Name: SAPLJHTS
Main Program: SAPLJHTS
Appliation area: J
Release date: 08-Aug-2000
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function ISP_ADPROOFDATA_GET 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 'ISP_ADPROOFDATA_GET'"IS-M/AM Accesses TS and Receives Data for an Ad Proof (e.g. EPSF,PS,..).
EXPORTING
AVM_NR = "Production order
MOTIV = "Ad spec
BREITEITMM = "
HOEHE_ITMM = "
FILETYPE = "
FRONTENDID = "
HOST = "
IMPORTING
FILE = "
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLJHTS_001 IS-M/AM: Check Whether Item Represents a Page-Defining Ad
EXIT_SAPLJHTS_002 IS-M/AM: Typing of Ads for Positioning System
EXIT_SAPLJHTS_003 IS-M/AM: Line Type Conversion in the Technical System
EXIT_SAPLJHTS_004 IS-M/AM: Word Type Conversion in the Technical System
EXIT_SAPLJHTS_005 IS-M/AM: Fill Structure RJHATMO for the Technical Interface
EXIT_SAPLJHTS_006 IS-M/AM: Fill Structure RJHATPAP for the Technical Interface
EXIT_SAPLJHTS_007 IS-M/AM: Fill Structure RJHATPAK for the Technical Interface
EXIT_SAPLJHTS_008 IS-M/AM: Fill Structure RJHATPS for the Technical Interface
EXIT_SAPLJHTS_009 IS-M/AM: Fill Structure RJHATBPZ for the Technical Interface
EXIT_SAPLJHTS_010 IS-M/AM: Fill Structure RJHATISZ for the Technical Interface
EXIT_SAPLJHTS_011 IS-M/AM: Fill Structure RJHATPLZA for the Technical Interface
EXIT_SAPLJHTS_012 IS-M/AM: Fill Structure RJHATPLZ for the Technical Interface
EXIT_SAPLJHTS_013 IS-M/AM: Read Structure RJHATMO from the Technical Interface
EXIT_SAPLJHTS_014 IS-M/AM: Provide Fields During External Order Transfer
EXIT_SAPLJHTS_015 IS-M/AM: Evaluate Message Returned by the Positioning System
EXIT_SAPLJHTS_016 IS-M/AM: Fill Structure RJHATSTAT for the Technical Interface
EXIT_SAPLJHTS_017 IS-M/AM: Fill Structure RJHATPRF for the Technical Interface
EXIT_SAPLJHTS_018
EXIT_SAPLJHTS_019 IS-M/AM: Read Structure RJHATSTAT from the Technical Interface
EXIT_SAPLJHTS_020 IS-M/AM: Read Structure RJHATPAP from the Technical Interface
EXIT_SAPLJHTS_021 IS-M/AM: Read Structure RJHATPSI from the Technical Interface
IMPORTING Parameters details for ISP_ADPROOFDATA_GET
AVM_NR - Production order
Data type: RJHATMO-AVM_NROptional: No
Call by Reference: No ( called with pass by value option)
MOTIV - Ad spec
Data type: RJHATMO-MOTIVOptional: No
Call by Reference: No ( called with pass by value option)
BREITEITMM -
Data type: RJHATMO-BREITEITMMOptional: No
Call by Reference: No ( called with pass by value option)
HOEHE_ITMM -
Data type: RJHATMO-HOEHE_ITMMOptional: No
Call by Reference: No ( called with pass by value option)
FILETYPE -
Data type: SY-PDESTOptional: No
Call by Reference: No ( called with pass by value option)
FRONTENDID -
Data type: TJHDES-FRONTENDIDOptional: No
Call by Reference: No ( called with pass by value option)
HOST -
Data type: SY-HOSTOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISP_ADPROOFDATA_GET
FILE -
Data type: RLGRAP-FILENAMEOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_ADPROOFDATA_GET 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_file | TYPE RLGRAP-FILENAME, " | |||
| lv_avm_nr | TYPE RJHATMO-AVM_NR, " | |||
| lv_motiv | TYPE RJHATMO-MOTIV, " | |||
| lv_breiteitmm | TYPE RJHATMO-BREITEITMM, " | |||
| lv_hoehe_itmm | TYPE RJHATMO-HOEHE_ITMM, " | |||
| lv_filetype | TYPE SY-PDEST, " | |||
| lv_frontendid | TYPE TJHDES-FRONTENDID, " | |||
| lv_host | TYPE SY-HOST. " |
|   CALL FUNCTION 'ISP_ADPROOFDATA_GET' "IS-M/AM Accesses TS and Receives Data for an Ad Proof (e.g. EPSF,PS,..) |
| EXPORTING | ||
| AVM_NR | = lv_avm_nr | |
| MOTIV | = lv_motiv | |
| BREITEITMM | = lv_breiteitmm | |
| HOEHE_ITMM | = lv_hoehe_itmm | |
| FILETYPE | = lv_filetype | |
| FRONTENDID | = lv_frontendid | |
| HOST | = lv_host | |
| IMPORTING | ||
| FILE | = lv_file | |
| . " ISP_ADPROOFDATA_GET | ||
ABAP code using 7.40 inline data declarations to call FM ISP_ADPROOFDATA_GET
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 FILENAME FROM RLGRAP INTO @DATA(ld_file). | ||||
| "SELECT single AVM_NR FROM RJHATMO INTO @DATA(ld_avm_nr). | ||||
| "SELECT single MOTIV FROM RJHATMO INTO @DATA(ld_motiv). | ||||
| "SELECT single BREITEITMM FROM RJHATMO INTO @DATA(ld_breiteitmm). | ||||
| "SELECT single HOEHE_ITMM FROM RJHATMO INTO @DATA(ld_hoehe_itmm). | ||||
| "SELECT single PDEST FROM SY INTO @DATA(ld_filetype). | ||||
| "SELECT single FRONTENDID FROM TJHDES INTO @DATA(ld_frontendid). | ||||
| "SELECT single HOST FROM SY INTO @DATA(ld_host). | ||||
Search for further information about these or an SAP related objects