<?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 Long text problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459988#M831292</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having Problem in Uploading the long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done a BDC for IA01. after that I am trying to upload the Long text using the FM Save_text and it returns with sy-subrc = 0 but when I go to the transaction and see the ling text it dosent have it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i have tried a different approach. During the BDC i go to the long text screen put 2 dummy lines and come back. Now in IA01 for this operation it shows the long text check box checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when I run the program to Upload the long text it uploads the long text with the FM save_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one suggest me a way to upload with out the check box checked but still I can upload the long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Mar 2008 19:27:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-04T19:27:23Z</dc:date>
    <item>
      <title>Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459988#M831292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having Problem in Uploading the long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done a BDC for IA01. after that I am trying to upload the Long text using the FM Save_text and it returns with sy-subrc = 0 but when I go to the transaction and see the ling text it dosent have it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i have tried a different approach. During the BDC i go to the long text screen put 2 dummy lines and come back. Now in IA01 for this operation it shows the long text check box checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when I run the program to Upload the long text it uploads the long text with the FM save_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one suggest me a way to upload with out the check box checked but still I can upload the long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any Suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 19:27:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459988#M831292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T19:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459989#M831293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do a &lt;STRONG&gt;COMMIT WORK&lt;/STRONG&gt; before the call to &lt;STRONG&gt;SAVE_TEXT&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 19:33:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459989#M831293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T19:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459990#M831294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have done the Commit work after the save text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'SAVE_TEXT'
        EXPORTING
*       CLIENT                = CLIENT
          HEADER               = HEADER
         INSERT                = 'X'
         SAVEMODE_DIRECT       = 'X'
         OWNER_SPECIFIED       = 'X'
*   LOCAL_CAT             = 'X'
       IMPORTING
         FUNCTION              = STATUS
         NEWHEADER             = HEADER
        TABLES
          LINES                 = LINES
       EXCEPTIONS
         ID                    = 1
         LANGUAGE              = 2
         NAME                  = 3
         OBJECT                = 4
         OTHERS                = 5.

      IF SY-SUBRC &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

      CALL FUNCTION 'COMMIT_TEXT'.
      COMMIT WORK AND WAIT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 19:35:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459990#M831294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T19:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459991#M831295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any More suggestions Friends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 20:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459991#M831295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T20:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459992#M831296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Clues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ster&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 20:42:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459992#M831296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T20:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459993#M831297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had the same problem when I called CREATE_TEXT until I added the call to COMMIT_TEXT as shown below.  Then I was able to see the long text in the transaction.  Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CREATE_TEXT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        FID         = c_tdid        "KOPF&lt;/P&gt;&lt;P&gt;        FLANGUAGE   = c_tdspras&lt;/P&gt;&lt;P&gt;        FNAME       = LV_TXTNAME    "CLIENT + PO NUMBER&lt;/P&gt;&lt;P&gt;        FOBJECT     = c_tdobject    "AUKF&lt;/P&gt;&lt;P&gt;        SAVE_DIRECT = 'X'&lt;/P&gt;&lt;P&gt;        FFORMAT     = '*'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        FLINES      = LT_TXTLINES    "LONG TEXT TABLE&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        NO_INIT     = 1&lt;/P&gt;&lt;P&gt;        NO_SAVE     = 2&lt;/P&gt;&lt;P&gt;        OTHERS      = 3.&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;   if text is not created append to the error internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      s_error-aufnr  = it_input-aufnr.&lt;/P&gt;&lt;P&gt;      s_error-text   = it_input-longtext.&lt;/P&gt;&lt;P&gt;      APPEND s_error TO i_error.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'COMMIT_TEXT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          OBJECT          = c_tdobject&lt;/P&gt;&lt;P&gt;          NAME            = LV_TXTNAME&lt;/P&gt;&lt;P&gt;          ID              = c_tdid&lt;/P&gt;&lt;P&gt;          LANGUAGE        = 'S'&lt;/P&gt;&lt;P&gt;          SAVEMODE_DIRECT = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      g_plnnr_count = g_plnnr_count + 1.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 20:57:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459993#M831297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T20:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459994#M831298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ROn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you had this issue did the check box for the Long text was checked before you uploaded the long text or did it happen automatic after you uploaded the long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ster&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 21:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459994#M831298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T21:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459995#M831299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ron.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dosent help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ster&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 21:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459995#M831299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T21:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459996#M831300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ster,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had problems with long text before and got some help from SDN members.&lt;/P&gt;&lt;P&gt;But I am not sure if your issue is the same.&lt;/P&gt;&lt;P&gt;Check out this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Link:[&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="708538"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~goldie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 21:29:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459996#M831300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T21:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459997#M831301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The check box was checked before I executed CREATE_TEXT.  After further investigation, I found that CREATE_TEXT and SAVE_TEXT do not display on the screen if a value was not prevously entered on the screen to set the indicator that a long text exists.  To get around this, I executed a dynpro in my ABAP program to put an "&lt;STRONG&gt;" in the Long Text field.  After doing this, I was then able to add multiple lines to the Long Text for the Production Order which overlayed the "&lt;/STRONG&gt;" by executing CREATE_TEXT.  .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 13:44:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459997#M831301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T13:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459998#M831302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the same problem at RFC_SAVE_TEXT. Is that you call the batch input to add "" to long text? Seem it is not good to use batch input&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 02:41:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459998#M831302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T02:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459999#M831303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA : TP_TEXT TYPE STRING,&lt;/P&gt;&lt;P&gt;       TP_LONGTX(40),&lt;/P&gt;&lt;P&gt;       TP_POS    TYPE I,&lt;/P&gt;&lt;P&gt;       TP_OFFSET TYPE I,&lt;/P&gt;&lt;P&gt;       TP_MAX TYPE I,&lt;/P&gt;&lt;P&gt;       TP_FIRSTLT,&lt;/P&gt;&lt;P&gt;       TP_13(2) TYPE N,&lt;/P&gt;&lt;P&gt;       TP_LASTCH,&lt;/P&gt;&lt;P&gt;       TP_LASTPO(2) TYPE N,&lt;/P&gt;&lt;P&gt;       TP_LASTTX TYPE STRING,&lt;/P&gt;&lt;P&gt;       TP_CUMLEN TYPE I.&lt;/P&gt;&lt;P&gt;DATA: TP_LENM TYPE P.                "length of line&lt;/P&gt;&lt;P&gt;DATA: TP_TEXT1 TYPE STRING.          "for paragraph&lt;/P&gt;&lt;P&gt;DATA: TP_TEXT2 TYPE STRING.          "for line&lt;/P&gt;&lt;P&gt;DATA: TP_LEN TYPE I.            "total length of line&lt;/P&gt;&lt;P&gt;DATA: TP_DIV TYPE P DECIMALS 2.      "length divided by 40&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is code u paste where long text is recorded &lt;/P&gt;&lt;P&gt;LOOP AT TA_TEXT INTO WA_TEXT WHERE PLNNR = WA_ITEM-PLNNR AND VORNR = WA_ITEM-VORNR.&lt;/P&gt;&lt;P&gt;    TP_13     = 15.&lt;/P&gt;&lt;P&gt;    TP_POS    = 0.&lt;/P&gt;&lt;P&gt;    TP_OFFSET = 40.&lt;/P&gt;&lt;P&gt;    TP_LENM = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****getting the length of text&lt;/P&gt;&lt;P&gt;    TP_LEN = STRLEN( WA_TEXT-TXLINE ).&lt;/P&gt;&lt;P&gt;    TP_MAX = TP_LEN - 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;total length divided by 40&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;    TP_DIV = TP_LEN DIV 40.&lt;/P&gt;&lt;P&gt;    TP_TEXT = TP_LEN MOD 40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF TP_LEN &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      IF TP_OFFSET &amp;gt; TP_LEN.&lt;/P&gt;&lt;P&gt;        TP_OFFSET = TP_LEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR TP_FIRSTLT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WHILE TP_DIV &amp;gt;= 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       TP_FIRSTLT = CN_Y.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;********when number of line will be less than 10 concatenate with zero&lt;/P&gt;&lt;P&gt;        CONCATENATE 'RSTXT-TXPARGRAPH(' TP_13 ')' INTO TP_TEXT1.&lt;/P&gt;&lt;P&gt;        CONCATENATE 'RSTXT-TXLINE('     TP_13 ')' INTO TP_TEXT2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        PERFORM BDC_DYNPRO      USING 'SAPLSTXX' '1100'.&lt;/P&gt;&lt;P&gt;        PERFORM BDC_FIELD       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                       TP_TEXT2.&lt;/P&gt;&lt;P&gt;        IF TP_FIRSTLT IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          TP_LONGTX = WA_TEXT-TXLINE+TP_POS(TP_OFFSET).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          PERFORM BDC_FIELD       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                        '=EDNL'.&lt;/P&gt;&lt;P&gt;          PERFORM BDC_FIELD       USING TP_TEXT2&lt;/P&gt;&lt;P&gt;                                          TP_LONGTX.&lt;/P&gt;&lt;P&gt;          TP_FIRSTLT = CN_N.&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          TP_CUMLEN = TP_POS + 40.&lt;/P&gt;&lt;P&gt;          IF TP_CUMLEN &amp;gt; TP_LEN.&lt;/P&gt;&lt;P&gt;            TP_OFFSET = TP_LEN - TP_POS.&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;          TP_LONGTX = WA_TEXT-TXLINE+TP_POS(TP_OFFSET).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          PERFORM BDC_FIELD       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                         TP_TEXT2.&lt;/P&gt;&lt;P&gt;          PERFORM BDC_FIELD       USING TP_TEXT2&lt;/P&gt;&lt;P&gt;                                          TP_LONGTX.&lt;/P&gt;&lt;P&gt;          PERFORM BDC_FIELD       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                        TP_TEXT1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          IF TP_LASTCH = ' '.&lt;/P&gt;&lt;P&gt;            PERFORM BDC_FIELD       USING TP_TEXT1&lt;/P&gt;&lt;P&gt;                                          ' '.&lt;/P&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            PERFORM BDC_FIELD       USING TP_TEXT1&lt;/P&gt;&lt;P&gt;                                          '='.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         PERFORM BDC_FIELD       USING 'BDC_OKCODE'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                       '=EDIN'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          PERFORM BDC_FIELD       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                        '=EDIO'.&lt;/P&gt;&lt;P&gt;&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;        TP_POS    = TP_POS + 40.&lt;/P&gt;&lt;P&gt;        TP_OFFSET =  40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        TP_13 = TP_13 + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        TP_DIV = TP_DIV - 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       tp_lastpo = tp_offset - 1.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       concatenate 'tp_longtx+' tp_lastpo '(1)' into tp_lasttx.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        TP_LASTCH = TP_LONGTX+39(1).&lt;/P&gt;&lt;P&gt;      ENDWHILE.&lt;/P&gt;&lt;P&gt;      CLEAR: TP_POS, TP_OFFSET, TP_DIV.&lt;/P&gt;&lt;P&gt;&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;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM BDC_DYNPRO      USING 'SAPLSTXX' '1100'.&lt;/P&gt;&lt;P&gt;  PERFORM BDC_FIELD       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                '=TXBA'.                 "back&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 03:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3459999#M831303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T03:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Long text problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3460000#M831304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But it is still BDC Call Transaction method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any BAPI function can help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 03:55:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/long-text-problem/m-p/3460000#M831304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T03:55:09Z</dc:date>
    </item>
  </channel>
</rss>

