SAP EXIT_SAPLJHWA2_001 Function Module for IS-M: Customer-Specific Fields in Assignment Overview









EXIT_SAPLJHWA2_001 is a standard exit sapljhwa2 001 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: Customer-Specific Fields in Assignment Overview 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 exit sapljhwa2 001 FM, simply by entering the name EXIT_SAPLJHWA2_001 into the relevant SAP transaction such as SE37 or SE38.

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



Function EXIT_SAPLJHWA2_001 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 'EXIT_SAPLJHWA2_001'"IS-M: Customer-Specific Fields in Assignment Overview
EXPORTING
PS_ASS = "IS-M: Contract Assignment

CHANGING
PS_DASS = "Structure displayed for assignment
.



Related Function Modules

Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.
CONVERSION_EXIT_JALFA_INPUT IS-M: Access Conversion Exit ALPHA
CONVERSION_EXIT_JALFA_OUTPUT IS-M: Convert Leading Zeros to Blank Spaces
ISM_COA_ASS_ADAPT_BASIS IS-M: Enter Changed Assessment Basis
ISM_COA_ASS_ADAPT_TO_COA_ITEM IS-M: Adjust Assignments to Rate Indicators
ISM_COA_ASS_AVM_INDEX_FOR_COA IS-M: Order Update Index for Contract Change
ISM_COA_ASS_BASIS_SET IS-M: Transfer Contract Gross from Document Pric.Procedure to Assignment
ISM_COA_ASS_CALL IS-M: Access Contract Assignments Dialog
ISM_COA_ASS_CHECK_PART_ALL IS-M: Select Assignments Not Suitable for Partner Access Sequence
ISM_COA_ASS_CONDITIONS_GET IS-M: Write Contract Discount, Bonus, Fixed Quantity Price in KOMP
ISM_COA_ASS_COUNTING_ONLY IS-M: Assignments from other Contracts
ISM_COA_ASS_DELETE IS-M: Delete Assignments Found Previously
ISM_COA_ASS_EXPORT IS-M: Import Contract Assignments from Subscreen
ISM_COA_ASS_EXPORT_TO_AVM IS-M: Export Contract Interface for a Billing Dataset
ISM_COA_ASS_IMPORT IS-M: Export Contract Assignments for the Subscreen
ISM_COA_ASS_INFO_FOR_AVM IS-M: Information About Assignments to an Order
ISM_COA_ASS_INFO_FOR_COA IS-M: Information About Assignments to a Contract
ISM_COA_ASS_INSERT IS-M: Transfer New Assignments Found from Contract Determination
ISM_COA_ASS_INVOICE_CANCEL IS-M: Change Assignment After Order Billing Document Cancellation
ISM_COA_ASS_MERGE IS-M: Add Assignments After Contract Determination
ISM_COA_ASS_OKCODE IS-M: Execute Function Code on Subscreen
ISM_COA_ASS_PART_READ IS-M: Read Partner Access Sequence
ISM_COA_ASS_POST_ASS IS-M: Update Contract Assignments
ISM_COA_ASS_POST_COA IS-M: Update Contracts that Have Been Updated
ISM_COA_ASS_READ_FOR_AVM IS-M: Read Contract Assignments for the Order
ISM_COA_ASS_READ_FOR_COA IS-M: Read Contract Assignments for the Contract
ISM_COA_ASS_RECALCULATE IS-M: Calculate Contract Standing Again
ISM_COA_ASS_RESET IS-M: Reset Update Tables
ISM_COA_ASS_RJHGAV_SELECT IS-M: Read Update-Relevant Data Including Dynamic Part
ISM_COA_ASS_SELECT IS-M: Contract Assignments from this Function Group and from SQL
ISM_COA_ASS_UPDATE IS-M: Update Assignments in the Contract
ISM_COA_ASS_UPDATE_ASS IS-M: Modify Contract Assignments for the Contract
ISM_COA_EXPORT IS-M: Export Contract
ISM_COA_IMPORT IS-M: Import Contract for Subsequent Update
ISM_COA_PART_CHECK_ROTA IS-M: Check Contracts for RGPZ (Rota Rules)
ISM_COA_READ_FOR_PART IS-M: Read Contracts with a Specific BP Assignment
ISM_COA_READ_FOR_PART_RESET IS-M: Empty Table of Contracts per BP Assignment (Except System Contracts)
ISM_COA_READ_RESET IS-M: Initialize Table of Contracts Found
ISM_COA_VALIDITY_RESET IS-M: Reset Contract Runtimes
ISM_COA_VALIDITY_SET IS-M: Assign Provisional Contract Runtime
ISM_COA_VALIDITY_UNSET IS-M: Delete Contract Runtimes
ISM_MAP2E_008_ASS2CONTRACT_ASS IS-M: rjhvabruf -> bapibusism008_contract_ass
ISM_MAP2I_008_CONTRACT_ASS2ASS IS-M: bapibusism008_contract_ass -> rjhvabruf
ISM_SYSTEM_COA_EQUALIZE IS-M: Synchronize System Contract with Standard Contract

IMPORTING Parameters details for EXIT_SAPLJHWA2_001

PS_ASS - IS-M: Contract Assignment

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

CHANGING Parameters details for EXIT_SAPLJHWA2_001

PS_DASS - Structure displayed for assignment

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

Copy and paste ABAP code example for EXIT_SAPLJHWA2_001 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_ps_ass  TYPE RJHVABRUF, "   
lv_ps_dass  TYPE RJHVASS. "   

  CALL FUNCTION 'EXIT_SAPLJHWA2_001'  "IS-M: Customer-Specific Fields in Assignment Overview
    EXPORTING
         PS_ASS = lv_ps_ass
    CHANGING
         PS_DASS = lv_ps_dass
. " EXIT_SAPLJHWA2_001




ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLJHWA2_001

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!