cancel
Showing results for 
Search instead for 
Did you mean: 

Validation in HRCLM0001/0002 on Doctor ID

Former Member
0 Kudos

Hi All.

We are having some edit checks in the above claim txns wherein we have to validate based on Doctor ID.

But, the relevant exit EXIT_SAPLHRCLM00GEN_008 is called only on any change in amount field. If we just change the doc id and press enter, it is not triggered at all..

Any clues on how to achieve it?

Thanks in adv.

Accepted Solutions (0)

Answers (1)

Answers (1)

suresh_datti
Active Contributor
0 Kudos

Hi Samant,

Did you try to use the PA Infotype User exit ZXPADU02 or the BAdI HRBAS00INFTY ? These get invoked in the PAI of almost all the PA infotypes.. may be you can do your validations for the Doctor id in there.

Regards,

Suresh Datti

Former Member
0 Kudos

try BAdI HRBAS00INFTY or user exit ZXPADU02 and code like this:

METHOD if_ex_hrpad00infty~before_output .

DATA: i0015 TYPE p0015.

DATA: loc_mem(4).

DATA: usergroup TYPE usparam-parva.

CASE innnn-infty.

WHEN '0009'.

METHOD if_ex_hrpad00infty~after_input .

*{+ changes by shaisa0f 28/06/2004

DATA: i0015 TYPE p0015.

DATA: usergroup TYPE usparam-parva.

DATA : wf_mem(4) TYPE c.

CASE new_innnn-infty.

WHEN '0009'.

INCLUDE zhrpad00infty_9. "By shaisa0f on 23/08/2004 RT#:737873

WHEN '0015'.

reward points if it helps

gunjan

Former Member
0 Kudos

Thanks Gunjan and Suresh. But both of you have suggested to use the Infotype Badi/user exit in ZXPADU02.

But if you see my query, I am using claims txn HRCLM0001.

The normal IT badi does not trigger in this case, even on saving/deleting.

Any other thoughts?

Thanks.

Former Member
0 Kudos

hi

how abt these ones:

PCLM0001 Customer enhancements for fucntion Claim

PCLM0001 Customer enhancements for fucntion Claim

PCLM0001 Customer enhancements for fucntion Claim

PCLM0002 Customer enhancements for Claims transac

PCLM0002 Customer enhancements for Claims transac

plz reward points and close the thread..

regds

gunjan

Former Member
0 Kudos

hi

thats actually a report RPUCLM00....so try modifying the same using gui status and writing the code at each user action!!

plz reward points if it helps

regards

gunjan

Former Member
0 Kudos

Thanks Gunjan.

I am already using these exits as mentioned by you.

Btw, what do you mean by saying that "modifying the same using gui status and writing the code at each user action!"

It's a standard program. How do I make changes to it?