‎2008 Mar 17 4:24 AM
Hi ABAPers,
while i am developing RFC Application, in side this application i
use one Function MOdule---BP_CENTRALPERSON_GET
in which i pass partner guid based on that i want employee id
details but the problem is employeeid type is tabletype
how can i fetch that data.
Another problem is entire result i display in one structure
format if i m including this table type its not supproted.can any
one give me the solution for this.
Thanks in Advance,
regards,
kishore.
‎2008 Mar 17 4:30 AM
From that output table of FM, Pass the employee no to a variable and use that variable for your program.
anya
‎2008 Mar 17 4:31 AM
Hi,
Try this.
Data: ls_emp type BPEMPLOYEES,
lt_emp type BPEMPLOYEET.
Now pass the PARTNER_GUID and get the PERSON_ID value into table lt_emp.
now read table lt_emp into ls_emp index 1.
Regards,
Niyaz
‎2008 Mar 18 5:48 AM