<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: EDIT_TEXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629058#M280853</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Pratyuhsa,&lt;/P&gt;&lt;P&gt; Logon in the change mode to avoid that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Sep 2006 05:48:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-25T05:48:38Z</dc:date>
    <item>
      <title>EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629049#M280844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any tell me in detail how to use the Function Module EDIT_TEXT, what is the HEADER in the import parameters and what needed to be passed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using this FM to create LT and Save it, just like as it appears in SAPscript editor, can any one gimme the related info?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 04:52:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629049#M280844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T04:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629050#M280845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Check out these threads..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1163205"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/d6/0dc169494511d182b70000e829fbfe/applet.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/d6/0dc169494511d182b70000e829fbfe/applet.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Santosh Kumar P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 04:54:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629050#M280845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T04:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629051#M280846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the example code below first use read_text function module to get value for header and then use edit_text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*...data needed for text display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: BEGIN OF HTEXT,
        TDOBJECT     LIKE THEAD-TDOBJECT VALUE 'CCSS',
        TDID         LIKE THEAD-TDID,
        TDNAME       LIKE THEAD-TDNAME,
        TDSPRAS      LIKE THEAD-TDSPRAS,
      END OF HTEXT.

DATA: BEGIN OF TLINETAB OCCURS 0.
        INCLUDE STRUCTURE TLINE.
DATA: END OF TLINETAB.

DATA: L_THEAD LIKE THEAD,
      L_FUNCTION.


CALL FUNCTION 'READ_TEXT'
     EXPORTING
          ID       = HTEXT-TDID
          LANGUAGE = HTEXT-TDSPRAS
          OBJECT   = HTEXT-TDOBJECT
          NAME     = HTEXT-TDNAME
     IMPORTING
          HEADER   = L_THEAD
     TABLES
          LINES    = TLINETAB
     EXCEPTIONS
          OTHERS   = 1.

IF SY-SUBRC = 0.
  CALL FUNCTION 'EDIT_TEXT'
       EXPORTING
            HEADER    = L_THEAD
            DISPLAY   = 'X'
       IMPORTING
            NEWHEADER = L_THEAD
            FUNCTION  = L_FUNCTION
       TABLES
            LINES     = TLINETAB
       EXCEPTIONS
            OTHERS    = 1.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 04:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629051#M280846</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-25T04:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629052#M280847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh &amp;amp; HRA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i use the FM EDIT_TEXT to achieve the functionality just like in transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IW32 - &amp;gt; Operations TAb - &amp;gt; LT. (LONG TEXT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this LT is a button in the table control, when the user clicks on the LT button it goes to SAPScript editor, where in user can enter LT in multiple lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help,its urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points for SURE&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 05:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629052#M280847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T05:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629053#M280848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI pratyu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes you can use EDIT_TEXT to achieve this functionality. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will open the lines same as sapscript editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just check and run the following program in 'SE38'. and you will be very clear about 'EDIT_TEXT' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;RFMAIL01&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR copy and paste below test program for 'EDIT_TEXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report z_test2.


DATA: LS_HEAD LIKE THEAD.

DATA: LT_LINES TYPE STANDARD TABLE OF TLINE
         WITH HEADER LINE.

DATA: LS_RESULT LIKE ITCER.
DATA: LS_CONTROL LIKE ITCED.
DATA: LD_TEXT(30) TYPE C.

START-OF-SELECTION.
*----- Maintain existing texts? ----------------------------------------
  CALL FUNCTION 'READ_TEXT'
    EXPORTING
      ID                            = '0001'
      LANGUAGE                      = SY-LANGU
      NAME                          = 'ASSIGNAR'
      OBJECT                        = 'FB15'
    IMPORTING
      HEADER                        = LS_HEAD
    TABLES
      LINES                         = LT_LINES
    EXCEPTIONS
*   ID                            = 1
*   LANGUAGE                      = 2
*   NAME                          = 3
*   NOT_FOUND                     = 4
*   OBJECT                        = 5
*   REFERENCE_CHECK               = 6
*   WRONG_ACCESS_TO_ARCHIVE       = 7
      OTHERS                        = 8.

  IF SY-SUBRC NE 0.
    LD_TEXT = TEXT-001.
*----- ... no, create header entry in table stxh -----------------------
    CALL FUNCTION 'INIT_TEXT'
         EXPORTING
              ID       = '0001'
              LANGUAGE = SY-LANGU
              NAME     = 'ASSIGNAR'
              OBJECT   = 'FB15'
         IMPORTING
              HEADER   = LS_HEAD
         TABLES
              LINES    = LT_LINES
         EXCEPTIONS
              OTHERS   = 1.
  ELSE.
    LD_TEXT = TEXT-002.
  ENDIF.
  LS_CONTROL-USERTITLE = 'X'.
  CALL FUNCTION 'EDIT_TEXT'
    EXPORTING
*   DISPLAY             = ' '
   EDITOR_TITLE        = LD_TEXT
      HEADER              = LS_HEAD
*   PAGE                = ' '
*   WINDOW              = ' '
*   SAVE                = ' '
*   LINE_EDITOR         = ' '
   CONTROL             = LS_CONTROL
*   PROGRAM             = ' '
*   LOCAL_CAT           = ' '
    IMPORTING
*   FUNCTION            =
*   NEWHEADER           =
      RESULT              = LS_RESULT
    TABLES
      LINES               = LT_LINES
    EXCEPTIONS
      OTHERS              = 8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 05:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629053#M280848</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-25T05:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629054#M280849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Pratyusha,&lt;/P&gt;&lt;P&gt; Yes you can use this method to achieve your functionality or else you can use SAVE_TEXT along with read table ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1431531"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 05:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629054#M280849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T05:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629055#M280850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for ur immediate replies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once more clarification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am doing a customised screen(say RFQ1), which is creation of RFQ's. and i save the data entered on the screen RFQ1 into Z tables, and LT is one of the field, for now the LT is CHAR50 , &amp;lt;b&amp;gt;so how do i save it to the customised table&amp;lt;/b&amp;gt;. because user can enter multiple lines in SAP Script editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and thre is one more screen (say RFQ2) for viewing or changing the RFQ's. so user can change or only view RFQ, in this screen also i placed the LT button in tab ctrl, so in order to display the LT in RFQ2 screen should i use READ_TEXT.Please confirm?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can tell how me to &amp;lt;b&amp;gt;SAVE&amp;lt;/b&amp;gt; the LT in Screen RFQ1 i can handle the other thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks alot for ur support n time&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 05:36:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629055#M280850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T05:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629056#M280851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go through this program &amp;lt;b&amp;gt;RM07METI&amp;lt;/b&amp;gt;. u can find all the function modules related to ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 05:38:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629056#M280851</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2006-09-25T05:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629057#M280852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And one more thing, every time i get the Script editor i dont see it in LINES format, i have to GOTO -&amp;gt; Change Editor.&lt;/P&gt;&lt;P&gt;How to avoid it every time? How can i see the editor in LINES format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 05:47:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629057#M280852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T05:47:19Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629058#M280853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Pratyuhsa,&lt;/P&gt;&lt;P&gt; Logon in the change mode to avoid that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 05:48:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629058#M280853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T05:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629059#M280854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the menu 'GOTO---&amp;gt;Configure Editor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and uncheck on the 'Graphical PC Editor'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 05:53:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629059#M280854</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-25T05:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629060#M280855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &amp;lt;b&amp;gt;HRA n Santosh&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for ur immediate replies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once more clarification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am doing a customised screen(say RFQ1), which is creation of RFQ's. and i save the data entered on the screen RFQ1 into Z tables, and LT is one of the field, for now the LT is CHAR50 , so how do i save it to the customised table. because user can enter multiple lines in SAP Script editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and thre is one more screen (say RFQ2) for viewing or changing the RFQ's. so user can change or only view RFQ, in this screen also i placed the LT button in tab ctrl, so in order to display the LT in RFQ2 screen should i use READ_TEXT.Please confirm?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can tell how me to SAVE the LT in Screen RFQ1 i can handle the other thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks alot for ur support n time&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLEASE HELP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 06:07:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629060#M280855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T06:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629061#M280856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Pratyu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Saving of your long text you don't need to use your ztable because it will make it difficult to handle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead save the following information about text in your table&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;      ID                            = '0001'&lt;/P&gt;&lt;P&gt;      LANGUAGE                      = SY-LANGU&lt;/P&gt;&lt;P&gt;      NAME                          = 'ASSIGNAR'&lt;/P&gt;&lt;P&gt;      OBJECT                        = 'FB15'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and by using the above four you will be able to read long text form system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For displaying long text i am not clear because there is no such Function module available.&lt;/P&gt;&lt;P&gt;I think the 'READ_TEXT' may work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 06:35:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629061#M280856</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-25T06:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629062#M280857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi HRA,&lt;/P&gt;&lt;P&gt;So how do i handle the LT into my ztable? I have to do it.&lt;/P&gt;&lt;P&gt;can u plz explain me the code in bold?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Instead save the following information about text in your table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID = '0001'&lt;/P&gt;&lt;P&gt;LANGUAGE = SY-LANGU&lt;/P&gt;&lt;P&gt;NAME = 'ASSIGNAR'&lt;/P&gt;&lt;P&gt;OBJECT = 'FB15'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 06:51:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629062#M280857</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T06:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629063#M280858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this information is about long text which is saved in sap with some id and this id is needed to identify the long text. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means we can identify long text from sap system by using these fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID, LANGUAGE, NAME, OBJECT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look into 'READ_TEXT' function module. what fields we need to read text. So if we have this information available we can read our long text from sap system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So when you are creating long text generate a unique id for each text  and save this id in ztable. &lt;/P&gt;&lt;P&gt;and then use this id to read text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;      ID                            = '0001'&lt;/P&gt;&lt;P&gt;      LANGUAGE                      = SY-LANGU&lt;/P&gt;&lt;P&gt;      NAME                          = 'ASSIGNAR'&lt;/P&gt;&lt;P&gt;      OBJECT                        = 'FB15'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      HEADER                        = LS_HEAD&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      LINES                         = LT_LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope i am clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 07:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629063#M280858</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-25T07:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629064#M280859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So how do i generate the Unique ID and related it to my ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u got my requirement right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me in getting it done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 07:04:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629064#M280859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T07:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629065#M280860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it depends on you. what scheme may suits you. &lt;/P&gt;&lt;P&gt;you just need to generate NAME field for each of your text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIKE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for first text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ID                            = '0001'&lt;/P&gt;&lt;P&gt;      LANGUAGE                      = SY-LANGU&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;      NAME                          = '1'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;      OBJECT                        = 'FB15'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for second text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ID                            = '0001'&lt;/P&gt;&lt;P&gt;      LANGUAGE                      = SY-LANGU&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;      NAME                          = '2'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;      OBJECT                        = 'FB15'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select the maximum name assigned and increment 1 into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 07:15:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629065#M280860</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-25T07:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: EDIT_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629066#M280861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No it did not solve the issue, my main problem is how to save the LT related to a RFQ and its items,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFQ is the header&lt;/P&gt;&lt;P&gt;RFQ items are in table control and i need to maintain LT for each item. so how do i save the LT for each item in Z table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else plz suggest me some other possibility.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks alot for ur patience.&lt;/P&gt;&lt;P&gt;Pratyusha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2006 08:32:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/edit-text/m-p/1629066#M280861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-25T08:32:58Z</dc:date>
    </item>
  </channel>
</rss>

