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

How to catch the PERNR created using PA40 in a BDC?

Former Member
0 Kudos
3,099

I have Call transaction pa40 using bdcdata to load New Hire data .

But the messages tab is not returning any PERNRS that are created - what am I missing?

Please advise.

Thanks,

Ven

3 REPLIES 3
Read only

Former Member
0 Kudos
2,897

Sorry - resolved on my own by using GEt parameter id

Read only

venkat_o
Active Contributor
0 Kudos
2,897

Hi Ven,

CALL TRANSACTION 'PA40' USING bdc_tab MODE 'N' UPDATE 'S' MESSAGES INTO msg_tab.
<li>I think that your are talking about MESSAGES INTO msg_tab, then It does not gather which employee is created or update. It gathers only messages which are occurred while BDC is running. If you find any message type 'E' in the msg_tab table, You have to treat that Employee is not created, you need to maintain one table and display those employees which are not created. If you do not find any message with TYPE 'E', It means employee created successfully. I hope that you understand. Thanks Venkat.O

Read only

0 Kudos
2,700

Please explain How ?