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

BSIS and BSIK table Fields

former_member355168
Participant
0 Likes
2,271

Dear Experts,

I m coding a Vendor GL report and using bsik and bsis table.

problem is when i check for a document ( say 1100000290 open document), i dont get any entry of prctr, bupla or secco in bsis and bsik tables. but when i chek same document in BSEG (which i don't want to use, because its a cluster table) , I get bupla, prctr and secco fields value.

Do i need to use some other tables also ?????????

Any suggestions.

Regards,

Maverick

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,849

You can fetch from FAGLFLEXA table.

Regards,

Sai Prasad

Dear Experts,

I m coding a Vendor GL report and using bsik and bsis table.

problem is when i check for a document ( say 1100000290 open document), i dont get any entry of prctr, bupla or secco in bsis and bsik tables. but when i chek same document in BSEG (which i don't want to use, because its a cluster table) , I get bupla, prctr and secco fields value.

Do i need to use some other tables also ?????????

Any suggestions.

Regards,

Maverick

8 REPLIES 8
Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,849

After selecting data from BSIS & BSIK you must be having the fields BUKRS, GJAHR, BELNR, BUZEI. Correct ?

These fields are key fields of BSEG. You can select data from BSEG using FOR ALL ENTRIES and in the WHERE condition pass the fields BUKRS, GJAHR, BELNR, BUZEI. I don't think selecting data based on key fields from cluster tables will give any performance issues.

Cheers,

Suhas

Read only

Former Member
0 Likes
1,849

Check if the document is cleared, as when the document is cleared the record will not be avaliable in the tables you have mentioned.

Read only

0 Likes
1,849

thanks for ur reply.

I hv checked, the document is open.

Regards,

Jaspal

Read only

0 Likes
1,849

Use Substitution to insert the value in the BSIK table , also look at OSS note 112312 .

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,849

>

> Use Substitution to insert the value in the BSIK table , also look at OSS note 112312 .

Wow !!! I wonder if the OP pays heed to this post & tries implementing this solution.

Read only

0 Likes
1,849

>

> Wow !!! I wonder if the OP pays heed to this post & tries implementing this solution.

I've said it before and I'll say it again. This is the internet. You get what you pay for.

Rob

Read only

Former Member
0 Likes
1,850

You can fetch from FAGLFLEXA table.

Regards,

Sai Prasad

Read only

former_member355168
Participant
0 Likes
1,849

FaglFlexa get almost resolved the issue.