cancel
Showing results for 
Search instead for 
Did you mean: 

Custome Text ID Creation for RFC

Former Member
0 Kudos

Hi ,

We have requirement that a free text box is provided to enter comments for RFC.

I have searched around and found that Text id is created using se75.

http://help.sap.com/saphelp_nw70/helpdata/en/d6/0db841494511d182b70000e829fbfe/content.htm

Now developer is asking that we create a custom text id and object which he can use in the free text box.

Kindly guide how to proceed.

Regards

Abhishek

Accepted Solutions (0)

Answers (1)

Answers (1)

richard_pietsch
Active Contributor
0 Kudos

Hi,

you already wrote it: goto SE75 and either create an own text object or you chose one of the available one (e.g. TEXT that uses SAPscript standard text), via double click you navigate to the textids. Here create a new one. The corresponding texts you can get from the input of the corresponding text box.

When using functions such as READ_TEXT you use your own objects, e.g.:

CALL FUNCTION 'READ_TEXT'

    EXPORTING

      id       = 'ZWDA' <<<<<<

      language = sy-langu

      name     = 'ZXXX'

      object   = 'ZTXT' <<<<<<

    IMPORTING

      header   = ls_header

    TABLES

      lines    = lt_lines.

Regards, Richard