cancel
Showing results for 
Search instead for 
Did you mean: 

Bid Invitation Creation - Error

Former Member
0 Kudos

Dear all,

I am using BBP_PD_BID_CREATE to create bid Invitation.

I have populated the Header, Item and Orgdata and testing in SE37.

I am getting the following error

Type Message-ID MessageNUM MESSAGE

A BBP_PD 550 Incorrect interface data for set 78 in method C

I tried checking the data and I dont find any problem with the data as I am just giving only standard data.

If some one have come across this error please let me know on how to solve this.

Many thanks.

Arul.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Pass '0000000000000001' as value to header-GUID while calling the BBP_PD_BID_CREATE and that should solve your problem. Don't forget to pass I_SAVE="X" to save the bid!

former_member183819
Active Contributor
0 Kudos

Hi Deva

In SPRO

check no. ranges are configured correctly for bid inviatation and linked with transaction type for bid invitation?

br

muthu

Former Member
0 Kudos

Dear Muthu,

Following is the number range in SPRO,

01 0000000001 9999999999 340

02 A ZZZZZZZZZZ 0

__ ____________________ ____________________ ____________________

where 01 is Internal and '02' is External. and it is been assigned in the transaction type.

Another thing is following are the list of erros that I am getting.

M MSGID MSG MESSAGE

A BBP_PD 550 Incorrect interface data for set 78 in method C

A BBP_PD 550 Incorrect interface data for set 77 in method C

A BBP_PD 550 Incorrect interface data for set 61 in method C

A BBP_PD 550 Incorrect interface data for set 35 in method C

A BBP_PD 550 Incorrect interface data for set 34 in method C

A BBP_PD 550 Incorrect interface data for set 21 in method C

A BBP_PD 550 Incorrect interface data for set #6 in method C

A BBP_PD 550 Incorrect interface data for set #5 in method C

A BBP_PD 550 Incorrect interface data for set #4 in method C

A BBP_PD 550 Incorrect interface data for set #3 in method C

A BBP_PD 002 Interface data contains errors

A BBP_PD 002 Interface data contains errors

Thanks,

Arul.

former_member183819
Active Contributor
0 Kudos

hi

have you written a program to create bi ? update here some one can correct your code.

and alos double check no range link with bidinviatation transaction type.

br

muthu

Former Member
0 Kudos

Following is the code

ls_header-description = 'BUY01 25.05.2009 14:48:14'.

ls_header-bid_type = 'C'.

ls_header-quot_dead = '20090713'.

ls_header-currency = 'SAR'.

ls_header-use_conditions = 'X'.

ls_header-descr_language = 'EN'.

ls_header-co_code = 'NGES'.

ls_header-logsys_fi = 'NEDCLNT200'.

ls_header-process_type = 'BID'.

ls_header-tzone = 'UTC+3'.

ls_item-number_int = '0000000001'.

ls_item-description = 'COMPUTER'.

ls_item-quantity = '200'.

ls_item-unit = 'EA'.

ls_item-price_unit = '1'.

ls_item-currency = 'SAR'.

ls_item-del_datcat = '1'.

ls_item-deliv_date = '20090812'.

ls_item-product_type = '01'.

append ls_item to lt_item.

ls_org-proc_org_ot = 'O'.

ls_org-proc_org_id = '50000761'.

append ls_org to lt_org.

call function 'BBP_PD_BID_CREATE'

exporting

  • I_REF_GUID =

i_bapimode = 'X'

  • I_PARK =

  • I_SAVE =

i_testrun = 'X'

i_header = ls_header

  • IT_ATTACH =

  • IT_DYN_ATTR =

  • IT_CONDITIONS =

importing

e_header = e_header

  • ET_ATTACH =

  • ET_DYN_ATTR =

  • ET_CONDITIONS =

tables

i_item = lt_item

  • I_PARTNER =

  • I_LONGTEXT =

  • I_SDLN =

i_orgdata = lt_org

  • I_HCF =

  • I_ICF =

  • I_TOL =

  • I_WEIGHT =

  • IT_EXCHRATE =

  • E_ITEM =

  • E_PARTNER =

  • E_LONGTEXT =

  • E_SDLN =

e_orgdata = lt_org

  • E_HCF =

  • E_ICF =

  • ET_EXCHRATE =

e_messages = lt_message

.