<?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: Smart Form Offset Issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262036#M1385196</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have each of these 2 character strings stored as distinct data elements I would suggest that you set up a SMARTSTYLE with tabs that correspond to where you want your values to line up.  Use that SMARTSTYLE as your output style for the various text element(s) and insert a tab between each of the distinct elements.  Just make sure you have enough space between the tabs for the largest element you need to display.  I recently created a bunch of SMARTFORMS to replace old MS Access reports and getting data to line up on the form was the most difficult part of the process.  From the description of your problem it sounds like the problem is that some of the text is taking up more physical space on the form - the SMARTSTYLE &lt;STRONG&gt;should&lt;/STRONG&gt; take care of that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Oct 2009 19:28:30 GMT</pubDate>
    <dc:creator>dboisvert</dc:creator>
    <dc:date>2009-10-27T19:28:30Z</dc:date>
    <item>
      <title>Smart Form Offset Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262033#M1385193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a driver program with Internal table as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB-Line1 (String)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AL    AL    CL    BE (separeted by 2 spaces)&lt;/P&gt;&lt;P&gt;01    02     131   87&lt;/P&gt;&lt;P&gt;BE    CE     DE    DL&lt;/P&gt;&lt;P&gt;11    23     12     00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used offsets to create a string using concatinating various values.&lt;/P&gt;&lt;P&gt;The above structure is required in Smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However in the form these are not dispalyed on below the other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sample display in smartform is like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AL        AL        CL        BE (separated by more than 2 places.)&lt;/P&gt;&lt;P&gt;01    02     131   87&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me with this?&lt;/P&gt;&lt;P&gt;Why is the Internal table not printed as it is?&lt;/P&gt;&lt;P&gt;I have used the Default paragraph - *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in adv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pranu Pranu on Oct 26, 2009 7:15 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 06:14:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262033#M1385193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T06:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: Smart Form Offset Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262034#M1385194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;ITAB-Line1 (String)
 
 AL    AL    CL    BE
 01    02     131   87
 BE    CE     DE    DL
 11    23     12     00
 

 AL        AL        CL        BE
 01    02     131   87&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope you are talking about this .. pattern.. (got it from quoting your reply)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now. --&lt;/P&gt;&lt;P&gt;its either a justification (left/right) problem or because of the spaces you have between them.&lt;/P&gt;&lt;P&gt;you can pass the values to some variable and use CONDENSE val NO-GAPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or for justification you can pass to string value and write.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 06:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262034#M1385194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T06:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Smart Form Offset Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262035#M1385195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;Tried various options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am taking the string and then appending it to an ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The itab is passed to the form interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The debug check is showing the data as desired. Both in the driver and the smart form.&lt;/P&gt;&lt;P&gt;However the display is still a problem exactly as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

ITAB-Line1 (String)
 
 AL    AL    CL    BE
 01    02     131   87
 BE    CE     DE    DL
 11    23     12     00
 
 
 AL        AL        CL        BE
 01    02     131   87


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help with your inputs.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2009 09:21:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262035#M1385195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-26T09:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Smart Form Offset Issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262036#M1385196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have each of these 2 character strings stored as distinct data elements I would suggest that you set up a SMARTSTYLE with tabs that correspond to where you want your values to line up.  Use that SMARTSTYLE as your output style for the various text element(s) and insert a tab between each of the distinct elements.  Just make sure you have enough space between the tabs for the largest element you need to display.  I recently created a bunch of SMARTFORMS to replace old MS Access reports and getting data to line up on the form was the most difficult part of the process.  From the description of your problem it sounds like the problem is that some of the text is taking up more physical space on the form - the SMARTSTYLE &lt;STRONG&gt;should&lt;/STRONG&gt; take care of that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 19:28:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-form-offset-issue/m-p/6262036#M1385196</guid>
      <dc:creator>dboisvert</dc:creator>
      <dc:date>2009-10-27T19:28:30Z</dc:date>
    </item>
  </channel>
</rss>

