cancel
Showing results for 
Search instead for 
Did you mean: 

Regarding INTERNA NOTE field on SRM EBP.

former_member184111
Active Contributor
0 Kudos

Hi Experts,

How can i transfer SOME TEXT (enterd in REMARKS field in a custom BSP application) to INTERNAL NOTE field (under Documents And Attachments tab) on SRM EBP screen.

Thanks,

Anubhav.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member184111
Active Contributor
0 Kudos

Hi,

Found in some thread that it can be done in BADI CATALOG_TRANSFER using the ET_SC_LONGTEXT parameter .

So added the code in BADI CATALOG_TRANSFER:

loop at et_sc_longtext into wa_longtext .

    wa_longtext-tdid = 'NOTE' .
    modify et_sc_longtext from wa_longtext index sy-tabix transporting tdid .

  endloop.

But the text is still going in Vendor Text field.

Any hints?

Anubhav.

former_member183819
Active Contributor
0 Kudos

Hi

cross check STXH text id in this table. ITXT - TRY THIS TEXT ID.

regards

Muthu

former_member184111
Active Contributor
0 Kudos

Hi Muthu,

I tried with ITXT and STXH but no luck , the text is still going to VENDOR TEXT field.

I need to find out how to link text field on BSP to text fields on EBP.

I am passing the REMARKS as below:

<i nput t ype="h idden" n ame="NEW_ITEM-LONGTEXT_<% =     count  %>  :132[] "  valu e = "< % =  remarks % >">

or it is to be done using a customer field???? something like:

< i nput typ e=" h idden" name="NEW_ ITEM-zzaltaddr[<% = count %>]"      value = "< %= remarks %>">

I am storing the REMARKS data in OnInputProcessing in remarks field...

Thanks,

Anubhav.