Error saving Outline

Hi
I am getting the below error on saving the outline
"Loading New Outline for Database Failed"
The outline is verifying successfully but i couldn't able to save the changes.This is an ASO cuube

This forum has to do with Certification. Pl re-post in a more appropriate forum for better/faster response (possibly General Database Discussions ?)
HTH
Srini

Similar Messages

  • Error saving job  to database for standard jobs scheduling

    Hi,
        In IDES server when iam goto Tr.code -- SM36 -- Standard Jobs -- Default Scheduling iam getting below error.
    Error saving job  to database
    Message no. BT117
    Diagnosis
    The SAP system was unable to save the current job in the database. This failure suggests that there is a problem with the database system or with the network connections between the SAP application servers and the database system.
    System Response
    Job not saved and not scheduled.
    Procedure
    To analyze this problem, start by checking the system log for messages about network or database problems.  You can also use the computing center management system to check your system for problems.
    Guide me for the same.
    Thanku

    HI,
    Sometimes this error will come.
    Try to schedule jobs manually using SM36 instead of using standard job button.
    Also you can check this thread
    Re: Error saving job SAP_REORG_JOBS to database
    Which seems to report same problem.
    Its nothing to take with database conenctivity as SAP is up and running .
    Try this and revert.
    Regards,

  • Import Manager 'Error 5611520 - Error Saving Key Mapping'

    I am using CREDITOR_EXTRACT in R/3 to send Vendor IDoc to XI and use CREMDM04 type.  XI generates an XML file that I load into MDM using a client that is set up for Inbound/Outbound.  The key mappings have been turned on for the Vendor repository.
    In IM, I use the standard map CREMDM04 and the system maps the incoming XML file to the vendor main table.  There are few values that I have to map manually - fine.  Next, when I click Import, I get a error pop-up message 'Error Saving Key Mapping - Errno 5611520'.
    Has anybody experienced this when using all standard content (schemas and maps) for Vendor?
    Thanks in advance.

    Subbu,
    Found another system that has the same versions as you do.  This particular error did not appear, but we got some internal IM error.  Also, the SAP training demos are on the same versions as mine.
    I am using MDC R/3 as the client and the CREMDM04 schema map.  Not using MDM inbound ports for now.  Just loading XML file generated by XI based on CREMDM04. Do you think that I need to define a Qualified Range for this client in the Console or can it be left blank?
    Thanks.

  • Error saving data structure CE11000 (please read log) message number KX 655

    while activating the data structure in the operating concern of CO PA sap gives the following errors.
    1.Error saving data structure CE11000 (please read log)
    Message no. KX655
    2.Error saving table CE01000
    Message no. KX593
    3.in Log Reference field CE31000-REC_WAERS for CE31000-VVQ10001 has incorrect type.
    Pls suggest

    Hey,
    Below tables are related to application logs
    BAL_AMODAL  :                   Application Log: INDX table for amodal communication
    BALC        :                   Application Log: Log or message context            
    BALDAT      :                   Application Log: Log data                          
    BALHANDLE   :                   Application Log: Lock object dummy table           
    BALHDR      :                   Application log: log header                        
    BALHDRP     :                   Application log: log parameter                     
    BAL_INDX    :                   Application Log: INDX tables                       
    BALM        :                   Application log: log message                       
    BALMP       :                   Application log: message parameter                 
    BALOBJ      :                   Application log: objects                           
    BALOBJT     :                   Application log: object texts                      
    BALSUB      :                   Application log: sub-objects                       
    BALSUBT     :                   Application log: Sub-object texts                  
    -Kiran
    *Please mark useful answers

  • Error saving column settings with ORA-01403: no data found Error

    Hi
    I have a region with multi row report updatable.
    When I am trying to change the query I am getting below error.
    Anybody let me know what will be the problem.
    ORA-01403: no data found
    Error saving column settings
    Regards
    Kiran

    Hi
    I was using below query for this region.
    SELECT
    result.segment1 Item#,
              result.inventory_item_id,
              result.revision,
              result.lot_number,
              result.Lot_Onhand,
              result.Heat,
              result.Cert_Site_Number Cert_Site_Number_Display,
              result.status_code Status_Code_Display,
    result.Cert_ID Cert_ID_Display,
              result.Cert_Site_Number,
              result.status_code,
    result.Cert_ID,
              result.transaction_id,
    result.po_header_id,
    result.po_line_id,
    result.rcv_transaction_id,
    result.shipment_header_id,
    result.shipment_line_id
    FROM          
    SELECT      
    msi.segment1,
              mmt.inventory_item_id,
              mmt.revision,
              mtln.lot_number,
              xx_utility_pkg.get_available_qty(mmt.inventory_item_id,mmt.organization_id,mmt.subinventory_code,mtln.lot_number,'ONHAND') Lot_Onhand,
              mtln.attribute1 Heat,
              mtln.attribute2 Cert_Site_Number,
              mms.status_code,
                        (          SELECT     clx.cert_id
                        FROM     xxqc.cert_mst cm,
                                  xxqc.cert_lot_xref clx
                        WHERE      cm.cert_id = clx.cert_id
                        AND cm.cert_type='MILL'
                        AND     clx.lot_no = mtln.lot_number
              ) Cert_ID,
              mmt.transaction_id,
              rsl.po_header_id,
              rsl.po_line_id,
    mmt.rcv_transaction_id,
    rt.shipment_header_id,
    rsl.shipment_line_id
    FROM      mtl_material_transactions mmt,
              mtl_transaction_lot_numbers mtln,
              mtl_material_statuses_tl mms,
              rcv_transactions rt,
              rcv_shipment_headers rsh,
              rcv_shipment_lines rsl,
    mtl_system_items_b msi
    WHERE     mmt.transaction_id = mtln.transaction_id
    AND          mmt.organization_id = mtln.organization_id
    AND          mtln.status_id = mms.status_id
    AND          rt.transaction_id = mmt.rcv_transaction_id
    AND          rsh.shipment_header_id = rt.shipment_header_id
    AND          rsl.shipment_header_id = rsh.shipment_header_id
    AND          rsh.organization_id = mmt.organization_id
    AND          rsl.item_id = mmt.inventory_item_id
    AND msi.inventory_item_id=rsl.item_id
    AND msi.organization_id = mmt.organization_id
    AND          rsl.po_line_id = DECODE(:P5_PO_LINE_NUMBER, 0,rsl.po_line_id,:P5_PO_LINE_NUMBER)
    AND rsl.po_header_id IN (     SELECT     po_header_id
                        FROM      po_headers_all
                        WHERE      segment1 = :P5_PO_NUMBER
                        AND      org_id = :P5_ORG_ID)
    AND          mtln.status_id = 90 -- Which is 'T' Status means Temporary
    AND          mmt.transaction_action_id = 27
    AND          mmt.transaction_source_type_id = 1
    AND          mmt.transaction_type_id = 18
    ) result
    WHERE result.Lot_Onhand > 0
    when I use above query I am able to update the region perfectly.
    But when I comment last WHERE CONDITION I am getting above problem.
    What could be the possilbe reason for this?
    Regards
    Kiran Akkiraju

  • "Error saving state file"

    I am getting an error that shows up on the alarm screen - it says "Error saving state file:c\program files\national instruments\lookout 5.0\petco.l4t".
    Background:  An old XP pro machine running the application died and was replaced with a new Dell, business class PC, Optiplex 360, Win XP Pro sp3, 2.2ghz dual core.
    After moving the application and setting up the PC, I get the following message every time it trie to say the state file.
    Is this a compatibility problem with the new hardware?
    What can I do?
    any ideas?
    THANKS
    Mark

    Does this machine have an auto-backup feature?
    Some backup applications can actually lock the partition, making it read only.
    Something to check
    Mike
    Mike Crabtree - Lead Developer
    Destek of Nevada, Inc. / Digital Telemetry Systems, Inc.
    (866) 964-6948 / (760) 247-9512

  • Error saving master file

    i'm trying to export jpegs to an external hard drive from aperture library, and repeatedly get error msg "there was an error saving master file." any ideas???

    Hi Salman,
    Thanks for posting this issue, 
    Just remove this below given tag and check out. It might be happened that your control is conflicting with others. 
    Also, browse the below mentioned URL for more details
    http://social.msdn.microsoft.com/Forums/office/en-US/b32d1968-81f1-42cd-8f45-798406896335/how-apply-custom-master-page-to-performance-point-dashboard-useragent-not-available-file?forum=sharepointcustomization
    I hope this is helpful to you. If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • My problem is that I am working on a page and then I receive ....Error saving the journal. Perhaps your session has expired-try reloading the page".

    My problem is that I am working on a page and then I receive ....Error saving the journal. Perhaps your session has expired-try reloading the page". I used to receive from Firefox when reloading page...To display this page, Firefox must send information that will repeat any action'. Now I don't receive this message and I lose info that was entered. How do I get this to pop up again so I can save my messages.
    Using Firefox 22.0 u to date

    This can be caused by corrupted cookies or cookies that are blocked (check the permissions on the about:permissions page).
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"
    You get an alert about resending POST data if you go back to a page or refresh a page that was previously requested from the server by submitting form data via a (hidden) POST form.<br />
    Firefox can only make sure to get the same page by resending that POST form.<br />
    Firefox doesn't know what that form data means, so Firefox asks for confirmation before resending that form data as such an action can cause you to repeat an action and buy another item or post a message another time.<br />
    A way to prevent this pop-up about resending POST data is not to use the Back button, but to open links on a page requested from a server by sending a form with POST date in a new tab (window) with a middle-click or a Ctrl + left-click.

  • Error saving connection - jdev

    Hi ,
    I am strying to create a Webservice Data control from a wsdl generated from a SOA process deployed in the server and when I click on the finish button during the configuration in Jdev - It gives null pointer exception - Error saving connection.
    The Connections.xml is empty. Is this a bug in Jdev.
    Can some one guide a what needs to be done.
    Thanks,
    Robin

    Hi,
    What is your JDev Version?

  • Error saving JCA Connection factory in PI NWA

    Hi All,
    I am facing an  issue in SAP PI NWA for creating a JCA connection factory so that I can use the user module to convert IDOCs to flat file. we are on SAP PI 7.11 sp06....
    error details : CF_XD1_180 failed due to: Can not add connection factory '', Reason: . See the log file for more details.
    The logs details : com.sap.engine.services.connector.exceptions.ConnectorException: Connector remote administration failed, reason: "Can not set authentication user store "null" in security context "CF_XD1_180" for connector "CF_XD1_180" in application "sap.com/tc~sapjra".".
    at com.sap.engine.services.connector.deploy.ConnectorContainerImpl.addComponent(ConnectorContainerImpl.java:1005
    i posted this  in SAP PI forum also...
    Error saving connection factory
    Regards
    ashutosh r

    Hello Carme,
    From the error , I can see that the name of the JCA Connection Factory that you are trying to create in NWA is: "MRD_300".
    This beautiful blog by William will surely help you rectify the problem.
    /people/william.li/blog/2009/04/01/how-to-use-user-module-for-conversion-of-idoc-messages-between-flat-and-xml-formats
    Kindly check if you have done the following in your configuration:
    1. Copy and create new dependent JCA Connection Factory from the JCA resource: "SAPJavaResourceAdapter15" 
    2. You have to go to the "Configuration Properties" tab (and not Security tab) of your JCA connection Factory (MRD_300) to enter the credentials that will be used by this CF. Make sure that you enter the details properly. Eg. In your case, just check if the password is entered.
    3. Also, check if the JCA resource "SAPJavaResourceAdapter15" is up and running (green traffic light). Else, restart the corresponding Java Service from NWA -> Operations Management -> Start & Stop -> Java Services
    I hope this should solve your problem.
    Regards, Gaurav.

  • Error saving file with Acrobat 8

    Saving a file (command save as in Acrobat 8) returns an empty file. Where is the problem? Thanks

    Región format: Colombia
    Enviado desde mi iPad
    El 4/02/2014, a las 2:44, "Anki(AG)" <[email protected]> escribió:
    Re: Error saving file to Acrobat.com in ipad
    created by Anki(AG) in Adobe Reader for iOS - View the full discussion
    Hi,
    Could you please let us know the "Region Format" of your device?
    Thanks,
    Ankit
    Adobe Reader Mobile Team
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6083557#6083557
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6083557#6083557
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6083557#6083557. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Reader for iOS at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • "ERROR SAVING RECORD" Message generated...

    Hi Everyone,
    I have a minor error with an Alert I made. I have an alert
    linked to both the Pre-Insert and Pre-Update Triggers at the
    Block level of my form.
    This alert fires when the Volume entered in the record is >50.
    It asks "Are you are sure the Volume should be larger than 50?"
    and has a Yes and No button on it. When you hit Yes, it saves
    and that is correct. When you press No it doesn't save, and
    that is fine, BUT after you press No, a window with a red X
    comes up and says in all capitals "ERROR SAVING RECORD". How
    can I get rid of this?
    Someone please help me out, I am stumped!
    Thanks in advance.
    Mike

    Didn't you forget to write in your triggers:
    IF alert_button=ALERT_BUTTON2 THEN
    RAISE Form_Trigger_Failure;
    END IF;

  • Error Saving Face Data

    Whenever I click "find faces for tagging"
    The box comes up
    Then all the faces start to appear
    When i try and tag any of them, it says Error Saving Face Data
    Please Help!

    Is the error visible both on XP and Vista?
    Can you try one thing - Try to tag the photos in small subsets say 50 or 100 at a time and once all the photos have been tagged once in small subsets, try to tag all of them together. See if that produces the crash?
    ~V

  • Error Saving Localized Settings mean?

    In the last month or so, I have received the following message when trying to open videos on the web and even my local weather forecast:
    "Error Saving Localized Settings
    Application is unable to access your file system "
    I get it in Safari (6.0.5) as well as Firefox.
    What does it mean?

    Good morning:
    This is not a new problem as evidenced by some web blogs going back three years.
    It started when I disabled Java Script......the victim of a lot of cautionary items on its security issues.
    Then odd things wouldn't play such as the hour-by-hour temperature display on a local TV station's site.
    And occasional video links off reputable news sites. But not Youtube.  Safari and Firefox are both afflicted.
    I enabled Java, repaired disk permissions (which I do on a regural basis) plus a few other tricks I know.
    Upgrades, etc., all  up to date.
    No luck.
    I have had three I-Macs over 13 years and Apple Care for 12 of those years.  Gawd how I miss 'em!
    I'll try your suggestions.
    Thank you!

  • Error Saving Validation

    Hello, I'm running MDM v7.1.05.101
    When trying to add a validation to a main table I am getting the following error:
    Error Saving Validation
    Field Not Found <0xFFAA1000>
    Version 7.1 (7.1.05.101)
    Anyone have any idea what that is about?

    Hi,
    1.I think the field which you describe in validation is deleted from MDM repository, so make sure field should be available in repository.
    2.or try to select other field and the save the validation still same error then verify and repair you repository through MDM console, hope this will reslove your problem.

Maybe you are looking for

  • Function Module or BAPI to update Delivery Date (LIKP-lfdat)

    Hello friends, I have a requirement to update Delivery Date (LIKP-lfdat) , is there any Function Module or BAPI to do that? any sample codes are appreciated. Thanks a lot! Edited by: Qiwei Yin on Dec 11, 2008 8:50 AM

  • Scorm Content Not Created in Presenter

    I have some existing content that i would like to run in Breeze. When i try to upload the zipped SCORM package, it wont recognise the zip, despite zip being an accepted file format. The only thing i can see in the guidance that might be an issue is t

  • 2 files scenario design

    Hey guys, I have a simple interface where I need to get 2 files from an FTP directory, and then post it in SAP. Once both files are posted, I need to do an RFC call but only once. So the flow will be: FILE1 AND FILE2 --> PI --> FILE1 AND FILE2 IN SAP

  • BASIS Settings for XI

    Hi, Can somebody give links or Docs for the BASIS Settings like Pre-Configuration and Post-Configuration Settings for XI apart from the one provided at help.sap.com? My Mail ID is [email protected] Thanks in Advance, Rose.

  • MacBook Pro bluetooth streaming issues

    Hi There, I recently purchased an Aluratek iStream, it is a device that turns a normal pair of speakers into bluetooth audio streaming capable ones. I connected my Late-2011 MBP to it and tried playing music and I quickly noticed that the audio quali