<?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: exception:text for month not maintained in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805468#M655562</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your help mate...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;may be iam doin smthing wrong smwhere...lets  see&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Aug 2007 12:21:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-31T12:21:45Z</dc:date>
    <item>
      <title>exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805447#M655541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys this the program iam using&lt;/P&gt;&lt;P&gt;data : date(10),&lt;/P&gt;&lt;P&gt;text1(26),&lt;/P&gt;&lt;P&gt;num1(10),&lt;/P&gt;&lt;P&gt;test_day(15),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;idate type sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : Day(2), month(2), Year(4).&lt;/P&gt;&lt;P&gt;data : ODay(2), Omonth(2), OYear(4).&lt;/P&gt;&lt;P&gt;data : Ltext Type T247-LTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date = order_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;day = date+0(2).&lt;/P&gt;&lt;P&gt;month = date+4(2).&lt;/P&gt;&lt;P&gt;year = date+6(4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate year month day into idate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_IN_GET_DATE_COMPONENTS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;idate = idate&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;DAY = oday&lt;/P&gt;&lt;P&gt;MONTH = omonth&lt;/P&gt;&lt;P&gt;YEAR = oyear.&lt;/P&gt;&lt;P&gt;LTEXT = ltext.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate oday ltext oyear into p_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the smartform my date is in the field order_date  when ima excuting iam getting a runtime error sayin &amp;lt;text for month not maintained&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;advise..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 12:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805447#M655541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T12:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805448#M655542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming your variable order_date is type DATE you don't need any of this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date = order_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;day = date+0(2).&lt;/P&gt;&lt;P&gt;month = date+4(2).&lt;/P&gt;&lt;P&gt;year = date+6(4).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate year month day into idate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All you're doing is rearranging the date into a format meaningless to the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_IN_GET_DATE_COMPONENTS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;idate = order_date&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;DAY = oday&lt;/P&gt;&lt;P&gt;MONTH = omonth&lt;/P&gt;&lt;P&gt;YEAR = oyear.&lt;/P&gt;&lt;P&gt;LTEXT = ltext.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should be enough.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 14:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805448#M655542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T14:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805449#M655543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nick thanks for your reply..but when i use that code i get the exception date is initial..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 14:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805449#M655543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T14:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805450#M655544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So there is your problem, order_date is initial.  By passing order_date through date and into idate only fills idate with a different kind of nothing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to ensure order_date is filled with an actual date value, either from the calling program or by derivation in your form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 15:06:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805450#M655544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T15:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805451#M655545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well.....can you please tell me how can i do that..&lt;/P&gt;&lt;P&gt;when i print normal date format which is in the field on the text element i can see the date...&lt;/P&gt;&lt;P&gt;the same thing when iam writing on programming lines iam getting exceptions..&lt;/P&gt;&lt;P&gt;plz help me how to that...&lt;/P&gt;&lt;P&gt;cheers..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 15:35:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805451#M655545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T15:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805452#M655546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why dont you try the date mask??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/: SET DATE MASK = 'DDth of MMM YYYY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will show the date as 30th of AUG 2007.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Best Regards,&lt;/P&gt;&lt;P&gt;Vikas Bittera.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;Reward if useful&lt;/STRONG&gt;**&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 16:16:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805452#M655546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T16:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805453#M655547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u cant use setdate mask in smartforms...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you anyways&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 16:22:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805453#M655547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T16:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805454#M655548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;issue would be T247 Table, month text is not maintained.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just goto Sm30 Transaction -&amp;gt; enter table T247 -&amp;gt; click on display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to insert then you can insert,system will propmt transport request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 16:39:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805454#M655548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T16:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805455#M655549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is displayed...nothin wrong with t247 table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 16:43:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805455#M655549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T16:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805456#M655550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you not check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF order_date IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; do all your logic&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;--- check with your user/functional team member as to what needs to be done&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2007 16:54:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805456#M655550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-30T16:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805457#M655551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have your field order_date defined as an INPUT parameter of you program node?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 06:32:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805457#M655551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T06:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805458#M655552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes nick.. another thing is when i use the field name as it is in text elements i can see the date on form..when i am changing the format and using this field in program lines the order_date is initial..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;advise&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:11:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805458#M655552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805459#M655553</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'm running out of ideas.  &lt;/P&gt;&lt;P&gt;Is the value in ORDER_DATE passed in the form interface, or is it declared in global data and derived (in program lines)?&lt;/P&gt;&lt;P&gt;Is your text element where this value can be displayed at the same point in the form as your program lines to reformat it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:46:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805459#M655553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805460#M655554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;lol..soory to bother you mate..&lt;/P&gt;&lt;P&gt;i passed the whole table in forminterface and iam using loop at tab_orders into tab_orders which is my internal table..&lt;/P&gt;&lt;P&gt;and i also declared this order_date in global declaration&lt;/P&gt;&lt;P&gt;yes my text element is at the same point.. &lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;programlines&lt;/P&gt;&lt;P&gt; &amp;gt;&amp;gt;&amp;gt;textement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:57:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805460#M655554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805461#M655555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bingo!  (I think)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, TAB_ORDERS (which includes the field ORDER_DATE) comes into your form.&lt;/P&gt;&lt;P&gt;You loop through TAB_ORDERS in a table node (you really should declare a work area for this table WA_TAB_ORDERS, not use tab_orders again).&lt;/P&gt;&lt;P&gt;Inside your table node create a program node, pass WA_TAB_ORDERS in the input parameters and p_date as the output.&lt;/P&gt;&lt;P&gt;Call this code,&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_IN_GET_DATE_COMPONENTS'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;idate = WA_TAB_ORDERS-order_date&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;DAY = oday&lt;/P&gt;&lt;P&gt;MONTH = omonth&lt;/P&gt;&lt;P&gt;YEAR = oyear.&lt;/P&gt;&lt;P&gt;LTEXT = ltext.&lt;/P&gt;&lt;P&gt;concatenate oday ltext oyear into p_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this, use P_DATE in your text element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this is it.  It may help to delete the definition of the global field order_date, this is what your current code is using, but it never gets filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 11:07:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805461#M655555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T11:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805462#M655556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nick sorry mate...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;same result whatever i do...i dont know how to get through this...&lt;/P&gt;&lt;P&gt;anyway thanks for your help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 11:32:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805462#M655556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T11:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805463#M655557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, one last try.  Can you extract your form as xml (initial smartforms screen, Utilities -&amp;gt; download form) and mail it to nick1971young@yahoo.co.uk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This really should work.  We've come too far to give up now!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 11:54:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805463#M655557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T11:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805464#M655558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nick,&lt;/P&gt;&lt;P&gt;you want the output of my form what iam gettin now...just to make  clear..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 12:09:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805464#M655558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T12:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805465#M655559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, the definition of the form.  Call transaction SMARTFORMS, enter your form name and choose menu Utilities -&amp;gt; download form.  This creates a file on your PC, send me this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 12:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805465#M655559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T12:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: exception:text for month not maintained</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805466#M655560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i cant see any download in the utilities..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 12:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-text-for-month-not-maintained/m-p/2805466#M655560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T12:16:31Z</dc:date>
    </item>
  </channel>
</rss>

