ISMAM_CM_ORDER_CRED_LIS_UPD_V1 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 ISMAM_CM_ORDER_CRED_LIS_UPD_V1 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JHCM
Released Date:
Not Released
Processing type: Start update immediately (start immed)
CALL FUNCTION 'ISMAM_CM_ORDER_CRED_LIS_UPD_V1' "IS-M/AM: Credit Management: LIS Order Update (Dialog and V1)
EXPORTING
pv_vrsio = " mccontrol-vrsio
ps_rjhallg = " jha1_rjhallg_str
pt_yjhak = " jha1_yjhak_tab
pt_yjhaisz = " jha1_yjhaisz_tab
pt_yjhaga = " jha1_yjhaga_tab
pt_yjhaga2 = " jha1_yjhaga2_tab
pt_xjhak = " jha1_rjhakvb_tab
pt_xjhaisz = " jha1_rjhaiszvb_tab
pt_xjhaga = " jha1_rjhagavb_tab
pt_xjhaga2 = " jha1_rjhaga2vb_tab
. " ISMAM_CM_ORDER_CRED_LIS_UPD_V1
The ABAP code below is a full code listing to execute function module ISMAM_CM_ORDER_CRED_LIS_UPD_V1 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).
DATA(ld_pv_vrsio) = some text here
DATA(ld_ps_rjhallg) = 'Check type of data required'.
DATA(ld_pt_yjhak) = 'Check type of data required'.
DATA(ld_pt_yjhaisz) = 'Check type of data required'.
DATA(ld_pt_yjhaga) = 'Check type of data required'.
DATA(ld_pt_yjhaga2) = 'Check type of data required'.
DATA(ld_pt_xjhak) = 'Check type of data required'.
DATA(ld_pt_xjhaisz) = 'Check type of data required'.
DATA(ld_pt_xjhaga) = 'Check type of data required'.
DATA(ld_pt_xjhaga2) = 'Check type of data required'. . CALL FUNCTION 'ISMAM_CM_ORDER_CRED_LIS_UPD_V1' EXPORTING pv_vrsio = ld_pv_vrsio ps_rjhallg = ld_ps_rjhallg pt_yjhak = ld_pt_yjhak pt_yjhaisz = ld_pt_yjhaisz pt_yjhaga = ld_pt_yjhaga pt_yjhaga2 = ld_pt_yjhaga2 pt_xjhak = ld_pt_xjhak pt_xjhaisz = ld_pt_xjhaisz pt_xjhaga = ld_pt_xjhaga pt_xjhaga2 = ld_pt_xjhaga2 . " ISMAM_CM_ORDER_CRED_LIS_UPD_V1
IF SY-SUBRC EQ 0. "All OK ENDIF.
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_pv_vrsio | TYPE MCCONTROL-VRSIO , |
| ld_ps_rjhallg | TYPE JHA1_RJHALLG_STR , |
| ld_pt_yjhak | TYPE JHA1_YJHAK_TAB , |
| ld_pt_yjhaisz | TYPE JHA1_YJHAISZ_TAB , |
| ld_pt_yjhaga | TYPE JHA1_YJHAGA_TAB , |
| ld_pt_yjhaga2 | TYPE JHA1_YJHAGA2_TAB , |
| ld_pt_xjhak | TYPE JHA1_RJHAKVB_TAB , |
| ld_pt_xjhaisz | TYPE JHA1_RJHAISZVB_TAB , |
| ld_pt_xjhaga | TYPE JHA1_RJHAGAVB_TAB , |
| ld_pt_xjhaga2 | TYPE JHA1_RJHAGA2VB_TAB . |
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 ISMAM_CM_ORDER_CRED_LIS_UPD_V1 or its description.
ISMAM_CM_ORDER_CRED_LIS_UPD_V1 - IS-M/AM: Credit Management: LIS Order Update (Dialog and V1) ISMAM_CM_ORDER_CREDIT_LIS - IS-M/AM: Credit Management: Update LIS Structure S066 ISMAM_CM_ORDER_CREDIT_CHECK - IS-M/AM: Credit Management: Order Credit Check ISMAM_CM_KOMKBJA_FILL - IS-M/AM: Credit Management: Fill Output Structure ISMAM_CM_INV_CRED_LIS_UPD_V2 - IS-M/AM: Credit Management: LIS Billing Document Update (V2) ISMAM_CM_INV_CRED_LIS_UPD_V1 - IS-M/AM: Credit Management: LIS Billing Document Update (Dialog and V1