Search This Blog

Saturday, February 25, 2017

Chart XML Report in Oracle EBS R12


Please download the source files tested for  XML chart reports.

https://drive.google.com/open?id=0B0hQwJ7KxyyZS1c4UTc1aWY1Q00

For more info pls check:
http://docs.oracle.com/cd/E28280_01/bi.1111/e22254/create_rtf_tmpl.htm#BIPRD2425

To see the logic in the MS Word 2007 go to chart properties> size> alt text.

Wednesday, February 22, 2017

Oracle WebADI Error BEE Spreadsheet Upload Error - Incorrect Format Of Date Unit Of Measure




Once Template is downloaded, check the date format.
In my scenario the date column was showing default effective date (sysdate) as '23-Feb-17'.

Uploading with the above date format was giving error.
So just use the formula in excel as  =TEXT(D12, "dd-mmm-yyyy")  then it was showing 23-Feb-2017

It worked fine.

Reference:
http://everydaylife.globalpost.com/keep-dates-text-excel-22095.html - section: Converting Existing Dates in Bulk

Monday, February 20, 2017

How to create separate excel files for each sheet in the Excel File



How to create separate excel files for each sheet in the Excel File.

1.       Open the excel file from a folder which has multiple sheets data , press Alt + F11 Open Microsoft Visual Basic
2.       Click Insert>Module and paste the below code


Sub Splitbook()
'Updateby20140612
Dim xPath As String
xPath = Application.ActiveWorkbook.Path
Application.ScreenUpdating = False
Application.DisplayAlerts = False
For Each xWs In ThisWorkbook.Sheets
    xWs.Copy
    Application.ActiveWorkbook.SaveAs Filename:=xPath & "\" & xWs.Name & ".xls"
    Application.ActiveWorkbook.Close False
Next
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub

3.      Press F5 to run the code.