Save as limitations

When I save a new Numbers file I am unable to save it exactly where I want to. I have to save it into general documents folder and then move it afterward. Anyone else notice this?

I just bought an iMac today, and am having a similar problem as the OP of this thread. I've got several Microsoft Excel files on a jump drive that I need to be able to use and maintain on the jump drive. It seems that perhaps my iMac isn't fully recognizing my flash drive?
I get the white icon in the upper right corner of the screen, and through that I can browse through all the files on the drive and open the one I want, but that is the only way I can get to the files. Then, when I try to save the file back onto the flash drive directly, I cannot do so.
I tried doing the expanded save options as the two of you pointed out, but under the "Devices" heading, my iMac is only displaying my Mac HD and iDisk (which I don't have anyway). Based upon the screen shots you both provided, I'm guessing that the flash drive should be shown under the "Devices" heading, but it is not.
Any possible help would be greatly appreciated by this new Mac owner.

Similar Messages

  • T61P XP/SP3 - Power Manager Problems, Can't save schemes, limited schemes available

    Hi All - When I got this -rockin'- laptop originally I could set my own power schemes without problem.  Now it won't save my new powerschemes.  I try to create one, finish the last step, and then the power scheme isn't in the dropdown.  I read somewhere on the Web that this may be related to SP3. 
    Also, the only Power Schemes I have access to are Video Playback and Maximum Performance.  I have tried uninstalling Power Manager and the associated DLL and then reinstalling, but that didn't help.  Also, I see no reference to this problem in troubleshooting.  Thanks in advance.  This is getting really annoying as I like to use as little power as possible since I use teh computer on battery power quite often.
    Thanks!  g- 
    Solved!
    Go to Solution.

    First, don't mark an item solved if it's not solved. Second, learn to search to see if others have had this problem. instead of repeating a post that's been beaten to death. Hint: Lots of us have had the problem .
    If you had searched you would have found this link: http://chris.brandlehner.at/Brandlehner/cab_blog.nsf/d6plinks/CBRR-6YWBNV where you will see a possible solution. If it works, you can mark the entry "solved". Good luck.
    T520 4239-CTO
    T61/p 6459-CTO (Gone but not forgotten)
    A31/p XP Pro 1 gig memory
    A30/p XP Pro 1 gig memory
    TP600 Win 2K 288 mb memory
    701C Win 98 Don't ask

  • Save Exceptions Limitation

    Hello Gurus,
    I have a problem with the Save Exceptions. I am using database 11g.
    When I am doing bulk insert I would like to insert the error records into a new table. But when I am inserting
    the error records I am getting the error "error:- ORA-00984: column not allowed here
    ORA-24381: error(s) in array DML".
    I am putting my code below.
    DECLARE
    CURSOR C_FRT2STORE IS
    SELECT ROWID,
    STORE_CD,
    MNR_CD,
    'FRT',
    DT,
    TO_DATE('31-DEC-2049'),
    FRT_FAC,
    TRUNC(SYSDATE),
    'ADMINUSR'
    FROM FRT2STORE;
    CURSOR C_FRT2STORE_EXC_TAB IS
    SELECT 'Y'
    FROM ALL_TABLES
    WHERE TABLE_NAME = 'FRT2STORE_EXC';
    TYPE STORE$MNR2CST_REC_TYPE IS RECORD
    (C_STORE$MNR2CST_ROWID VARCHAR2(100),
    C_STORE_CD STORE$MNR2CST.STORE_CD%TYPE,
    C_MNR_CD STORE$MNR2CST.MNR_CD%TYPE,
    C_CST_CD STORE$MNR2CST.CST_CD%TYPE,
    C_BEG_DT STORE$MNR2CST.BEG_DT%TYPE,
    C_END_DT STORE$MNR2CST.END_DT%TYPE,
    C_FAC NUMBER(13,3), --STORE$MNR2CST.FAC%TYPE,       
    C_AMT STORE$MNR2CST.AMT%TYPE,
    C_CUBIC_AMT STORE$MNR2CST.CUBIC_AMT%TYPE,
    C_LST_ACTN_DT STORE$MNR2CST.LST_ACTN_DT%TYPE,
    C_EMP_CD STORE$MNR2CST.EMP_CD%TYPE
    TYPE STORE$MNR2CST_TYPE IS TABLE OF STORE$MNR2CST_REC_TYPE
    INDEX BY PLS_INTEGER;
    STORE$MNR2CST_COL STORE$MNR2CST_TYPE;
    V_TOT_REC PLS_INTEGER := 0;
    V_FRT2STORE_EXC_TAB CHAR(1);
    V_TOT_REC_IN_STORE$MNR2CST PLS_INTEGER;
    V_ERR_REC PLS_INTEGER;
    BULK_ERRORS EXCEPTION;
    PRAGMA EXCEPTION_INIT (BULK_ERRORS, -24381);
    BEGIN
    --GETTING DATA FROM FRT2STORE TABLE AND INSERTING INTO THE STORE$MNR2CST TABLE
    SELECT COUNT(1)
    INTO V_TOT_REC_IN_STORE$MNR2CST
    FROM STORE$MNR2CST ;
    IF V_TOT_REC_IN_STORE$MNR2CST = 0 THEN
    OPEN C_FRT2STORE;
    LOOP
    FETCH C_FRT2STORE BULK COLLECT INTO STORE$MNR2CST_COL LIMIT 1000;
    EXIT WHEN STORE$MNR2CST_COL.COUNT = 0;
    V_TOT_REC := STORE$MNR2CST_COL.COUNT;
    IF V_TOT_REC > 0 THEN
    BEGIN
    FORALL I IN STORE$MNR2CST_COL.FIRST..STORE$MNR2CST_COL.LAST SAVE EXCEPTIONS
    INSERT INTO STORE$MNR2CST
    (STORE_CD,
    MNR_CD,
    CST_CD,
    BEG_DT,
    END_DT,
    FAC,
    AMT,
    CUBIC_AMT,
    LST_ACTN_DT,
    EMP_CD
    VALUES
    (STORE$MNR2CST_COL(I).C_STORE_CD,
    STORE$MNR2CST_COL(I).C_MNR_CD,
    STORE$MNR2CST_COL(I).C_CST_CD,
    STORE$MNR2CST_COL(I).C_BEG_DT,
    STORE$MNR2CST_COL(I).C_END_DT,
    STORE$MNR2CST_COL(I).C_FAC,
    STORE$MNR2CST_COL(I).C_AMT,
    STORE$MNR2CST_COL(I).C_CUBIC_AMT,
    STORE$MNR2CST_COL(I).C_LST_ACTN_DT,
    STORE$MNR2CST_COL(I).C_EMP_CD
    COMMIT;
    EXCEPTION WHEN BULK_ERRORS THEN
    OPEN C_FRT2STORE_EXC_TAB;
    FETCH C_FRT2STORE_EXC_TAB INTO V_FRT2STORE_EXC_TAB;
    IF C_FRT2STORE_EXC_TAB%NOTFOUND THEN
    EXECUTE IMMEDIATE ('CREATE TABLE FRT2STORE_EXC AS SELECT * FROM FRT2STORE WHERE 1 = 2');
    END IF;
    CLOSE C_FRT2STORE_EXC_TAB;
    FOR J IN 1..SQL%BULK_EXCEPTIONS.COUNT
    LOOP
    V_ERR_REC := SQL%BULK_EXCEPTIONS(J).ERROR_INDEX;
    EXECUTE IMMEDIATE 'INSERT INTO FRT2STORE_EXC (STORE_CD,MNR_CD,FRT_FAC,DT) VALUES ('
    ||STORE$MNR2CST_COL(V_ERR_REC).C_STORE_CD||','
    ||STORE$MNR2CST_COL(V_ERR_REC).C_MNR_CD||','
    ||STORE$MNR2CST_COL(V_ERR_REC).C_FAC||','
    ||STORE$MNR2CST_COL(V_ERR_REC).C_BEG_DT||')';
    END LOOP;
    COMMIT;
    END;
    STORE$MNR2CST_COL.DELETE;
    END IF;
    END LOOP;
    CLOSE C_FRT2STORE;
    END IF;
    COMMIT;
    EXCEPTION WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('error:- '||SQLERRM);
    END ;
    Could any one tell me how to achive this requirment.
    Thanks,
    Sun

    1. Please format your code using the code tags.
    2. You should never need to code create tables like this "EXECUTE IMMEDIATE ('CREATE TABLE FRT2STORE....". This is often seen when creating temporary tables in non-Oracle database but is a misunderstanding in how to do things in Oracle. You should create them outside of your plsql as permanent objects.
    3. In your example, you should not need dynamic sql like this "EXECUTE IMMEDIATE 'INSERT INTO FRT2STORE_EXC...."
    4. In 10gR2 / 11g, DML Error Logging might be a better solution
    http://www.oracle.com/technology/oramag/oracle/06-mar/o26performance.html

  • Is iCloud a backup system?  Is it limited to only photos, music or can I store programs, data and so on?

    Can I use iCloud like a local network backup system?
    I'm thinking of replacing my Western Digital backup.
    Thanks for the info.

    Thanks Ralph
    I don't have more than 5Gb storage, but I have files, projects and so forth on an iMac, a PC, netbook and an iPad, as well as an iPod.
    I was just wondering if the types of things you could save is limited to photos, music.  Can you just connect to iCloud and copy the files you are working on into a folder, as I would do using my existing WD disk?

  • Small image ant fonts to fit my monitor

    my mozilla browser window comes with big size image and fonts .i want make it smaller and fix to monitor to save my limited internet data volume pack and improve the speed of browsing.

    You can look at an extension like this to block images.
    *Image Block: https://addons.mozilla.org/firefox/addon/image-block/
    You can also look at Adblock Plus.
    * Adblock Plus: https://addons.mozilla.org/firefox/addon/adblock-plus/
    You need to subscribe to a Filter list (e.g. the EasyList).
    * http://adblockplus.org/en/subscriptions
    * http://adblockplus.org/en/getting_started

  • Recording / Bouncing / Freezing Rewire Audio

    Hi
    I have 3 Live audio tracks rewired into several Logic rewire buses (RW:Bus 03, RW:Bus 04, RW:Bus 05/06 stereo). To save my limited CPU, I'd like to be able to "freeze" these tracks. So far the only way I can think of doing this is to go through each RW:Bus, solo it, bounce on the Output1-2, then import the bounce AIFF on to a clean audio track? Is there another way?
    thanks
    zibba
    iMac G4, Yamaha 01X   Mac OS X (10.3.9)  

    Have you seen the way Digital Performer do freeze? It exactly does what I said in my previous post but it's completely automated. However, I really hate that because you end with twice the tracks, which can get really messy. I agree, the possibility to edit Freezed tracks would be a great improvement. That said, in the old days, we recorded every instrument, including synths, as audio and we didn't thought: "oh, maybe I'll change this note in 6 months". That forced us to live with our mistakes but who said we didn't do good music back then because of this? I'm a big fan of Daniel Lanois' productions and he's the guy who print FX everywhere (even reverb) and deal with it later. I think there's food for thought here.

  • Messages from Phone to Sim

    My grandmother got this new phone from Globe- an LG500 Cookie phone. And she doesn't want to use it- she prefers the basic types of phone, so she's given it to me. I currently own a Nokia6600 slide phone. And I want to switch to the LG500 phone. The problem is that I can't find a way to copy the messages from my Nokia phone to my sim card.
    People keep saying that you can't save messages in your sim card but then why does it say (on the package it came with) that you can save a limited number of messages on your sim? And if so, then how do you save your messages from your phone to the sim?
    Can anybody help? How to save my messages from my Nokia 6600 slide phone to my Globe prepaid sim?

    You can't.
    The SIM is no longer used to store messages because of its minute capacity.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Log from Digitizer

    I need to log both channels of my digitizer for 8 seconds.
    I need to see how 2 waveforms (both at 350kHz) are changing overtime so sampling rate needs to be as high as possible. 
    Nothing fancy needs to be done. 
    No triggering. No timing. No special file type. Files don't even need to be indexed. 
    Just click. Log. Save the file manually. 
    What is the most simplistic way to do this?
    We have a bunch of NI software (Labview, Signal Express, ect..), but nobody on the team knows how to use them...
    Thank you very much!
    Randy
    Solved!
    Go to Solution.

    The amount of data the NI-SCOPE Soft Front Panel can save is limited by the amount of data your scope can take in a single acquisition.  This will depend upon how much memory your scope has and the native bit depth of the acquisition (e.g. a 5122 takes 16-bit data).  You can change the record length in the SFP by choosing Edit»Device Configuration and selecting the Horizontal tab.  You may get where you need to be by just doing this.
    However, you can get far more data and higher data rates if you stream from the device directly to disk.  This operation will be limited by your bus and disk speeds.  Typical sustainable values are around 20MBytes/sec - 40MBytes/sec, although with RAID systems and PCIe busses, this can get into the hundreds of megabytes per second.  To do this, you need to set your scope up so you are fetching from it as you are taking data.  A simple example can be found in niScope EX Fetch Forever.vi, in the NI-SCOPE examples.  However, this does not save data, it just fetches it.  After you fetch the data, you need to save it, preferably in a different thread than the fetch code.  This is easy in LabVIEW - use another loop.  You can find an example of this in niScope EX Save to File - HWS Low Level - Single Channel Stream.vi.  It uses NI-HWS, but the calls to NI-HWS could easily be replaced with either the binary primitives or TDMS calls.  This example fetches like the first one, but uses a queue to send to data to another loop, where it is stored in a file in a parallel thread.  Note that displaying your data will slow down your maximum acquisition rate, so the example does not do this.
    Good luck!  Let us know if you need more help.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Can I pay upfront for a year of team licenses?

    I'd like to pay for everything annually instead of monthly. Is that possible?

    Hi cvonspiegelfeld,
    For Individual,
    Creative Cloud complete plan — prepaid
    For new Creative Cloud members
    One convenient payment; no monthly billing
    US $599.88
    per year
    For Student Individual CC :
    Creative Cloud complete plan for students and teachers — prepaid; save 65%
    Limited-time to get Creative Cloud for $199/year with the prepaid plan. It’s like getting two months free.*
    Same benefits as noted with the complete plan above
    Requires institutional affiliation† and annual commitment
    One convenient upfront payment; no monthly billing
    US $199.00
    per year
    To make an annual payment for Creative Cloud & Single app cc , you can buy key vard subscriptions.
    You can go for keycard Creative Cloud subscription which can be purchased from :
    http://www.amazon.com/Adobe-Creative-Membership-Pre-Paid-Product/dp/B0 07W7A1OY
    http://www.amazon.com/Adobe-Creative-Membership-Pre-Paid-Product/dp/B0 07W76ZLW
    They require One time payment, you can buy Creative Cloud for Team from certified resellers with annual payment.
    Please check it from them if Photogarphy CC is being sold by them i.e resellers & amazon.com
    Regards,
    Rajshree

  • Any limitation on number of fill and print forms I can post on my website and have external users with Reader fill in, print and mail to me? (I don't need/want them to be able to fill and save data.)

    I would like to post fillable only forms to the public but not give them the option to save or email the filled in form. If they want a copy of what they've filled in, they must print it.
    I believe I can do this by just creating a fillable PDF and posting it without adding any reader extension capabilities. I also believe there is no limitation, as there is for fill and save forms as per this other post I read: Adobe Acrobat X Pro * Enable Reader users to save form data.
    My IT department is telling me they will not allow me to post fillable PDFs online due to a "license limitation" so I started researching this myself, and the above link is the only thing I've found. While that post specifically outlines the limitations on saving filled in forms, I'm really looking for something that specifically tells me that there is no limitation on fillable, non-saveable (yes, I know that's not a word...) forms.
    If anyone can provide additional information for me, I'd appreciate it. Or, if I'm completely wrong in my belief and there's a limitation either way, feel free to set me straight. I'd rather know the correct answer than be right!
    Thanks!!

    If you don't Reader-enable a document, then there are no licensing restrictions involved. Note that Reader 11 and all versions of Acrobat are able to save non-enabled forms, unlike previous versions.
    The question should not be whether a form is savable, but rather whether you used Acrobat to add usage rights to the form AND you (the licensee) plan on receiving filled-in instances (including hardcopies) of it. The simplest way is to not Reader-enable the form and convince your users to use Reader 11 (or Acrobat) if they want to save.

  • Photoshop Elements 11- Create and save multiple page PDF's?  Software bug or new limitation?

    I just upgraded from Photoshop Elements 10 to Photoshop Elements 11.  One of the reasons I stayed with Adobe rather than Corel was the ability to work with multipage PDF's.
    I noticed that I can't add more than one page to a project and save a multiple page PDF.  I can open a multiple page PDF, but not create or save one.
    Is this a new limitation, or just a software bug Adobe plans to fix?
    Has anyone found a way to work with multiple page PDF's in Photoshop Elements 11?

    It's a new limitation in PSE 11, for one of those mysterious adobe reasons.

  • How do I save albums, events in tact from iPhoto to external drive to comply with iCloud limits? Thx

    How do I save albums, events in tact from iPhoto to external drive to comply with iClouds limits? (iMac Lion, need to remove 280gb of photos>

    Not sure if I understand correctly?
    Do you want to move 280 GB of photos from iPhoto on your Mac to an external hard drive?
    If that is the case, iCloud has nothing to do with it. You can move your iPhoto library to an external drive to free up space on your internal drive.
    http://docs.info.apple.com/article.html?path=iPhoto/8.0/en/6331.html
    If that is not what you're trying to do, please rephrase your question. Thanks.

  • Toshiba Power Saver doesn't work with limited user account

    Hello,
    this same question was posted in 2006 - not by me - with no successful answer. I try again.
    If you create a user with restrictions account (member of the local USERS group) in XP, then he cannot manage either the embedded Windows power options, and the Toshiba Power Saving tool.
    I managed, working on file and registry permissions, to have the Windows power options working. But I still can't launch the Toshiba Power Saving tool, it always pop-ups the "you don't have rights" box.
    Is there really nothing I can do to work around this?
    thanks

    I have the exact same problem on my Tecra 9100 (PT910E) just accquired on Ebay with minimum XP Pro SP2 installation.
    Akuma I tried to your advice with my Power saver version 5.04.00 (file 20071126153401) without success.
    The only way I could find to run Power saver is directly from the icon in the Admin account, or through the console. I could not then find "setup options" only "Details" of the various power schemes. No "Allow Limited User to change settings" box/button anywhere.
    Can you clarify further ?
    thanks
    Ken

  • A save request exceeded the quantity limits for a given structure type.

    I am running PI7.1 SP6..
    I have created all the objects and done all of the configuration in the Enterprise Service Builder and the Integration Builder and I am trying to publish the Webservice in the Service Registry, but after displaying the WSDL, and then publishing the Webservice, I get the following error:
    com.sap.aii.ib.core.uddi.RegistryClientException: A save request exceeded the quantity limits for a given structure type.
    Number of Business Entities exceeds your limit of 1 (2)
         at com.sap.aii.ib.server.uddi.RegistryClientDelegateProvider$EjbRegistryClient.publishServices(RegistryClientDelegateProvider.java:338)
         at com.sap.aii.ibdir.server.wsquery.WSQUDDISrvPublishTB.execute(WSQUDDISrvPublishTB.java:112)
         at com.sap.aii.ibdir.core.simulation.DefaultTaskBroker.execute(DefaultTaskBroker.java:158)
         at com.sap.aii.ibdir.server.simulation.TaskQueryService.specialQuery(TaskQueryService.java:31)
         at com.sap.aii.ib.server.query.SpecialQueryServiceProvider$SpecialQueryServiceImpl.specialQuery(SpecialQueryServiceProvider.java:63)
         at com.sap.aii.ib.server.query.QueryServiceImpl.specialQuery(QueryServiceImpl.java:443)
         at com.sap.aii.ib.server.query.QueryServiceBean.specialQuery(QueryServiceBean.java:112)
         at sun.reflect.GeneratedMethodAccessor534.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:43)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:71)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:38)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:22)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133)
         at com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164)
         at $Proxy2177.specialQuery(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor533.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sap.engine.services.rmi_p4.P4DynamicSkeleton.dispatch(P4DynamicSkeleton.java:234)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:351)
         at com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:70)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:62)
         at com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:37)
         at com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest(FCAConnectorImpl.java:872)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:53)
         at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:58)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:108)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:304)
    Caused by: com.sap.esi.uddi.sr.api.ws.PublishServicesFault: A save request exceeded the quantity limits for a given structure type.
    Number of Business Entities exceeds your limit of 1 (2)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sap.engine.services.webservices.espbase.client.bindings.impl.JAXWSUtil.deserializeException(JAXWSUtil.java:357)
         at com.sap.engine.services.webservices.espbase.client.bindings.impl.JAXWSUtil.processFault(JAXWSUtil.java:327)
         at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.call_SOAP(SOAPTransportBinding.java:987)
         at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.callWOLogging(SOAPTransportBinding.java:703)
         at com.sap.engine.services.webservices.espbase.client.bindings.impl.SOAPTransportBinding.call(SOAPTransportBinding.java:673)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.WSInvocationHandler.processTransportBindingCall(WSInvocationHandler.java:167)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.WSInvocationHandler.invokeSEISyncMethod(WSInvocationHandler.java:120)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.WSInvocationHandler.invokeSEIMethod(WSInvocationHandler.java:83)
         at com.sap.engine.services.webservices.espbase.client.jaxws.core.WSInvocationHandler.invoke(WSInvocationHandler.java:64)
         at $Proxy2689.publishServices(Unknown Source)
         at com.sap.esi.uddi.sr.api.ws.ejb.ServicesRegistryProxyFacade.publishServices(ServicesRegistryProxyFacade.java:358)
         at sun.reflect.GeneratedMethodAccessor1059.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:43)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:71)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.doWorkWithAttribute(Interceptors_Transaction.java:38)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Transaction.invoke(Interceptors_Transaction.java:22)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133)
         at com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164)
         at $Proxy255.publishServices(Unknown Source)
         at com.sap.aii.ib.server.uddi.RegistryClientDelegateProvider$EjbRegistryClient.publishServices(RegistryClientDelegateProvider.java:335)
         ... 41 more
    As always, these errors are so informative! 
    It has published the Webservice in the Service Registry, but not with the End Points...
    has anyone come across the message before and know how to fix it so I can successfully publish the Webservice???
    I have searched SDN and OSS - also opened an OSS note about another error I am experiencing...

    Hi Barry
    Have you already published for the same server or this is first time you tried and got error ?
    Did you referred Troubleshooting guide
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e05829a5-55aa-2a10-f694-ba8e30c3c122
    Master installation guide
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0301486-758c-2a10-9d84-a195556df422
    Thanks
    Gaurav

  • After upgrading to version 6 my ArcGIS files become corrupted if I save them while I have FF open (sporadic occurence, but limited to FF being open). How can I downgrade to version 5?

    I am using ArcGIS 10 and Firefox 6 on Windows XP.
    After upgrading to version 6 my ArcGIS files become corrupted if I save them while I have FF open (sporadic occurence, but limited to FF being open). Any ideas of what could be causing this? I have also posted on the ArcGIS forum site for input from that side.
    How can I downgrade to version 5? If that is the only option available.

    Thanks for the reply. It doesn't have to process the php, it just has to show the HTML content. It did that just fine before the last upgrade but won't now.
    I've seen that page you referenced: http://kb.mozillazine.org/File_types_and_download_actions.
    It doesn't help. The things it says to look for aren't there for me, specifically:
    browser.download.pluginOverrideTypes
    plugin.disable_full_page_plugin_for_types
    I followed the rest of the instructions but it didn't help.
    I did get it to quit opening tabs, instead it prompts me what it should do with the file every time now. What it should do, and used to do, is open the php page and display the HTML content.
    Any other ideas?

Maybe you are looking for

  • Change of tax code determination

    Hello, I want to change tax code determination when shipping to customers, where to setup this in SAP ? Regards. Zied.

  • Bridge CC doesn't quit and CC doesn't show all my apps

    Hi, please help with this. Bridge CC never quits and I have to force exit. it takes minutes to do things that in CS5 would take seconds, and It says Error just for selecting all images, is ridiculous. Second, CC app says I've only instaled 2 apps but

  • Can I print the File name and page number

    When printing a file, I would like to print the File Name and the page number also...something like a header, in every page printed.  Is this possible in Acrobat?  Please advise. Thanks

  • Enabling Select-options in an RFC function module

    Hi Abaper's, I am using BAdi definition NOTIF_EVENT_SAVE for sending mail notification to user. Under CHANGE_DATA_AT_SAVE method I have called an RFC enabled function module and written code here for mail notification.I used cl_bcs class for sending

  • How to end loop when desired value is found.

    Hi I have a loop below and I want the loop to end when the desired value is found. <?php do { ?> <?php $allvotedid = $row_VotedUsers['VotedID'] ?> <?php } while ($row_VotedUsers = mysql_fetch_assoc($VotedUsers)); ?> I want this loop to end when $row_