<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ABAP Tutorials &#187; Formatting</title>
	<atom:link href="http://www.abap-tutorials.com/tag/formatting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abap-tutorials.com</link>
	<description>ABAP Tutorials, Guides, Training, Manuals</description>
	<lastBuildDate>Thu, 17 Nov 2011 07:43:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>ABAP Program to add Colors in ALV Grid</title>
		<link>http://www.abap-tutorials.com/2009/09/17/abap-program-to-add-colors-in-alv-grid/</link>
		<comments>http://www.abap-tutorials.com/2009/09/17/abap-program-to-add-colors-in-alv-grid/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 11:01:33 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[ALV]]></category>
		<category><![CDATA[Formatting]]></category>
		<category><![CDATA[Report]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[ALV grid]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://www.abap-tutorials.com/?p=976</guid>
		<description><![CDATA[Normally, there are requirements to display set of rows differently based to certain conditions in ALV. To distinguish them easily, in a one go, we can add colors to the rows(based on condition of course). The following program adds strokes of different color to your ALV Grid.    Program Code *&#038;---------------------------------------------------------------------* *&#038; Report ZCOLOR_IN_ALV *&#038; [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Normally, there are requirements to display set of rows differently based to certain conditions in ALV. To distinguish them easily, in a one go, we can add colors to the rows(based on condition of course).<br />
The following program adds strokes of different color to your ALV Grid.</p>
<p style="text-align: center;"> </p>
<div style="float: left; width: 100%;"><img class="aligncenter size-full wp-image-977" title="Add Color in ALV" src="http://www.abap-tutorials.com/wp-content/uploads/2009/09/color_in_alv.jpg" alt="Add Color in ALV" width="517" height="263" /></div>
<p><span style="color: #00ff00;"><span id="more-976"></span></span></p>
<p><span style="color: #00ff00;"> <strong><span style="color: #339966;">Program Code</span></strong></span></p>
<pre lang="ABAP">
*&#038;---------------------------------------------------------------------*
*&#038; Report  ZCOLOR_IN_ALV
*&#038;
*&#038;---------------------------------------------------------------------*
*&#038;
*&#038;
*&#038;---------------------------------------------------------------------*

REPORT  ZCOLOR_IN_ALV.

TABLES: ekko.

type-pools: slis. "ALV Declarations
*Data Declaration*----------------
TYPES: BEGIN OF t_ekko,
ebeln TYPE ekpo-ebeln,
ebelp TYPE ekpo-ebelp,
statu TYPE ekpo-statu,
aedat TYPE ekpo-aedat,
matnr TYPE ekpo-matnr,
menge TYPE ekpo-menge,
meins TYPE ekpo-meins,
netpr TYPE ekpo-netpr,
peinh TYPE ekpo-peinh,
line_color(4) type c, "Used to store row color attributes
END OF t_ekko.

DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
wa_ekko TYPE t_ekko.
*ALV data declarations
data: fieldcatalog type slis_t_fieldcat_alv with header line,
gd_tab_group type slis_t_sp_group_alv,
gd_layout type slis_layout_alv,
gd_repid like sy-repid.

*Start-of-selection.
START-OF-SELECTION.

  perform data_retrieval.

  perform build_fieldcatalog.

  perform build_layout.

  perform display_alv_report.

*&#038;---------------------------------------------------------------------
**&#038; Form BUILD_FIELDCATALOG
*&#038;---------------------------------------------------------------------
** Build Fieldcatalog for ALV Report
*----------------------------------------------------------------------*
form build_fieldcatalog.

  fieldcatalog-fieldname = 'EBELN'.
  fieldcatalog-seltext_m = 'Purchase Order'.
  fieldcatalog-col_pos = 0.
  fieldcatalog-outputlen = 10.
  fieldcatalog-emphasize = 'X'.
  fieldcatalog-key = 'X'.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.

  fieldcatalog-fieldname = 'EBELP'.
  fieldcatalog-seltext_m = 'PO Item'.
  fieldcatalog-col_pos = 1.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.

  fieldcatalog-fieldname = 'STATU'.
  fieldcatalog-seltext_m = 'Status'.
  fieldcatalog-col_pos = 2.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.

  fieldcatalog-fieldname = 'AEDAT'.
  fieldcatalog-seltext_m = 'Item change date'.
  fieldcatalog-col_pos = 3.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.

  fieldcatalog-fieldname = 'MATNR'.
  fieldcatalog-seltext_m = 'Material Number'.
  fieldcatalog-col_pos = 4.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.

  fieldcatalog-fieldname = 'MENGE'.
  fieldcatalog-seltext_m = 'PO quantity'.
  fieldcatalog-col_pos = 5.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.

  fieldcatalog-fieldname = 'MEINS'.
  fieldcatalog-seltext_m = 'Order Unit'.
  fieldcatalog-col_pos = 6.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.

  fieldcatalog-fieldname = 'NETPR'.
  fieldcatalog-seltext_m = 'Net Price'.
  fieldcatalog-col_pos = 7.
  fieldcatalog-outputlen = 15.
  fieldcatalog-datatype = 'CURR'.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.

  fieldcatalog-fieldname = 'PEINH'.
  fieldcatalog-seltext_m = 'Price Unit'.
  fieldcatalog-col_pos = 8.
  append fieldcatalog to fieldcatalog.
  clear fieldcatalog.
endform. " BUILD_FIELDCATALOG

*&#038;---------------------------------------------------------------------
**&#038; Form BUILD_LAYOUT
*&#038;---------------------------------------------------------------------
** Build layout for ALV grid report
*----------------------------------------------------------------------*
form build_layout.
  gd_layout-no_input          = 'X'.
  gd_layout-colwidth_optimize = 'X'.
  gd_layout-totals_text       = 'Totals'(201).
  gd_layout-info_fieldname    = 'LINE_COLOR'.

endform. " BUILD_LAYOUT

*&#038;---------------------------------------------------------------------
**&#038; Form DISPLAY_ALV_REPORT
*&#038;---------------------------------------------------------------------
** Display report using ALV grid
*----------------------------------------------------------------------*
form display_alv_report.
  gd_repid = sy-repid.
  call function 'REUSE_ALV_GRID_DISPLAY'
  exporting
  i_callback_program = gd_repid
  is_layout          = gd_layout
  it_fieldcat        = fieldcatalog[]
  i_save             = 'X'
*is_variant = z_template
  tables
  t_outtab          = it_ekko .

endform. " DISPLAY_ALV_REPORT
*&#038;---------------------------------------------------------------------
**&#038; Form DATA_RETRIEVAL
*&#038;---------------------------------------------------------------------
** Retrieve data form EKPO table and populate itab it_ekko
*----------------------------------------------------------------------
form data_retrieval.
  data: ld_color(1) type c.

  select ebeln
  ebelp
  statu
  aedat
  matnr
  menge
  meins
  netpr
  peinh
  up to 10 rows
  from ekpo
  into table it_ekko.

*Populate field with color attributes
  loop at it_ekko into wa_ekko.
* Populate color variable with colour properties
* Char 1 = C (This is a color property)
* Char 2 = 3 (Color codes: 1 - 7)
* Char 3 = Intensified on/off ( 1 or 0 )
* Char 4 = Inverse display on/off ( 1 or 0 )
* i.e. wa_ekko-line_color = 'C410'
    ld_color = ld_color + 1.
* Only 7 colours so need to reset color value
    if ld_color = 8.
      ld_color = 1.
    endif.

    concatenate 'C' ld_color '10' into wa_ekko-line_color.
* wa_ekko-line_color = 'C410'.
    modify it_ekko from wa_ekko.
  endloop.

endform. " DATA_RETRIEVAL
</pre>


<p>You might also be interested in these posts:<ol><li><a href='http://www.abap-tutorials.com/2009/09/10/displaying-icons-in-alv-abap/' rel='bookmark' title='Displaying Icons in ALV Grid using ABAP'>Displaying Icons in ALV Grid using ABAP</a></li>
<li><a href='http://www.abap-tutorials.com/2009/08/06/search-for-smartforms-in-your-language/' rel='bookmark' title='ABAP Program to Search For SMARTFORMS in your Language'>ABAP Program to Search For SMARTFORMS in your Language</a></li>
<li><a href='http://www.abap-tutorials.com/2009/07/09/alv-grid-the-oops-way/' rel='bookmark' title='ABAP Program for ALV Grid, the OOPS way'>ABAP Program for ALV Grid, the OOPS way</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.abap-tutorials.com/2009/09/17/abap-program-to-add-colors-in-alv-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formatting SAPScript / SMARTFORMS in SAP</title>
		<link>http://www.abap-tutorials.com/2009/08/21/formatting-sapscript-smartforms-in-sap/</link>
		<comments>http://www.abap-tutorials.com/2009/08/21/formatting-sapscript-smartforms-in-sap/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 11:46:56 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[ABAP]]></category>
		<category><![CDATA[Formatting]]></category>
		<category><![CDATA[Quick Reference]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[SAPScript]]></category>
		<category><![CDATA[Smartforms]]></category>

		<guid isPermaLink="false">http://naveenvishal.wordpress.com/?p=718</guid>
		<description><![CDATA[There are few formatting options available in SAP for text formatting in SAPScript as well as Smartforms. Following are the few useful formatting options: Offset N left-most characters of the symbol value will not be displayed. If symbol has the value 123456789, the following will be displayed: &#38;symbol&#38; -&#62; 123456789 &#38;symbol+3&#38; -&#62; 456789 &#38;symbol+7&#38; -&#62; [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">There are few formatting options available in SAP for text formatting in SAPScript as well as Smartforms.</p>
<p style="text-align:justify;">
<div id="attachment_720" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-720" title="SAPScript Formatting " src="http://naveenvishal.files.wordpress.com/2009/08/fomatting_sapscript.jpg" alt="SAPScript Formatting " width="450" height="50" /><p class="wp-caption-text">SAPScript Formatting </p></div>
<div id="attachment_721" class="wp-caption aligncenter" style="width: 460px"><img class="size-full wp-image-721" title="Smartforms Formatting" src="http://naveenvishal.files.wordpress.com/2009/08/fomatting_smarform.jpg" alt="Smartforms Formatting" width="450" height="124" /><p class="wp-caption-text">Smartforms Formatting</p></div>
<p><span id="more-718"></span></p>
<p style="text-align:justify;">Following are the few useful formatting options:</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong>Offset</strong></p>
<p style="text-align:justify;">N left-most characters of the symbol value will not be displayed.</p>
<p style="text-align:justify;">If symbol has the value 123456789, the following will be displayed:</p>
<p style="text-align:justify;">&amp;symbol&amp; -&gt; 123456789</p>
<p style="text-align:justify;">&amp;symbol+3&amp; -&gt; 456789</p>
<p style="text-align:justify;">&amp;symbol+7&amp; -&gt; 89</p>
<p style="text-align:justify;">&amp;symbol+12&amp; -&gt;</p>
<p style="text-align:justify;">&amp;symbol+0&amp; -&gt; 123456789</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Output Length</span></strong></p>
<p style="text-align:justify;">to define how many character positions should be copied from the value.</p>
<p style="text-align:justify;">If symbol has the value 123456789.</p>
<p style="text-align:justify;">&amp;symbol(3)&amp; -&gt; 123</p>
<p style="text-align:justify;">&amp;symbol(7)&amp; -&gt; 1234567</p>
<p style="text-align:justify;">
<p style="text-align:justify;">The SYST-UNAME field contains the logon name of a user called Einstein. The</p>
<p style="text-align:justify;">Dictionary entry for this field contains an output length of 12.</p>
<p style="text-align:justify;">&amp;SYST-UNAME&amp;&#8230; -&gt; Einstein&#8230;</p>
<p style="text-align:justify;">&amp;SYST-UNAME(9)&amp;&#8230; -&gt; Einstein &#8230;</p>
<p style="text-align:justify;">&amp;SYST-UNAME(*)&amp;&#8230; -&gt; Einstein &#8230;</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Omitting the Leading Sign</span></strong></p>
<p style="text-align:justify;">The S option can be used to ensure that the value is formatted without the sign.</p>
<p style="text-align:justify;">The ITCDP-TDULPOS field contains the value -100.00. The ABAP/4 Dictionary</p>
<p style="text-align:justify;">definition for this field includes a leading sign.</p>
<p style="text-align:justify;">&amp;ITCDP-TDULPOS&amp; -&gt; 100.00-</p>
<p style="text-align:justify;">&amp;ITCDP-TDULPOS(S)&amp; -&gt; 100.00</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Leading Sign to the Left</span></strong></p>
<p style="text-align:justify;">This option enables you to specify that the leading sign should be placed to the left of the number.</p>
<p style="text-align:justify;">&amp;ITCDP-TDULPOS&amp; -&gt; 100.00-</p>
<p style="text-align:justify;">&amp;ITCDP-TDULPOS(&lt;)&amp; -&gt; -100.00</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Leading Sign to the Right</span></strong></p>
<p style="text-align:justify;">If you used the SET SIGN LEFT control command to specify that the leading sign should be output before the value, this specification can be overridden for individual symbols to enable these to be output with the leading sign to the right.</p>
<p style="text-align:justify;">Syntax:</p>
<p style="text-align:justify;">&amp;symbol(&gt;)&amp;</p>
<p style="text-align:justify;">
<p style="text-align:justify;">Omitting Leading Zeros</p>
<p style="text-align:justify;">Certain symbol values are output with leading zeros. If you wish to suppress these, you may do so with the Z option.</p>
<p style="text-align:justify;">Assuming the current date is 1.1.1994, &amp;DAY&amp; -&gt; 01</p>
<p style="text-align:justify;">&amp;DAY(Z)&amp; -&gt; 1</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Space Compression</span></strong></p>
<p style="text-align:justify;">The C option has the effect of replacing each string of space characters with a single space and shifting the &#8217;words&#8217; to the left as necessary to close up the gaps.</p>
<p style="text-align:justify;">Assuming &#8216; Albert Einstein &#8216; is the symbol value,</p>
<p style="text-align:justify;">&amp;symbol&amp; -&gt; Albert Einstein</p>
<p style="text-align:justify;">&amp;symbol(C)&amp; -&gt; Albert Einstein</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Number of Decimal Places</span></strong></p>
<p style="text-align:justify;">A program symbol of one of the data types DEC, QUAN and FLTP can contain decimal place data. This option is used to override the Dictionary definition for the number of decimal places for the formatting of this symbol value.</p>
<p style="text-align:justify;">The EKPO-MENGE field contains the value 1234.56. The Dictionary definition specifies 3 decimal places and an output length of 17.</p>
<p style="text-align:justify;">&amp;EKPO-MENGE&amp; -&gt; 1,234.560</p>
<p style="text-align:justify;">&amp;EKPO-MENGE(.1) -&gt; 1,234.6</p>
<p style="text-align:justify;">&amp;EKPO-MENGE&amp;(.4) -&gt; 1,234.5600</p>
<p style="text-align:justify;">&amp;EKPO-MENGE&amp;(.0) -&gt; 1,235</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Specifying an Exponent for Floating Point Numbers</span></strong></p>
<p style="text-align:justify;">The way that a floating point number is formatted depends on whether an exponent is specified.</p>
<p style="text-align:justify;">PLMK-SOLLWERT field is assumed to have the value</p>
<p style="text-align:justify;">123456.78 and to be of data type FLTP.</p>
<p style="text-align:justify;">&amp;PLMK-SOLLWERT&amp; -&gt; +1.23456780000000E+05</p>
<p style="text-align:justify;">&amp;PLMK-SOLLWERT(E3)&amp; -&gt; +123.456780000000E+03</p>
<p style="text-align:justify;">&amp;PLMK-SOLLWERT(E6)&amp; -&gt; +0.12345678000000E+06</p>
<p style="text-align:justify;">&amp;PLMK-SOLLWERT(E0)&amp; -&gt; +123456.780000000</p>
<p style="text-align:justify;">&amp;PLMK-SOLLWERT(E)&amp; -&gt; +123456.780000000</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Right-Justified Output</span></strong></p>
<p style="text-align:justify;">Right-justified formatting can be specified with the R option. This option has to be used in conjunction with an output length specification. If symbol has the value 1234.</p>
<p style="text-align:justify;">&amp;symbol&amp; -&gt; 1234</p>
<p style="text-align:justify;">&amp;symbol(8R) -&gt; 1234</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Fill Characters</span></strong></p>
<p style="text-align:justify;">Leading spaces in a value can be replaced with a fill character.</p>
<p style="text-align:justify;">The figure for customer sales in the KNA1-UMSAT field is $700. The Dictionary description of the field specifies an output length 8.</p>
<p style="text-align:justify;">&amp;KNA1-UMSAT&amp; -&gt; 700.00</p>
<p style="text-align:justify;">&amp;KNA1-UMSAT(F*)&amp; -&gt; **700.00</p>
<p style="text-align:justify;">&amp;KNA1-UMSAT(F0)&amp; -&gt; 00700.00</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Suppress Output of Initial Value</span></strong></p>
<p style="text-align:justify;">The I option can be used to suppress the output of symbols which still contain their initial value.</p>
<p style="text-align:justify;">Assuming KNA1-UMSAT contains the value 0 and the currency is DEM.</p>
<p style="text-align:justify;">&amp;KNA1-UMSAT&amp; -&gt; 0,00</p>
<p style="text-align:justify;">&amp;KNA1-UMSAT(I)&amp; -&gt;</p>
<p style="text-align:justify;">If the field contains an amount other than 0, this value will be output in the normal way.</p>
<p style="text-align:justify;">&amp;KNA1-UMSAT&amp; -&gt; 700,00</p>
<p style="text-align:justify;">&amp;KNA1-UMSAT(I)&amp; -&gt; 700,00</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Ignore Conversion Routines</span></strong></p>
<p style="text-align:justify;">SAPscript conversion routines specified in the Dictionary are automatically recognized and used when program symbols are being formatted. Using the K option can prevent these conversions.</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Date Mask</span></strong></p>
<p style="text-align:justify;">The formatting for date fields can be defined with the SAPscript SET DATE MASK command. Executing this command causes all subsequent date fields to be output using the specified formatting.</p>
<p style="text-align:justify;">/: SET DATE MASK = &#8216;date_mask&#8217;</p>
<p style="text-align:justify;">The following templates may be used in the date mask:</p>
<p style="text-align:justify;">DD day (two digits)</p>
<p style="text-align:justify;">DDD name of day (abbreviated)</p>
<p style="text-align:justify;">DDDD name of day (written out in full)</p>
<p style="text-align:justify;">MM month (two digits)</p>
<p style="text-align:justify;">MMM name of month (abbreviated)</p>
<p style="text-align:justify;">MMMM name of month (written out in full)</p>
<p style="text-align:justify;">YY year (two digits)</p>
<p style="text-align:justify;">YYYY year (four digits)</p>
<p style="text-align:justify;">LD day (formatted as for the L option)</p>
<p style="text-align:justify;">LM month (formatted as for the L option)</p>
<p style="text-align:justify;">LY year (formatted as for the L option)</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Time Mask</span></strong></p>
<p style="text-align:justify;">You can use the SAPscript SET TIME MASK command to format time fields in a way that differs from the standard setting.</p>
<p style="text-align:justify;">Assuming the current time is 10:08:12.</p>
<p style="text-align:justify;">&amp;TIME&amp; -&gt; 10:08:12</p>
<p style="text-align:justify;">/: SET TIME MASK = &#8216;HH:MM&#8217;</p>
<p style="text-align:justify;">&amp;TIME&amp; -&gt; 10:08</p>
<p style="text-align:justify;">/: SET TIME MASK = &#8216;HH hours MM minutes&#8217;</p>
<p style="text-align:justify;">&amp;TIME&amp; -&gt; 10 hours 08 minutes</p>
<p style="text-align:justify;">&amp;TIME(Z)&amp; -&gt; 10 hours 8 minutes</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong><span style="color:#339966;">Other Standard Outputs:</span></strong></p>
<p style="text-align:justify;">&amp;DAY&amp;, &amp;MONTH&amp;, &amp;YEAR&amp;, &amp;HOURS&amp;, &amp;MINUTES&amp;, &amp;SECONDS&amp;, &amp;DATE&amp;, &amp;TIME&amp;, &amp;PAGE&amp;, &amp;NEXTPAGE&amp;.</p>


<p>You might also be interested in these posts:<ol><li><a href='http://www.abap-tutorials.com/2009/07/23/debugging-smartforms-and-sapscript/' rel='bookmark' title='Debugging Smartforms and SAPScript in ABAP'>Debugging Smartforms and SAPScript in ABAP</a></li>
<li><a href='http://www.abap-tutorials.com/2009/07/21/smartforms-vs-sapscript-the-battle-royale/' rel='bookmark' title='Smartforms Vs SAPScript, the Battle Royale in SAP'>Smartforms Vs SAPScript, the Battle Royale in SAP</a></li>
<li><a href='http://www.abap-tutorials.com/2009/07/23/advantage-smartform-migrating-sapscript-to-smartforms/' rel='bookmark' title='Advantage Smartform: Migrating SAPScript to Smartforms in SAP'>Advantage Smartform: Migrating SAPScript to Smartforms in SAP</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.abap-tutorials.com/2009/08/21/formatting-sapscript-smartforms-in-sap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

