Home » Applications » Oracle Fusion Apps & E-Business Suite » ERROR CODE:1072896760
ERROR CODE:1072896760 [message #467446] Sat, 24 July 2010 05:34 Go to next message
manisha_borade
Messages: 49
Registered: May 2010
Member
hi

i create one report(.rdf) and registered on oracle application.
for that i create executable and concurrent program (output format is XML). i dont create data definition and template for this(i.e. i dont create .rtf ).

is it possible to open my output of rdf file in xml spreadsheet.

it show mw the error .....

ERROR CODE:1072896760
report [message #467449 is a reply to message #467446] Sat, 24 July 2010 06:04 Go to previous messageGo to next message
manisha_borade
Messages: 49
Registered: May 2010
Member
hi
im attaching erroe message
Re: report [message #467477 is a reply to message #467449] Sat, 24 July 2010 12:58 Go to previous messageGo to next message
Littlefoot
Messages: 21808
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
Is this, perhaps, an Oracle Apps. question? If so, would you like it to be moved into that (possibly a more appropriate) forum?
Re: ERROR CODE:1072896760 [message #467567 is a reply to message #467446] Mon, 26 July 2010 01:44 Go to previous messageGo to next message
Littlefoot
Messages: 21808
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
Look, there's no point in opening the same question in every forum you see. You have already created (at least) two topics. They have been merged and - currently - are in the Reports forum. This one will now be merged with your earlier messages.

You still didn't answer my question, so - here it is, once again: where does your question belong to? Please, just post a reply in this topic - do not open a new one.
Re: ERROR CODE:1072896760 [message #467591 is a reply to message #467567] Mon, 26 July 2010 03:08 Go to previous messageGo to next message
vamsi kasina
Messages: 2112
Registered: October 2003
Location: Cincinnati, OH
Senior Member
What do you mean by "xml spreadsheet"?
I don't see any attachment. Has somebody deleted it?

By
Vamsi
Re: ERROR CODE:1072896760 [message #467613 is a reply to message #467591] Mon, 26 July 2010 04:23 Go to previous messageGo to next message
Littlefoot
Messages: 21808
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
There was no attachment (so far). At least, I didn't see any.
Re: ERROR CODE:1072896760 [message #467881 is a reply to message #467613] Wed, 28 July 2010 00:06 Go to previous messageGo to next message
manisha_borade
Messages: 49
Registered: May 2010
Member
PFA
of Report
I am sending Error document as well..
Please give me the way to resolve this problem....
  • Attachment: IMAS.rdf
    (Size: 64.00KB, Downloaded 1335 times)
Re: ERROR CODE:1072896760 [message #467882 is a reply to message #467881] Wed, 28 July 2010 00:11 Go to previous messageGo to next message
manisha_borade
Messages: 49
Registered: May 2010
Member
PFA of Error which i get while opening XSL Output file...

My original file is in docx extension Please after downloading rename it and save it with .docx extension and then open....


Please suggest me way to resolve this problem.....
  • Attachment: error.txt
    (Size: 1.09MB, Downloaded 1685 times)
Re: ERROR CODE:1072896760 [message #467883 is a reply to message #467882] Wed, 28 July 2010 00:34 Go to previous messageGo to next message
manisha_borade
Messages: 49
Registered: May 2010
Member
I am attaching code contained in rdf...

The output is come correctly when i given the input parameter...but if i did not give any Input parameter then accordingly code it need to show all data in XSL sheet but at this time it showing error
ERROR CODE:1072896760

As i shown in previous attached document.....

Please suggest me direction to resolve this error........

SELECT b.segment1 "ITEM CODE",
      b.description "ITEM DESCRIPTION",
          mcb.segment1
       || '.'
       || mcb.segment2
       || '.'
       || mcb.segment3"ITEM CATEGORY",
       b.list_price_per_unit "UNIT PRICE",
       b.PRIMARY_UNIT_OF_MEASURE "UOM",
       gcc.segment1
       || '.'
       || gcc.segment2
       || '.'
       || gcc.segment3
       || '.'
       || gcc.segment4
       || '.'
       || gcc.segment5
       || '.'
       || gcc.segment6
       || '.'
       || gcc.segment7 "CHARGE ACCOUNT",
       decode(b.SERIAL_NUMBER_CONTROL_CODE,1,'No','Yes') "Serial No. Enabled"
  FROM mtl_system_items_b b,
       mtl_category_sets_b mcsb,
       mtl_category_sets_tl mcs,
       mtl_categories_b mcb,
       mtl_item_categories mic,
       gl_code_combinations gcc,
       hr_all_organization_units hou
 WHERE mic.category_set_id = mcsb.category_set_id
   AND mcsb.category_set_id = mcs.category_set_id
   AND gcc.code_combination_id = b.expense_account
   AND b.organization_id = mic.organization_id
   AND b.inventory_item_id = mic.inventory_item_id
   AND mcb.category_id = mic.category_id
   AND b.organization_id = hou.organization_id
   AND hou.NAME = 'TDN Item Master'
   AND TRUNC (b.creation_date) = NVL (:creation_date, b.creation_date)
   AND b.segment1 >= NVL (:from_item, b.segment1)
   AND b.segment1 <= NVL (:to_item, b.segment1)
   AND    gcc.segment1
       || '.'
       || gcc.segment2
       || '.'
       || gcc.segment3
       || '.'
       || gcc.segment4
       || '.'
       || gcc.segment5
       || '.'
       || gcc.segment6
       || '.'
       || gcc.segment7 =
          NVL (:charge_account,
                  gcc.segment1
               || '.'
               || gcc.segment2
               || '.'
               || gcc.segment3
               || '.'
               || gcc.segment4
               || '.'
               || gcc.segment5
               || '.'
               || gcc.segment6
               || '.'
               || gcc.segment7
              )
Re: ERROR CODE:1072896760 [message #467885 is a reply to message #467883] Wed, 28 July 2010 00:45 Go to previous messageGo to next message
Littlefoot
Messages: 21808
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
This probably won't solve the problem, but - shouldn't
AND TRUNC (b.creation_date) = NVL (:creation_date, b.creation_date)
be
AND TRUNC (b.creation_date) = NVL (:creation_date, TRUNC(b.creation_date))
Re: ERROR CODE:1072896760 [message #467911 is a reply to message #467885] Wed, 28 July 2010 04:27 Go to previous message
vamsi kasina
Messages: 2112
Registered: October 2003
Location: Cincinnati, OH
Senior Member
Google says this is because of invalid character in the xml.
I suspect the value of description column.

XDO Invalid Char patches
--------------------------
5987839
6773291
7339075

Also check $APPLCSF/$APPLOUT/o<request_id>.out -- replace request_id with the concurrent program request_id.
Try to rename the extension to xml from out and try to open in any browser, which gives the error line number.
Open the file in text (notepad/wordpad/textpad/etc) and check the data in that line.

By
Vamsi
Previous Topic: version CONTROL
Next Topic: Closing old purchase orders
Goto Forum:
  


Current Time: Sat Apr 27 20:26:53 CDT 2024