<?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: Help reqd on smartfrom in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897962#M681376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i remove the loop...it throws an error...says the int table gline1 has no header line....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i give....no errors has found....but the text is not displaying in the ouput form..while executing from me23n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 10:26:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T10:26:08Z</dc:date>
    <item>
      <title>Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897952#M681366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im facing a problem in PO-smartform...that i want to display a text fully as whatever given in the header detail text window.....from me23n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it displaying the 1st line of the text only....but i want the full details whatever the user given on it...how to do it??? &lt;/P&gt;&lt;P&gt;will i have to give it on loop...means looping the window....???&lt;/P&gt;&lt;P&gt;or will i have to declare it in global definition......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do the needful and reply &amp;lt;b&amp;gt;in detail,&amp;lt;/b&amp;gt; at the earliest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ur ref....i've enclosed the coding below&lt;/P&gt;&lt;P&gt;**********************************************&lt;/P&gt;&lt;P&gt;data: gline1 like tline occurs 0 with header line,&lt;/P&gt;&lt;P&gt;      var like THEAD-TDNAME.&lt;/P&gt;&lt;P&gt;select evtxt from t027b into g_evtxt where evers = g_xekpo-evers and spras = 'E' .&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;select tdid from stxh into gtdid where tdname = ZXEKKO-EBELN.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;var = zxekko-ebeln.&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                            = gtdid&lt;/P&gt;&lt;P&gt;    language                      = 'E'&lt;/P&gt;&lt;P&gt;    name                          = var&lt;/P&gt;&lt;P&gt;    object                        = 'EKKO'&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    lines                         = gline1&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;loop at gline1.&lt;/P&gt;&lt;P&gt;gline = gline1-tdline.&lt;/P&gt;&lt;P&gt;if gline ne space.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;******************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 07:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897952#M681366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T07:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897953#M681367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at gline1.&lt;/P&gt;&lt;P&gt;gline = gline1-tdline.&lt;/P&gt;&lt;P&gt;if gline ne space.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;P&gt;endif.&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;in the above code what is 'GLINE'. also where ur trying to this the header text is also imp, ru trying to display in a tempate or a table.&lt;/P&gt;&lt;P&gt;pls reply back with the information&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 08:00:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897953#M681367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T08:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897954#M681368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check da template if ur using one to display text.. try increasing its dimensions in table painter and see if u get da entire text or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 08:05:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897954#M681368</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2007-10-11T08:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897955#M681369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gline is a type....as i called in global def as gline type char70&lt;/P&gt;&lt;P&gt;the whole part...i've declared it under template.....it ahs to display below the main window(as footer window)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply me&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 08:15:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897955#M681369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T08:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897956#M681370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;now since u have multiples lines that means in ur table gline1 there would multiple records,each record corresponding to single line in ur header text.&lt;/P&gt;&lt;P&gt;   now what u do is&lt;/P&gt;&lt;P&gt;1) create a work area (say wa type lines) type lines&lt;/P&gt;&lt;P&gt;2) in ur footer( here i am talking about the footer in ur main window) create a loop( the one which u get after u right click).&lt;/P&gt;&lt;P&gt;2) now loop lines1 into wa&lt;/P&gt;&lt;P&gt;3) and just drag wa-tdlines into the field where u want to display.&lt;/P&gt;&lt;P&gt;     this should mostly work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:11:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897956#M681370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897957#M681371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi amit....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for ur prompt reply...and sorry for the delay in my side&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st....my window is the separate one not at all in main window....(it is the secondary window after the main window detials displayed....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i did the same as u mentioned...here my work area is gline &lt;/P&gt;&lt;P&gt;in global def....i've given as&lt;/P&gt;&lt;P&gt;gline1 type table of tdline&lt;/P&gt;&lt;P&gt;gline type tdline.(wa)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in loop...i've given as gline1 into gline.&lt;/P&gt;&lt;P&gt;and in text field....declared as &amp;amp;gline-tdline&amp;amp;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But its throwing asn error...that&lt;/P&gt;&lt;P&gt;the data obj "GLINE" has no structure and therfore no component called "TDLINE".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;waht i do.....tell me how to clear it...?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expecting ur reply....&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:25:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897957#M681371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897958#M681372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;    now in ur global definition---&amp;gt;global data&lt;/P&gt;&lt;P&gt;                    declare gline   type gline&lt;/P&gt;&lt;P&gt;                                gline1 type gline1&lt;/P&gt;&lt;P&gt;    and  now in global definition-----&amp;gt;types use the below code&lt;/P&gt;&lt;P&gt;        types: gline type tline,&lt;/P&gt;&lt;P&gt;                  gline1 type gline1 occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; also as long as ur displaying in a table it does not matter if its main or secondary.&lt;/P&gt;&lt;P&gt;         pls let me knw if the problem persists.&lt;/P&gt;&lt;P&gt;         if u want 2 mail me smf mail me at sawantamit84@gmail.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:37:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897958#M681372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897959#M681373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in global def...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gline1 type gline1&lt;/P&gt;&lt;P&gt;gline type gline&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in types tab:&lt;/P&gt;&lt;P&gt;types: gline type tline,&lt;/P&gt;&lt;P&gt;gline1 type gline1 occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in coding part under window: (for ur info: i gave loop funtion for this window..in that &lt;/P&gt;&lt;P&gt;                                           gline1 into gline)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: var like THEAD-TDNAME.&lt;/P&gt;&lt;P&gt;select evtxt from t027b into g_evtxt where evers = g_xekpo-evers and spras = 'E' .&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;select tdid from stxh into gtdid where tdname = ZXEKKO-EBELN.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;var = zxekko-ebeln.&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                            = gtdid&lt;/P&gt;&lt;P&gt;    language                      = 'E'&lt;/P&gt;&lt;P&gt;    name                          = var&lt;/P&gt;&lt;P&gt;    object                        = 'EKKO'&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    lines                         = gline1&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;**loop at gline1.&lt;/P&gt;&lt;P&gt;*gline = gline1-tdline.&lt;/P&gt;&lt;P&gt;*if gline ne space.&lt;/P&gt;&lt;P&gt;*exit.&lt;/P&gt;&lt;P&gt;*endif.&lt;/P&gt;&lt;P&gt;*endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in text field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;gline-tdline&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i've to change in this.....reply me in DETAIL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 09:59:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897959#M681373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T09:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897960#M681374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u have written&lt;/P&gt;&lt;P&gt;gline1 type gline1 occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change it to &lt;/P&gt;&lt;P&gt;gline1 type gline occurs 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    the code seems to be fine,also just debug the contents of gline1.&lt;/P&gt;&lt;P&gt;now the text in which ur displaying should be inside a loop (loop gline1 into gline)&lt;/P&gt;&lt;P&gt;dont give loop function to ur window,just the loop for the particular text in which ur displaying.&lt;/P&gt;&lt;P&gt;   u just add a break point after the function module read_text and check the data in gline1.&lt;/P&gt;&lt;P&gt;    i think it should work now,if u dont mind then pls just download ur smf and send me at my email id,i would be able 2 help 2 more properly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897960#M681374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897961#M681375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i've already sent u with the attachment...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just go thru it...and let me know ur replies imm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:17:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897961#M681375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help reqd on smartfrom</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897962#M681376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i remove the loop...it throws an error...says the int table gline1 has no header line....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i give....no errors has found....but the text is not displaying in the ouput form..while executing from me23n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;sankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 10:26:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-reqd-on-smartfrom/m-p/2897962#M681376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T10:26:08Z</dc:date>
    </item>
  </channel>
</rss>

