SAP ISP_STATUS_UPDATE_ISPAM Function Module for TS Accesses IS-M/AM and Performs a Status Alignment with IS-M/AM









ISP_STATUS_UPDATE_ISPAM is a standard isp status update ispam SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for TS Accesses IS-M/AM and Performs a Status Alignment with IS-M/AM 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 status update ispam FM, simply by entering the name ISP_STATUS_UPDATE_ISPAM 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_STATUS_UPDATE_ISPAM 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_STATUS_UPDATE_ISPAM'"TS Accesses IS-M/AM and Performs a Status Alignment with IS-M/AM
EXPORTING
* PV_COMMIT_PER_CALL = "Checkbox Field

TABLES
RJHATSTAT_ITAB = "Status/Characteristic List

EXCEPTIONS
FUNCTION_NOT_ACTIVE = 1
.




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_STATUS_UPDATE_ISPAM

PV_COMMIT_PER_CALL - Checkbox Field

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

TABLES Parameters details for ISP_STATUS_UPDATE_ISPAM

RJHATSTAT_ITAB - Status/Characteristic List

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

EXCEPTIONS details

FUNCTION_NOT_ACTIVE - Function has not been activated

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

Copy and paste ABAP code example for ISP_STATUS_UPDATE_ISPAM 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_rjhatstat_itab  TYPE STANDARD TABLE OF RJHATSTAT, "   
lv_pv_commit_per_call  TYPE XFELD, "   
lv_function_not_active  TYPE XFELD. "   

  CALL FUNCTION 'ISP_STATUS_UPDATE_ISPAM'  "TS Accesses IS-M/AM and Performs a Status Alignment with IS-M/AM
    EXPORTING
         PV_COMMIT_PER_CALL = lv_pv_commit_per_call
    TABLES
         RJHATSTAT_ITAB = lt_rjhatstat_itab
    EXCEPTIONS
        FUNCTION_NOT_ACTIVE = 1
. " ISP_STATUS_UPDATE_ISPAM




ABAP code using 7.40 inline data declarations to call FM ISP_STATUS_UPDATE_ISPAM

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.

 
 
 


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!