PLM 7.0  PLMWGUI viewer error

Hi,
I have document that is checked into the standard rep DMS_C1S_ST. Using the SAP GUI I can display it with no problems using cv03n. Upon trying to display the same document using the SAP PLMWUI  (PLM 7.0) I get the following error
"Workstation application EAIWEB.WEBVIEWER2D.1 %SAP-CONTROL% is invalid. Starting external application.
  Error while checking out: "
I have the new viewer installed on my local machine and  also have the white list configured.
appreciate any help
Rahul

Hi,
Thanks to all of you, I was able to configure the white list correctly. The file now does download from the server. The viewer loads  but it displays this error when trying to display the file
"An attempt was made to load a program with an incorrect format". The rest of the screen area is white. During the first run there was a popup which came up to select rendering options. I selected DIrect x 9. Since then even in spite of uninstalling and reinstalling the viewer the popup does not come  up. I don't know if the error is related to this or something entirely different.
Please help.
Rahul
I am not getting another error
" Scene creation failed.File may be corrupt"
I have checked the file and its fine. It is a pdf.
Edited by: Rahul Patel on May 2, 2010 10:37 PM

Similar Messages

  • How to view errors if bulk collect has thrown errors

    Hi,
    I have few questions.
    1.How to view error whether bulk collect is successful or not
    2.What is identified & unidentified relationships in ERWIN
    3.How to see the errors whether the sql loder is successful or not
    and how to open the log file.Is there any specific command in UNIX
    which tells loader is successful or thrown error
    4.When executing the pl/sql procedure from UNIX.how to check for errors.
    Please provide the answers for this
    Thanks

    Use SAVE EXCEPTIONS clause in your FORALL loop.
    Is this for homework/test?

  • Crystal Report Windows Forms Viewer Error in 1 Workstation after upgrade of PL

    Hi all,
    We just upgraded SAP from 8.82 PL02 to 8.82 PL15.
    Afterwards, in just 1 workstation, Crystal Reports layouts have Crystal Report Windows Forms Viewer error I attach.
    Before the upgrade this error did not happen.
    No permissions or authorizations were changed  in the workstation.
    The Crystal Reports layouts remain working fine in server and in the other workstations.
    In the workstation following are installed:
    - Operating System Windows 7;
    - Microsoft .NET Framework 4.5;
    - SAP Crystal Reports runtime engine for. NET Framework;
    - Crystal Report 2008 Runtime SP6;
    - Microsoft SQL Server 2008 R2 Native Client.
    All, but the operating system, are equal to the other workstations.
    User has edit access to SAP folders, temp and access to the attach path.
    We already uninstalled SAP client and client agent and re-installed it but with no avail.
    Can anyone help me?
    Thanks in advance.
    Best regards,
    Pedro Mariano

    Hi San Xu,
    Thank you for your input.
    However I'm facing problem with each software is suitable.
    I installed SAP Crystal Reports for SAP Business One (CR 2011 V14.0.4.738), but with no avail.
    Thanks in advance.
    Best regards,
    Pedro Mariano

  • Unable to display tree view; Error when parsing an XML document (Premature end of file.)

    Hi folks,
    I am using a cascaded mapping in my OM. I have a graphical mapping followed by the Java mapping. It is a flat file to IDOC mapping. Everything works fine in Dev but when I transport the same objects to QA, the Operation mapping though it doesn't fail in ESR testing tool, gives the following message and there is no output generated for the same payload which is successfully tested in DEV. Please advise on what could be the possible reasons.
    Unable to display tree view; Error when parsing an XML document (Premature end of file.)

    kalyan,
    There seems to be an invalid xml payload which causes this error in ESR not generating the tree view. Please find the similar error screenshot and rectify the payload.
    Mutti

  • JavaMapping in PI 7.1 Error:Unable to display tree view; Error when parsing

    hi,
    i get by testing in PI 7.1 (operation mapping) this ERROR:
    "Unable to display tree view; Error when parsing an XML document (Content is not allowed in prolog.)"
    this is my java-programm-code:
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import com.sap.aii.mapping.api.StreamTransformation;
    import java.io.*;
    import java.util.Map;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    /*IMPORT statement imports the specified classes and its methods into the program */
    /Every Java mapping program must implement the interface StreamTransformation and its methods execute() and setParameter() and extend the class DefaultHandler./
    public class Mapping extends DefaultHandler implements StreamTransformation {
    Below is the declaration for all the variables we are going to use in the
    subsequent methods.
         private Map map;
         private OutputStream out;
         private boolean input1 = false;
         private boolean input2 = false;
         private int number1;
         private int number2;
         private int addvalue;
         private int mulvalue;
         private int subvalue;
         String lineEnd = System.getProperty("line.separator");
    setParamater() method is used to store the mapping object in the variable
    "map"
         public void setParameter(Map param) {
              map = param;
         public void execute(InputStream in, OutputStream out)
                   throws com.sap.aii.mapping.api.StreamTransformationException {
              DefaultHandler handler = this;
              SAXParserFactory factory = SAXParserFactory.newInstance();
              try {
                   SAXParser saxParser = factory.newSAXParser();
                   this.out = out;
                   saxParser.parse(in, handler);
              } catch (Throwable t) {
                   t.printStackTrace();
    As seen above execute() method has two parameters "in" of type
    InputStream and "out" of type OutputStream. First we get a new instance
    of SAXParserFactory and from this one we create a new Instance of
    SAXParser. To the Parse Method of SaxParser, we pass two parameters,
    inputstream "in" and the class variable "handler".
    Method "write" is a user defined method, which is used to write the
    string "s" to the outpurstream "out".
         private void write(String s) throws SAXException {
              try {
                   out.write(s.getBytes());
                   out.flush();
              } catch (IOException e) {
                   throw new SAXException("I/O error", e);
         public void startDocument() throws SAXException {
              write("");
              write(lineEnd);
              write("");
              write(lineEnd);
         public void endDocument() throws SAXException {
              write("");
              try {
                   out.flush();
              } catch (IOException e) {
                   throw new SAXException("I/O error", e);
         public void startElement(String namespaceURI, String sName, String qName,
                   Attributes attrs) throws SAXException {
              String eName = sName;
              if ("".equals(eName))
                   eName = qName;
              if (eName.equals("NUMBER1"))
                   input1 = true;
              if (eName.equals("NUMBER2"))
                   input2 = true;
         public void endElement(String namespaceURI, String sName, String qName)
                   throws SAXException {
              String eName = sName;
              if ("".equals(eName))
                   eName = qName;
              if (eName.equals("NUMBER1"))
                   input1 = false;
              if (eName.equals("NUMBER2"))
                   input2 = false;
         public void characters(char[] chars, int startIndex, int endIndex)
                   throws SAXException {
              String dataString = new String(chars, startIndex, endIndex).trim();
              if (input1) {
                   try {
                        number1 = Integer.parseInt(dataString);
                   } catch (NumberFormatException nfe) {
              if (input2) {
                   number2 = Integer.parseInt(dataString);
              if (input2 == true) {
                   addvalue = number1 + number2;
                   mulvalue = number1 * number2;
                   subvalue = number1 - number2;
                   write("" + addvalue + "");
                   write(lineEnd);
                   write("" + mulvalue + "");
                   write(lineEnd);
                   write("" + subvalue + "");
                   write(lineEnd);
    in developer studio 7.1 i dont get error.
    this happens by testing the mapping-programm in ESR.
    can somebody help me please?

    Make sure that the xml created out after the java mapping is a valid xml with only one root node.
    Regards,
    Prateek

  • Refresh Order Management Materialized Views errors out in R12.1.3

    Hi All -
    Refresh Order Management Materialized Views errors out in R12.1.3 when submitted with blank parameters. Please find below error details ..
    OEXITORDMV module: Refresh Order Management Materialized Views
    Current system time is 15-OCT-2012 11:30:29
    **Starts**15-OCT-2012 11:30:29
    ORACLE error 12008 in FDPSTP
    Cause: FDPSTP failed due to ORA-12008: error in materialized view refresh path
    ORA-01555: snapshot too old: rollback segment number 4 with name "_SYSSMU4_3768336236$" too small
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2566
    ORA
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Thanks,

    Cause: FDPSTP failed due to ORA-12008: error in materialized view refresh path
    ORA-01555: snapshot too old: rollback segment number 4 with name "_SYSSMU4_3768336236$" too small
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2566Please see old threads for the ORA-015555 docs you need to refer to.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01555&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-01555+AND+Materialized+AND+View&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Smart View Error: Requested Operation Failed. Error: Java.lang.NullPointerE

    Hi All,
    I get the below error when i refresh a report from smartview.
    Small reports works fine but if the report is huge i get this error
    Smart View Error: Requested Operation Failed. Error: Java.lang.NullPointerE
    Smart View 11.1.2 MS OFFICE 2007 SP3
    Essbase 11.1.2
    Any pointers.
    Regards,
    Mink

    you mean i have to set below in essbase.properties of aps
    SET JAVA_OPTIONS=–Xms128m –Xmx1024m
    Regards,
    Mink

  • Event Viewer errors and warnings

    How do I clear Event Viewer errors and warnings?

    This one may help.
    http://technet.microsoft.com/en-us/library/cc722318.aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Smart View error when opening Powerpoint files read-only

    Users are experiencing the following error when they open a Powerpoint file as read only. Using MS Office 2007 with Hyperion 11.1.2.1 Doesn't happen in edit mode. Error reappears every time user pages down to next slide. Quite annoying!
    Shape. Tags : Invalid request. Presentations cannot be modified.
    Has anyone experienced this issue and resolved it?
    Thanks,

    Source: My oracle support
    =============================================================================================================================
    Applies to:
    Hyperion Planning - Version: 11.1.2.1.000 and later [Release: 11.1 and later ]
    Information in this document applies to any platform.
    Symptoms
    In Smart View Version 11.1.2.1.000, when attempting to open a PowerPoint document that is already open by other user the following error occurs:
    ERROR : Shape.Tags: Invalid Request. Presentation cannot be modified.
    Cause
    This issue has been verified as Unpublished Bug 12418027: SMART VIEW ERROR : SHAPE.TAGS : INVALID REQUEST. PRESENTATION CANNOT BE MODIFIED
    The cause of the problem is that when a presentation is edited by another user, an exception will be thrown while trying to query the tags in the presentation from a different process.
    Solution
    This issue has been fixed in the Oracle Hyperion Smart View for Office, Release 11.1.2.0.000 Patch Set 1 (PS1): 11.1.2.1.102 Release.
    This patch is available via My Oracle Support:
    1. Log into the My Oracle Support portal.
    2. Choose the Patches & Updates tab.
    3. Enter the Patch Name or Number from the drop-down box.
    4. Perform a search for Patch:12968304 for your corresponding OS platform.
    5. The patch file includes both installers and the readme.
    Additional Information:
    Please refer to the patch readme for system requirements, dependencies, and installation instructions.

  • Event Viewer Error Reports

    How do I send all my event viewer error reports from 3/1/15 to the manufacturer of my computer? IN the event viewer window there seems to be a lock on opening submenu to perform a copy and paste or a SEND option available. I have a WINDOWS 8.1
    OPERATING SYSTEM.

    You should be able to right click on each indivudual log "App, Sec, Setup, System, etc" and click on Save all events as.

  • Event in "view error log"

    Hi,
    I am using sun web proxy server 4.0.3 for windows (windows 2000). I used 4.0.2 but I have got some problems with cpu usage (process usage 100 %...).
    We are using Etrust Antivirus and recently I have got some problems when I am downloading new signature. Sometimes I can download new signature sometimes not.
    In Server status, view error log, I have severals :
    "[08/Sep/2006:12:34:53] info ( 3520): CORE3282: stdout: gc channel: ftpav.ca.com anonymous:sunproxy@ "
    ftpav.ca.com is from where i'm downloading new signature.
    Anyone can help me to understand these messages ?
    Mems.
    PS: sorry for my english.

    I have the same problem with ftp. If I try to download the same file several times with help of ftp proxy, after third or fourth retry proxy rejects my connections.
    It writes the same line in error log, and file is not accessible anymore.

  • IDS Event viewer error

    Hi All
    Please help me out with this .I am getting attached IDS Event viewer error while trying to install it .Please let me know the probable causes and how to rectify the same
    Regards
    Ankur

    At what stage of installation are you seeing this error?
    It appears that a SSL certificate has expired, or an applet has a digital signature based on a certificate that has recently expired.
    If you can provide recreation steps then we can figure out what certificate is expiring, and determine the next steps in resolving your issue.
    Without knowing anything else my best guess at this point is that the SSL certificate on your sensor has expired. If the sensor has been deployed in your network for over a year, then this jsut could be the standard expiration of the SSL certificate on your sensor. Try conneting from a web browser directly to your sensor. When your web browser connects it should warn you if the sensor certificate is expired. If this is the case then ssh or telnet to the sensor and execute: "tls generat-key" to enforce the creation of a new SSL certificate for your sensor.
    If the error is not from an expired SSL certificate, then it is from other certificate or digital signature and we will need to try and recreate in our lab.
    Once you provide us with re-create steps, then there is something you might try for a short term solution as we try to re-create.
    You might try setting the date/time on your PC to a few days ago. The certificate appears to have expired on April 23rd so setting it back to April 20th may make the error go away. I am not positive this will work, but may be worth a shot if you need access immediately and can't wait a day or 2 as analysis is done. This is not a permanent solution and would just be a temporary workaround as we try to analyze what certificate is expiring.

  • Viewing errors resulting from automated user replication

    hi guys
    pls tel me how to view errors resulting from automated user replication
    regards
    kamal

    Does it not appear in default trace?

  • HTML View Error in Crystal Report 2008 Designer

    Hi,
       I am getting an Error when i am trying to see the HTML Preview on the Crystal Report Designer. but, It is working Properly From CMC.
    I was getting the following Error.
    "Failed to access the HTML Server Page
    Contact your system administrator and make sure the BOE servers are running properly/
    Also make sure that the default viewer URL is set Properly in the CMC of BOE
    You can set the Default Viewer URL by following Steps
    1) Log into the CMC
    2) Clicl the APpplication Link.
    3) On the applications page Select CMC, CLcik the Manage menu, A=and Select Processing Settings.
    4) In the set default viewerURL, the URL Should be similarto the fllowing:
    http://[hostname]:[portnumber]/OpenDocument/Opendoc/OpenDocument.jsp?sIDType=CUID&IDocID=O%SI_CUID%"
    Kindly let me know how to resolve this issue. It was working properly. Thanks for your support in advance.
    Regards
    Shiva,

    It is still an issue for me.  I have a new install and am using WebElements to improve my reports.  I am new to 2008 Server (OEM version) so it's probably something very basic.  When I do a submit it shows a path of:
      BOE/OpenDocument/Opendoc/OpenDocument.jsp?sIDType=CUID&IDocID=O%SI_CUID%
    I don't even have a BOE folder.  My setting as instructed on the page is correct.  I have tried making changes but then the HTML preview doesn't even load the 1st page.  That leads me to believe that the link is correct regardless of what debug says.  Unlike other posts I have seen, my pages do not work in InfoView.  After hitting submit I get:
    http//servicedeskcrs:8080/OpenDocument/opendoc/openDocument.jsp?sType=rpt@sDocName=Resolution%20Report.rpt&lsSSelect1=1
    Notice that there is no : after http.  I have a feeling it is in a setting somewhere but I can't find it.

  • PI 7.11 sp6 Integration Builder - folder view error

    Experts,
    We recently installed SAP NW PI 7.11 (ehp1) up to sp6.  This is a new install.  We did all the wizards, etc and things are basically ok.
    we execute SXMB_IFR, then go to "integration builder" link and login.
    If I change the view from "object view" (icon of 2 people) to "folder view" (icon of folder), we get the following error:
    class com.sap.guid.GUID:library:core_lib at com.sap.engine.boot.loader.ResourceMultiParentClassLoader at 2353f67e at alive incompatible with interface com.sap.aii.ib.bom.gen.XiReference:sap.com/com.sap.xi.directory at com.sap.engine.boot.loader.ResourceMultiParentClassLoader at 79c008cf @ alive
    I found this note, but it does not quite describe my problem:
    Note 1525457 - Previous version of Directory API and Value Mappings
    I searched all through SDN and OSS, nothing yet.  I'm going to put in a message but I was wondering if anyone out there has seen this?
    Thanks!
    NICK

    experts,
    FYI, ready my problem details but I wanted to add one thing.  Apparently were were at sp5 for a brief time and our developer did create some object while at that level.  He reported the issue since we moved to SP6
    --NICK

Maybe you are looking for

  • How do i clean the screen

    whats the best/safest way for me to clean the smudges off my macbook pro screen?

  • How to fill a table model

    Hi I want to fill a table model (that I've defined as DefaultTableModel) with data I'm retireving from a DB. Then, I've made a "populate" method that try to do the job as follows: try {             Statement statement = dbcon.createStatement();      

  • IPhone 5 stalls while installing iOS8.1

    UPgrading a client's 16GB iPhone 5 from iOS6 to iOS 8.1, and the upgrade has frozen at approximately 95% completion. Should I just leave it going, for however long it takes, or should I take drastic measures and hard boot the phone?

  • I lost mail Outlook Express 5

    please help me. yesterday there was some mistake and I lost all emails from outlook express 5. can be because of a system recovery point? I did kickback of system since the system is a bit buggy. I am asking if you can help me! I don't know what to d

  • Moving pics to Mac with OS 10.5.8

    I have pictures on an iPhone 5 that I want to move to my computer.  It won't let me email pics. How do I put pics on my computer?