cancel
Showing results for 
Search instead for 
Did you mean: 

Licitants

Former Member
0 Kudos

Hi,

the licitant´s field of a orders, as I can find it from the number of order?

Thanks...Gracias

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Miguel,

Sorry, but I don't understand your question.

Regards.

Vadim

Former Member
0 Kudos

Sorry licitan = partner....iam spanish , thanks

Former Member
0 Kudos

OK,

To get a SRM document partners, do the following:

1-Get the partner function code you want:

Use FM <b>BBP_PARTNER_TYPE_TO_FUNCTION</b>

CALL FUNCTION 'BBP_PARTNER_TYPE_TO_FUNCTION'
    EXPORTING
      iv_partner_pft     = <i>Partner type</i>
      iv_partner_subtype = 'B2B'
    IMPORTING
      et_partner_fct     = <i>Partner function code</i>.

<i>For the parameter iv_partner_pft possible values, look the Data element (I don't have a SRM access here )</i>

2- Get the partner from the document:

Call function <b>BBP_PD_<i>XX</i>_GETDETAIL</b> or <b>BBP_PD_<i>XX</i>_ITEM_GETDETAIL</b> ( where XX is put for SC, PO, ...) depending of where you use it

CALL FUNCTION 'BBP_PD_SC_ITEM_GETDETAIL'
     EXPORTING
       i_guid                  = <i>Item GUID</i>
     TABLES
       e_partner               = <i>Output table with the corresponding BPs</i>.

Read the outputed table with the code found on point 1-.

Regards.

Vadim

Former Member
0 Kudos

Ohhhh yeahhhh!!! thanksss Vadim.... you are a geniussssssssssssss

Answers (0)