Exception on export of ear

I tried to do an export of the ear prioject to try and see what exactly my ear structure looks like and have it erroring out.
this from the logs
org.eclipse.core.commands.ExecutionException: Error exportings.ear
     at org.eclipse.jst.j2ee.internal.archive.operations.ComponentExportOperation.execute(ComponentExportOperation.java:136)
     at org.eclipse.wst.common.frameworks.internal.datamodel.DataModelPausibleOperationImpl$1.run(DataModelPausibleOperationImpl.java:385)
     at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1975)
     at org.eclipse.wst.common.frameworks.internal.datamodel.DataModelPausibleOperationImpl.runOperation(DataModelPausibleOperationImpl.java:410)
     at org.eclipse.wst.common.frameworks.internal.datamodel.DataModelPausibleOperationImpl.runOperation(DataModelPausibleOperationImpl.java:360)
     at org.eclipse.wst.common.frameworks.internal.datamodel.DataModelPausibleOperationImpl.doExecute(DataModelPausibleOperationImpl.java:247)
     at org.eclipse.wst.common.frameworks.internal.datamodel.DataModelPausibleOperationImpl.executeImpl(DataModelPausibleOperationImpl.java:219)
     at org.eclipse.wst.common.frameworks.internal.datamodel.DataModelPausibleOperationImpl.cacheThreadAndContinue(DataModelPausibleOperationImpl.java:89)
     at org.eclipse.wst.common.frameworks.internal.datamodel.DataModelPausibleOperationImpl.execute(DataModelPausibleOperationImpl.java:207)
     at org.eclipse.wst.common.frameworks.internal.datamodel.ui.DataModelWizard$1CatchThrowableRunnableWithProgress.run(DataModelWizard.java:225)
     at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121)
Caused by: org.eclipse.jst.jee.archive.ArchiveSaveFailureException: org.eclipse.jst.jee.archive.ArchiveSaveFailureException: java.lang.NullPointerException
     at org.eclipse.jst.j2ee.internal.archive.operations.FlatComponentArchiver.saveArchive(FlatComponentArchiver.java:117)
     at org.eclipse.jst.j2ee.internal.archive.operations.ComponentExportOperation.export(ComponentExportOperation.java:178)
     at org.eclipse.jst.j2ee.internal.archive.operations.ComponentExportOperation.execute(ComponentExportOperation.java:134)
     ... 10 more
Caused by: org.eclipse.jst.jee.archive.ArchiveSaveFailureException: java.lang.NullPointerException
     at org.eclipse.jst.j2ee.internal.archive.operations.FlatComponentArchiver.saveArchive(FlatComponentArchiver.java:117)
     at org.eclipse.jst.j2ee.internal.archive.operations.FlatComponentArchiver.saveChildModules(FlatComponentArchiver.java:206)
     at org.eclipse.jst.j2ee.internal.archive.operations.FlatComponentArchiver.saveArchive(FlatComponentArchiver.java:105)
     ... 12 more
Caused by: java.lang.NullPointerException
     at org.eclipse.wst.common.componentcore.internal.flat.FlatFolder.getAdapter(FlatFolder.java:103)
     at org.eclipse.jst.j2ee.internal.archive.operations.FlatComponentArchiver.addZipEntry(FlatComponentArchiver.java:225)
     at org.eclipse.jst.j2ee.internal.archive.operations.FlatComponentArchiver.saveFlatResources(FlatComponentArchiver.java:154)
     at org.eclipse.jst.j2ee.internal.archive.operations.FlatComponentArchiver.saveArchive(FlatComponentArchiver.java:106)
     ... 14 more
I really need to have this thing setup- I hope I dont have to switch back to galileo...
Edited by: user9220765 on Oct 7, 2010 10:01 PM

Hi,
Could you provide additional information on the version of OEPE you are running along with some information on the structure of your EAR project ?
Also does the same app run on server successfully ?
thanks
Raj

Similar Messages

  • User Exception when Exporting

    Hi,
    I am creating a transport set to attempt an export from an Oracle 9i/Application Server 10g Windows 2000 system.
    The first entry in the log when I export is:
    [24-SEP-04 16:59:08][ERROR] id = NULL context = NULL user = ORCLADMIN Exception in wwutl_dep_pagegroup.get_page_link_dependencies : User-Defined Exception
    The Export completes but fails on import.
    Can anyone tell me what this error means and how to fix it? I can log in using ORCLADMIN without any issues.
    John

    Gautam,
    Hmm -- the fact that you're able to store instances in the database in
    the same application certainly is surprising.
    Can you enable trace-level locking for the MetaData log channel, and
    post the output?
    -Patrick
    Gautam Tripathi wrote:
    Hi all,
    I am evaluating KODO JDO for a possibly gigantic scale implementation. I
    am trying following code to get all available instances of the class
    "Country" defined in package jdoeval.
    Class target = Country.class;
    Extent extent = pm.getExtent (target, true);
    Query query = pm.newQuery (extent);
    //query.compile ();
    Collection result = (Collection) query.execute ();
    This piece of code code fails when it reaches query.execute(). Here is the
    exception I am getting:-
    kodo.util.UserException: Unable to execute a query on type "class
    jdoeval.Country". This class or interface is not persistent, and does not
    have any persistent implementors.
    Now, I am 100% sure that my jdoeval.Country class is persistent, because I
    have enhanced it every time I built my application using the KDO enhancer.
    I have also stored some instances of class "Country" in MySQL database
    using the same application.
    What could I be missing?
    FYI, I am using KDO as a plugin inside the Eclipse IDE.
    With thanks to all the team members for a great product.
    Gautam Tripathi

  • Exception while Exporting Datagridview data with Images to Excel...

    Hi Everyone,
    I have datagridview in that 17 columns are text columns and 5 columns are Image columns,when I'm trying to export whole gridview data's along with images to EXCEL,getting "HRESULT:
    0x800A03EC" Error..While debugging the code I'm getting the error on image column not able to export..
    Can anybody help us to resolve this issue..
    Here is my code which i used:
    private void btnexportexcel_Click(object sender, EventArgs e)
    try
    SaveFileDialog savefile = new SaveFileDialog();
    savefile.Filter = "Excel (*.xls)|*.xls";
    if (savefile.ShowDialog() == DialogResult.OK)
    if (!savefile.FileName.Equals(string.Empty))
    FileInfo finfo = new FileInfo(savefile.FileName);
    if (finfo.Extension.Equals(".xls"))
    Excel.Application xlApp;
    Excel.Workbook xlWorkBook;
    Excel.Worksheet xlWorkSheet;
    object misValue = System.Reflection.Missing.Value;
    xlApp = new Excel.Application();
    xlWorkBook = xlApp.Workbooks.Add(misValue);
    xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(2) ;
    int i = 0;
    int j = 0;
    for (i = 0; i <= dataGridView1.RowCount - 1; i++)
    for (j = 0; j <= dataGridView1.ColumnCount - 1; j++)
    DataGridViewCell cell = dataGridView1[j, i];
    xlWorkSheet.Cells.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;
    xlWorkSheet.Columns.AutoFit();
    if (cell.Value.GetType() == typeof(Bitmap))
    string image =Convert.ToString(dataGridView1.CurrentRow.Cells[i].Value); 
    Excel.Range oRange = (Excel.Range)xlWorkSheet.Cells[i + 1, j + 1];
    float Left = (float)((double)oRange.Left);
    float Top = (float)((double)oRange.Top);
    const float ImageSize = 32;
    xlWorkSheet.Shapes.AddPicture(image, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoCTrue, Left, Top, ImageSize, ImageSize);
    oRange.RowHeight = ImageSize + 2; 
    else
    xlWorkSheet.Cells[i + 1, j + 1] = cell.Value;
    xlWorkBook.SaveAs(savefile.FileName, Excel.XlFileFormat.xlWorkbookNormal, misValue, misValue, misValue, misValue,
    Excel.XlSaveAsAccessMode.xlExclusive, misValue, misValue, misValue, misValue, misValue);
    xlWorkBook.Close(true, misValue, misValue);
    xlApp.Quit();
    releaseObject(xlWorkSheet);
    releaseObject(xlWorkBook);
    releaseObject(xlApp);
    MessageBox.Show("Excel file created , you can find the file " + savefile.FileName);
    else
    MessageBox.Show("Invalid file type");
    else
    MessageBox.Show("You did pick a location " + "to save file to");
    catch (Exception ex)
    MessageBox.Show("Exception Occured", ex.Message);
    Thanks & Regards RAJENDRAN M

    Hi Everyone,
    I have datagridview in that 17 columns are text columns and 5 columns are Image columns,when I'm trying to export whole gridview data's along with images to EXCEL,getting "HRESULT:
    0x800A03EC" Error..While debugging the code I'm getting the error on image column not able to export..
    Can anybody help us to resolve this issue..
    Here is my code which i used:
    private void btnexportexcel_Click(object sender, EventArgs e)
    try
    SaveFileDialog savefile = new SaveFileDialog();
    savefile.Filter = "Excel (*.xls)|*.xls";
    if (savefile.ShowDialog() == DialogResult.OK)
    if (!savefile.FileName.Equals(string.Empty))
    FileInfo finfo = new FileInfo(savefile.FileName);
    if (finfo.Extension.Equals(".xls"))
    Excel.Application xlApp;
    Excel.Workbook xlWorkBook;
    Excel.Worksheet xlWorkSheet;
    object misValue = System.Reflection.Missing.Value;
    xlApp = new Excel.Application();
    xlWorkBook = xlApp.Workbooks.Add(misValue);
    xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(2) ;
    int i = 0;
    int j = 0;
    for (i = 0; i <= dataGridView1.RowCount - 1; i++)
    for (j = 0; j <= dataGridView1.ColumnCount - 1; j++)
    DataGridViewCell cell = dataGridView1[j, i];
    xlWorkSheet.Cells.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;
    xlWorkSheet.Columns.AutoFit();
    if (cell.Value.GetType() == typeof(Bitmap))
    string image =Convert.ToString(dataGridView1.CurrentRow.Cells[i].Value); 
    Excel.Range oRange = (Excel.Range)xlWorkSheet.Cells[i + 1, j + 1];
    float Left = (float)((double)oRange.Left);
    float Top = (float)((double)oRange.Top);
    const float ImageSize = 32;
    xlWorkSheet.Shapes.AddPicture(image, Microsoft.Office.Core.MsoTriState.msoFalse, Microsoft.Office.Core.MsoTriState.msoCTrue, Left, Top, ImageSize, ImageSize);
    oRange.RowHeight = ImageSize + 2; 
    else
    xlWorkSheet.Cells[i + 1, j + 1] = cell.Value;
    xlWorkBook.SaveAs(savefile.FileName, Excel.XlFileFormat.xlWorkbookNormal, misValue, misValue, misValue, misValue,
    Excel.XlSaveAsAccessMode.xlExclusive, misValue, misValue, misValue, misValue, misValue);
    xlWorkBook.Close(true, misValue, misValue);
    xlApp.Quit();
    releaseObject(xlWorkSheet);
    releaseObject(xlWorkBook);
    releaseObject(xlApp);
    MessageBox.Show("Excel file created , you can find the file " + savefile.FileName);
    else
    MessageBox.Show("Invalid file type");
    else
    MessageBox.Show("You did pick a location " + "to save file to");
    catch (Exception ex)
    MessageBox.Show("Exception Occured", ex.Message);
    Thanks & Regards RAJENDRAN M

  • Server Threw Exception when Exporting the report as PDF

    Hi ,
    I am developing a .Net application , In my application referring to the .rep file which is created using the Business Objects Desktop Intelligence as below
      objBO = new busobj.Application();
                        objBO.Logon(strUserName, strPassword, strServerName, strConnectionMode,false, false);
                        objBO.Visible = false;
                        objBO.Documents.OpenFromEnterprise("PfILS Document.rep", strDomain, BoEnterpriseFolderKind.boFolder);
    After passing the values to the variables of the.rep and refreshing like as below
    objBO.Application.ActiveDocument.Refresh();
    when I tried to save the generated report as .pdf ..
    objBO.Application.ActiveDocument.ExportAsPDF(@"c:\" + Report0101010 + ".pdf");
    I am getting the following issue
    The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))
    and the application fails to export the report to pdf document
    Please help me , what will be root cause of this issue
    Thanks
    Babu
    Edited by: Babu Lakshmikantham on Oct 28, 2009 9:18 AM

    Hi,
    World you like to have a look at the sample [here|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60b54507-de66-2b10-95b8-a89015297027]?
    Hope that helps!
    Thanks.

  • Exception while starting deployed EAR in weblogic server

    Hi,
    I am using Oracle jdeveloper 11.1.1.4.0 and have created EAR of my application.
    I deployed it in WebLogic Server, however when I tried to start(servicing all request) the same.
    It is throwing following exception,
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references.
    Unresolved application library references, defined in weblogic-application.xml:
    [Extension-Name: adf.oracle.domain, exact-match: false].Where is this weblogic-application.xml file located?
    Appreciate your help.
    Thanks in Advance,
    Madhav.

    Hi,
    Thanks, these links are really helpful.
    I added that library in server shared library successfully.
    but now there is new exception while starting the application using deployed EAR,
    weblogic.common.ResourceException: java.security.PrivilegedActionException:
    weblogic.common.ResourceException: java.security.PrivilegedActionException:
    weblogic.common.ResourceException: No credential mapper entry found for password indirection user=sa
    for data source CommonConnThanks,
    Madhav.
    Edited by: Madhav on Aug 19, 2011 12:56 AM

  • Unhandled exception when exporting to EXCEL

    Hello,
    When I am exporting some reports, Desktop Intelligence crashes (error message at the end of this post).
    I work on Window XP SP2.
    My Desktop Intelligence release is 11.5.0.0.
    It happens when I try to save with EXCEL format (no problem with PDF or RTF).
    This does not happen with the same report in Business Object 6.5 (no problem to export to EXCEL on 6.5).
    I tried with Desktop Intelligence (11.5.0.0) on CITRIX Server (Windows 2003 system) and it crashes also.
    I have not seen any solution already posted on forums.
    Thanks for you help.
    Regards
    Benoit MARCESCHE
    1 processor P Family 6 Model 23 Stepping 6
    Windows 2000 Workstation  v5.1 build 2600 (S)
    Physical Total/Avail: 2.097.151 Kb / 2.097.151 Kb
    Temp directory C:\DOCUME1\bmar\LOCALS1\Temp\ (2 Kb available)
    'Unknown' video card
       1440 x 900 in true color
    Unhandled Exception
      Code: c0000005
      Description: EXCEPTION_ACCESS_VIOLATION
    Call stack:
    Module  at   0x7c340000: C:\WINDOWS\system32\MSVCR71.dll  v 7.10.3052.4 [A]
        address: 0x7c3417b5
    Module  at   0x00690000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\tools.dll  v 11.5.0.313 [A]
        address: 0x006d591a
    Module  at   0x55950000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\report.dll  v 1.0.0.1 [A]
        address: 0x55a8dab7
        address: 0x55a8fdca
        address: 0x55a93390
        address: 0x55a93598
        address: 0x55a93a59
        address: 0x55a93bc5
        address: 0x559e8157
        address: 0x55aba849
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x0042c765
        address: 0x00431400
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x00892d41
        address: 0x0082ce71
        address: 0x00833429
        address: 0x00833487
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x00427d61
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x008333af
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x0043dc64
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082d53e
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x004247d2
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x008043d0
    Module  at   0x544f0000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll  v 11.5.0.313 [A]
        address: 0x5451c76f
        address: 0x544f2d85
        address: 0x5451c6cd
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082b27d
        address: 0x0082b31c
    Module  at   0x544f0000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll  v 11.5.0.313 [A]
        address: 0x5451240a
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082b31c
        address: 0x0082b385
        address: 0x0082b3c3
    Module  at   0x77d10000: C:\WINDOWS\system32\USER32.dll  v 5.1.2600.2180 [F]
        address: 0x77d18709
        address: 0x77d187eb
        address: 0x77d189a5
        address: 0x77d189e8
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x00833830
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x00421b36
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082428a
    Module  at   0x7c800000: C:\WINDOWS\system32\kernel32.dll  v 5.1.2600.2180 [F]
        address: 0x7c816d4f
    Application:
    3580 "
      current thread 0x4F4
    started: lundi 1 du00E9cembre 2008 at 10:06
    ends:    lundi 1 du00E9cembre 2008  at 10:07
      User mode: 2015 ms   Kernel mode: 5390 ms
    Loaded modules:
        0x00320000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\thread-vc-mt.dll      v 0.0.0.0
        0x00340000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\file-vc-mt.dll      v 0.0.0.0
        0x00360000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\io-vc-mt.dll      v 0.0.0.0
        0x00370000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\time-vc-mt.dll      v 0.0.0.0
        0x00390000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\network-vc-mt.dll      v 0.0.0.0
        0x003B0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\helper-vc-mt.dll      v 0.0.0.0
        0x003D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\security-vc-mt.dll      v 0.0.0.0
        0x00400000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x00560000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\btuc320vc71.dll      v 3.2.0.0      [Anglais (u00C9tats-Unis)]
        0x00690000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\tools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x00800000     C:\WINDOWS\system32\MFC71U.DLL      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x00910000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\libxml2.dll      v 2.6.19.0      [Anglais (u00C9tats-Unis)]
        0x009D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\streaming-vc-mt.dll      v 0.0.0.0
        0x00A00000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\pdflib.dll      v 6.0.1.1      [Anglais (u00C9tats-Unis)]
        0x010A0000     C:\WINDOWS\system32\APSHook.dll      v 2.5.0.29      [Anglais (u00C9tats-Unis)]
        0x01830000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\userappfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01890000     C:\WINDOWS\System32\ntlanman.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x018A0000     C:\WINDOWS\System32\NETRAP.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x018B0000     C:\WINDOWS\system32\btmmhook.dll      v 5.1.0.3000      [Anglais (u00C9tats-Unis)]
        0x01900000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\dpvbadlgfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01920000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\dpxmlfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01980000     C:\Program Files\WIDCOMM\Bluetooth Software\btkeyind.dll      v 0.0.0.0
        0x019C0000     C:\Program Files\Fichiers communs\Microsoft Shared\VBA\VBA6\APC62.dll      v 6.1.89.11      [Langue neutre]
        0x01F70000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\PluginManager.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x030A0000     C:\WINDOWS\System32\NETUI0.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x030C0000     C:\WINDOWS\System32\NETUI1.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x03100000     C:\WINDOWS\System32\SAMLIB.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x10000000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\wstkCommon.dll      v 1.0.0.1      [Anglais (u00C9tats-Unis)]
        0x12000000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\xerces-c_2_1_0.dll      v 2.1.0.0      [Anglais (u00C9tats-Unis)]
        0x20000000     C:\WINDOWS\system32\xpsp2res.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x21E80000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\boresfr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x308C0000     C:\Program Files\Microsoft Office\Office\MSO9.DLL      v 9.0.0.3821      [Langue neutre]
        0x49C00000     C:\WINDOWS\system32\cxlibw-3-1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x4A800000     C:\WINDOWS\system32\icuuc30.dll      v 3.0.0.0      [Langue neutre]
        0x4A900000     C:\WINDOWS\system32\icuin30.dll      v 3.0.0.0      [Langue neutre]
        0x4AD00000     C:\WINDOWS\system32\icudt30.dll      v 3.0.0.1      [Langue neutre]
        0x53000000     C:\WINDOWS\system32\fssl-1-2-1-2.dll      v 1.2.1.2      [Anglais (u00C9tats-Unis)]
        0x530F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_config.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53120000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_tools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x531D0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ics_tracelog.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53230000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_trace.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x532A0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_lib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x532F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_core.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53390000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_helpers.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53430000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cube.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x536D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\unvtools.dll      v 1.0.0.1      [Franu00E7ais (France)]
        0x53BD0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cplib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53F60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cnxsrv.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54110000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\TraceLog.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x542C0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\sessmgr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54430000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpcoll.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x54480000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpzlib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x544F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x546C0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\rptdisp.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54740000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\krptdlg.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x547E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOFCEngine.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54860000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dlg1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x548F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\i18n.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x549E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpxml.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54A10000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpi18nloc.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54AB0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\category.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54AF0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dlgdll.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54D40000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\RepAttr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54D70000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\bofcui.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54E30000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\boDeploy.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55030000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOCP_1252.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55060000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpi18n.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55290000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\kquery.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55620000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\msgsrv.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55640000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOFCDialogs.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55660000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\boconfig.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x556E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\vartools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55950000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\report.dll      v 1.0.0.1      [Anglais (u00C9tats-Unis)]
        0x563D0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ics_lib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x56970000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\FCRepoProxy.dll      v 1.0.0.1      [Franu00E7ais (France)]
        0x569D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dxmapi.dll      v 60.0.0.0      [Anglais (u00C9tats-Unis)]
        0x56A60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adavba.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x56CF0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\FCRepoDxImp.dll      v 0.0.0.0
        0x57080000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adpxml.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x57150000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adpvba.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x575A0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adaxml.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x57620000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\repo_proxy.dll      v 0.0.0.0
        0x57A60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_coretools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x58B50000     C:\WINDOWS\system32\COMCTL32.dll      v 5.82.2900.2180      [Anglais (u00C9tats-Unis)]
        0x59620000     C:\WINDOWS\system32\libOCAHelperw-3-1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x597C0000     C:\WINDOWS\system32\libOCASecurityw-2-0.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x598A0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\EnterpriseFramework.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x59C60000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\InfoStor.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5B090000     C:\WINDOWS\system32\uxtheme.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x5BDF0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.User\User.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5BFC0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.UserGroup\UserGroup.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5CB10000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Inbox\Inbox.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5D360000     C:\WINDOWS\system32\MFC71FRA.DLL      v 7.10.3077.0      [Franu00E7ais (France)]
        0x5D3F0000     C:\WINDOWS\system32\dbghelp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x5E010000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\auth\secEnterprise\secEnterprise.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5F350000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\log_xn_system.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5FFD0000     C:\WINDOWS\system32\stringres115_fr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x60CA0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.busobjReporter\busobjReporter.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x62E40000     C:\WINDOWS\system32\hnetcfg.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x63000000     C:\WINDOWS\system32\etc-1-0-12-4.dll      v 1.0.12.21      [Anglais (u00C9tats-Unis)]
        0x64000000     C:\WINDOWS\system32\ebus-3-3-2-5.dll      v 3.3.2.24      [Anglais (u00C9tats-Unis)]
        0x65000000     C:\PROGRA1\FICHIE1\MICROS~1\VBA\VBA6\VBE6.DLL      v 6.0.87.14      [Langue neutre]
        0x65300000     C:\PROGRA1\FICHIE1\MICROS~1\VBA\VBA6\1036\VBE6INTL.DLL      v 6.0.86.67      [Franu00E7ais (France)]
        0x6A900000     C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\Cnp50MUI_D9F20.DLL      v 0.3.0.0      [Anglais (u00C9tats-Unis)]
        0x6FEE0000     C:\WINDOWS\system32\NETAPI32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x71990000     C:\WINDOWS\System32\mswsock.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x719D0000     C:\WINDOWS\System32\wshtcpip.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x719E0000     C:\WINDOWS\system32\WS2HELP.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x719F0000     C:\WINDOWS\system32\WS2_32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x71A10000     C:\WINDOWS\system32\WSOCK32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x71A60000     C:\WINDOWS\system32\MPR.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x71B00000     C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\Cnp50M_D9F20.DLL      v 0.3.0.0      [Anglais (u00C9tats-Unis)]
        0x72F50000     C:\WINDOWS\system32\WINSPOOL.DRV      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x73A80000     C:\WINDOWS\system32\mscms.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x745E0000     C:\WINDOWS\system32\msi.dll      v 3.1.4000.2435      [Langue neutre]
        0x74BF0000     C:\WINDOWS\system32\OLEACC.dll      v 4.2.5406.0      [Langue neutre]
        0x75EF0000     C:\WINDOWS\System32\drprov.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x75F00000     C:\WINDOWS\System32\davclnt.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x75F10000     C:\WINDOWS\system32\browseui.dll      v 6.0.2900.2853      [Franu00E7ais (France)]
        0x76010000     C:\WINDOWS\system32\MSVCP60.dll      v 6.2.3104.0      [Anglais (u00C9tats-Unis)]
        0x76320000     C:\WINDOWS\system32\IMM32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76340000     C:\WINDOWS\system32\comdlg32.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x76590000     C:\WINDOWS\System32\CSCDLL.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x765B0000     C:\WINDOWS\System32\cscui.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76610000     C:\WINDOWS\system32\CRYPTUI.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x767C0000     C:\WINDOWS\system32\hlink.dll      v 5.0.0.4513      [Franu00E7ais (France)]
        0x76930000     C:\WINDOWS\system32\ntshrui.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76960000     C:\WINDOWS\system32\USERENV.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76AC0000     C:\WINDOWS\system32\ATL.DLL      v 3.5.2284.0      [Anglais (u00C9tats-Unis)]
        0x76BE0000     C:\WINDOWS\system32\WINTRUST.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x76C40000     C:\WINDOWS\system32\IMAGEHLP.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76ED0000     C:\WINDOWS\system32\DNSAPI.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F10000     C:\WINDOWS\system32\WLDAP32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76F60000     C:\WINDOWS\System32\winrnr.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F70000     C:\WINDOWS\system32\rasadhlp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F80000     C:\WINDOWS\system32\CLBCATQ.DLL      v 2001.12.4414.258      [Anglais (u00C9tats-Unis)]
        0x77000000     C:\WINDOWS\system32\COMRes.dll      v 2001.12.4414.258      [Franu00E7ais (France)]
        0x770E0000     C:\WINDOWS\system32\OLEAUT32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77170000     C:\WINDOWS\system32\urlmon.dll      v 6.0.2900.2823      [Franu00E7ais (France)]
        0x77210000     C:\WINDOWS\system32\SXS.DLL      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77390000     C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll      v 6.0.2900.2180      [Anglais (u00C9tats-Unis)]
        0x774A0000     C:\WINDOWS\system32\ole32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77720000     C:\WINDOWS\system32\shdocvw.dll      v 6.0.2900.2853      [Franu00E7ais (France)]
        0x778E0000     C:\WINDOWS\system32\SETUPAPI.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x779E0000     C:\WINDOWS\system32\CRYPT32.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x77A80000     C:\WINDOWS\system32\MSASN1.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77AA0000     C:\WINDOWS\system32\WININET.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x77B50000     C:\WINDOWS\system32\appHelp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77BD0000     C:\WINDOWS\system32\VERSION.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77BE0000     C:\WINDOWS\system32\msvcrt.dll      v 7.0.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77D10000     C:\WINDOWS\system32\USER32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77DA0000     C:\WINDOWS\system32\ADVAPI32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77E50000     C:\WINDOWS\system32\RPCRT4.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77EF0000     C:\WINDOWS\system32\GDI32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77F40000     C:\WINDOWS\system32\SHLWAPI.dll      v 6.0.2900.2833      [Franu00E7ais (France)]
        0x7C120000     C:\WINDOWS\system32\ATL71.DLL      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x7C340000     C:\WINDOWS\system32\MSVCR71.dll      v 7.10.3052.4      [Anglais (u00C9tats-Unis)]
        0x7C3A0000     C:\WINDOWS\system32\MSVCP71.dll      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x7C800000     C:\WINDOWS\system32\kernel32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x7C910000     C:\WINDOWS\system32\ntdll.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x7C9D0000     C:\WINDOWS\system32\SHELL32.dll      v 6.0.2900.2180      [Franu00E7ais (France)]

    Hi Laurent,
    Following information might help you to resolve the issue.
    1. Delete some temp files from the temp file folder.
    2. Ensure that you are using the supported Microsoft office version with BOXIR2 SP2.
      Following are the supported versions of BOXIR2 according to the PAR.
    u2022      Windows Office 2000
    u2022      Windows Office 2000 SP3
    u2022      Windows Office 2000 SR1
    u2022      Windows Office 2003
    u2022      Windows Office 2003 SP1
    u2022      Windows Office 2003 SP2
    u2022      Windows Office XP
    u2022      Windows Office XP SP1
    u2022      Windows Office XP SP2
    u2022      Windows Office XP SP3
    u2022      Windows Office 2007*
    Office 2007 support is for Business Objects Live Office and as an export destination for Crystal Reports.
    3. Ensure that the server and client should be on same patch levels.
    4. Might be there is some formatting changes which are not compatible with the excel DAO properties could you please test the following solution.
    1. Apply standard styles in the report and save it as excel.
    2. Reset the report from slice and dice panel and try to save it as excel.
    3. Rebuild the data cube by editing the data providers in the report.
    4. Test the issue by deleting the tabs one by one in the report and saving it as excel.
    Regards,
    Sarbhjeet Kaur

  • Exception while to deploy ear at managed server

    I have a wli cluster version 8.1 sp3. It has two nodes. The node that is hosted in a machine different machine from admin server displayes a message
              javax.management.InvalidAttributeValueException: Unable to create path to /appl/webbus/bea/user_projects/domains/MY_DOMAIN/./adminServer/upload/xxx/xxx.ear
              whenever it starts. But the application seems to starts correctly.
              This node has different path than the other.
              It is /appl/<b>webdbus</b>/bea/user_projects/
              I can not find anything relating in newsgroups. Can anyone explain me why this happens.

    Hi,
              My suspicion about the exception is the it's caused by the different directory structure of the two nodes. As you can see at bold words, weblogic tries to create ear at a directory that does not exist at this node. It finds the latter <b>webbus</b> from the path of admin server at the other machine. My question is straightforwad, <b>Can we have different paths at cluster nodes ?</b> In this case, <b>Should we deploy ear (webservice application) in a different way ?</b>
              <Feb 22, 2005 12:33:26 PM EET> <Info> <Deployer> <BEA-149060> <Module faxManWeb of application faxManAppl successfully transitioned from prepared to active on server wliBusServerPatmosDevel.>
              javax.management.InvalidAttributeValueException: Unable to create path to /appl/<b>webbus</b>/bea/user_projects/domains/ITIC-DEVEL-WLI/adminServerDevel/upload/faxManAppl/faxManAppl.ear
                   at weblogic.management.internal.BootStrap.apply(BootStrap.java:580)
                   at weblogic.management.internal.BootStrap.apply(BootStrap.java:474)
                   at weblogic.management.mbeans.custom.Application.getFullPath2(Application.java:3476)
                   at weblogic.management.mbeans.custom.Application.getFullPath(Application.java:3055)
                   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
                   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
                   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
                   at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
                   at weblogic.management.internal.DynamicMBeanImpl.getAttribute(DynamicMBeanImpl.java(Compiled Code))
                   at weblogic.management.internal.ConfigurationMBeanImpl.getAttribute(ConfigurationMBeanImpl.java(Compiled Code))
                   at com.sun.management.jmx.MBeanServerImpl.getAttribute(MBeanServerImpl.java(Compiled Code))
                   at com.sun.management.jmx.MBeanServerImpl.getAttribute(MBeanServerImpl.java(Inlined Compiled Code))
                   at weblogic.management.internal.RemoteMBeanServerImpl.getAttribute(RemoteMBeanServerImpl.java(Compiled Code))
                   at weblogic.management.internal.MBeanProxy.getAttribute(MBeanProxy.java(Compiled Code))
                   at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java(Compiled Code))
                   at weblogic.management.configuration.ApplicationMBean_Stub.getFullPath(ApplicationMBean_Stub.java:543)
                   at com.bea.wli.broker.manifest.ApplicationManager.load(ApplicationManager.java:71)
                   at com.bea.wli.broker.MessageBroker.registerApplication(MessageBroker.java:999)
                   at com.bea.wli.management.WLIAppListener$1.run(WLIAppListener.java:294)
                   at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
                   at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
                   at com.bea.wli.management.WLIAppListener.applicationInitialized(WLIAppListener.java:290)
                   at weblogic.j2ee.ListenerInvocationAction.run(ListenerInvocationAction.java:46)
                   at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
                   at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
                   at weblogic.j2ee.J2EEApplicationContainer.notifySecureListener(J2EEApplicationContainer.java:4721)
                   at weblogic.j2ee.J2EEApplicationContainer.notify(J2EEApplicationContainer.java:4706)
                   at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2201)
                   at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2146)
                   at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2094)
                   at weblogic.management.deploy.slave.SlaveDeployer$Application.setActivation(SlaveDeployer.java:2976)
                   at weblogic.management.deploy.slave.SlaveDeployer.setActivationStateForAllApplications(SlaveDeployer.java:1751)
                   at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:359)
                   at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:229)
                   at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
                   at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
                   at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
                   at weblogic.Server.main(Server.java:32)
              --------------- nested within: ------------------
              weblogic.utils.AssertionError: ***** ASSERTION FAILED ***** - with nested exception:
              [javax.management.InvalidAttributeValueException: Unable to create path to /appl/webbus/bea/user_projects/domains/ITIC-DEVEL-WLI/adminServerDevel/upload/faxManAppl/faxManAppl.ear]
                   at weblogic.management.mbeans.custom.Application.getFullPath2(Application.java:3479)
                   at weblogic.management.mbeans.custom.Application.getFullPath(Application.java:3055)
                   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
                   at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java(Compiled Code))
                   at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))
                   at java.lang.reflect.Method.invoke(Method.java(Compiled Code))
                   at weblogic.management.internal.DynamicMBeanImpl.getAttribute(DynamicMBeanImpl.java(Compiled Code))
                   at weblogic.management.internal.ConfigurationMBeanImpl.getAttribute(ConfigurationMBeanImpl.java(Compiled Code))
                   at com.sun.management.jmx.MBeanServerImpl.getAttribute(MBeanServerImpl.java(Compiled Code))
                   at com.sun.management.jmx.MBeanServerImpl.getAttribute(MBeanServerImpl.java(Inlined Compiled Code))
                   at weblogic.management.internal.RemoteMBeanServerImpl.getAttribute(RemoteMBeanServerImpl.java(Compiled Code))
                   at weblogic.management.internal.MBeanProxy.getAttribute(MBeanProxy.java(Compiled Code))
                   at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java(Compiled Code))
                   at weblogic.management.configuration.ApplicationMBean_Stub.getFullPath(ApplicationMBean_Stub.java:543)
                   at com.bea.wli.broker.manifest.ApplicationManager.load(ApplicationManager.java:71)
                   at com.bea.wli.broker.MessageBroker.registerApplication(MessageBroker.java:999)
                   at com.bea.wli.management.WLIAppListener$1.run(WLIAppListener.java:294)
                   at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
                   at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
                   at com.bea.wli.management.WLIAppListener.applicationInitialized(WLIAppListener.java:290)
                   at weblogic.j2ee.ListenerInvocationAction.run(ListenerInvocationAction.java:46)
                   at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
                   at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
                   at weblogic.j2ee.J2EEApplicationContainer.notifySecureListener(J2EEApplicationContainer.java:4721)
                   at weblogic.j2ee.J2EEApplicationContainer.notify(J2EEApplicationContainer.java:4706)
                   at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2201)
                   at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2146)
                   at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:2094)
                   at weblogic.management.deploy.slave.SlaveDeployer$Application.setActivation(SlaveDeployer.java:2976)
                   at weblogic.management.deploy.slave.SlaveDeployer.setActivationStateForAllApplications(SlaveDeployer.java:1751)
                   at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:359)
                   at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:229)
                   at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
                   at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:966)
                   at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:361)
                   at weblogic.Server.main(Server.java:32)
              <b></b>

  • Unhandled Exception- While Exporting Universe

    Hi ,
    While exporting Universe into CMS , we have got Unhandled Exception: Access_Violation_Exception.
    We are not able to export any universe into CMS.

    Does your account have enough rights to export to CMS?
    Are you able to import the current version of universe on the CMS successfully?
    Edited by: ramaks on Dec 1, 2009 8:21 PM

  • How to remove ' undefined exceptions', when export to excel within portal ?

    hi friends :
       when I export sth to excel within portal , there always appeared  'undefined exceptions' , sure . im not define excepthions but i do not wanna dislay it , coz it distoyed the the overall sense of the report , and others do not understand what's that mean
       i think it should be configured somewhere ?
       thanks very much :L

    Hello Bruce.
    I just want to clarify the situation that you are referring to...  Are you saying that when you log into the Infoview application and view a report, then click the "Export this report" button from the viewer.  Then it gives you all of the various "File Formats" that you can export to.  In that situation, you wish to only see PDF and Excel as options.
    If that is the situation that you are referring to, then there is no documented or supported way to remove the "File Formats" that can be exported to from the Crystal Reports viewer.  The Infoview application is a "black box" that is provided as-is by SAP BusinessObjects for customers to make use of.  For that reason, there is no documented way to make changes to it.
    Regards.
    - Robert

  • "Catastrophic failure" exception on export...

    Hi,
    I am working on .Net application that uses CRXIR2 embedded server as a 3rd party reports application.
    I am trying to run a report based on a stored procedure, and got this "catastrophic" exception:
    Catastrophic failure  at CrystalDecisions.ReportAppServer.Controllers.PrintOutputControllerClass.Export(CrReportExportFormatEnum exportFormat, Int32 Reserved)...
    ErrorCode = -2147418113
    when i run:
    crystalBytes = reportClientDocument.PrintOutputController.Export(ConvertToCrysalExportFormat(format), 0);
    I tried looking up this exception and error code, and all i got was somethong related to SQL server 2000.
    I'm using SQL server 2008...
    Also, when running other reports based on database views, the reports ran successfully..
    Does anyone have an idea?...
    Thank you,
    Dana.

    Hi,
    I think I've found the problem.
    I changed my stored procedure parameters, from int to bigint.
    I ran the report in the designer, using the new stored proc - it worked ok.
    when i run it using RAS, i first set parameter values using :
    reportClientDocument.DataDefController.ParameterFieldController.SetCurrentValue("", parameter.Name, this.logId);
    where logID is of long datatype.
    when i change it to int, i don't get the exception.
    Is it not possible to set a report parameter value to long datatype?

  • Oracle BI Scheduler raised exception while exporting report by iBot and cus

    Hi,
    I have the issue. When I export BI report using iBot and Java program(BI Publisher Java API) - Oracle BI Scheduler raised exception.
    Platform:
    OBIEE 10.1.3.4 on aix 5.3.0.0
    See the captured log below and any suggestion to fix this will be greatly appreciated.
    - javahost.out.log
    Sep 23, 2009 2:46:35 AM SchedulerComponentLoad load
    INFO: Loading config ...
    Sep 23, 2009 2:46:35 AM SchedulerComponentLoader load
    WARNING: Scheduler RPC components is disabled due to incorrect configuration.
    Sep 23, 2009 2:46:35 AM ApplicationImpl init
    INFO: Running configuration:
    JVM=IBM J9 VM(2.3)
    Listener.Port=9810
    Listener.PermittedClientList=*
    Listener.Address=null
    JobManager.MinThreads=100
    JobManager.MaxThreads=100
    JobManager.MaxPendingJobs=100
    JobManager.IdleThreadTimeoutMls=300000
    MessageProcessor.SocketTimeoutMls=5000
    Charts.InputStreamLimitInKB=1024
    Charts.RequestResponseLogDirectory=/oracle/oraclebidata/tmp
    Chart.Enabled=true
    Chart.InputStreamLimitInKB=1024
    Chart.ChartRoot=/oracle/oraclebi/corda50/chart_root
    Chart.CordaRoot=/oracle/oraclebi/corda50
    Chart.EnableConsoleOutput=false
    Chart.EnableXmlValidation=true
    Chart.MaxAttributeLength=127
    Batik.InputStreamLimitInKB=1024
    Batik.RequestResponseLogDirectory=/oracle/oraclebidata/tmp
    Batik.EnableXmlValidation=false
    Scheduler.Java.Enabled=false
    Scheduler.Java.DefaultUserJarFilePath=null
    Scheduler.Java.PurgePeriod=0
    Scheduler.Java.TempPath=null
    XMLP.InputStreamLimitInKB=8192
    XMLP.RequestResponseLogDirectory=/oracle/oraclebidata/tmp
    OBISAuthenticatorProxy.InputStreamLimitInKB=128
    OBISAuthenticatorProxy.RequestResponseLogDirectory=/oracle/oraclebidata/tmp
    OBISAuthenticatorProxy.ClassName=oracle.bi.server.customauthenticatorimpl.javahostrpccall.DisabledAuthenticator
    Sep 23, 2009 2:46:35 AM Main main
    INFO: Listening for new connections
    Sep 23, 2009 3:01:56 AM RpcSchedulerJob processMessage
    WARNING: Error
    java.lang.NullPointerException
         at java.io.File.<init>(File.java:220)
         at com.siebel.analytics.scheduler.javahostrpccalls.SchedulerJavaUtil.getMaxCount(SchedulerJavaUtil.java:118)
         at com.siebel.analytics.scheduler.javahostrpccalls.SchedulerJavaUtil.makeUniqueFileName(SchedulerJavaUtil.java:109)
         at com.siebel.analytics.scheduler.javahostrpccalls.SchedulerJavaUtil.readJobInfo(SchedulerJavaUtil.java:68)
         at com.siebel.analytics.scheduler.javahostrpccalls.RpcDisabledSchedulerJob.processMessageInternal(RpcDisabledSchedulerJob.java:36)
         at com.siebel.analytics.javahost.AbstractRpcCall.processMessage(AbstractRpcCall.java:107)
         at com.siebel.analytics.javahost.MessageProcessorImpl.processMessage(MessageProcessorImpl.java:175)
         at com.siebel.analytics.javahost.Listener$Job.run(Listener.java:223)
         at com.siebel.analytics.javahost.standalone.SAJobManagerImpl.threadMain(SAJobManagerImpl.java:205)
         at com.siebel.analytics.javahost.standalone.SAJobManagerImpl$1.run(SAJobManagerImpl.java:153)
         at java.lang.Thread.run(Thread.java:810)
    - nqscheduler.out.log
    [Util Logger] Exception occured:
         Severity:Not set
         Type:const saw::Exception *
    +     File:/net/sdcb80a022/vol1/users/anabuild/views/nightly/Tue/101341/AIX/vobs/090414.1900/analytics_web/main/project/webcomm/rpc.cpp+
         Line:371
         Message:A fatal error occurred while processing the request. The server responded with: Error while executing RpcSchedulerJob.processMessage
    java.lang.NullPointerException
         at java.io.File.<init>(File.java:220)
         at com.siebel.analytics.scheduler.javahostrpccalls.SchedulerJavaUtil.getMaxCount(SchedulerJavaUtil.java:118)
         at com.siebel.analytics.scheduler.javahostrpccalls.SchedulerJavaUtil.makeUniqueFileName(SchedulerJavaUtil.java:109)
         at com.siebel.analytics.scheduler.javahostrpccalls.SchedulerJavaUtil.readJobInfo(SchedulerJavaUtil.java:68)
         at com.siebel.analytics.scheduler.javahostrpccalls.RpcDisabledSchedulerJob.processMessageInternal(RpcDisabledSchedulerJob.java:36)
         at com.siebel.analytics.javahost.AbstractRpcCall.processMessage(AbstractRpcCall.java:107)
         at com.siebel.analytics.javahost.MessageProcessorImpl.processMessage(MessageProcessorImpl.java:175)
         at com.siebel.analytics.javahost.Listener$Job.run(Listener.java:223)
         at com.siebel.analytics.javahost.standalone.SAJobManagerImpl.threadMain(SAJobManagerImpl.java:205)
         at com.siebel.analytics.javahost.standalone.SAJobManagerImpl$1.run(SAJobManagerImpl.java:153)
         at java.lang.Thread.run(Thread.java:810)
    Edited by: user8096018 on Sep 23, 2009 5:40 AM

    I am also having the same issue......Can some body help me please? Thanks

  • Soundtrack Pro 2.0.2-Uncaught exception when exporting video

    I'm running STP2.0.2 on Leopard 10.5.6, 8core 2.8 Mac Pro ... and I just recently got it running
    Every time I try to export video from STP2 using Compressor (cause thats the only option I think) I'm getting an error "Uncaught Exception"
    I've checked the permissions on destination folder and Compressor alone works perfectly.
    ... help

    Hi, sorry to disappoint you but i don't know the answer.
    I just wanted to ask roughly how you combine video and audio in Compressor.
    I finished a project in Soundtrack Pro, but then found out there's no way to bounce it as a video file?
    Ideas?
    Thanks
    Simon

  • I/O exception when deploying from .ear

    We are currently using Websphere Application Server 6.00.1
    and want to use Flex alongside struts. We also want to deploy the
    .war file the flex application resides in from an .ear file. When
    the .war file is deployed separately, the application runs without
    problems (at least for testing purposes) but when we put it inside
    an .ear file and change the web.xml accordingly:
    <context-param>
    <param-name>flex.class.path</param-name>
    <param-value>/WEB-INF/jars/lib</param-value>
    </context-param>
    an error occurs.
    does anyone know how to set the flex.class.path correctly
    when using an .ear? I saw another thread regarding WebLogic that
    mentioned Exploded Archive Directory but I don't know what that
    means exactly or how I would set it up for WAS.

    Hi,
    Could you please post the complete exception and the complete stack trace?
    Thanks,
    --mark                                                                                                                                                                                                       

  • Exceptions in Export to Excel functionality

    Hi,
    I am using jdeveloper 11.1.1.4 and in a jspx there is a panel tabbed and in one showDetailItem there is a table in a panel collections and under menus i added a <af:commandMenuItem> with <af:exportCollectionActionListener> to export the table to excel sheet.
    When i do export to excel in the showDetailItem and move to another tab i am seeing this Message
    "ADF_FACES-60003:Component with ID: searchAgileDocDetails_cb not registered "
    When i looked at the forums it says this issue is resolved in latest versions thats how i am using jdev 11.1.1.4 but i could see the same issue.
    Can some one tell me how to solve this ?
    code:
    <af:panelCollection binding="#{backingBeanScope.backing_LUM_ADMIN_EMPLOYEE_DOCUMENTS.pc1}"
    id="pc1" inlineStyle="width:800.0px;border-width:thin;">
    <f:facet name="menus">
    <af:menu text="File"
    binding="#{backingBeanScope.backing_LUM_ADMIN_EMPLOYEE_DOCUMENTS.m2}"
    id="m2">
    <af:commandMenuItem text="Export to Excel"
    binding="#{backingBeanScope.backing_LUM_ADMIN_EMPLOYEE_DOCUMENTS.cmi1}"
    id="cmi1">
    <af:exportCollectionActionListener type="excelHTML"
    exportedId="trainingDocs_t"
    filename="TrainingDocuments.xls"
    title="TrainingDocuments"/>
    </af:commandMenuItem>
    </af:menu>
    </f:facet>
    <f:facet name="toolbar"/>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.lum_TrainingDocumentsView1.collectionModel}"
    var="row"
    rows="#{bindings.lum_TrainingDocumentsView1.rangeSize}"
    emptyText="#{bindings.lum_TrainingDocumentsView1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.lum_TrainingDocumentsView1.rangeSize}"
    rowBandingInterval="0"
    filterModel="#{bindings.lum_TrainingDocumentsView1Query.queryDescriptor}"
    queryListener="#{bindings.lum_TrainingDocumentsView1Query.processQuery}"
    filterVisible="true" varStatus="vs"
    binding="#{backingBeanScope.backing_LUM_ADMIN_EMPLOYEE_DOCUMENTS.trainingDocs_t}"
    id="trainingDocs_t"
    width="800px" inlineStyle="outline-width:thin;"
    partialTriggers=":::departmentNames_soc">
    <af:column sortProperty="DocumentName" filterable="true"
    sortable="true" headerText="DOCUMENT NAME"
    id="c9"
    width="530px">
    <af:inputText value="#{row.bindings.DocumentName.inputValue}"
    label="#{bindings.lum_TrainingDocumentsView1.hints.DocumentName.label}"
    required="#{bindings.lum_TrainingDocumentsView1.hints.DocumentName.mandatory}"
    columns="#{bindings.lum_TrainingDocumentsView1.hints.DocumentName.displayWidth}"
    maximumLength="#{bindings.lum_TrainingDocumentsView1.hints.DocumentName.precision}"
    shortDesc="#{bindings.lum_TrainingDocumentsView1.hints.DocumentName.tooltip}"
    id="it5" readOnly="true">
    <f:validator binding="#{row.bindings.DocumentName.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Department" filterable="true"
    sortable="true" headerText="DEPARTMENT"
    id="c7" width="160px">
    <af:inputText value="#{row.bindings.Department.inputValue}"
    label="#{bindings.lum_TrainingDocumentsView1.hints.Department.label}"
    required="#{bindings.lum_TrainingDocumentsView1.hints.Department.mandatory}"
    columns="#{bindings.lum_TrainingDocumentsView1.hints.Department.displayWidth}"
    maximumLength="#{bindings.lum_TrainingDocumentsView1.hints.Department.precision}"
    shortDesc="#{bindings.lum_TrainingDocumentsView1.hints.Department.tooltip}"
    id="it4" readOnly="true"
    >
    <f:validator binding="#{row.bindings.Department.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="DocumentType" filterable="true"
    sortable="true" headerText="DOCUMENT TYPE"
    id="c5" rendered="false">
    <af:inputText value="#{row.bindings.DocumentType.inputValue}"
    label="#{bindings.lum_TrainingDocumentsView1.hints.DocumentType.label}"
    required="#{bindings.lum_TrainingDocumentsView1.hints.DocumentType.mandatory}"
    columns="#{bindings.lum_TrainingDocumentsView1.hints.DocumentType.displayWidth}"
    maximumLength="#{bindings.lum_TrainingDocumentsView1.hints.DocumentType.precision}"
    shortDesc="#{bindings.lum_TrainingDocumentsView1.hints.DocumentType.tooltip}"
    id="it3" rendered="false">
    <f:validator binding="#{row.bindings.DocumentType.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="CreatedBy" filterable="true"
    sortable="true" headerText="CREATED BY"
    id="c8" rendered="false">
    <af:inputText value="#{row.bindings.CreatedBy.inputValue}"
    label="#{bindings.lum_TrainingDocumentsView1.hints.CreatedBy.label}"
    required="#{bindings.lum_TrainingDocumentsView1.hints.CreatedBy.mandatory}"
    columns="#{bindings.lum_TrainingDocumentsView1.hints.CreatedBy.displayWidth}"
    maximumLength="#{bindings.lum_TrainingDocumentsView1.hints.CreatedBy.precision}"
    shortDesc="#{bindings.lum_TrainingDocumentsView1.hints.CreatedBy.tooltip}"
    id="it1" rendered="false">
    <f:validator binding="#{row.bindings.CreatedBy.validator}"/>
    </af:inputText>
    </af:column>
    </af:table>
    </af:panelCollection>
    Thanks.

    sorry i am using jdeveloper 11.1.1.3 not jdeveloper 11.1.1.4

  • When exporting videos from fcpx, videos get filled with interlacing issues. using Canon HF G10, no issues while in FCPX, except when exported.

    I don't understand why this is happening? It doesn't happen all the time, only with some videos. Haven't changed my settings or anything. Exporting in H.264.

    This is the issue. Obviously this picture makes it look a little more dramatic but that's what it looks like when moving frame by frame. I was told by someone that this is called interlacing, but they may be wrong and I may be in the complete wrong discussion. But if they're correct, then no, I do not want it to be interlaced. These are my exporting properties:

Maybe you are looking for

  • I need help and I can't seem to find any.

    Okay here's what I did... I got a new Mac Mini from my parents for Christmas, but before my dad could hook it up, I used my brothers computer to put music on my iPod Nano, they use windows though. So now that my computer is hooked up I can't seem to

  • Error at configuring LDAP Synch by using post installation steps of OIM

    Hi All , I am getting error while configuring LDAP synch....... i am doing LDAP synch by using following link http://docs.oracle.com/cd/E27559_01/integration.1112/e27123/oid_oim.htm#IDMIG4357 While Running patch_weblogic.sh script i am getting follow

  • My trusty Mac LC no longer boots from the HD

    I purchased a new Mac LC many years ago and it has served me well until recently when it would no longer boot from the hard drive. When I boot from a Disk Tools floppy, I get some limited success but do not ever hear the HD spin up. The startup chime

  • DataGrid itemrenderer with switch statement

    Hi, I have datagrid control with this columns <mx:DataGrid id="dgvParagraphs" >     <mx:columns>         <mx:DataGridColumn dataField="type" headerText="Type"/>         <mx:DataGridColumn dataField="title" headerText="Title"/>         <mx:DataGridCol

  • Adding custom fields to FPE1/2/3 transaction screen

    Hi guys, I need to add custom fields from table DFKKOP to transactions FPE1/2/3 under ADDITIONAL DATA area while manually entering NEW BUSINESS PARTNER ITEM. The transaction is not BDT enabled and does not have a screen exit. The user exit and BaDI d