cancel
Showing results for 
Search instead for 
Did you mean: 

Plz...Structure BIW_COOR of 0COORDER_ATTR

Former Member
0 Kudos

I want to know original table name of 'POSID' field in the structure 'BIW_COOR':

'POSID' - Work Breakdown Structure Element (WBS Element)

'POSID' field is used by the extractor for 0COORDER_ATTR

If I could know it, I'm going to make new extractor for 0COORDER_ATTR.

I'd appreciate it if you would answer my question.

Have a nice day~~

Accepted Solutions (1)

Accepted Solutions (1)

edwin_harpino
Active Contributor
0 Kudos

hi,

yes, it's.

table PRPS and field PSPNR used as key to retrieve data.

to find any field's table, we may use Roberto's excellent weblog

/people/sap.user72/blog/2005/09/05/sap-bw-and-business-content-datasources-in-pursuit-of-the-origins

0coorder_attr use function module ROMA_GET_AUFK_DATA to populate data.

in that function module there is

DATA: LT_POSID TYPE PSBW_T_PRPS.

filed with another function module by passing PSPNR from PSPEL

CALL FUNCTION 'PSBW_PRPS8_TO_PRPS24'

EXPORTING

T_R_PSPNR = LT_PSPEL

IMPORTING

E_T_PRPS = LT_POSID.

function PSBW_PRPS8_TO_PRPS24 contains code :

it's PRPS

SELECT PSPNR POSID

FROM PRPS

INTO CORRESPONDING FIELDS OF TABLE E_T_PRPS

FOR ALL ENTRIES IN T_R_PSPNR

WHERE PSPNR = T_R_PSPNR-PSPNR.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Young-il Jung,

Check table PRPS WBS element Master data table.

Vijay