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

Regarding Table type

Former Member
0 Likes
457

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.

3 REPLIES 3
Read only

Former Member
0 Likes
436

From that output table of FM, Pass the employee no to a variable and use that variable for your program.

anya

Read only

Former Member
0 Likes
436

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

Read only

Former Member
0 Likes
436

solved