Error encountered when saving a query

hi,
I created a new query in the development system and while saving it i get an error
the query cannot be saved due to problem in transport,Bex transport request is nto available,choose teh existing request.
I did create atransport requests and tried but still i am facing teh error.
could anyone help me thsi is very urgent
thanks
subha

Can you try this:
Go to transport connection in RSA1 and collect this query.
When clicking the truck button, the system will automatically prompt you with a existing  request. If not, you can create a new one here.
Ravi Thothadri

Similar Messages

  • Giving error message when saving the Query

    Hello,
    I have added a new calculated key figure to the structure in a Query but when I try to save the Query it is giving error message is below.
    Error Message:
    u201CThis internal error is an intended termination resulting from a program state that is not permitted.
    Procedure
    Analyze the situation and inform SAP.
    If the termination occurred when you executed a query or Web template, or during interaction in the planning modeler, and if you can reproduce this termination, record a trace (transaction RSTT).
    For more information about recording a trace, see the documentation for the trace tool environment as well as SAP Note 899572u201D.
    Could any one please suggest me how can I over come with this problem.
    Thanks
    Prathap.

    Hi Prathap,
    There is some problem in the definition of the Query.
    Please click on the check button before saving the query, it gives where the problem exists in it.
    Hope it helps.
    Veeerendra.

  • Error message when saving a PDF to PNG: Error attempting to write file.

    I get an error message when saving a PDF to PNG. JPG and TIFF works, but no PNG.
    Disk space is sufficient! 100GB of 250
    A few weeks ago it was no problem to save as PNG. But now! (Perhaps from last update?)
    Messages:
    When clicking "Ignore":
    Adobe Acrobat XI Standard
    Version 11.0.09

    I have this issue too, but my colleagues do not have this issue(we have same Acrobat Pro 11.0.09). I am sure this issue happens only you updated to 11.0.09, because when you use Windows Restore back to 11.0.08, no issues.

  • Error encountered when checking for software update!

    How come there is an error encountered when I was trying to check for the software update for the iPad? Presently, my iPad is on iOS 6. So I would like to ask if anyone of you here experiencing the same thing or it is just me? And are there any specific reasons for this phenomenon? Thanks for helping me in overcoming this matter. Your efforts will be appreciated.

    Now I completely understand what you are trying to do.
    There is no update for any of the iPad versions except for the iPad Mini. There was an update released yesterday for the iPad Mini and the iPhone 5 only. If you are running iOS 6.0.1 - you ARE up to date regarding the software.
    But - you should still not be getting an error message when you look for the update. You should see this message on the iPad.
    If your phone is the iPhone 5 - you should be seeing the update that is available.

  • Error Message When Saving Software Sim in Cp4

    Hello Everyone
    I am having an issue with saving a software simulation in Captivate 4. Once I stop recording, by pressing 'End', I get the message "Error encountered while copying audio stream". This happens regardless if I have recorded a narration track or not.
    The PC I am using is running Windows Vista Ultimate (Service Pack 2).

    bc_aftersave.htm is a file that lies within Dreamweaver's Configuration Commands. Usually is required when working with Business Catalyst.
    The error you see may be caused due to a faulty file.
    I'm attaching the file at fault - 'bc_aftersave.htm' in this thread. Download and restore it to the following folder:
    C:\Users\<username>\AppData\Roaming\Adobe\Dreamweaver CS6\<language>\Configuration\Commands
    Locate the file bc_aftersave.htm, replace that file with the one I'm attaching here to see if it solves the issue.
    -ST

  • Error message when run a query

    I got an error message when I run one of the query on the portal:
    Root Cause
    The initial exception that caused the request to fail was:
    Termination message sent
    INFO
    No connection to system BI_SAP_QUERY available
    com.sap.ip.bi.shared.SharedText system_not_found
    BI_SAP_QUERY
    No connection to system BI_SAP_QUERY available
    com.sap.ip.bi.shared.SharedText system_not_found
    BI_SAP_QUERY
    ABEND BRAIN (892): 1 SIDs from characteristic USITM are missing (CL_RSDM_READ_MASTER_DATA->_SIDVAL_DIRECT_READ2)
      MSGV1: 1
      MSGV2: USITM
      MSGV3: CL_RSDM_READ_MASTER_DATA->_SIDVAL_DIRECT_READ2
    What problem is this? How to fix it? Thanks in advance!

    Hi Zheng,
    Import Support Package 04 for Release 3.50 (BW3.50 Patch 04 or SAPKW35004) into your BW system. The Support Package will be available when note 0693494 with the short text "SAPBWNews BW 3.50 Support Package 04", describing this Support Package in more detail, is released for customers.
    Regards,
    Anil

  • Error message when saving to a:\ drive when no disk present

    I am using a Jfilechooser andsaving images using ImageIO, but I want add in the code necessary to display an error message when the user tries to save to the a:\ drive but there is no disk present. How would I do this, this is the code so far:
    JFileChooser chooser = new JFileChooser();
    chooser.setApproveButtonMnemonic('a');
    chooser.setApproveButtonText("Save");
    // create a file chooser with save dialog
    int returnVal = chooser.showSaveDialog(c);
    // If the user selects ok
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    // Get the file the user selected
    File file = chooser.getSelectedFile();
    / Get the name of the selected file
    String name = file.getName();
         // Set the format name to null
    String formatName = null;
    // Get the index number of when the . occurs in the file name
    int dot = name.indexOf(".");
         try {
         if(dot == -1) {
         file = new File(file.getParentFile(),
    name + "." + defaultExtension);
         formatName = defaultExtension;
         else {
    // else get the format name using a substring.
         formatName = name.substring(dot+1);
         // If the image cannot be saved, display an error message.
         if(!ImageIO.write(bi, formatName, file)) {
         file.delete();
         JOptionPane.showMessageDialog(c,
         "The image could not be saved. Please ensure that the extension is .jpg or .png",
         "Image save failed",
         JOptionPane.ERROR_MESSAGE);
         else {          // The image can be saved, so display a confirmation message
         JOptionPane.showMessageDialog(c,
         "The image has been saved to:\n"+
         file.getPath(),
         "Image Saved",
         JOptionPane.INFORMATION_MESSAGE);
         catch(IOException e) {               // Display an error message if save fails.
         JOptionPane.showMessageDialog(c,
         "The image could not be saved, no space on disk!!\n" + e,
         "Image save failure",
         JOptionPane.ERROR_MESSAGE);

    Again I have tried this, but in my program if I try to save to the a drive when no disk is inserted, the JOptionPane i want to display is not coming up.
    the system prints out
    java.io.FileNotFoundException: A:\image.jpg <The device is not ready>
    If that makes any sense to you

  • Error message when saving an modified XL Reporter in Microsoft Excel

    Dear all
    I have encountered an error message when I tried to save an modified XL report in Excel.
    The error message is:
    An error occurred while trying to save the report definition! Object variable or with Block variable not set.
    The user now is using 200B PL 42 with Microsoft Excel 2003.
    Thanks in advance for advices.
    Thank you.
    Regards,
    Catea k

    Hi Catea k ,
    for thies error Object variable or with Block variable not set
    Please evaluate if OSS notes ##559043, 571831 and 575434 are applicable to your situation
    also check SAP Note 1227475 - Object variable or With block variable not set (processing)
    Note 1132338 - Object variable or with block variable not set
    Note 1180272 - Object variable or with block variable not set
    Note 1100521 - Object variable or With block variable not set[Create Temp T
    refer this thread also
    Object variable not set - Run-time error 91
    Regards
    Abhishek

  • Error message when saving an Interaction Record: Document distributed

    Hello experts,
    We are currently getting error message: "Document is being distributed - changes are not possible" when saving an Interaction Record in Web IC (We use CRM 6 - 2007).
    We've noticed that saving an interaction record triggers an outbound BDoc of type "BUS_TRANS_MSG". In order to prevent this BDoc to be generated, we deactivated the processing for the One-Order BDoc with transaction SMW3_0. However, this had the side effect that quotations were not replicated from CRM to ECC so we can't really use this approach.
    Has anyone faced this issue before? Do you know how to fix it?
    Thanks.

    Hi
    The initital status of Interaction record must ensure that transaction is not relevant for distribution. This ensures that CRM doesnot try to send the transaction to ERP through middleware.
    Go to SPRO ->CRM -> Transactions -> Basic Settings -> Status Management ->Change Status Profile for User status
    Here, select your status profile and click on the intiial status, scroll down and go to 'to be distributed' and select the radio button 'Forbidden'
    This will solve the problem.
    Many Thanks
    Ravindra

  • Error message when saving .fm file

    I just upgraded my FrameMaker program to 7.2.
    When I try to save my work, the following message appears on-screen:
    An internal error occurred while writing imported graphics in this document.  The file has been saved, but has lost some image data.  Please report this error to Adobe Technical Support.
    My file has NOT been saved, none of the changes I've made have been saved.  I cannot save this file under a different name, either.  And the automated files that are generated by the program as &quot;back-up&quot; files are useless.
    HELP!!!

    Upgraded to 7.2..... Good that you didn't rush into it. ;-  )
    Anyway, that's the standard error message when a file contains objects imported using an OLE link AND you are running XP SP3.
    SP3 implemented security fixes that essentially broke OLE within Frame (and a number of other applications).
    So if your document(s) contain OLE links, you're likely to have to convert them to imported-by-reference graphics if they're graphic files or do some other type of conversion if they're tables or PPT slides.
    Art

  • "This file cannot be found" error message when saving document

    Hello,
    Strangely, every time I click "save" in CS6 it opens up a 'Save As' window, (which shouldn't happen), then I click save witht the existing file name (it then tells me the doc already exists), I click OK, (and then OK to the next popup window) then get the message that "This file cannot be found".  I'm forced to click "ok" and the doument isn't saved.  I've tried saving it differently in previous versions and it still doesn't work.  I recorded a video of this behavior. You can see it here - http://screencast.com/t/W1GYK0zsrk 
    Why would it be trying to find a file?  It seems like an error message when trying to Open a doc, not Save a doc.
    Please HELP!!  I can't shutdown my station until I get the document to save.

    Yes, Mohit1233 - it happened with every file yesterday. Finally, I closed the doc (forcing me to lose my work), then restarted my computer and today the problem is gone. I'm working on a PC (HP);
    Barblove - I tried doing that yesterday (copying and pasting into a new doc), and still nothing. I also tried copying the work into a CS3 doc (but got an error message).

  • Error encountered when clicking on the UWL

    Hi,
    I have this exception when selecting on the pending task in the UWL where it accompany with PAGE_NOT_FOUND.
    Any idea how to resolve?
    Error looking up url: portal_content/com.sap.pct/platform_add_ons/com.sap.caf.eu.gp.folders.gp/com.sap.caf.eu.gp.roles.runtime/com.sap.caf.eu.gp.worksets.runtime/com.sap.caf.eu.gp.pages.procinstance
    [EXCEPTION]
    javax.naming.NameNotFoundException: [Xfs] Object not found: com.sap.caf.eu.gp.worksets.runtime/com.sap.caf.eu.gp.pages.procinstance at portal_content/com.sap.pct/platform_add_ons/com.sap.caf.eu.gp.folders.gp/com.sap.caf.eu.gp.roles.runtime/com.sap.caf.eu.gp.worksets.runtime [Root exception is javax.naming.NamingException: [Xfs] Object not found: com.sap.caf.eu.gp.worksets.runtime/com.sap.caf.eu.gp.pages.procinstance at portal_content/com.sap.pct/platform_add_ons/com.sap.caf.eu.gp.folders.gp/com.sap.caf.eu.gp.roles.runtime/com.sap.caf.eu.gp.worksets.runtime]
    at com.sapportals.portal.pcd.gl.PcdPersContext.filteredLookup(PcdPersContext.java:555)
    at com.sapportals.portal.pcd.gl.PcdPersContext.deepFilteredLookup(PcdPersContext.java:467)
    at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterContext.java:480)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.recursiveLookup(PcdProxyContext.java:1503)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxyContext.java:1579)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyContext.java:1523)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:1321)
    at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:71)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:1314)
    at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.java:1307)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at com.sapportals.portal.pcd.pcm.roles.RoleNavigationConnector.getNodes(RoleNavigationConnector.java:463)
    at com.sapportals.portal.pcd.pcm.roles.RoleNavigationConnector.getNode(RoleNavigationConnector.java:337)
    at com.sapportals.portal.navigation.cache.connector.CacheNavigationConnector.getOriginalNode(CacheNavigationConnector.java:905)
    at com.sapportals.portal.navigation.cache.connector.CacheNavigationConnector.getNode(CacheNavigationConnector.java:777)
    at com.sapportals.portal.navigation.NavigationService.getNavNode(NavigationService.java:1591)
    at com.sapportals.portal.navigation.NavigationService.getNode(NavigationService.java:615)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentNavNode(NavigationEventsHelperService.java:443)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentLaunchNavNode(NavigationEventsHelperService.java:483)
    at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentLaunchNavNode(NavigationEventsHelperService.java:471)
    at com.sapportals.portal.navigation.workAreaiView.doContent(workAreaiView.java:125)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:200)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher$5.service(RequestDispatcherFactory.java:308)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:93)
    at com.sap.portal.prt.core.RequestDispatcherFactory$PortalComponentRequestDispatcher.service(RequestDispatcherFactory.java:298)
    at com.sap.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:278)
    at com.sap.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:115)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1DoDispatchRequest.run(AsyncIncludeRunnable.java:359)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:372)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:176)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:606)
    Caused by: javax.naming.NamingException: [Xfs] Object not found: com.sap.caf.eu.gp.worksets.runtime/com.sap.caf.eu.gp.pages.procinstance at portal_content/com.sap.pct/platform_add_ons/com.sap.caf.eu.gp.folders.gp/com.sap.caf.eu.gp.roles.runtime/com.sap.caf.eu.gp.worksets.runtime
    at com.sapportals.portal.pcd.gl.xfs.BasicContext.lookup(BasicContext.java:1346)
    at com.sapportals.portal.pcd.gl.PcdPersContext.lookup(PcdPersContext.java:788)
    at com.sapportals.portal.pcd.gl.PcdPersContext.filteredLookup(PcdPersContext.java:547)

    Hi,
    Check this thread:
    Page_Not_Found error encounter in GP Runtime
    Reward points if it's helpful.

  • I get an 'error occured' when saving a project after pasting text from Photoshop CC

    I get an 'error occured, restart Edge Animate' when saving a project after pasting text from Photoshop CC. If I manually type the text its fine.

    when I launch Photoshop CC, I get an error message
    and what exactly is the text of that error message?

  • Error occurred when saving user preferences

    Hi,
    we Copy catalog and RPD to production Environment. when i am try to change the my account(Weblogic) setting getting bellow error.
    Exception occurred when saving user preferences to the catalog access denied for user to path /users/weblogic/_prefs/userprefsxmlstore.
    I need to change any catalog permission? in Dev it is working fine.
    Thx,

    1 Open the online web catalog in offline mode.
    2. Navigate to /users/weblogic/_prefs/ folder,Right click and select permissions.
    3. From the drop-down list select users and click on the List button.
    4. Now, you can see all the users with access to this folder.
    5. Grant your user FULL CONTROL on this folder and apply recursively to all files under this folder (click on Apply Recursively check box).
    6. Restart The OBIEE Presentation Server.
    ref: http://www.cool-bi.com/Issues/CatalogPermissions.php
    If helps mark as correct
    Edited by: Srini VEERAVALLI on Apr 10, 2013 9:31 AM

  • "I/O error 103" when saving macro in Homesite 5.5

    I am getting an obscure error -- obscure because I'm an end-user, not a programmer, and therefore don't know what to do about it --- "I/O error 103" when trying to save a newly recorded macro in Homesite 5.5.
    Can anyone tell me if there is a remedy for this, or some pointers on how to get my macros saved?  I have an earlier version of Homesite on another machine, and have no problems recording, saving, and using macros.
    Thanks!
    -ron
    [email protected]

    You might try running CHKDSK on the disk to where you try to save the file. You might have a corrupted file directory or a damaged track on that disk. I urge you to backup what you can before trying this.
    Ken F.

Maybe you are looking for

  • Error while creating datasource from view ZBSIS_VIEW

    Hi all, I could not create  the datasource on the database table BSIS as it said "Invalid extract structure template BSIS of Datasource". I had suggestions that I should create a view and then create the Datasource on it. So I created the view and tr

  • Red x boxes in drop-down: no images needed

    On one page in IE when someone hovers over a drop down link, two red x's show as if an image is missing. There are no images; it's a js drop menu generated from Fireworks and all other nav links work fine. The link in question is the one for Exhibito

  • Google Chrome crashes when downloading a file

    recently my google chrome crashes every time I try to download a file with it, I have attached the console output after looking at it several times and not being able to figure out the issue exactly. I appreciate your assistance: Process:         Goo

  • Upgrade von CS 5 to CS 6

    May I upgrade for my Mac directly from CS 5 to SC 6? Or do I need a full version?

  • Help to open mime attachment on ipad

    Need help to open. The email attachments that come as mime  on my ipad Thanks