cancel
Showing results for 
Search instead for 
Did you mean: 

SOCO queries

Former Member
0 Kudos

Hi,

Can you please answer my queries.

1) Is there anyway to download the sourcing cockpit list?

2) which is the program which updates source_rel_ind field in BBP_PDIGP table?

3) what is the purposed of check box read item data first in the bbp_get_status2?

4) Is there a table available where we can find the soco items?

Points will be rewarded for the usefull answers.

Regards,

Munna

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

1)You can get the list of all SC's which are relevant for sourcing using the foll FM's:

BBP_PD_SC_GETLIST

BBP_PROCDOC_GETLIST

BBP_PROCDOC_GETITEM

BBP_PDH_TEO_GETITEMLIST

BBP_PD_SC_GETITEMLIST

In the importing paramter ,just pass the sourcing relevant indicator as "X".You will get all the SC's which are relevant for sourcing.You can download the list from here.

2)See the foll include:

LBBP_PD_SCF12

  • Check if source_rel_ind needs to be set

IF <ls_src_det>-sourcing EQ gc_sourcing OR

<ls_src_det>-sourcing EQ gc_grouping OR

<ls_src_det>-sourcing EQ gc_auto_bid OR

<ls_src_det>-sourcing EQ gc_group_bid.

IF <ls_src_det>-sourcing EQ gc_grouping.

  • Set sourcing flag for auto PO grouping

CALL FUNCTION 'BBP_PDH_DB_DIRECT_UPDATE'

EXPORTING

iv_item_guid_sourcing = <ls_src_det>-item_guid

iv_source_rel_ind = gc_grouping_relevant.

ELSEIF <ls_src_det>-sourcing EQ gc_group_bid.

  • Set sourcing flag for auto RFQ grouping

CALL FUNCTION 'BBP_PDH_DB_DIRECT_UPDATE'

EXPORTING

iv_item_guid_sourcing = <ls_src_det>-item_guid

iv_source_rel_ind = gc_grouping_bid_relevant.

ELSE.

  • Set sourcing flag for sourcing cockpit

CALL FUNCTION 'BBP_PDH_DB_DIRECT_UPDATE'

EXPORTING

iv_item_guid_sourcing = <ls_src_det>-item_guid

iv_source_rel_ind = gc_sourcing_relevant.

ENDIF.

3) See the foll notes:

Note 633000 - Search strategy for BBP_GET_STATUS_2

Note 521857 - Selection parameters for BBP_GET_STATUS/BBP_GET_STATUS_2

4)You can find all the SC 's in the table BBP_PDIGP .

BR,

Disha.

Do reward points for useful answers.

Answers (0)