Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Data loading (file) custom date formatting

Avatar

Level 3

Hi folks,

I'm sure I'm not the first one to ask this question but I don't see any information on the documentation nor the forum with regard to custom date formats for this workflow step. As per the screenshot, the format field is a drop down and I need to parse in a strangely formatted UTC timestamp with. Does campaign have the ability to parse out only the relevant bits I'm after or do I have to tell the ETL guys to follow campaign's formatting?

1447111_pastedImage_3.png

Thanks,

--Erik

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hi Erik,

Explanation:

It is not possible to change the Date Format from this Drop Down.

This is a part of Enumeration Named # dateFormat which is a part of Schema # xtk:dataTransfer.

As this is the Out Of The Box Schema, this can't be changed.

But, there is a workaround to change the date format to the one you want.

Solution:

After the DataLoading Activity, use one JavaScript Activity, and write the below code to change the Date Format.

//Select The Date Coming From The DataLoading Activity

var query = xtk.queryDef.create

   (

      <queryDef schema={vars.targetSchema} operation="select">

        <select>

          <node expr="@Date"/>  // Name Of Your Date Column In DataLoading Activity

        </select>

      </queryDef>

    );

var res = query.ExecuteQuery();

var date; // Variable To Capture New Date After Format Change

for each (var w in res)

logInfo("Date Before Changing The Format : "+w.@Date);

{

date = formatDate(w.@Date,"%4Y-%2M-%2D"); //Put The Desired Date Format You Want. (Ex. %4Y-%2M or %2D-%2M)

logInfo("Date After Changing The Date Format: "+date);

}

View solution in original post

3 Replies

Avatar

Correct answer by
Employee Advisor

Hi Erik,

Explanation:

It is not possible to change the Date Format from this Drop Down.

This is a part of Enumeration Named # dateFormat which is a part of Schema # xtk:dataTransfer.

As this is the Out Of The Box Schema, this can't be changed.

But, there is a workaround to change the date format to the one you want.

Solution:

After the DataLoading Activity, use one JavaScript Activity, and write the below code to change the Date Format.

//Select The Date Coming From The DataLoading Activity

var query = xtk.queryDef.create

   (

      <queryDef schema={vars.targetSchema} operation="select">

        <select>

          <node expr="@Date"/>  // Name Of Your Date Column In DataLoading Activity

        </select>

      </queryDef>

    );

var res = query.ExecuteQuery();

var date; // Variable To Capture New Date After Format Change

for each (var w in res)

logInfo("Date Before Changing The Format : "+w.@Date);

{

date = formatDate(w.@Date,"%4Y-%2M-%2D"); //Put The Desired Date Format You Want. (Ex. %4Y-%2M or %2D-%2M)

logInfo("Date After Changing The Date Format: "+date);

}

Avatar

Level 3

Thanks for the info kapilsharma0101. I reckoned it would come down to a javascript step. I assume updating the enumeration (even if it wasn't dangerous) wouldn't let parse it properly would it?

Avatar

Employee Advisor

No, I tried it by extending the xtk:dataTransfer schema.

I added my custom date format there. It was coming in the Drop Down in the Data Loading Activity, but it was not working. Because the definition of that custom date format is not known to the Adobe Campaign and we can't define that as adobe won't let us dip that deep into the application (Out Of The Box Functionality).