Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 63 Insurance
- 536.4K On-Premises Infrastructure
- 138.3K Analytics Software
- 38.6K Application Development Software
- 5.8K Cloud Platform
- 109.5K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.3K Integration
- 41.6K Security Software
Data management cloud - data export by custom application

Hi Folks,
I am trying to export data out of EPBCS application into a file using data management cloud custom application.
My client need current period column to be populated in the output file as below,
Lets say i have run the data export for month Sep-19,
2019/09/30,Acc1,Dep1,Cus1,3435.57
am trying to play with $SQL in data loading mapping, it's giving syntax error,
thanks
venkat
Best Answer
-
Try
TO_CHAR(LAST_DAY(SYSDATE),'YYYY/MM/DD')
Answers
-
For the SQL, you can just put sysdate
Cheers
John
-
thanks john for solution,
am trying (LAST_DAY( SYSDATE )) to get last date of month format as a YYYY/MM/DD but it's giving format as a dd-mon-yyyy
I need last date of month format should be - YYYY/MM/DD ex: 2019/09/30
helpful if you suggest
-
Try
TO_CHAR(LAST_DAY(SYSDATE),'YYYY/MM/DD')
-
Perfect john..!