Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Insurance Verification Function

Former Member
0 Likes
421

Hello,

I've been working with SAP IS-H, and i need a BAPI or a FM to create the insurance verification document for a case in the Patient accounting.

Anyone has done this before.?

Thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
356

Found the FM: ISH_CASEIV_MODIFYMULTIPLE

must fill parameters:

ss_einri

ss_falnr

ss_adjust_nlkz            = 'X'

ss_vnksk_curr

ss_vnksp_curr

ss_vnlkz_curr

It Worked Perfect..!

Note: you must consume the BELNR with:

         object_nksk      LIKE tnkrs-nkobj VALUE 'ISH_NKSK',

         rc               LIKE inri-returncode..

   CALL FUNCTION 'ISH_CHECK_NUMBER_RANGE'

     EXPORTING

       modus         = 'N'          "modus_normal

       number        = ' '          "nksk_tab_mod-belnr'

       object        = object_nksk

       subobject     = '*'

     IMPORTING

       nr_range_nr   = nr_range_nr

       nr_range_type = nr_range_type.

1 REPLY 1
Read only

Former Member
0 Likes
357

Found the FM: ISH_CASEIV_MODIFYMULTIPLE

must fill parameters:

ss_einri

ss_falnr

ss_adjust_nlkz            = 'X'

ss_vnksk_curr

ss_vnksp_curr

ss_vnlkz_curr

It Worked Perfect..!

Note: you must consume the BELNR with:

         object_nksk      LIKE tnkrs-nkobj VALUE 'ISH_NKSK',

         rc               LIKE inri-returncode..

   CALL FUNCTION 'ISH_CHECK_NUMBER_RANGE'

     EXPORTING

       modus         = 'N'          "modus_normal

       number        = ' '          "nksk_tab_mod-belnr'

       object        = object_nksk

       subobject     = '*'

     IMPORTING

       nr_range_nr   = nr_range_nr

       nr_range_type = nr_range_type.