<?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 date format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format/m-p/3209487#M765159</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gurus !!!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am dealing with an inbound - outbound interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a date field that i am sending in to the outbound.&lt;/P&gt;&lt;P&gt;in the program its is the format YYYYMMDD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i look for the resultant outbound message in transaction SXMB_MONI, the date is getting transformed to YYYY-MM-DD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I am sending a blank in this date field, then the result is - - ....&lt;/P&gt;&lt;P&gt;I get two hipens. This is undesireable. Can I remove this hipens if i dont send any date?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need help on this.&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;Balaji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Dec 2007 10:55:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-12T10:55:25Z</dc:date>
    <item>
      <title>date format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format/m-p/3209487#M765159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gurus !!!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am dealing with an inbound - outbound interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a date field that i am sending in to the outbound.&lt;/P&gt;&lt;P&gt;in the program its is the format YYYYMMDD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i look for the resultant outbound message in transaction SXMB_MONI, the date is getting transformed to YYYY-MM-DD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I am sending a blank in this date field, then the result is - - ....&lt;/P&gt;&lt;P&gt;I get two hipens. This is undesireable. Can I remove this hipens if i dont send any date?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need help on this.&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;Balaji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 10:55:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format/m-p/3209487#M765159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T10:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format/m-p/3209488#M765160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it seems like you´ll deal with a modification to the standard code. Probably your date field is being formated either per code or with another data element, which has the YYYY-MM-DD configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to find enhancement points in the program´s code if you really need to change the date´s format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 11:11:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format/m-p/3209488#M765160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T11:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: date format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format/m-p/3209489#M765161</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;&lt;/P&gt;&lt;P&gt;   Use this FM to convert the date into current user format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'CY_CONVERT_DATE'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          date_string_imp = lv_lfdate&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          date_string_exp = lv_fdate1&lt;/P&gt;&lt;P&gt;          date_exp        = lv_fdate2.&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;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 11:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format/m-p/3209489#M765161</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-12T11:15:29Z</dc:date>
    </item>
  </channel>
</rss>

