<?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: Incorrect nesting in smartfroms program-line in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305503#M1223488</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can paste the code here, can assyst you better&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Mar 2009 11:14:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-19T11:14:29Z</dc:date>
    <item>
      <title>Incorrect nesting in smartfroms program-line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305502#M1223487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i have use code in different program it's work fine .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when same code use in smartforms program-lines it's give me following error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incorrect nesting: Before the statement "FORM", the structure introduced by "FUNCTION" must be concluded by "ENDFUNCTION" . . .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 11:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305502#M1223487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T11:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect nesting in smartfroms program-line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305503#M1223488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you can paste the code here, can assyst you better&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 11:14:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305503#M1223488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T11:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect nesting in smartfroms program-line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305504#M1223489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA mwsbp TYPE komp-mwsbp .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : p_ebeln TYPE ekpo-ebeln ,&lt;/P&gt;&lt;P&gt;p_ebelp TYPE ekpo-ebelp .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*data: p_mwsbp TYPE komp-mwsbp .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM calculate_tax USING p_ebeln p_ebelp CHANGING mwsbp .&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM calculate_tax USING p_ebeln TYPE ekpo-ebeln&lt;/P&gt;&lt;P&gt;p_ebelp TYPE ekpo-ebelp&lt;/P&gt;&lt;P&gt;CHANGING p_mwsbp TYPE komp-mwsbp .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: bstyp_info VALUE 'I',&lt;/P&gt;&lt;P&gt;bstyp_ordr VALUE 'W',&lt;/P&gt;&lt;P&gt;bstyp_banf VALUE 'B',&lt;/P&gt;&lt;P&gt;bstyp_best VALUE 'F',&lt;/P&gt;&lt;P&gt;bstyp_anfr VALUE 'A',&lt;/P&gt;&lt;P&gt;bstyp_kont VALUE 'K',&lt;/P&gt;&lt;P&gt;bstyp_lfpl VALUE 'L',&lt;/P&gt;&lt;P&gt;bstyp_lerf VALUE 'Q'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : taxcom TYPE taxcom ,&lt;/P&gt;&lt;P&gt;t_konv TYPE TABLE OF komv WITH HEADER LINE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF tkomv OCCURS 50.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE komv.&lt;/P&gt;&lt;P&gt;DATA: END OF tkomv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF tkomvd OCCURS 50. "Belegkonditionen&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE komvd.&lt;/P&gt;&lt;P&gt;DATA: END OF tkomvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF tkomvh OCCURS 50.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE komv.&lt;/P&gt;&lt;P&gt;DATA : vtext LIKE t685t-vtext.&lt;/P&gt;&lt;P&gt;DATA : END OF tkomvh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE *&lt;/P&gt;&lt;P&gt;INTO ekko&lt;/P&gt;&lt;P&gt;FROM ekko&lt;/P&gt;&lt;P&gt;WHERE ebeln = p_ebeln .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE *&lt;/P&gt;&lt;P&gt;INTO ekpo&lt;/P&gt;&lt;P&gt;FROM ekpo&lt;/P&gt;&lt;P&gt;WHERE ebeln = p_ebeln&lt;/P&gt;&lt;P&gt;AND ebelp = p_ebelp .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE *&lt;/P&gt;&lt;P&gt;INTO t001&lt;/P&gt;&lt;P&gt;FROM t001&lt;/P&gt;&lt;P&gt;WHERE bukrs = ekko-bukrs .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;taxcom-bukrs = ekpo-bukrs.&lt;/P&gt;&lt;P&gt;taxcom-budat = ekko-bedat.&lt;/P&gt;&lt;P&gt;taxcom-waers = ekko-waers.&lt;/P&gt;&lt;P&gt;taxcom-kposn = ekpo-ebelp.&lt;/P&gt;&lt;P&gt;taxcom-mwskz = ekpo-mwskz.&lt;/P&gt;&lt;P&gt;taxcom-txjcd = ekpo-txjcd.&lt;/P&gt;&lt;P&gt;taxcom-shkzg = 'H'.&lt;/P&gt;&lt;P&gt;taxcom-xmwst = 'X'.&lt;/P&gt;&lt;P&gt;IF ekko-bstyp EQ bstyp_best.&lt;/P&gt;&lt;P&gt;taxcom-wrbtr = ekpo-netwr.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;taxcom-wrbtr = ekpo-zwert.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;taxcom-lifnr = ekko-lifnr.&lt;/P&gt;&lt;P&gt;taxcom-land1 = ekko-lands.&lt;/P&gt;&lt;P&gt;taxcom-ekorg = ekko-ekorg.&lt;/P&gt;&lt;P&gt;taxcom-hwaer = t001-waers.&lt;/P&gt;&lt;P&gt;taxcom-llief = ekko-llief.&lt;/P&gt;&lt;P&gt;taxcom-bldat = ekko-bedat.&lt;/P&gt;&lt;P&gt;taxcom-matnr = ekpo-ematn.&lt;/P&gt;&lt;P&gt;taxcom-werks = ekpo-werks.&lt;/P&gt;&lt;P&gt;taxcom-bwtar = ekpo-bwtar.&lt;/P&gt;&lt;P&gt;taxcom-matkl = ekpo-matkl.&lt;/P&gt;&lt;P&gt;taxcom-meins = ekpo-meins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ekko-bstyp EQ bstyp_best.&lt;/P&gt;&lt;P&gt;taxcom-mglme = ekpo-menge.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;IF ekko-bstyp EQ bstyp_kont AND ekpo-abmng GT 0.&lt;/P&gt;&lt;P&gt;taxcom-mglme = ekpo-abmng.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;taxcom-mglme = ekpo-ktmng.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF taxcom-mglme EQ 0.&lt;/P&gt;&lt;P&gt;taxcom-mglme = 1000.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;taxcom-mtart = ekpo-mtart.&lt;/P&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;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'J_1BSA_COMPONENT_ACTIVE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;bukrs = ekko-bukrs&lt;/P&gt;&lt;P&gt;component = 'BR'&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;component_not_active = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;*endfunction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;komk-mandt = ekko-mandt.&lt;/P&gt;&lt;P&gt;komk-kalsm = ekko-kalsm.&lt;/P&gt;&lt;P&gt;IF ekko-kalsm = ''.&lt;/P&gt;&lt;P&gt;komk-kalsm = 'RM0000'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;komk-kappl = 'M'.&lt;/P&gt;&lt;P&gt;komk-waerk = ekko-waers.&lt;/P&gt;&lt;P&gt;komk-knumv = ekko-knumv.&lt;/P&gt;&lt;P&gt;komk-lifnr = ekko-lifnr.&lt;/P&gt;&lt;P&gt;komp-kposn = ekpo-ebelp.&lt;/P&gt;&lt;P&gt;komp-matnr = ekpo-matnr.&lt;/P&gt;&lt;P&gt;komp-werks = ekpo-werks.&lt;/P&gt;&lt;P&gt;komp-matkl = ekpo-matkl.&lt;/P&gt;&lt;P&gt;komp-infnr = ekpo-infnr.&lt;/P&gt;&lt;P&gt;komp-evrtn = ekpo-konnr.&lt;/P&gt;&lt;P&gt;komp-evrtp = ekpo-ktpnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RV_PRICE_PRINT_ITEM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;comm_head_i = komk&lt;/P&gt;&lt;P&gt;comm_item_i = komp&lt;/P&gt;&lt;P&gt;language = 'E'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;tkomv = tkomv&lt;/P&gt;&lt;P&gt;tkomvd = tkomvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'J_1B_NF_PO_DISCOUNTS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_kalsm = ekko-kalsm&lt;/P&gt;&lt;P&gt;i_ekpo = ekpo&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_ekpo = ekpo&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;i_konv = t_konv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT ekko-llief IS INITIAL.&lt;/P&gt;&lt;P&gt;taxcom-lifnr = ekko-llief.&lt;/P&gt;&lt;P&gt;ENDIF.&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;CALL FUNCTION 'FIND_TAX_SPREADSHEET'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;buchungskreis = t001-bukrs&lt;/P&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;CALL FUNCTION 'CALCULATE_TAX_ITEM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_taxcom = taxcom&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;e_taxcom = taxcom&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;mwskz_not_defined = 1&lt;/P&gt;&lt;P&gt;mwskz_not_found = 2&lt;/P&gt;&lt;P&gt;mwskz_not_valid = 3&lt;/P&gt;&lt;P&gt;steuerbetrag_falsch = 4&lt;/P&gt;&lt;P&gt;country_not_found = 5&lt;/P&gt;&lt;P&gt;OTHERS = 6.&lt;/P&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;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_mwsbp = taxcom-wmwst .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/  mwsbp .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. " calculate_tax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 11:16:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305504#M1223489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T11:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect nesting in smartfroms program-line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305505#M1223490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of defining the FORM Implementation in Program Line copy the code to Global Definitions-&amp;gt;Form Routines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 11:21:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305505#M1223490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T11:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect nesting in smartfroms program-line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305506#M1223491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It give error &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;" Statement is not accessible." &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 11:26:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305506#M1223491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T11:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect nesting in smartfroms program-line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305507#M1223492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don't get any error for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this screen shot in this link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perform statement in Program Lines&lt;/P&gt;&lt;P&gt;&lt;A href="http://i678.photobucket.com/albums/vv145/avinashkodarapu/Snap1.jpg" target="test_blank"&gt;http://i678.photobucket.com/albums/vv145/avinashkodarapu/Snap1.jpg&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From implementation in Form Routine Tab&lt;/P&gt;&lt;P&gt;&lt;A href="http://i678.photobucket.com/albums/vv145/avinashkodarapu/Snap2.jpg" target="test_blank"&gt;http://i678.photobucket.com/albums/vv145/avinashkodarapu/Snap2.jpg&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 11:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305507#M1223492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-19T11:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Incorrect nesting in smartfroms program-line</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305508#M1223493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,SAM&lt;/P&gt;&lt;P&gt;i have the same problem,i use the structor table DFIES as your komp.&lt;/P&gt;&lt;P&gt;i am new in sap,so i don't have any idear about this, if anyone have the solution for this problem,please write to me.&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;3KS.&lt;/P&gt;&lt;P&gt;chan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2011 08:08:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/incorrect-nesting-in-smartfroms-program-line/m-p/5305508#M1223493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-03T08:08:28Z</dc:date>
    </item>
  </channel>
</rss>

