Cannot create WebADI template document

Hi all,
When I created document for template office 2007, the page became blank without any error and warning;
Could you please advise solution?
OS: Window 7;
EBS: 11.5.10.2
Office: 2007
Here is the bne.log:
4/25/12 2:19 PM ERROR BneBajaServlet:doRequest() - Throwable: java.lang.NoClassDefFoundError: oracle/apps/bne/integrator/document/template/BneBundleTemplateInterface
4/25/12 2:19 PM ERROR BneBajaServlet:doRequest() - Throwable: java.lang.NoClassDefFoundError: oracle/apps/bne/integrator/document/template/BneBundleTemplateInterface
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:141)
at oracle.apps.bne.integrator.document.BneViewerFactory.loadViewerObject(BneViewerFactory.java:110)
at oracle.apps.bne.integrator.document.BneViewerFactory.createViewerObject(BneViewerFactory.java:75)
at oracle.apps.bne.integrator.document.BneDocumentService.createViewerContent(BneDocumentService.java:623)
at oracle.apps.bne.integrator.document.BneDocumentService.createPage(BneDocumentService.java:352)
at oracle.apps.bne.integrator.document.BneDocumentService.handleRequest(BneDocumentService.java:191)
at oracle.apps.bne.framework.BneBajaServlet.doRequest(BneBajaServlet.java:256)
at oracle.apps.bne.framework.BneBaseServlet.doGet(BneBaseServlet.java:75)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:499)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
at org.apache.jserv.JServConnection.run(JServConnection.java:294)
at java.lang.Thread.run(Thread.java:534)
Thanks in advance.

Hi;
I suggest close your issue here as answered than move your issue Oracle Discussion Forums » E-Business Suite » Technology - Applications Desktop Integrator which you can get more quick response
Regard
Helios

Similar Messages

  • "The system cannot create journal template"

    While creating the journal template for my legalapplication using wizard i get the following error
    "The system cannot create journal template"
    am using category, group and time as my header dimension --
    group dimension contains the LC.
    please suggest what steps can be taken. Also while trying to access journal from etools we get the message journal not found.
    Thanks

    Hi Andy,
    Please check how many sheets are in a default excel workbook on your client. If less than three, BPC fails to create the journal template. If that's the case, try setting default number of worksheets to 3, then retry journal template creation.
    If the above is not the issue, then you'll have to check that reporting services is working correctly. As a first step, go to http://<app server name>/reportserver (or reportserver$<instancename> if you are using a reporting services instance and left it with the default name)
    If that page compiles and shows without error, then try http://<app server name>/ reports (or reports$<instance name>) If that one also compiles/doesn't give errors, then reporting services is working.

  • MI31: Cannot Create Physical Inventory Document for a Certain Material

    Dear SAP MM Friends,
    Greetings! I am a budding MM functional analyst in our company. I received a call earlier regarding with transaction code MI31 (Selected Data for Physical Inventory Documents w/o Special Stock). The user cannot generate a physical inventory document for a certain material.
    The thing is, we no longer have any stock for this material (MMBE). I tried generating physical document again by ticking "Only Materials with Zero Stock" but to no avail.
    May I ask what might be the reasons behind? Your prompt response is highly appreciated.
    Thank you very much.
    Best Regards,
    Albert

    Hi,
    Please check also the existing physical inventory document for material, probably you still have active physical document from previous period.
    1. Go to MI22 --> select your plant, storage location or you can also specify your material number --> execute.
    2. Check your Physical Document list, at field Status doc. --> if the status is Doc. active, but it is not in your current period, then it could be the problem.
    3. Delete the physical inventory doc that you found in step 2 (use tcode MI02 --> physical doc, year --> choose delete button)
    4. Try to create new physical document for the material.
    hope this help.
    rob

  • Cannot create an accounting document  for year-end-closure

    Good morning,
    I am dealing with an urgent issue related to the year-end-closing.
    The accounting document cannot be created because the account 9600700000 does not exist in standard chart of accounts.
    The system wants to pick up an account which is used by the chart of accounts of the country CAGR. This is used for the analytical ledger at the end of the month.
    When I compare it with another example which was posted correctly, I see that the account 9600700000 was used in the Special ledger.
    Do you have any idea how to create the accounting document?
    Thank you very much.
    Kind regards,
    Linda

    Issue solved

  • BO 4.0: cannot create new WebI document as admin

    Hi,
    I am logged in on our BO 4.0 server as administrator and would like to create a sample WebI report. So I started WebI from the Launchpad but the "create new document" icon is inactive...
    I do have full access and I am using the administrator login... what's missing?
    Thanks!

    Hi Steve,
    Have you tried from another client/browser computer using the same account?
    How about using the rich client? Can you create documents and save them to the repository?
    Regards,
    Julian

  • Cannot create site template due to references containing formula's

    Hi
    We currently have in our production environment an issue creating a site template due to references in fields yet the UPSLogs do not state the column in question
    The error I get when trying to save the template is as below:
    Error:
    The formula contains reference(s) to field(s)
    Correlation ID: {b3c9eo56-f2e3-48aa-9f7d-86a63ab8a37f}
    Date and Time: 2/3/2015 10:22:02
    Is there any other way of identifying the column so I can resolve this issue?
    Thanks in advance

    If you know PowerShell or care to want to mess with this script you might get what you need:
    $web = Get-SPWeb SITE
    $list = $web.Lists["LIST"]
    $FieldType = [Microsoft.SharePoint.SPFieldType]
    $FieldType = $list.fields.GetField("COLUMN_NAME")
    Foreach ($i in $FieldType)
    IF($i.ValidationFormula -ne $Null)
    Write-Host "Column Name:"$i.Title
    Write-Host "Forumla:" $i.ValidationFormula
    I wrote this very quickly so you have to note that you have to manually put the column name in and run it. It will show you in the out put the formula used on each column. I will work on this some more to get it to check all the columns and return you what's
    being used and which is a reference.
    UPDATED:
    $web = Get-SPWeb SITE
    $list = $web.Lists["LIST_NAME"]
    $FieldType = [Microsoft.SharePoint.SPFieldType]
    $FieldType = $list.fields
    foreach($i in $FieldType)
    Foreach ($item in $i)
    IF($item.ValidationFormula -ne $Null)
    Write-Host ""
    Write-Host "Column Name:"$item.Title
    Write-Host "Forumla:" $item.ValidationFormula -foreground Red
    Write-Host ""
    If this is helpful please mark it so. Also if this solved your problem mark as answer.

  • Win2012 R2, SC 2012 R2; Cannot create VM template

    Scenario:
    Hardware: HP DL360G7 fully updated with 80GB RAM, 32 Procs, 120GB as boot from SAN, 750GB P2000 G3 SAN LUN as CSV
    Windows Server 2012 R2 DE installed and updated, then installed and configured MPIO, Hyper-V and Fail Over Cluster (1 node cluster)
    Installed 3 VMs running Windows Server 2012 R2 SE with:
    1 Gen2 VM with SQL 2012 SP1 SE
    1 Gen2 VM with System Center Virtual Machine Manager 2012 R2
    1 Gen1 VM with only Windows Server 2012 R2 SE to fully updated (to be used as template)
    SCVMM installed no errors, imported cluster with no error, create VM with no error. When I try to create a VM template from I get this error.
    Error (2912)
    An internal error has occurred trying to contact the cloudmgmt01.cloud.priv server: : .
    WinRM: URL: [http://cloudmgmt01.cloud.priv:5985], Verb: [INVOKE], Method: [HWScoutOffline], Resource: [http://schemas.microsoft.com/wbem/wsman/1/wmi/root/scvmm/P2VServerJob]
    The configuration registry database is corrupt (0x800703F1)
    Recommended Action
    Check that WS-Management service is installed and running on server cloudmgmt01.cloud.priv. For more information use the command "winrm helpmsg hresult". If cloudmgmt01.cloud.priv is a host/library/update server or a PXE server role then ensure that
    VMM agent is installed and running. Refer to http://support.microsoft.com/kb/2742275 for more details.
    What have I Done so far?
    -uninstall and re-import host node
    -winrm quickconfig
    -firewall with 443,5985 and 5986
    -reinstalled whole SCVMM
    -reboot host node
    -check event viewer, no errors
    -check cluster node on vmm, no errors
    Help please!

    Fix it, Disabled secure boot must be disable on Gen2 VM before creating template
    thanks 2.
     http://www.hyper-v.nu/archives/pnoorderijk/2013/12/generation-2-virtual-machine-template-and-the-invalid-boot-device/

  • Cannot create billing document due to errors

    Hi,
    I cannot creat the billing document due to below errors in the error log of VF01.
    I ran SDRQ report and cannot detect any inconsistency.
    Error Log                                                                               
    4       0025001049 000000 ABEND due to system error                                          
        4       0025001049 000000 Processing cancelled due to inconsistencies in billing quantity.   
        4       0025001049 000010 The item has been fully invoiced already                                                                               
    Could you please help.
    Thank you & regards,
    Harshini.

    Hello,
    >4 0025001049 000000 ABEND due to system error
    Check SAP
    Note 77419 - VF076 for billing docs. w. net value unequal zero
    Note 976445 - VX02N - Termination due to negative sales order value
    Note 770784 - Information on locking problems during availability check
    >4 0025001049 000000 Processing canceled due to inconsistencies in billing quantity.
    Check SAP
    Note 489676 - External billing documents cannot be cancelled due to VF 188
    Note 371844 - Correction of incorrect costs
    Note 819805 - Lock logic, reversal, status, posting date (5.00)
    >4 0025001049 000010 The item has been fully invoiced already
    Check the billing reference for Sales doc type (VOV8) for document number 0025001049
    Thanks & Regards
    JP

  • EHS & WWI: Error creating Report Template

    Hi all,
    We have installed WWI for defining report templates and cannot create the templates from cg42.
    Let me try to reproduce my steps:
    1. Enter cg42 and create a new template, entering the name and descirption (i.e. TEST WWI, Report Template Example)
    2. Save the template
    3. Display the document (F7)
    4. Error message: "Cannot display document TEST_WWI vesion00" Message no. C$563
    But if I change to display mode then if I press  the Document button (F7) the report template is displayed.
    Do you know why this could be?
    Many thanks and regards,
    Alberto

    Hola Alberto,
    Estoy empesando a parametrizar SVT, pero no he podido generar ningun reporte de volumen de sustancias, tienes algún documento o manual de cuztomización de SVT que me puedas facilitar?
    Me gustaría hacerte una pregunta puntual, pero lamentablemente, no sé donde esta la falla.
    Muchas garcias.
    Saludos.
    Alejandro González Spencer

  • Routine / User exit in SD to create an Accounting Document

    Hi Everybody,
    Anybody please tell me the Routine / User exit in SD to create Accounting Document from an SD billing document.
    Also need the user exit that will split the accounting document into as many documents as required.
    The problem I am facing is like the splitter program fails to copy the document header text into all the accounting documents produced as a result of the splitter program. Appreciate your help.
    Thanks,
    Neethu.

    Hi Neethu,
    Sorry, I don't understand very well your requirements.
    Do you have problems with splitting in billing? If yes, see SAP Note 11162 - Invoice split criteria in billing document and search posts with the string ZUKRI.
    To change data in the interface to FI from billing, see Note 301077 - User exits for the interface to accounting, but I think that you cannot create new FI documents with these enhancements.
    Other question, see SAP Note 36353 - AC interface: Summarizing FI documents, perhaps your problem can be solved with the advices of this note.
    I hope this helps you
    Regards
    Eduardo

  • Creating an Accounting Document for Invoice

    We cannot create an accounting document for Invoice.There is no problem in account determination procedure. I've tried to clear in VFX3, but gives me an error message that says  "express document 'update was terminated' received from author.
    After analysis the error being reported is:
    "M2 012: Error determining posting period (info structure S010).Function module is MCV_STATISTICS_UPD_V1_INVOICE     V1 NORMAL     
    Can you suggest how we can post/Release to Accounts?

    Hi Narendra
    Go to T-code MCVV. In this case since the doc is not created it will not work.
    Is there an ST22 dump. if yes put a break point there.
    Check SM13 and you can see the here where the update fails. Apply break point there.
    Go to MC26 and enter S010 and check if any update rules exisit. in one of the formulas you need to put a break point.then go back to VF01 and then before you hit the save enter /h in the command box to go into debug mode.
    Once in debug mode Follow the menu path Setings--->update debug on/off.Debug and see why the update is failing.
    Thanks

  • Cannot create new document in Pages09

    Trying to create a new document in Pages 09 (has been updated to newest version) on OS X 10.8.2.
    When I select New Document, the template browser comes up. When selecting any document in any category, including a blank document, a spinning wheel comes up within the preview of the document and the document cannot be opened. Doesn't matter if I select Choose button, our double-click, or anything.
    Pages is not frozen. I can close the window or select something else, but nothing will open. Opening existing documents works.
    I've found a workaround by creating an alias of the Templates folder within the Pages bundle on the Desktop and opening a template from there, but need to get this working correctly, as this is on my older parents' machine.
    I've tried repairing permissions.
    Ideas?
    Thanks.

    When something that used to work stops doing so, the most likely culprit is corrupt preferences. Go to HD > Users > (your account) > Library > Preferences, delete the com.apple.iwork.pages.plist file & then restart Pages. In Finder, hold down the Option key while clicking on the Go menu & your user Library will appear about halfway down the list.

  • Creating multi-page document with multiple templates

    Hi,
    I am new to Pages and am attempting to create a photo book that I can export as a PDF and have printed through an online service. I have successfully created multiple templates in Pages that I want to use in my book, but cannot figure out how to create a new page based on an existing template. If I select "New" or "New from Template Chooser" I end up with a brand new document, not a new page in my existing document. If I select Insert --> Pages, I am only given the choice to insert a Text or a Blank page. How do I insert a new page based on a template? Or, how do I apply a template to a blank page?
    Thanks very much,
    Eric

    Okay, I have figured out a way to accomplish my goal. I have my master Pages document that I am adding pages to by:
    1. File --> "New from Template Chooser"
    2. Selecting my template
    3. A new document is opened
    4. I add my photo and custom text
    5. Copy the new page from the Pages area in the left nav
    6. Paste the new page back into my master document
    This works, although is a bit cumbersome. Would much prefer to be able to simply add a page in my master based on an existing template, but I still don't see how to do that...

  • SharePoint 2013 Document Library/List created from template "not keeping unique permissions"

    Hi all,
      I am in need of help with SP2013 Document Library. Hope someone will be able to help me. Here is the scenario.
    I created a SP2013 document Library/List , I break the permissions of the list from the parent and apply unique permissions to the list. So far so good. But now when I Save the list as template and create a new list using that template , the unique permissions
    are lost and the list is again shown "inheriting from parent". I have tested this scenario in recently upgraded farm and a completely new farm as well. I tried creating templates in powershell as well but same results. Is this only with me or anyone
    else experiencing this and if there any workarounds?
    Any help is appreciated.
    Thanks,
    Kshma

    List template will not save permission neither will carry it in newly create instance, for a good reason. You need to use powershell or UI 
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • I recently updated to the OSX 10.8.3 Operating Sistem.  I am writing a book and now cannot open any word document I've created.  Could not find a newer version of the Microsoft Word Processing Program.  Is Pages the next thing? Can I recover my documents?

    I recently updated to the OSX 10.8.3 Operating Sistem.  I am writing a book and now cannot open any word document I've created with the old system.  Could not find a newer version of the Microsoft Word Processing Program.  Is Pages the next thing? Can I recover my documents?  How?

    I'm in the same boat: new to OS X and Mac, and in the middle of a book. I switched because I heard about the the ease of using Mac, but so far, for me, it's been a nightmare. I bought 2011 Office Mac and hate everything about it, the most recent being the inability to open or cut or paste any of my original word files. I understand that this could have easily been done with earlier versions, but not Mountain Lion (which I learned is what OSX is.) Since I work with language, I am amazed at the assumptions of the Apple community. It helps to use common language and explain even the basics.  
    So all the helpful hints to use the latest version of Office Mac are to no avail. Now what?

Maybe you are looking for

  • DM 4.6 will not sync with Outlook Calendar

    Using Windows XP SP3, Outlook 2003, BB Pearl 8130.  Used DM 4.3 for nearly a year without issue.  Just upgraded to DM 4.6.  During sync, DM will read addresses, tasks, and memos, and appears to read the calendar from the device, but when it gets to r

  • How do I get my information back on my phone after updating itunes

    how do I get my information back on my phone after updating I Tunes.  I up dated it this morning and when it was complete, all my contacts and my pics and my screen savers and sounds were from my daughters phone. I can not locate any of my informatio

  • How can i get my bookmarks back, after mozilla crashed and got stuck in safe mode?

    I was using mozilla as usual when suddenly it crashed and then my computer turned off. i restarted it and said it had gone into safe mode. i tried to restart the computer again but it was stuck on safe mode. The bad part is that all my bookmarks are

  • XY Graph Won't save to JPEG when Black and White...and run from TestStand.

    I am creating an XY graph and manipulating the colors of the plots, background, etc.  I am saving this graph to JPEG using the Write JPEG File vi and after it is saved I import it inot a test report.  This works fine in color, but when I create a B&W

  • Need advice working with Metal-FX files...

    I've just been given a large job and at the last minute the spec of the job was changed to the Metal-FX process, and the files provided to me have already been converted, meaning they are 4C+spot channel (silver). On most of the images I need to remo