SAP ISM_JHPA_CUSTOM_FUNCT_008_CALL Function Module for IS-M/AM: Access Customer Function 008









ISM_JHPA_CUSTOM_FUNCT_008_CALL is a standard ism jhpa custom funct 008 call 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: Access Customer Function 008 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 ism jhpa custom funct 008 call FM, simply by entering the name ISM_JHPA_CUSTOM_FUNCT_008_CALL into the relevant SAP transaction such as SE37 or SE38.

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



Function ISM_JHPA_CUSTOM_FUNCT_008_CALL 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 'ISM_JHPA_CUSTOM_FUNCT_008_CALL'"IS-M/AM: Access Customer Function 008
EXPORTING
PV_DIALOG = "IS-M: Dialog Functions Admissible
PV_FCODE = "Function Code
PS_TJ180 = "Initial Values of Transaction in IS-M
PS_RJHA400 = "IS-M/AM: Ad Screen Structure
PS_RJHAP = "IS-M/AM: Order-Publishing-Media Item Structure
PS_RJHAPA = "IS-M: Order-Publishing-Media Item Ad Structure
PV_POS_CALLER = "
PS_RJHAORDER = "IS-M/AM: Sales Document
PT_RJHSABG = "
.




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_SAPLJHPA_001 IS-M/AM: Set Status Characteristics for an Ad Item
EXIT_SAPLJHPA_002 IS-M/AM: Set Status Characteristics for an Ad Insert Item
EXIT_SAPLJHPA_003 IS-M/AM: Set Status Characteristics for a Service Item
EXIT_SAPLJHPA_004 IS-M/AM: Box Number Assignment
EXIT_SAPLJHPA_006 IS-M/AM: Check Completeness and Plausibility of an Item
EXIT_SAPLJHPA_007 IS-M/AM: Define Default Item
EXIT_SAPLJHPA_008 IS-M/AM: Check Completeness and Plausibility of Date Information
EXIT_SAPLJHPA_009 IS-M/AM: Modification of F4 Help for Content Components
EXIT_SAPLJHPA_010 IS-M/AM: Modify Advertiser Assignment
EXIT_SAPLJHPA_011 IS-M/AM: Menu Exit OPM Item Details
EXIT_SAPLJHPA_012 IS-M/AM: Set Status Characteristics for a Commercial Item
EXIT_SAPLJHPA_013 IS-M/AM: Define Default Item Category
EXIT_SAPLJHPA_014 IS-M/AM: Represent Dependencies for Item Characteristics
EXIT_SAPLJHPA_015 IS-M/AM: Set Status Characteristics for a Distribution Item
EXIT_SAPLJHPA_016 IS-M/AM: Set Status Characteristics for an Online Item
EXIT_SAPLJHPA_017 IS-M/AM: Trigger Billing Dataset Generation
EXIT_SAPLJHPA_018 IS-M/AM: Check Completeness and Plausibility of an Item
EXIT_SAPLJHPA_019 IS-M/AM: Trigger Schedule Line Generation
EXIT_SAPLJHPA_020 IS-M/AM: Set Status Characteristics for a Package Item

IMPORTING Parameters details for ISM_JHPA_CUSTOM_FUNCT_008_CALL

PV_DIALOG - IS-M: Dialog Functions Admissible

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

PV_FCODE - Function Code

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

PS_TJ180 - Initial Values of Transaction in IS-M

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

PS_RJHA400 - IS-M/AM: Ad Screen Structure

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

PS_RJHAP - IS-M/AM: Order-Publishing-Media Item Structure

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

PS_RJHAPA - IS-M: Order-Publishing-Media Item Ad Structure

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

PV_POS_CALLER -

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

PS_RJHAORDER - IS-M/AM: Sales Document

Data type: RJHAORDER_STR
Optional: No
Call by Reference: Yes

PT_RJHSABG -

Data type: JHA1_RJHSABG_TAB
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISM_JHPA_CUSTOM_FUNCT_008_CALL 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_pv_dialog  TYPE ISM_DIALOG_ALLOWED, "   
lv_pv_fcode  TYPE T185-FCODE, "   
lv_ps_tj180  TYPE TJ180, "   
lv_ps_rjha400  TYPE RJHA400, "   
lv_ps_rjhap  TYPE RJHAP, "   
lv_ps_rjhapa  TYPE RJHAPA, "   
lv_pv_pos_caller  TYPE RJHAPA, "   
lv_ps_rjhaorder  TYPE RJHAORDER_STR, "   
lv_pt_rjhsabg  TYPE JHA1_RJHSABG_TAB. "   

  CALL FUNCTION 'ISM_JHPA_CUSTOM_FUNCT_008_CALL'  "IS-M/AM: Access Customer Function 008
    EXPORTING
         PV_DIALOG = lv_pv_dialog
         PV_FCODE = lv_pv_fcode
         PS_TJ180 = lv_ps_tj180
         PS_RJHA400 = lv_ps_rjha400
         PS_RJHAP = lv_ps_rjhap
         PS_RJHAPA = lv_ps_rjhapa
         PV_POS_CALLER = lv_pv_pos_caller
         PS_RJHAORDER = lv_ps_rjhaorder
         PT_RJHSABG = lv_pt_rjhsabg
. " ISM_JHPA_CUSTOM_FUNCT_008_CALL




ABAP code using 7.40 inline data declarations to call FM ISM_JHPA_CUSTOM_FUNCT_008_CALL

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 FCODE FROM T185 INTO @DATA(ld_pv_fcode).
 
 
 
 
 
 
 
 


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!