<?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>Question Re: Help required for time Conversion in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344446#M4206355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you have a standard way to do this, because this YYYY.MM.DD HH:MM:SS isn't a standard format that SAP supports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Come to think of it, the original answer I gave (TIMES conv exit in the DS) may not work too for the same reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the only option is to code it yourself. Fortunately, the code itself isn't that difficult. Here's a simple piece of code which you can adapt for your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;data&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;ctime &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;c &lt;/SPAN&gt;LENGTH &lt;SPAN class="L0S32"&gt;30&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;stamp &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;n LENGTH &lt;SPAN class="L0S32"&gt;14 &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;ctime &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'2015.09.30 15:30:12'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;CONCATENATE &lt;/SPAN&gt;ctime&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;4&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+5&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+8&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+11&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+14&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+17&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;into &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;stamp&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S55"&gt;WRITE stamp.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // 20150930153012&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ==&amp;gt; YYYYMMDDHHMMSS&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be able to convert this to CALDAY, CALYEAR and CALMONTH. Just map this NUMC14 field to those characteristics in the Acq-&amp;gt;Prop transformation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALWEEK and CALQUARTER are more difficult.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you could do this: map the timestamp to the CALDAY in the Acq-&amp;gt;Prop transformation, then map CALDAY to all the other CAL* fields in the Prop-&amp;gt;Cube/Reporting layer transformation. The system knows how to convert CALDAY into all of the other CAL* fields, so it will work fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Oct 2015 06:47:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-10-06T06:47:49Z</dc:date>
    <item>
      <title>Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaq-p/11344439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Got stuck where my datasource is BODS based &amp;amp; am I getting a timestamp(CHAR30) fields, entries as shown below in PSA&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/803157" width="450" /&gt;&lt;/P&gt;&lt;P&gt;Now in the DSO , I have field TIMESTAMP(refrence of 0TCTTIMSTMP) which is of TYPE NUMC14, But standard trasformation here failes to work as I an having data is target DS column as say 09.30 00:00:00( say for 1st records) &amp;amp; like wise.&amp;nbsp; though I can handle this puttinf some routine but I am not allowed to do any data modification atleast to 1st layer( Data propagation layer in LSA++) .&lt;/P&gt;&lt;P&gt;Can any one suggest, is there any way, I can handle this via standard transformation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I am facing a strange issue wherein wherein Whereever I receiving any timestamp field from my ECC source its comversion to time stamp has added 2 extra hpurs to it, When I checked at the InfoObject level, I saw a TIMES conversion is applied which is actually creating a issue, screeshot below for reference&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/803158" width="450" /&gt;&lt;/P&gt;&lt;P&gt;As you can see above the input is 30.09.2015 10:20:00 but when in BI it turns as 30.09.2015 12:20:00(added 2 hours extra), similarly lets say an other example&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/803168" width="450" /&gt;&lt;/P&gt;&lt;P&gt;In above the input is 30.09.2015 23:00:00 but when in BI it turns as 01.10.2015 01:00:00(added 2 hours extra, since its already 23 hours in inputs &amp;amp; hence it chnages the next day in output),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help on above 2 issues please,&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;Fox&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2015 12:39:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaq-p/11344439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-05T12:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344440#M4206349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please only consider the 1st part of above question wherein how can I handle the time timestamp from BDOS datasource which is coming as CHAR30 is handled in TIMESTAMP filed in BI which is NUMC14 using stnadard conversion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just checked the convesrion TIMES, actaully its picking sy-zonlo as 'CET' and added the ours to the input value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly suggest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Fox&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2015 12:59:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344440#M4206349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-05T12:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344441#M4206350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The incoming data is in CHAR format, and it has spaces and colons and dots (periods), which are not allowed in NUMC fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One possible approach: open up the Datasource in change mode (delete PSA contents first) and go to the Fields tab. Locate the entry for the timestamp field and give it the same data type (NUMC, length 14) as the InfoObject.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the same entry there will be a dropdown having the options "Internal" and "External". Select External here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next to the dropdown there will also be a box where you can enter the conversion exit. Here, you enter the exit as TIMES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As this is a change to the DS, you'll have to reactivate the transformation and DTP afterwards. Once you load data into the PSA after making this change, the PSA itself should contain the timestamp in NUMC format. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Suhas Karnik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2015 13:42:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344441#M4206350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-05T13:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344442#M4206351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestion. I fairly agree th eoption you suggest but the issue is BODS Daatsources is owned by the client only we are not allowed to make chnages to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i will try discussing the option proposed if that helps. But can we any laternate way of handling it in BI modelling instead of changing it at the source level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Fox&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 04:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344442#M4206351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-06T04:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344443#M4206352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to see if the DS is modifiable in BW. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are alternate ways of handling i&lt;SPAN style="font-size: 10pt;"&gt;t&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt;"&gt;Write a routine in the Acq transformation to convert the incoming CHAR to a NUMC. It's not normally allowed to write routines in Acq transformations, but this is a case where an exception should be made. You're not changing the actual contents of the field or applying business logic, you're just converting it into a format that BW can use. This is the simpler option.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt;"&gt;Otherwise, change the acq DSO &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;and use a CHAR field to store the timestamp. Then, in the transformation from the Acq to the Prop DSO, convert the CHAR timestamp into a NUMC timestamp &lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 04:42:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344443#M4206352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-06T04:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344444#M4206353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnaks for the prompt reply, but lets say I decide to go for conversion of CHAR(30) to NUMC(14), By this you mean you mean replacing occurances of space , ':' &amp;amp; '.' then making the input format as yyyymmddhhmmss &amp;amp; then assign it to NUMC(since NUMC will not allow activation with thse colons, period &amp;amp; spaces).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you refer to have any standard way of doing the conversion. Also once yyyymmddhhmmss is assigned to NUMC 14 which is refernce of TIMESTAMP in BI , will I able to achieve standard time conversion over it, means doing calday/calweek/calyar/calquarter calculation, time calculation etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest.&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;Pankaj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 06:32:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344444#M4206353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-06T06:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344445#M4206354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you have a standard way to do this, because this YYYY.MM.DD HH:MM:SS isn't a standard format that SAP supports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Come to think of it, the original answer I gave (TIMES conv exit in the DS) may not work too for the same reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the only option is to code it yourself. Fortunately, the code itself isn't that difficult. Here's a simple piece of code which you can adapt for your requirement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;data&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;ctime &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;c &lt;/SPAN&gt;LENGTH &lt;SPAN class="L0S32"&gt;30&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;stamp &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;n LENGTH &lt;SPAN class="L0S32"&gt;14 &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; ctime &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'2015.09.30 15:30:12'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; &lt;SPAN class="L0S52"&gt;CONCATENATE &lt;/SPAN&gt;ctime&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;4&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+5&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+8&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+11&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+14&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+17&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;into &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;stamp&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S55"&gt;WRITE stamp.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // 20150930153012&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ==&amp;gt; YYYYMMDDHHMMSS&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be able to convert this to CALDAY, CALYEAR and CALMONTH. Just map this NUMC14 field to those characteristics in the Acq-&amp;gt;Prop transformation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALWEEK and CALQUARTER are more difficult. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you could do this: map the timestamp to the CALDAY in the Acq-&amp;gt;Prop transformation, then map CALDAY to all the other CAL* fields in the Prop-&amp;gt;Cube/Reporting layer transformation. The system knows how to convert CALDAY into all of the other CAL* fields, so it will work fine. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 06:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344445#M4206354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-06T06:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344446#M4206355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you have a standard way to do this, because this YYYY.MM.DD HH:MM:SS isn't a standard format that SAP supports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Come to think of it, the original answer I gave (TIMES conv exit in the DS) may not work too for the same reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the only option is to code it yourself. Fortunately, the code itself isn't that difficult. Here's a simple piece of code which you can adapt for your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;data&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;: &lt;/SPAN&gt;ctime &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;c &lt;/SPAN&gt;LENGTH &lt;SPAN class="L0S32"&gt;30&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;stamp &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;n LENGTH &lt;SPAN class="L0S32"&gt;14 &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;ctime &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'2015.09.30 15:30:12'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;CONCATENATE &lt;/SPAN&gt;ctime&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;4&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+5&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+8&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+11&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+14&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctime+17&lt;SPAN class="L0S55"&gt;(&lt;/SPAN&gt;&lt;SPAN class="L0S32"&gt;2&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;into &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;stamp&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S55"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S55"&gt;WRITE stamp.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // 20150930153012&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ==&amp;gt; YYYYMMDDHHMMSS&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be able to convert this to CALDAY, CALYEAR and CALMONTH. Just map this NUMC14 field to those characteristics in the Acq-&amp;gt;Prop transformation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALWEEK and CALQUARTER are more difficult.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you could do this: map the timestamp to the CALDAY in the Acq-&amp;gt;Prop transformation, then map CALDAY to all the other CAL* fields in the Prop-&amp;gt;Cube/Reporting layer transformation. The system knows how to convert CALDAY into all of the other CAL* fields, so it will work fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 06:47:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344446#M4206355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-06T06:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help required for time Conversion</title>
      <link>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344447#M4206356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas, The time conversion in the DS won't work. Also since I am getting data from another BODS datasources wherein time stamp is of type 2015/03/31 16:00 &amp;amp; hence I am left with no choice then do write routine for it. Even before that need to have approval from client(but your comments on getting justification will help)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the prompt reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 07:44:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/help-required-for-time-conversion/qaa-p/11344447#M4206356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-10-06T07:44:36Z</dc:date>
    </item>
  </channel>
</rss>

