<?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: LONG TEXT in DATA DICTIONARY. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457660#M216249</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;create a field in your table with data type 'LCHR' with length of your choice. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this field should be the last field in table and there must be integer field before this to store the size of ths field string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Text Editor in module pool program to display, create and edit long text and save them in this field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is sample code. of creating text editor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert a custom control area in the screen and create a object of the text editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this code for PBO and PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here TEDITOR is the custom contorl area name on screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;MODULE PBO OUTPUT.
  IF EDITOR IS INITIAL.

    CREATE OBJECT TextEdit_Custom_Container
        EXPORTING
            CONTAINER_NAME = 'TEDITOR'
        EXCEPTIONS
            CNTL_ERROR = 1
            CNTL_SYSTEM_ERROR = 2
            CREATE_ERROR = 3
            LIFETIME_ERROR = 4
            LIFETIME_DYNPRO_DYNPRO_LINK = 5.
    if sy-subrc ne 0.

    ENDif.
    mycontainer = 'TEDITOR'.

    create object editor
          exporting
           parent = TextEdit_Custom_Container
           WORDWRAP_MODE =
              cl_gui_textedit=&amp;gt;wordwrap_at_fixed_position
           WORDWRAP_POSITION = line_length
           wordwrap_to_linebreak_mode = cl_gui_textedit=&amp;gt;true.

    container_linked = 1.

    refresh mytable.

  ENDIF.



ENDMODULE.                 


MODULE pai INPUT.
case ok_code.

WHEN 'SAVE'.
clear: txt.
      call method editor-&amp;gt;get_text_as_r3table
              importing table = mytable.

      loop at mytable into wa.

         concatenate txt wa into txt
         separated by '|'.
      endloop.

      shift txt left.
      length = strlen( txt ).


      ztext-CLUSTR = length.
      ztext-text   = txt.

      modify ztext.

      clear: ztext.
      refresh: mytable.
        call method editor-&amp;gt;set_text_as_r3table
              exporting table = mytable.
      Message s000(zwa).

when 'DISP'.


      select single * from
      ztext
      where fund = ztext-fund.



     SPLIT ztext-text AT '|' INTO TABLE mytable.




        call method editor-&amp;gt;set_text_as_r3table
              exporting table = mytable.






endcase.

clear: ok_code.

ENDMODULE.  &amp;lt;/b&amp;gt;&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;P&gt;Wasim Ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Jul 2006 09:24:26 GMT</pubDate>
    <dc:creator>dani_mn</dc:creator>
    <dc:date>2006-07-20T09:24:26Z</dc:date>
    <item>
      <title>LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457656#M216245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have ZGDES table.&lt;/P&gt;&lt;P&gt;I have to add one field ( for writing comments ) with text of unlimited length ?&lt;/P&gt;&lt;P&gt;I mean is there a practical way to make this 'Comments' field more like an extra text/long text field that is unlimited or at least a few hundred characters long?&lt;/P&gt;&lt;P&gt;If you have done this Kindly help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you help will be APPRECIATED.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 09:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457656#M216245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T09:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457657#M216246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use String Data Type for Variable lenght.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt;Sachin Dhingra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 09:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457657#M216246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T09:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457658#M216247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; Use &amp;lt;b&amp;gt;String&amp;lt;/b&amp;gt; Data Type for long text&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 09:19:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457658#M216247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T09:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457659#M216248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;Just use string for long text.because it can store sring data in it .&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Ankur Garg.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 09:23:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457659#M216248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T09:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457660#M216249</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;create a field in your table with data type 'LCHR' with length of your choice. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this field should be the last field in table and there must be integer field before this to store the size of ths field string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Text Editor in module pool program to display, create and edit long text and save them in this field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is sample code. of creating text editor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert a custom control area in the screen and create a object of the text editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this code for PBO and PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here TEDITOR is the custom contorl area name on screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;lt;b&amp;gt;MODULE PBO OUTPUT.
  IF EDITOR IS INITIAL.

    CREATE OBJECT TextEdit_Custom_Container
        EXPORTING
            CONTAINER_NAME = 'TEDITOR'
        EXCEPTIONS
            CNTL_ERROR = 1
            CNTL_SYSTEM_ERROR = 2
            CREATE_ERROR = 3
            LIFETIME_ERROR = 4
            LIFETIME_DYNPRO_DYNPRO_LINK = 5.
    if sy-subrc ne 0.

    ENDif.
    mycontainer = 'TEDITOR'.

    create object editor
          exporting
           parent = TextEdit_Custom_Container
           WORDWRAP_MODE =
              cl_gui_textedit=&amp;gt;wordwrap_at_fixed_position
           WORDWRAP_POSITION = line_length
           wordwrap_to_linebreak_mode = cl_gui_textedit=&amp;gt;true.

    container_linked = 1.

    refresh mytable.

  ENDIF.



ENDMODULE.                 


MODULE pai INPUT.
case ok_code.

WHEN 'SAVE'.
clear: txt.
      call method editor-&amp;gt;get_text_as_r3table
              importing table = mytable.

      loop at mytable into wa.

         concatenate txt wa into txt
         separated by '|'.
      endloop.

      shift txt left.
      length = strlen( txt ).


      ztext-CLUSTR = length.
      ztext-text   = txt.

      modify ztext.

      clear: ztext.
      refresh: mytable.
        call method editor-&amp;gt;set_text_as_r3table
              exporting table = mytable.
      Message s000(zwa).

when 'DISP'.


      select single * from
      ztext
      where fund = ztext-fund.



     SPLIT ztext-text AT '|' INTO TABLE mytable.




        call method editor-&amp;gt;set_text_as_r3table
              exporting table = mytable.






endcase.

clear: ok_code.

ENDMODULE.  &amp;lt;/b&amp;gt;&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;P&gt;Wasim Ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 09:24:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457660#M216249</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-07-20T09:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457661#M216250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use long text.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 09:26:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457661#M216250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T09:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457662#M216251</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;if the field length is unlimited .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.you need to create text object and link this object &lt;/P&gt;&lt;P&gt;with key fields of the table and reading this text and storing this text you need to use SAVE_TEXT and READ_TEXT fm's. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Create a field with data type 'LCHR' and specify length 1000 characters , (if you can estimate the maximum possible length), whenever you are creating 'LCHAR' field , before to this field you need to create 'INT2' data type field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 09:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457662#M216251</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-07-20T09:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457663#M216252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1.you need to create text object and link this object &lt;/P&gt;&lt;P&gt;with key fields of the table and reading this text and storing this text you need to use SAVE_TEXT and READ_TEXT fm's. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;How to link the text object with key fields ? could you please explain little clear.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Create a field with data type 'LCHR' and specify length 1000 characters , (if you can estimate the maximum possible length), whenever you are creating 'LCHAR' field , before to this field you need to create 'INT2' data type field.&lt;/P&gt;&lt;P&gt;when ever i am creating 'LCHAR' , before to that field how to create 'INT2' data type field ?&lt;/P&gt;&lt;P&gt;Could you please explain ion detail. I am using this table in my report and alsoI need to create TMG for this table. YOUR ARE APPRECIATED FOR YOUR HELP!&lt;/P&gt;&lt;P&gt;Waiting for ur reply .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 10:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457663#M216252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T10:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457664#M216253</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;1.create a text object using SE75 transaction .&lt;/P&gt;&lt;P&gt;2.Use FM : SAVE_TEXT to save this data with text object id.(data will be stored into STXH table).&lt;/P&gt;&lt;P&gt;3.Use READ_TEXT to retrive data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sample code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ws_thead LIKE thead,&lt;/P&gt;&lt;P&gt;      i_tline LIKE TABLE OF tline WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;data : x_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c_mara(4)            type c value 'MARA',&lt;/P&gt;&lt;P&gt;c_zid(4)            type c value 'Z001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MOVE : x_matnr  TO    ws_thead-tdname, &amp;lt;b&amp;gt;&amp;lt;-moving  MATNR to store data&amp;lt;/b&amp;gt;       &lt;/P&gt;&lt;P&gt;  c_mara   TO    ws_thead-tdobject,&lt;/P&gt;&lt;P&gt;         sy-langu  TO    ws_thead-tdspras,&lt;/P&gt;&lt;P&gt;         c_zid   TO    ws_thead-tdid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'SAVE_TEXT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      client          = sy-mandt&lt;/P&gt;&lt;P&gt;      header          = ws_thead&lt;/P&gt;&lt;P&gt;      savemode_direct = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lines           = i_tline&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      id              = 1&lt;/P&gt;&lt;P&gt;      language        = 2&lt;/P&gt;&lt;P&gt;      name            = 3&lt;/P&gt;&lt;P&gt;      object          = 4&lt;/P&gt;&lt;P&gt;      OTHERS          = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lws_id     LIKE  thead-tdid,&lt;/P&gt;&lt;P&gt;        lws_name   LIKE  thead-tdname,&lt;/P&gt;&lt;P&gt;        lws_object LIKE  thead-tdobject.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; lws_id = c_zid.&lt;/P&gt;&lt;P&gt;  lws_name = x_matnr. &amp;lt;b&amp;gt;&amp;lt;- reading data using key field(MATNR)&amp;lt;/b&amp;gt;  &lt;/P&gt;&lt;P&gt;lws_object = c_mara.&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;      client                  = sy-mandt&lt;/P&gt;&lt;P&gt;      id                      = lws_id&lt;/P&gt;&lt;P&gt;      language                = sy-langu&lt;/P&gt;&lt;P&gt;      name                    = lws_name&lt;/P&gt;&lt;P&gt;      object                  = lws_object&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lines                   = li_tline&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      id                      = 1&lt;/P&gt;&lt;P&gt;      language                = 2&lt;/P&gt;&lt;P&gt;      name                    = 3&lt;/P&gt;&lt;P&gt;      not_found               = 4&lt;/P&gt;&lt;P&gt;      object                  = 5&lt;/P&gt;&lt;P&gt;      reference_check         = 6&lt;/P&gt;&lt;P&gt;      wrong_access_to_archive = 7&lt;/P&gt;&lt;P&gt;      OTHERS                  = 8.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Appana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Reward points for useful answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: L Appana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 11:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457664#M216253</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-07-20T11:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: LONG TEXT in DATA DICTIONARY.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457665#M216254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in you suggestion : &lt;/P&gt;&lt;P&gt;"Create a field with data type 'LCHR' and specify length 1000 characters , (if you can estimate the maximum possible length), whenever you are creating 'LCHAR' field , before to this field you need to create 'INT2' data type field."&lt;/P&gt;&lt;P&gt;when ever i am creating 'LCHAR' , &amp;lt;b&amp;gt;before to that field how to create 'INT2' data type field&amp;lt;/b&amp;gt; ?&lt;/P&gt;&lt;P&gt;Could you please explain in detail. I am using this table in my report and alsoI need to create TMG for this table. If i do as u said , my table maintenance generator will work  ? YOUR HELP IS  APPRECIATED. PLEASE HELP ME TO SOLVE MY PROBLEM!&lt;/P&gt;&lt;P&gt;Waiting for ur reply .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jul 2006 13:04:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-in-data-dictionary/m-p/1457665#M216254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-20T13:04:27Z</dc:date>
    </item>
  </channel>
</rss>

