Error "expected element is missing: SMOKER_DT" running Get method

Hello,
We have PT 8.49 and we managed publish the WSDL for the CI-based Web Services for the PERSONAL_DATA component.
Using JDeveloper, we managed to build a Web Service Proxy in Java to retrieves one or more record keys (EMPLID and NAME) using the Find method/operation.
But when we try to use the Get operation to fetch the remaining properties of the Employee (such as Birth Date, etc) it gives us the above error, exactly when it is executing the following method:
sRPersonalData = myPort.CI_RCUH_PERSONAL_DATA_G(sPersonalData);
What are we doing wrong? We tried Peoplesoft support, but they say it is not their problem (third party).
Here is the full code and the error:
// Version = Oracle WebServices (10.1.3.3.0, build 070610.1800.23513)
package model.proxy;
import oracle.webservices.transport.ClientTransport;
import oracle.webservices.OracleStub;
import javax.xml.rpc.ServiceFactory;
import javax.xml.rpc.Stub;
import model.proxy.types.com.oracle.xmlns.enterprise.tools.schemas.m355439.Get__CompIntfc__RCUH_PERSONAL_DATAResponseTypeShape;
import model.proxy.types.com.oracle.xmlns.enterprise.tools.schemas.m754285.EMPLIDTypeShape;
import model.proxy.types.com.oracle.xmlns.enterprise.tools.schemas.m754285.Get__CompIntfc__RCUH_PERSONAL_DATATypeShape;
public class CI_RCUH_PERSONAL_DATA_PortClient {
private model.proxy.CI_RCUH_PERSONAL_DATA_PortType _port;
public CI_RCUH_PERSONAL_DATA_PortClient() throws Exception {
ServiceFactory factory = ServiceFactory.newInstance();
port = ((model.proxy.CIRCUH_PERSONAL_DATA)factory.loadService(model.proxy.CI_RCUH_PERSONAL_DATA.class)).getCI_RCUH_PERSONAL_DATA_Port();
* @param args
public static void main(String[] args) {
try {
model.proxy.CI_RCUH_PERSONAL_DATA_PortClient myPort = new model.proxy.CI_RCUH_PERSONAL_DATA_PortClient();
System.out.println("calling " + myPort.getEndpoint());
// Add your own code here
myPort.setUsername("PS");
myPort.setPassword("xxxxx");
Get__CompIntfc__RCUH_PERSONAL_DATATypeShape sPersonalData = new Get__CompIntfc__RCUH_PERSONAL_DATATypeShape();
Get__CompIntfc__RCUH_PERSONAL_DATAResponseTypeShape sRPersonalData;// = new Get__CompIntfc__RCUH_PERSONAL_DATAResponseTypeShape();
EMPLIDTypeShape sEmplId = new EMPLIDTypeShape();
sEmplId.set_value("12345");
sPersonalData.setEMPLID(sEmplId);
sRPersonalData = myPort.CI_RCUH_PERSONAL_DATA_G(sPersonalData);
} catch (Exception ex) {
ex.printStackTrace();
* delegate all operations to the underlying implementation class.
CI_RCUH_PERSONAL_DATA_G
public model.proxy.types.com.oracle.xmlns.enterprise.tools.schemas.m355439.Get__CompIntfc__RCUH_PERSONAL_DATAResponseTypeShape CI_RCUH_PERSONAL_DATA_G(model.proxy.types.com.oracle.xmlns.enterprise.tools.schemas.m754285.Get__CompIntfc__RCUH_PERSONAL_DATATypeShape parameter) throws java.rmi.RemoteException, model.proxy.types.com.oracle.xmlns.enterprise.tools.schemas.m724133.ErrorTypeShape {
return port.CIRCUH_PERSONAL_DATA_G(parameter);
* used to access the JAX-RPC level APIs
* returns the interface of the port instance
public model.proxy.CI_RCUH_PERSONAL_DATA_PortType getPort() {
return _port;
public String getEndpoint() {
return (String) ((Stub) port).getProperty(Stub.ENDPOINT_ADDRESS_PROPERTY);
public void setEndpoint(String endpoint) {
((Stub) port).setProperty(Stub.ENDPOINT_ADDRESS_PROPERTY, endpoint);
public String getPassword() {
return (String) ((Stub) port).getProperty(Stub.PASSWORD_PROPERTY);
public void setPassword(String password) {
((Stub) port).setProperty(Stub.PASSWORD_PROPERTY, password);
public String getUsername() {
return (String) ((Stub) port).getProperty(Stub.USERNAME_PROPERTY);
public void setUsername(String username) {
((Stub) port).setProperty(Stub.USERNAME_PROPERTY, username);
public void setMaintainSession(boolean maintainSession) {
((Stub) port).setProperty(Stub.SESSION_MAINTAIN_PROPERTY, Boolean.valueOf(maintainSession));
public boolean getMaintainSession() {
return ((Boolean) ((Stub) port).getProperty(Stub.SESSION_MAINTAIN_PROPERTY)).booleanValue();
* returns the transport context
public ClientTransport getClientTransport() {
return ((OracleStub) _port).getClientTransport();
C:\jdeveloper\jdk\bin\javaw.exe -client -classpath C:\jdeveloper\jdev\mywork\PersonalDataG2\Model\classes;C:\jdeveloper\lib\xmlparserv2.jar;C:\jdeveloper\lib\xml.jar;C:\jdeveloper\j2ee\home\lib\activation.jar;C:\jdeveloper\j2ee\home\lib\ejb.jar;C:\jdeveloper\j2ee\home\lib\jms.jar;C:\jdeveloper\j2ee\home\lib\jta.jar;C:\jdeveloper\j2ee\home\lib\mail.jar;C:\jdeveloper\j2ee\home\lib\servlet.jar;C:\jdeveloper\webservices\lib\jaxrpc-api.jar;C:\jdeveloper\webservices\lib\wsclient.jar;C:\jdeveloper\webservices\lib\wsserver.jar;C:\jdeveloper\webservices\lib\wssecurity.jar;C:\jdeveloper\webservices\lib\wsdl.jar;C:\jdeveloper\webservices\lib\orasaaj.jar;C:\jdeveloper\webservices\lib\saaj-api.jar;C:\jdeveloper\webservices\lib\orawsdl.jar;C:\jdeveloper\webservices\lib\orawsrm.jar;C:\jdeveloper\webservices\lib\jaxr_api.jar;C:\jdeveloper\webservices\lib\orajaxr.jar;C:\jdeveloper\webservices\lib\relaxngDatatype.jar;C:\jdeveloper\webservices\lib\jaxb-impl.jar;C:\jdeveloper\webservices\lib\jaxb-libs.jar;C:\jdeveloper\webservices\lib\xsdlib.jar;C:\jdeveloper\webservices\lib\mdds.jar;C:\jdeveloper\jlib\jaxen.jar;C:\jdeveloper\jlib\oraclepki.jar;C:\jdeveloper\jlib\ojpse.jar;C:\jdeveloper\jlib\osdt_core.jar;C:\jdeveloper\jlib\osdt_cert.jar;C:\jdeveloper\jlib\osdt_xmlsec.jar;C:\jdeveloper\jlib\osdt_wss.jar;C:\jdeveloper\jlib\osdt_saml.jar;C:\jdeveloper\jlib\repository.jar;C:\jdeveloper\jlib\ojmisc.jar;C:\jdeveloper\j2ee\home\lib\http_client.jar;C:\jdeveloper\j2ee\home\jazncore.jar;C:\jdeveloper\j2ee\home\oc4jclient.jar;C:\jdeveloper\rdbms\jlib\xdb.jar;C:\jdeveloper\diagnostics\lib\ojdl2.jar;C:\jdeveloper\jakarta-taglibs\commons-logging-1.0.3\commons-logging-api.jar;C:\jdeveloper\jakarta-taglibs\commons-logging-1.0.3\commons-logging.jar;C:\jdeveloper\BC4J\lib\adfshare.jar;C:\jdeveloper\BC4J\lib\adfm.jar;C:\jdeveloper\BC4J\lib\collections.jar;C:\jdeveloper\BC4J\jlib\adfui.jar;C:\jdeveloper\BC4J\lib\adfbinding.jar;C:\jdeveloper\BC4J\jlib\adfmtl.jar model.proxy.CI_RCUH_PERSONAL_DATA_PortClient
calling http://webapp/PSIGW/PeopleSoftServiceListeningConnector
expected element is missing: SMOKER_DT
     at model.proxy.types.com.oracle.xmlns.enterprise.tools.schemas.m355439.runtime.PERS_SMOKERTypeShape_LiteralSerializer.doDeserialize(PERS_SMOKERTypeShape_LiteralSerializer.java:86)
     at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.internalDeserialize(LiteralObjectSerializerBase.java:250)
     at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.deserialize(LiteralObjectSerializerBase.java:159)
     at model.proxy.types.com.oracle.xmlns.enterprise.tools.schemas.m355439.runtime.Get__CompIntfc__RCUH_PERSONAL_DATAResponseTypeShape_LiteralSerializer.doDeserialize(Get__CompIntfc__RCUH_PERSONAL_DATAResponseTypeShape_LiteralSerializer.java:1105)
     at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.internalDeserialize(LiteralObjectSerializerBase.java:250)
     at oracle.j2ee.ws.common.encoding.literal.LiteralObjectSerializerBase.deserialize(LiteralObjectSerializerBase.java:159)
     at model.proxy.runtime.CI_RCUH_PERSONAL_DATA_Binding_Stub._deserialize_CI_RCUH_PERSONAL_DATA_G(CI_RCUH_PERSONAL_DATA_Binding_Stub.java:133)
     at model.proxy.runtime.CI_RCUH_PERSONAL_DATA_Binding_Stub._readFirstBodyElement(CI_RCUH_PERSONAL_DATA_Binding_Stub.java:119)
     at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:333)
     at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:112)
     at model.proxy.runtime.CI_RCUH_PERSONAL_DATA_Binding_Stub.CI_RCUH_PERSONAL_DATA_G(CI_RCUH_PERSONAL_DATA_Binding_Stub.java:76)
     at model.proxy.CI_RCUH_PERSONAL_DATA_PortClient.CI_RCUH_PERSONAL_DATA_G(CI_RCUH_PERSONAL_DATA_PortClient.java:65)
     at model.proxy.CI_RCUH_PERSONAL_DATA_PortClient.main(CI_RCUH_PERSONAL_DATA_PortClient.java:47)
Process exited with exit code 0.
Appreciate the help
Mohamed

Hi Pete, the fact that IE cant display it is nither here nor there, thast just a test I suppose to see if
the XML file is valid. After I put the file through
the method of wipping the bad chars, IE can display it
no problem. Since you haven't posted any bad chars, we can't know whether or not that is a problem. If no encoding is given, IE may well assume Cp1252 rather than UTF-8. Alternatively, your bad chars may actually be bad chars-ie you are not producing valid UTF-8. Either way you end up with no capability to parse the stream.
But ,even still that IE can display the XML file with no complaint, my java app still
complains that the root element is missing. Then there's probably something else wrong.
Do my parser always and only read in encoding="UTF-8", or can they swap between styles depening on how the XML
file is delcared in the very first tag.All XML processors MUST accept the UTF-8 and UTF-16 encodings of Unicode 3.1. If nothing is present, then it should assume UTF-8, otherwise if the stated encoding is supported then it uses that.
Even if it doesnt start with BOM would you sudgest I take out the first line and replace it with what you
said "<?xml version="1.0" encoding="UTF-8">". The clients know they should be making there doc with
UTF-8, and if its anything else then its tuff titty. It should eliminate one possible bug- that the parser is not treating the charactier data as UTF-8, even though it should (assuming there are no mime-headers that give a different character encoding).
Post a hex dump with the bad chars and with the first few lines of your file, so we can actually see what the data is.
Pete

Similar Messages

  • Cost Element Deletion Job test run getting run time error

    How can I make test run of cost element deletion job in background?

    Hi Riyas,
    Deleting Cost Elements in the Background
    If you want to delete many cost elements, the checks for dependent data take some time. You should therefore carry out the deletion in the background at times of minimal system usage.
    To do so, choose Background processing.
    Choose Execute and answer the confirmation prompt with Yes.
    ( T Code: KA04 - Individual cost element deletion )
    ( KA24 - Collective Deletion)
    Enter a job name in the dialog box.
    Enter a date and time for the planned start or select Immediate start.
    You can also define from which date and from which time no more starts should occur.
    Choose Confirm to leave the dialog box. In the next dialog box, choose Save.
    The R/3 System deletes the cost elements at the date specified.
    To check the current status of the job, choose System
    Status of Background Job T Code: SM37 and Execute.
    Regards,
    Pavan Kumar Arvapally

  • I am trying to download elements 5.0 onto my laptop that has windows seven. I get the message error 1335'data1.cab' missing. What can I do to get this to instal?

    I am trying to download elements 5.0 onto my laptop that has windows seven. I get the message error 1335'data1.cab' missing. What can I do to get this to instal?

    It looks like the CD is damaged.  You could try copying the entire CD on to your hard disk in a temporary folder and then launch the setup.exe file by double clicking on it.
    Can you do this?  Please post back.
    Whether 5 can run in Windows 7 is something I don't know.  You just have to try it.

  • New Adobe Photoshop elements 11-can not share pictures. I do use AOL email. Get error of "Elements 11 Organ. has stopped working,  I have looked into sharing tab and my only option is Adobe email settings.  I do have outlook set up to work on computer run

    New Adobe Photoshop elements 11-can not share pictures. I do use AOL email. Get error of "Elements 11 Organ. has stopped working,  I have looked into sharing tab and my only option is Adobe email settings.  I do have outlook set up to work on computer running windows 8.1  Please help, Mainly use to share pictures.  Thanks!

    One thing puzzles me:
    RedClayFarmer wrote:
    I then found one suggestion that the problem might involve permissions. The suggestion was to right click PhotoshopElementsOrganizer.exe in its installation folder (which on my computer is at at D:\Photo\Elements 11 Organizer) and run Organizer as an administrator. This also failed.
    I don't understand why running the exe from the installation folder would have worked.
    I would have simply tried to run that exe from its real location :
    Sorry, I can't help you more about permissions...

  • TS3212 the new download of itunes will not run. I get a message during the process that I need to verify that I have sufficient privilege. then I get an error 126 and a missing file MSVCR80.dll. what can I do?

    I'm trying to download the new version of itunes. durig the install i get a message that I need to verify that I have sufficient privilege. Then I get a message of a Windows error 126 and a missing file MSVCR 80.dll. I've tried everything on the support site and nothing works.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • ERROR PROCESSING FILE "5016: A mandatory data element is missing"

    B2B errors while processing file, following is from b2b.log...
    <Exception xmlns="http://integration.oracle.com/B2B/Exception" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <correlationId>null</correlationId>
    <b2bMessageId>0A0101461190FFFF40D0000017918FE0-1</b2bMessageId>
    <errorCode>AIP-51505</errorCode>
    <errorText>5016: A mandatory data element is missing.</errorText>
    <errorDescription>
    <![CDATA[Machine Info: (falken8.falkentire.internal)
    Segment GS(Functional Group Header) at guideline position (N/A) is missing. This segment's standard option is Mandatory.{br}{br}This segment was expected after:{br}{tab}Segment Count: 1{br}{tab}Character: 105 ]]>
    </errorDescription>
    <errorSeverity>2</errorSeverity>
    <errorDetails>
    <parameter name="InterchangeControlStandard_RepeatingSeparator" value="U"/>
    <parameter name="InterchangeTrailerControlNumber" value="000000862"/>
    <parameter name="InterchangeChildCount" value="1"/>
    <parameter name="InterchangeTime" value="1205"/>
    <parameter name="InterchangeUsageIndicator" value="P"/>
    <parameter name="ErrorScope" value="Interchange"/>
    <parameter name="SubelementDelimiter" value=">"/>
    <parameter name="RepeatingSeparator" value=""/>
    <parameter name="InterchangeSecurityInfo" value="Y "/>
    <parameter name="InterchangeReceiverQual" value="12"/>
    <parameter name="DecimalSeparator" value=""/>
    <parameter name="InterchangeAuthorizationInfoQual" value="00"/>
    <parameter name="ElementDelimiter" value="*"/>
    <parameter name="InterchangeComponentElementSep" value=">"/>
    <parameter name="InterchangeControlVersion" value="00401"/>
    <parameter name="InterchangeAckRequested" value="0"/>
    <parameter name="InterchangeSenderQual" value="08"/>
    <parameter name="InterchangeReceiverID" value="6262810170 "/>
    <parameter name="ReleaseCharacter" value=""/>
    <parameter name="InterchangeDate" value="080321"/>
    <parameter name="SegmentDelimiter" value="
    "/>
    <parameter name="InterchangeControlNumber" value="000000862"/>
    <parameter name="InterchangeAuthorizationInfo" value="X "/>
    <parameter name="InterchangeSenderID" value="9252671859 "/>
    <parameter name="InterchangeSecurityInfoQual" value="00"/>
    </errorDetails>
    </Exception>
    We are using EDI X12 over generic exchange. I double checked ecs file and data file. Passing all the mandatory elements. Also checked the delimeters and they match from datafile to setup.
    Anyone have faced this error before? We opened a SR with Oracle and they are not able to figure it out. Please help.
    Thanks
    Venkat

    Ramesh,
    To give you a little background I used Spec Generator functionality to create ecs from dat file. Then I did an export to OracleAS Integration B2B format which generated xsd file. I also analyzed (using preprocessor) giving both ecs and dat file and it passed with no errors.
    Following your suggestion I now excluded ISA/GS guidelines from the ecs file, exported to xsd and tried to process the dat file, and it gives following error messages now...It doesn't even identify the trading partner now. Please advise. Thanks
    Description: Unable to identify the document protocol of the message
    StackTrace:
    Error -: AIP-50083: Document protocol identification error
         at oracle.tip.adapter.b2b.engine.Engine.identifyDocument(Engine.java:2619)
         at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1365)
         at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2030)
         at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:1962)
         at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:1920)
         at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:463)
         at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:335)
         at java.lang.Thread.run(Thread.java:534)

  • Archive Part of Photoshop Elements is missing error message

    My old computer died with the last Win7 update.  I'm trying to reinstall my Photoshop Elements 9 on my new computer.  When I try to download and run Part 2 of 2 I'm getting the error that the archive part of PS Elements is missing.  Part 1 of 2 downloaded and extracted fine as far as I can tell.  How can I get PS Elements 9 back?  Thanks.

    Unfortunately when I click the link for the first file (Windows),  I'm
    getting the following error:
    Access Denied
    You don't have permission to access "
    http://trials2.adobe.com/AdobeProducts/PSE/9/win32/PhotoshopElements_9_LS15.exe?"
    on this server.
    Reference #18.4fc5c541.1335638654.10992ce1
    What's my next step?
    Here is my order information from 09MAR2011:
    Adobe Photoshop Elements 9 Plus
    US $139.99
    Windows, English, Download
    Quantity: 1
    Serial: <Serial number removed by Moderator>

  • I just bought photoshop and premier elements and I can not get it to run on Windows 8.1 Can anybody help?

    I just bought Adobe photoshop and premier elements and although photoshop and organizer run premiere will not.
    I have installed it twice with no errors and it still will not run. 
    OS Name
    Microsoft Windows 8.1
    Version
    6.3.9600 Build 9600
    Other OS Description
    Not Available
    OS Manufacturer
    Microsoft Corporation
    System Name
    CHARLIES_LAPTOP
    System Manufacturer
    Hewlett-Packard
    System Model
    HP ENVY 17 Notebook PC
    System Type
    x64-based PC
    System SKU
    G6U51UA#ABA
    Processor
    Intel(R) Core(TM) i7-4510U CPU @ 2.00GHz, 2601 Mhz, 2 Core(s), 4 Logical Processor(s)
    BIOS Version/Date
    Insyde F.12, 8/18/2014
    SMBIOS Version
    2.8
    Embedded Controller Version
    77.38
    BIOS Mode
    UEFI
    BaseBoard Manufacturer
    Hewlett-Packard
    BaseBoard Model
    Not Available
    BaseBoard Name
    Base Board
    Platform Role
    Mobile
    Secure Boot State
    On
    PCR7 Configuration
    Binding Not Possible
    Windows Directory
    C:\Windows
    System Directory
    C:\Windows\system32
    Boot Device
    \Device\HarddiskVolume2
    Locale
    United States
    Hardware Abstraction Layer
    Version = "6.3.9600.17196"
    User Name
    Charlies_Laptop\CHARLIES_LAPTOP\charl_000
    Time Zone
    Central Standard Time
    Installed Physical Memory (RAM)
    12.0 GB
    Total Physical Memory
    11.9 GB
    Available Physical Memory
    8.76 GB
    Total Virtual Memory
    23.9 GB
    Available Virtual Memory
    20.6 GB
    Page File Space
    12.0 GB
    Page File
    C:\pagefile.sys
    Hyper-V - VM Monitor Mode Extensions
    Yes
    Hyper-V - Second Level Address Translation Extensions
    Yes
    Hyper-V - Virtualization Enabled in Firmware
    No
    Hyper-V - Data Execution Protection
    Yes

    really
    Let us go through the usual drill on this...Premiere Elements 13 on Windows 8.1 (assumed 64 bit)
    1. Are you running the program from a User Account with Administrative Privileges? Go to Local Disk C/Program Files/Adobe/Adobe Premiere Elements 13, find the Adobe Premiere Elements.exe file, right click it, select and apply Run As Administrator from the pop up menu that appears, and then double click that file to determine if you can open the program from it.
    2. Does the problem issue exist with and without the antivirus and firewall(s) disabled?
    3. Are you working with a pen and tablet device instead of a mouse?
    4. How many video cards/graphics cards do you find under Device Manager/Display Adapters, what card name, driver date and up to date version number?
    When you say it will not run...how far into the program do you get...
    a. no further than the Welcome Screen and Video/New Project
    b. other
    If non of the above gets us anywhere, we may go for
    a. deletion of the Adobe Premiere Elements Prefs file and, if necessary, the whole 13.0 Folder in which it exists
    and, if necessary, then
    b. the uninstall, free ccleaner run through, and reinstall with antivirus and firewall(s) disabled.
    Details to follow if needed.
    We will be watching for your results and then decide what next.
    ATR

  • Trying to install Adobe Premiere elements 12.  When it gets to "Installing required Shared Technologies" stage it gives errror "Setup has detected that Adobe Bridge CS5 (Bridge.exe) is currently in use.  Please close all running exe(s).  Nothing is runnin

    question:  Trying to install Adobe Premiere elements 12. When it gets to "Installing required Shared Technologies" stage it gives errror "Setup has detected that Adobe Bridge CS5 (Bridge.exe) is currently in use. Please close all running exe(s). Nothing is running when trying to install this, have been through this process several times. Found undertroubleshooting to delete files PDAppFlex.swf and PDAppFlex-app.xml and have done that as well. Any help will be greatly appreciated

    Try Error "Installation cannot continue until... Adobe Bridge is closed" | Installation | CS5

  • I installed iTunes update on my pc running windows vista and now it will not open. Error message MSVCR80.dll missing

    I installed iTunes update on my pc running windows vista and now it will not open. Error message MSVCR80.dll missing???

    First try updating to iTunes 11.1.5.5, using an installer downloaded from the Apple website:
    http://www.apple.com/itunes/download/
    If you still get the errors after that, try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • When I try to launch terminal, i get an error "You are not authorized to run this applicationThe administrator has set your shell to an illegal value."

    When I try to launch terminal, i get an error "You are not authorized to run this applicationThe administrator has set your shell to an illegal value."

    If you'd asked a question in your original post it might have solicited more pertinent responses. As it is, you were stating a fact. No one knew whether you considered that fact a problem, or what you were hoping to gain by doing so.
    The simple addition of 'can anyone help me fix this so I can run Terminal' would have counted for a lot.
    As it is, your solution is likely to require the Terminal, so you're going to need to fix that one way or another. The simplest would be to create a new admin account (System Preferences -> Users & Groups) then log in using that account.
    Then try and launch the terminal. If that works the problem is specific to your original account and can likely be fixed via some command-line tweaking. I'd start with:
    dscl . read /Users/<username>
    (where <username> is the short name of the account having a problem). This will show the records in the directory data for your account, one of which will be UserShell. Chances are that value is invalid, or missing, and can be corrected via:
    sudo dscl . -change /Users/<username> UserShell <currentValue> /bin/bash
    (where <currentValue) is the current setting for UserShell) which will change the user's shell to /bin/bash (the default).
    Of course, you might already know this and already tried, but since you didn't say so in your original post it's worth checking.

  • Anyone else having a problem installing the 13.1 update to Elements 13. I keep getting the Error Code:U44M1I210

    Anyone else having a problem installing the 13.1 update to Elements 13. I keep getting the Error Code:U44M1I210

    I don't know what to tell you. I get the same crap. I have been into computers for about 25 years now and it really ticks me off that after all these years these companys can not put out something that works. It seems like they put it out then expect the buyer to fix there screw ups. Why should we have to do there jobs and have to pay for it too?

  • Every time I try to upload MOV files from my iphone 5s onto my adobe premiere elements on windows 8 i get 'the importer reported a generic error'

    every time I try to upload MOV files from my iphone 5s onto my adobe premiere elements on windows 8 i get 'the importer reported a generic error'

    jade harding
    What version of Premiere Elements are you using on Windows 8.1 64 bit? For now I will assume Premiere Elements 12 in a NTSC set up.
    Your iPhone 5s video is expected to be 1080p @ 30 progressive frames per second? Do you confirm that? Because of the source of your video, it is highly likely that you are dealing with a variable frame rate.
    Please give the following a try to see if you then have an "importable" product to take into Premiere Elements presumed 12/12.1.
    Download and install the free HandBrake program.
    http://handbrake.fr/
    Import your video file into the program.
    Make sure you browse to and set Destination (suggested Desktop location)
    Go to the Video Tab and set
    Video codec = H.264 (x264)
    Frame Rate = 29.97
    put a dot next to Constant for the Frame Rate
    Click on the Start at the top left of the workspace
    Wait for the "Queue Finished" to appear in the progress bar at the bottom left of the workspace.
    Then see if this H.264.mp4 (1920 x 1080 @ 29.97 progressive frames per second file can be imported into Premiere Elements 12 project with a manually set project preset of NTSC/DSLR/1080p/DLSR 1080p30@ 29.97.
    Details for setting manual project preset can be found in
    ATR Premiere Elements Troubleshooting: PE11: Accuracy of Automatic Project Preset (New Project Dialog) Setting
    The details that I have posted in this reply are customized for Premiere Elements and should work fine for you.
    We will be watching for your results.
    ATR

  • Getting error "Adobe Elements 10 Organizer quit unexpectedly"

    Started getting error message "Adobe Elements 10 Organizer quit unexpectedly" when trying to edit a photo on Adobe Photoshop Elements 10.
    Am running it on an Imac with OS X 10.7.4 operating system.  Started getting this error about a week ago after installing it and using it since early January of 2012 with no problems.
    Can anyone shed any light on how to fix this error???

    First I would repair and optimize your catalog. Then if it keeps happening, go to your username>library>preferences folder and delete all the files with names like com.adobe.Elements Organizer.plist. There will be more than one.
    That library is hidden in lion. To see it, hold down the option key while clicking the Go menu in the finder. It will appear below the little house for your user account.
    While you're in that library, I would also delete any saved application states for PSE.
    Repair permissions when you're done.

  • Invalid key predicate error while running http method get via tcode /IWFND/MAINT_SERVICE

    Hi,
    I am facing an error which says "Invalid Key predicate"while running http method get via tcode /IWFND/MAINT_SERVICE.
    The same works fine for sdata .The SICF nodes are active.But when the url has odata it does not seem to work as expected .This is the url I am trying to execute.
    /sap/opu/odata/sap/QMLSINSPECTIONLOT/MATERIALDETAIL(MaterialNumber='1706',FROMDATE='20120303',TODATE='20120708')?$format=xml
    (does not work -error invalid predicate)
    /sap/opu/sdata/sap/QMLSINSPECTIONLOT/MATERIALDETAIL(MaterialNumber='1706',FROMDATE='20120303',TODATE='20120708')?$format=xml(works fine)
    Could you help me with this error?
    Regards,
    Ann

    Ann,
    FROMDATE is a date field? Then you need to specify while providing value.
    Example: Check it here.
    How to use OData Date filter query to filter data from OData NetWeaver Gateway Service?
    Thanks
    Krishna

Maybe you are looking for

  • Problem in test run of dep

    I am posting dep for the year 2010 in repeat run for only one one asset code the system is showing no document is generated, & it's not showing any error also. what do i do. Abhisekh

  • Sharepoint version number in document properties

    Hi, How can I set the SharePoint version number in my Word document, so that when the Sharepoint version number increases also the number in the document increases. We are running BPOS not 365. Thanks

  • Visited Links won't change color

    When I click on a page link or spry menu link, the link colors work for hover and active, but not for visited. Here's my site: http://www.viva-city.info Thank you!

  • Client_Info Setting

    Hi there ! I have a problem here, I need check in the CLIENT_INFO column, into v$session database these information, about which weblogic instance is running! In other words, I would like to know, when selecting v$session CLIENT_INFO column whether i

  • Account Disabled by Apple Staff

    My account was disabled by Apple Staff as they misunderstood my complaint. Now they are telling me they cannot enable it as ACCOUNT SECURITY can only do it. They have told me to call ACCOUNT SECURITY to get the account enabled again but the numbers t