cancel
Showing results for 
Search instead for 
Did you mean: 

SC adding one new option at listbox.Docum & attach - std phrases

Former Member
0 Kudos

Shopping cart adding one option at listbox. Document and attachements - standard phrases (ineternal note, vendor text, my_newone)

Hi guys.

Does anybody know to add a new option at the listbox in shopping cart documents and attachments (standard phrases), like "internal note", "vendor text", "other, mine". With this option I will replicate a text in PO position.

I will apreciate your help. Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

masa_139
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi,

Please go to text schema customizing. SRM Server -> Cross-Application Basic Settings -> Text Schema.

Regards,

Masa

Former Member
0 Kudos

Thanks Masa,

I was looking for that option in SPRO, but I couldn´t find it.

I have SRM 4.0 version, does it option exist in it version?

Thanks and Regards,

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi everybody!

Finally I have solved it.

If you want to add a new option, using SRM 4.0 you have to code in objects below:

in EBP:

Program: BBP_PDH_TEXT

LBBP_PDH_TEXTF02

LBBP_PDH_TEXTF12

LBBP_PDH_TEXTF23

Program: BBP_SC_UI_ITS

LBBP_SC_UI_ITSFC1

in Internet service: BBP_PDH_TEXT

HTML template SAPLBBP_PDH_TEXT 100

in your backend system:

Include: LBBP_EXTREQF09

If you need additional details, just let me know.

Regards,

Rodrigo

Former Member
0 Kudos

Hi,

Please go to the BBP_PDH_TEXT program screeen 100 there u can change the text if u want ...and if u want to add new text then go to the include LBBP_PDH_TEXTF02

DO 2 TIMES.

CASE sy-index.

WHEN 1.

field-set 'HELP_TXT' sy-index text-001. "text

WHEN 2.

field-set 'HELP_TXT' sy-index text-002. "note

ENDCASE.

ENDDO.

change there from 2 times to 3 times and put the text which u want...from there it will select the text...

Former Member
0 Kudos

Thanks Lokesh,

I did these changes, but it doesn´t work.

DO 3 TIMES.

CASE sy-index.

WHEN 1.

field-set 'HELP_TXT' sy-index text-001. "text

WHEN 2.

field-set 'HELP_TXT' sy-index text-002. "note

WHEN 3.

field-set 'HELP_TXT' sy-index 'MYTEXT'. "mine

ENDCASE.

ENDDO.

Any idea?

Thanks and Regards,