<?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: problem with long text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027406#M715875</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVEMODE_DIRECT = 'X' ( create_text or SAVE_TEXT FM )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after FM -&amp;gt; use below FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'COMMIT_TEXT'&lt;/P&gt;&lt;P&gt;               EXPORTING&lt;/P&gt;&lt;P&gt;                    OBJECT   = t_header-TDOBJECT&lt;/P&gt;&lt;P&gt;                    NAME     = t_header-TDNAME&lt;/P&gt;&lt;P&gt;                    ID       = t_header-TDID&lt;/P&gt;&lt;P&gt;endif.                    LANGUAGE = t_header-TDSPRAS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2007 20:32:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-25T20:32:54Z</dc:date>
    <item>
      <title>problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027404#M715873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam uploading longtext in transaction KP06 in bdc programing using create_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my problem is if i pass selection criteria&lt;/P&gt;&lt;P&gt;case 1: &lt;/P&gt;&lt;P&gt; Vertion : N0&lt;/P&gt;&lt;P&gt; fiscal year : 2007&lt;/P&gt;&lt;P&gt; planner profile: CCPLAN4&lt;/P&gt;&lt;P&gt;then the budeget plan data uploading successfully along with long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case2: Vertion : N1&lt;/P&gt;&lt;P&gt;in this case also everthing wrking fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case3: Vertion : 001&lt;/P&gt;&lt;P&gt;in this case budgetplan data uploading sucessfully but longtext is not uploading,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i debbug the proragm , create_text also returning sy-subrc = 0. but if i check in KP06  the long text is not there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data declaration&lt;/P&gt;&lt;P&gt;vertion : VERSN type C(3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u tell me the problem is in logic or with FM ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note : i checked with save_text also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;neeru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 20:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027404#M715873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T20:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027405#M715874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Neeru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the combination of the SAVE_TEXT and   COMMIT_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  CALL FUNCTION 'SAVE_TEXT'
       EXPORTING
            HEADER = THEAD
            INSERT = TEXT_NEU
            SAVEMODE_DIRECT = TRUE
       IMPORTING
            FUNCTION = TEXT_FUNKTION
            NEWHEADER = NEWTHEAD
       TABLES
            LINES = TEXTZEILEN
       EXCEPTIONS
            ID = 01
            LANGUAGE = 02
            NAME = 03
            OBJECT = 04.
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    MOVE FALSE TO VERBUCHT.
    MESSAGE E298 WITH SY-SUBRC.
  ELSE.
    CALL FUNCTION 'COMMIT_TEXT'.
*        IMPORTING
*             COMMIT_COUNT = I01.

    MOVE TRUE TO VERBUCHT.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 20:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027405#M715874</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-10-25T20:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027406#M715875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVEMODE_DIRECT = 'X' ( create_text or SAVE_TEXT FM )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after FM -&amp;gt; use below FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'COMMIT_TEXT'&lt;/P&gt;&lt;P&gt;               EXPORTING&lt;/P&gt;&lt;P&gt;                    OBJECT   = t_header-TDOBJECT&lt;/P&gt;&lt;P&gt;                    NAME     = t_header-TDNAME&lt;/P&gt;&lt;P&gt;                    ID       = t_header-TDID&lt;/P&gt;&lt;P&gt;endif.                    LANGUAGE = t_header-TDSPRAS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 20:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027406#M715875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T20:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027407#M715876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the FM Create_text internally contains both FMs save_text and commit_text,&lt;/P&gt;&lt;P&gt;even i debug the FM in case of vertion N1, N0 and 001,&lt;/P&gt;&lt;P&gt;all the cases sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;CLEAR G_OBJNR.&lt;/P&gt;&lt;P&gt;LOOP AT RECORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COST = RECORD-BDC01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      input  = COST&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      output = COST.&lt;/P&gt;&lt;P&gt;    CONCATENATE 'KS' p_kokrs record-bdc00 INTO g_objnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SELECT SINGLE * FROM COSP WHERE OBJNR = g_objnr&lt;/P&gt;&lt;P&gt;                          AND GJAHR = P_GJAHR&lt;/P&gt;&lt;P&gt;                          AND VERSN = p_ver&lt;/P&gt;&lt;P&gt;                          AND KSTAR = COST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;      LEDNR = COSP-LEDNR.&lt;/P&gt;&lt;P&gt;      OBJNR = COSP-OBJNR.&lt;/P&gt;&lt;P&gt;      GJAHR = COSP-GJAHR.&lt;/P&gt;&lt;P&gt;      WRTTP = COSP-WRTTP.&lt;/P&gt;&lt;P&gt;      VERSN = COSP-VERSN.&lt;/P&gt;&lt;P&gt;      KSTAR = COSP-KSTAR.&lt;/P&gt;&lt;P&gt;      HRKFT = COSP-HRKFT.&lt;/P&gt;&lt;P&gt;      VRGNG = COSP-VRGNG.&lt;/P&gt;&lt;P&gt;      VBUND = COSP-VBUND.&lt;/P&gt;&lt;P&gt;      PARGB = COSP-PARGB.&lt;/P&gt;&lt;P&gt;      BEKNZ = COSP-BEKNZ.&lt;/P&gt;&lt;P&gt;      TWAER = COSP-TWAER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE LEDNR OBJNR INTO OBJNR.&lt;/P&gt;&lt;P&gt;CONCATENATE OBJNR GJAHR INTO TNAME1 separated BY SPACE10.&lt;/P&gt;&lt;P&gt;CONCATENATE TNAME1 WRTTP VERSN INTO TNAME2.&lt;/P&gt;&lt;P&gt;CONCATENATE TNAME2 KSTAR INTO TNAME3 separated BY SPACE.&lt;/P&gt;&lt;P&gt;CONCATENATE TNAME3 VRGNG INTO TNAME4 separated BY SPACE4.&lt;/P&gt;&lt;P&gt;CONCATENATE TNAME4 BEKNZ INTO TNAME5 separated BY SPACE10.&lt;/P&gt;&lt;P&gt;CONCATENATE TNAME5 TWAER INTO TNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I_THEAD-TDOBJECT = 'CCSS'.&lt;/P&gt;&lt;P&gt; I_THEAD-TDID = 'COSP'.&lt;/P&gt;&lt;P&gt; I_THEAD-TDNAME = TNAME.&lt;/P&gt;&lt;P&gt; I_THEAD-TDSPRAS = 'E'.&lt;/P&gt;&lt;P&gt; APPEND I_THEAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_tline-tdformat = '*'.&lt;/P&gt;&lt;P&gt;I_TLINE-TDLINE = RECORD-LONGTEXT.&lt;/P&gt;&lt;P&gt;APPEND I_TLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_thead.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CREATE_TEXT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FID               = I_THEAD-TDID&lt;/P&gt;&lt;P&gt;    FLANGUAGE         = I_THEAD-TDSPRAS&lt;/P&gt;&lt;P&gt;    FNAME             = I_THEAD-TDNAME&lt;/P&gt;&lt;P&gt;    FOBJECT           = I_THEAD-TDOBJECT&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SAVE_DIRECT       = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FFORMAT           = '*'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    FLINES            = i_tline&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_INIT           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_SAVE           = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS            = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;CLEAR I_TLINE.&lt;/P&gt;&lt;P&gt;REFRESH I_TLINE.&lt;/P&gt;&lt;P&gt;CLEAR I_THEAD.&lt;/P&gt;&lt;P&gt;REFRESH I_THEAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * from cokp into itab WHERE OBJNR = g_objnr&lt;/P&gt;&lt;P&gt;                          AND GJAHR = P_GJAHR&lt;/P&gt;&lt;P&gt;                          AND VERSN = p_ver&lt;/P&gt;&lt;P&gt;                          AND KSTAR = COST.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;   itab-TXFLG = 'X'.&lt;/P&gt;&lt;P&gt;   append itab.&lt;/P&gt;&lt;P&gt;   write:/ 'Text saved for', record-bdc00 , record-bdc01.&lt;/P&gt;&lt;P&gt;   else.&lt;/P&gt;&lt;P&gt;      write:/ 'Text saved for', record-bdc00 , record-bdc01.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my program wrking fine but the long text is not visible for vertion 001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;niru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 20:36:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027407#M715876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T20:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027408#M715877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Neeru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess you should use DELETE_TEXT FM Before calling Create_TEXT or SAVE_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For testing purpose call delete_text FM ,Delete the text then use Create-text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DELETE_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;      CLIENT                  = SY-MANDT&lt;/P&gt;&lt;P&gt;        ID                    = c_tdid&lt;/P&gt;&lt;P&gt;        LANGUAGE              = 'E'&lt;/P&gt;&lt;P&gt;        NAME                  =  TNAME&lt;/P&gt;&lt;P&gt;        OBJECT                = 'ROUTING'&lt;/P&gt;&lt;P&gt;        SAVEMODE_DIRECT       = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     TEXTMEMORY_ONLY       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     LOCAL_CAT             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       NOT_FOUND             = 1&lt;/P&gt;&lt;P&gt;       OTHERS                = 2&lt;/P&gt;&lt;P&gt;              .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use create_text here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 20:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027408#M715877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T20:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027409#M715878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Neeru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the problem is in this part of the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONCATENATE LEDNR OBJNR INTO OBJNR.
CONCATENATE OBJNR GJAHR INTO TNAME1 separated BY SPACE10.
CONCATENATE TNAME1 WRTTP VERSN INTO TNAME2.
CONCATENATE TNAME2 KSTAR INTO TNAME3 separated BY SPACE.
CONCATENATE TNAME3 VRGNG INTO TNAME4 separated BY SPACE4.
CONCATENATE TNAME4 BEKNZ INTO TNAME5 separated BY SPACE10.
CONCATENATE TNAME5 TWAER INTO TNAME.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works fine for the version with 2 digits (N1, N0) but not for the version with 3 digits (001).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens, with the version 001 is the all other values after the VERSN has shifted right with 1 digit.&lt;/P&gt;&lt;P&gt;To avoid this, I suggest you use like&lt;/P&gt;&lt;P&gt;TNAME+0(2) = LEDNR.&lt;/P&gt;&lt;P&gt;TNAME+2(10) = OBJNR. &lt;/P&gt;&lt;P&gt;and rest....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you understand what I mean.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 20:50:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027409#M715878</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-10-25T20:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027410#M715879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naimesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i chaecked in deubugging , there is no problem with length of vertion . &lt;/P&gt;&lt;P&gt;even the FM also returning sy-subrc = 0. but if i check in KP06 there is no long text available there.&lt;/P&gt;&lt;P&gt;please suggest me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 23:51:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027410#M715879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T23:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027411#M715880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Neeru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please try to make the T_NAME in the following way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TNAME+0(2) = LEDNR .
TNAME+2(22) = OBJNR .
TNAME+22(4) = GJAHR .
TNAME+26(2) = WRTTP .
TNAME+28(3) = VERSN .
TNAME+31(10) = KSTAR .
TNAME+41(4) = VRGNG .
TNAME+45(1) = BEKNZ .
TNAME+46(5) = TWAER.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 13:18:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027411#M715880</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-10-26T13:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027412#M715881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i noticed some problem in conatactnation of TNAME,&lt;/P&gt;&lt;P&gt;now my program wrking fine&lt;/P&gt;&lt;P&gt;thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;neeru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 23:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-long-text/m-p/3027412#M715881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T23:26:32Z</dc:date>
    </item>
  </channel>
</rss>

