Cannot load Query (StructureI) via BICS

Hi All,
I've problem with loading a BEx Query via BICS into Xcelsius. I don't realy know, how to solve this problem.
What I can do in Xcelsius:
1. I can connect to SAP BW
2. I can chose Querys
After chosing a query I get no errors, what I see is just a Loading Clock.
Thx.
André

Dear Luca,
thank you very much for your reply. We have solved this problem by restarting our systems (ABAP and JAVA-Stack).
Than we installed thy latest patches and now I can work with my Queries.
But I have noticed your advices for the future
André

Similar Messages

  • Cannot load query "ZBM_M020_Q001" (data provider "DP_1": {2})

    I'm getting this error message when I try to run any of my bookmarks in this new bi system
    My url looks like:
    http://<myserver>:<myport>/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=REP_20090803204848&BOOKMARK=4EPI80Q37TF1VDU8EBTPT8RSY
    I get this message: Cannot load query "ZBM_M020_Q001" (data provider "DP_1": )
    When I click on "Information" I see the message: "Document class parameters are incomplete "
    If I leave out the bookmark like:
    http://<myserver>:<myport>/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=REP_20090803204848
    executes successfully.
    If i create a new bookmark using this query and then execute it it executes fine.
    This new BI Sys was created from Production, and somehow these bookmarks are not activated.
    I looked in RSWR_DATA and I can see that all of them are type 'B', bookmarks.
    Anyone know how this issue can be resolved so these bookmarks are usable?
    Mike
    Edited by: Michael Hill on Mar 30, 2010 5:41 PM

    No it does not work. The bookmark is corrupted with DP_1.
    I agree that the URL you have proposed should work without the query though. In fact you can put anything you want and it will work becuase the relevant information is stored in the bookmark, e.g the following works too!
    ?query=xyz&BOOKMARK=4EPI80Q37TF1VDU8EBTPT8RSY
    I include the query in the url so I can remember what query the bookmark belongs to.
    This pm we should have the fix transported to that system and I can adjust the bookmark.
    Thanks for your reply!
    Mike

  • Cannot load google news via google main page

    When I load google.co.uk in mobile mode and click on the hamburger icon on the top left of the page, instead of loading the side menu, the browser is automatically redirected to https://www.google.co.uk/mobile which essentially lists the Google Featured Apps for mobile.
    However, if I type in news.google.com or news.google.co.uk in the address bar then the browser is able to load the Google news page without any issue.
    This issue exists even when I disable all of the add-ons.
    Had anyone else experienced this? Does anyone know of a fix?

    HI Neil,
    No, but I have seen a stored mobile version of a site on the Android before. For example my bank site will store the mobile version from the cache. Try this:
    # Open a new tab and look for the google.co.uk and hold and select remove.
    # Visit the url to request a new entry.
    Does it still resolve to the mobile version? If so, you can also tap the Firefox Menu and select "Request Desktop Site"

  • #UNAVAILABLE in WebI with BEx Query via BICS over ECC

    dear all
    i have a very simple problem to explain.
    when i try to use =Month([Flight date]) function, my key figure returns #UNAVAILABLE
    that's it !
    of course, without the function, the key figures are good, but i get every darn date, but that is not what i want. i want to sum up the amounts for each of the months.
    when responding, please be mindful that there is no universe here, as it is via BICS.
    thanks
    g

    hi sven
    it is a date field, in fact it is a time dimension. so no problems there, but i tried this to test
    =ToDate([Flight date];"dd/mm/yyyy")
    this function works but does not help my scenario as i already have the full date and it did not group at all, but the interesting thing here, is that i lost my measure to #UNAVAILABLE.
    i thought i would try
    =ToDate([Flight date];"mm/yyyy")
    which gave #ERROR in the field and still  #UNAVAILABLE in the measure. i guess you must have the "d" in there somewhere.
    i then tried to proove the [Flight date] is recognized as a date by doing
    =IsDate([Flight date])
    the records came back with 1, which proves they are recognized as a date. so i cannot use subst as it requires a string. but this is going down the wrong path anyway.
    then i tried
    =FormatDate([Flight date];"mmm/yyyy")
    which does this Apr/2011 for example, goes near and will do what I want to achive, but yet again the measure is #UNAVAILABLE again.
    it seems that it just does not work.
    i am this close of logging an SAP support error
    I can get my grouping to work if I create a Month field in the source, and outside WebI, but i don't really want to do that. I want the variable webi dimension to work as it should, or i believe it should

  • MDB cannot loads enitities if more than 10 concurrent messages are sent tog

    Hello,
    I have seen a weird behavior of the MDB in Jboss or perhaps in transaction management.
    Here is a my scenario
    I have a session bean sb, an entity bean e and a message driven bean mb
    When a request comes to sb , it persists a new entity e and send a message (primary key) to mb
    mb then loads e from the database using one of the findByXX method and does something else.
    If 10 concurrent request comes to sb, 10 different entities are persisted and 10 different messages are sent to mb
    mb are able to load 10 different e from the database
    Everything works fine as long as there are 10 concurrent request. If there are 13 concurrent request, then one or two mb
    cannot load e from the database. It seems that the session bean has persisted the entities but some of them are still unload able from mb. They have been persisted , (I saw in the logs), but mb cannot load them.
    Initially I thought that a transaction mishap might be happening, so instead of persisting the entity and sending the message in one method in sb , I separated these two tasks in two methods a and b, in which both a and b uses RequiresNew transaction attribute. But the problem still remains. Please note if the number of parallel request are less than 10 then everything works fine. Is there something I am missing or is Jboss doing something buggy?
    The above situation is reproducible .
    Here is some more information about the problem along with some code snapshots. Note that the code is trimmed for clarity purposes.
    Request is a simple entity (e as mentioned in the problem before) that is persisted in session bean . Here is a trimmed snapshot
    Request.java
    package gov.fnal.ms.dm.entity;
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    @Entity
    @NamedQueries({@NamedQuery(name = "Request.findById", query = "SELECT r FROM Request r WHERE r.id = :id"),
    @NamedQuery(name = "Request.findAll", query = "SELECT r FROM Request r"),
    @Table(name = "cms_dbs_migration.Request")
    @SequenceGenerator(name="seq", sequenceName="cms_dbs_migration.SEQ_REQUEST")
    public class Request implements Serializable {
    private String detail;
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO, generator="seq")
    @Column(nullable = false)
    private Long id;
    private String notify;
    .....The session bean is MSSessionEJBBean.
    MSSessionEJBBean.java
    @Stateless(name="MSSessionEJB")
    @WebService(endpointInterface = "gov.fnal.ms.dm.session.MSSessionEJBWS")
    public class MSSessionEJBBean implements MSSessionEJB, MSSessionEJBLocal, MSSessionEJBWS {
    @PersistenceContext(unitName="dm")
    private EntityManager em;
    .......    The methods that is called concurrently in this bean is
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public Request addRequest(String srcUrl, String dstUrl, String path,
    String dn, String withParents, String withForce, String notify) throws
    Exception {
    Request r = addRequestUnit(srcUrl, dstUrl, path, dn, withParents, withForce, notify);
    if (r != null) sendToQueue(r.getId());
    return r;
    }    It first adds the request entity and then sends a message to the queue in separate methods each using TransactionAttributeType.REQUIRES_NEW (I don't think this TransactionAttributeType is needed . I was just playing to see if this resolves the problem)
    Here is the method that actually persist the entity
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public Request addRequestUnit(String srcUrl, String dstUrl, String path,
    String dn, String withParents, String withForce, String notify) throws
    Exception {
    ....// Does something before persisting
    Request r = new Request();
    r.setNotify(notify);
    r.setPath(path);
    r.setPerson(p);
    r.setWithForce(withForce);
    r.setWithParents(withParents);
    r.setProgress(new Integer(0));
    r.setStatus("Queued");
    r.setDetail("Waiting to be Picked up");
    em.persist(r);
    System.out.println("Request Entity persisted");
    System.out.println("ID is " + r.getId());
    return r;
    }I can see that the log files has messages
    *{color:#800000}"Request Entity persisted" "ID is " 12 (or some other number){color}*
    . So it is safe to assume that the request entity is persisted properly before the message is sent to the queue. Here is how the message is sent to the queue
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    private void sendToQueue(long rId) throws Exception {
    QueueSession session = null;
    QueueConnection conn = null;
    try {
    conn = factory.createQueueConnection();
    session = conn.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);
    MapMessage mapMsg = session.createMapMessage();
    mapMsg.setLong("request", rId);
    session.createSender(queueRequest).send(mapMsg);
    } finally {
    if (session != null) session.close();
    if(conn != null) try {
    conn.close();
    }catch(Exception e) {e.printStackTrace();}
    System.out.println("Message sent to queue");
    }I can see the message
    {color:#800000}*"Message sent to queue"*{color}
    in the log file right after I see the
    *{color:#800000}
    "Request Entity persisted"{color}*
    message. So it correct to assume that the message is infact sent to the queue.
    Here is the md bean that gets the message from the queue and process it
    @MessageDriven(activationConfig =
    @ActivationConfigProperty(propertyName="destinationType",
    propertyValue="javax.jms.Queue"),
    @ActivationConfigProperty(propertyName="destination",
    propertyValue="queue/requestmdb")
    public class RequestMessageDrivenBean implements MessageListener {
    @EJB
    private MSSessionEJBLocal ejbObj;
    public void onMessage(Message message) {
    try{
    System.out.println("Message recived ");
    if(message instanceof MapMessage) {
    System.out.println("This is a instance of MapMessage");
    MapMessage mMsg = (MapMessage) message;
    long rId = mMsg.getLong("request");
    List<Request> rList = ejbObj.getRequestById(new Long(rId));
    System.out.println("rList size is " +  rList.size());
    for(Request r: rList) {
    //Does something and print something in logs
    System.out.println("Finsihed onMessage");
    }catch(Exception e) {
    System.out.println(e.getMessage());
    }    One thing to note here is that getRequestById is another method in the same session bean MSSessionEJB. Can that be the reason for not loading the request from the database when many concurrent request are present? Here is what it does
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public List<Request> getRequestById(Long id) throws Exception {
    System.out.println("Inside getRequestById id is " + id);
    return em.createNamedQuery("Request.findById")
    .setParameter("id", id)
    .getResultList();
    }    In the logs I do see
    {color:#800000}*"This is a instance of MapMessage"*{color}
    and I do see the correct Rid that was persisted before in the log
    *{color:#800000}
    "inside getRequestById id is 12"{color}*
    . Finally I do see
    *{color:#800000}
    "Finsihed onMessage"{color}*
    for all the request no matter how many are sent concurrently.
    *{color:#ff0000}Here is where the problem is . rList size is 1 for most of the cases but it returns 0 when the number of concurrent message exceeds 10.*
    *{color}*
    So you see there is no exception per se, just that entity does not get loaded from the database. I would like to mention this again, it does work properly when the number of concurrent request are less than 10. All the invocation of onMessage in MB are able to load the entity properly in that case. Its only when the number of concurrent request increases more than 10, the onMessage is unable to load the entity and the rList is 0.
    FYI I am using jboss-4.2.2.GA on RedHat enterprise linux 4 with jdk1.6.0_04
    Please let me know if there is more information required on this.
    Thank you

    Hello,
    I have seen a weird behavior of the MDB in Jboss or perhaps in transaction management.
    Here is a my scenario
    I have a session bean sb, an entity bean e and a message driven bean mb
    When a request comes to sb , it persists a new entity e and send a message (primary key) to mb
    mb then loads e from the database using one of the findByXX method and does something else.
    If 10 concurrent request comes to sb, 10 different entities are persisted and 10 different messages are sent to mb
    mb are able to load 10 different e from the database
    Everything works fine as long as there are 10 concurrent request. If there are 13 concurrent request, then one or two mb
    cannot load e from the database. It seems that the session bean has persisted the entities but some of them are still unload able from mb. They have been persisted , (I saw in the logs), but mb cannot load them.
    Initially I thought that a transaction mishap might be happening, so instead of persisting the entity and sending the message in one method in sb , I separated these two tasks in two methods a and b, in which both a and b uses RequiresNew transaction attribute. But the problem still remains. Please note if the number of parallel request are less than 10 then everything works fine. Is there something I am missing or is Jboss doing something buggy?
    The above situation is reproducible .
    Here is some more information about the problem along with some code snapshots. Note that the code is trimmed for clarity purposes.
    Request is a simple entity (e as mentioned in the problem before) that is persisted in session bean . Here is a trimmed snapshot
    Request.java
    package gov.fnal.ms.dm.entity;
    import java.io.Serializable;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    @Entity
    @NamedQueries({@NamedQuery(name = "Request.findById", query = "SELECT r FROM Request r WHERE r.id = :id"),
    @NamedQuery(name = "Request.findAll", query = "SELECT r FROM Request r"),
    @Table(name = "cms_dbs_migration.Request")
    @SequenceGenerator(name="seq", sequenceName="cms_dbs_migration.SEQ_REQUEST")
    public class Request implements Serializable {
    private String detail;
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO, generator="seq")
    @Column(nullable = false)
    private Long id;
    private String notify;
    .....The session bean is MSSessionEJBBean.
    MSSessionEJBBean.java
    @Stateless(name="MSSessionEJB")
    @WebService(endpointInterface = "gov.fnal.ms.dm.session.MSSessionEJBWS")
    public class MSSessionEJBBean implements MSSessionEJB, MSSessionEJBLocal, MSSessionEJBWS {
    @PersistenceContext(unitName="dm")
    private EntityManager em;
    .......    The methods that is called concurrently in this bean is
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public Request addRequest(String srcUrl, String dstUrl, String path,
    String dn, String withParents, String withForce, String notify) throws
    Exception {
    Request r = addRequestUnit(srcUrl, dstUrl, path, dn, withParents, withForce, notify);
    if (r != null) sendToQueue(r.getId());
    return r;
    }    It first adds the request entity and then sends a message to the queue in separate methods each using TransactionAttributeType.REQUIRES_NEW (I don't think this TransactionAttributeType is needed . I was just playing to see if this resolves the problem)
    Here is the method that actually persist the entity
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public Request addRequestUnit(String srcUrl, String dstUrl, String path,
    String dn, String withParents, String withForce, String notify) throws
    Exception {
    ....// Does something before persisting
    Request r = new Request();
    r.setNotify(notify);
    r.setPath(path);
    r.setPerson(p);
    r.setWithForce(withForce);
    r.setWithParents(withParents);
    r.setProgress(new Integer(0));
    r.setStatus("Queued");
    r.setDetail("Waiting to be Picked up");
    em.persist(r);
    System.out.println("Request Entity persisted");
    System.out.println("ID is " + r.getId());
    return r;
    }I can see that the log files has messages
    *{color:#800000}"Request Entity persisted" "ID is " 12 (or some other number){color}*
    . So it is safe to assume that the request entity is persisted properly before the message is sent to the queue. Here is how the message is sent to the queue
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    private void sendToQueue(long rId) throws Exception {
    QueueSession session = null;
    QueueConnection conn = null;
    try {
    conn = factory.createQueueConnection();
    session = conn.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);
    MapMessage mapMsg = session.createMapMessage();
    mapMsg.setLong("request", rId);
    session.createSender(queueRequest).send(mapMsg);
    } finally {
    if (session != null) session.close();
    if(conn != null) try {
    conn.close();
    }catch(Exception e) {e.printStackTrace();}
    System.out.println("Message sent to queue");
    }I can see the message
    {color:#800000}*"Message sent to queue"*{color}
    in the log file right after I see the
    *{color:#800000}
    "Request Entity persisted"{color}*
    message. So it correct to assume that the message is infact sent to the queue.
    Here is the md bean that gets the message from the queue and process it
    @MessageDriven(activationConfig =
    @ActivationConfigProperty(propertyName="destinationType",
    propertyValue="javax.jms.Queue"),
    @ActivationConfigProperty(propertyName="destination",
    propertyValue="queue/requestmdb")
    public class RequestMessageDrivenBean implements MessageListener {
    @EJB
    private MSSessionEJBLocal ejbObj;
    public void onMessage(Message message) {
    try{
    System.out.println("Message recived ");
    if(message instanceof MapMessage) {
    System.out.println("This is a instance of MapMessage");
    MapMessage mMsg = (MapMessage) message;
    long rId = mMsg.getLong("request");
    List<Request> rList = ejbObj.getRequestById(new Long(rId));
    System.out.println("rList size is " +  rList.size());
    for(Request r: rList) {
    //Does something and print something in logs
    System.out.println("Finsihed onMessage");
    }catch(Exception e) {
    System.out.println(e.getMessage());
    }    One thing to note here is that getRequestById is another method in the same session bean MSSessionEJB. Can that be the reason for not loading the request from the database when many concurrent request are present? Here is what it does
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public List<Request> getRequestById(Long id) throws Exception {
    System.out.println("Inside getRequestById id is " + id);
    return em.createNamedQuery("Request.findById")
    .setParameter("id", id)
    .getResultList();
    }    In the logs I do see
    {color:#800000}*"This is a instance of MapMessage"*{color}
    and I do see the correct Rid that was persisted before in the log
    *{color:#800000}
    "inside getRequestById id is 12"{color}*
    . Finally I do see
    *{color:#800000}
    "Finsihed onMessage"{color}*
    for all the request no matter how many are sent concurrently.
    *{color:#ff0000}Here is where the problem is . rList size is 1 for most of the cases but it returns 0 when the number of concurrent message exceeds 10.*
    *{color}*
    So you see there is no exception per se, just that entity does not get loaded from the database. I would like to mention this again, it does work properly when the number of concurrent request are less than 10. All the invocation of onMessage in MB are able to load the entity properly in that case. Its only when the number of concurrent request increases more than 10, the onMessage is unable to load the entity and the rList is 0.
    FYI I am using jboss-4.2.2.GA on RedHat enterprise linux 4 with jdk1.6.0_04
    Please let me know if there is more information required on this.
    Thank you

  • Short dump error for delta load to 0CFM_C10 via 0CFM_DELTA_POSITIONS flow

    hi all,
    i am getting short dump error for delta load to 0CFM_C10 via 0CFM_DELTA_POSITIONS flow.
    not able to figure out the actual issue and how to solve it.
    can anyone suggest?
    below is the details of the short dump
    Short text
        Exception condition "UNKNOWN_TRANSCAT" raised.
    What happened?
        The current ABAP/4 program encountered an unexpected
        situation.
    What can you do?
        Note down which actions and inputs caused the error.
        To process the problem further, contact you SAP system
        administrator.
        Using Transaction ST22 for ABAP Dump Analysis, you can look
        at and manage termination messages, and you can also
        keep them for a long time.
    Error analysis
        A RAISE statement in the program "CL_SERVICE_TRG================CP" raised the
         exception
        condition "UNKNOWN_TRANSCAT".
        Since the exception was not intercepted by a superior
        program, processing was terminated.
        Short description of exception condition:
        For detailed documentation of the exception condition, use
        Transaction SE37 (Function Library). You can take the called
        function module from the display of active calls.
    How to correct the error
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "RAISE_EXCEPTION" " "
        "CL_SERVICE_TRG================CP" or "CL_SERVICE_TRG================CM003"
        "SORT_TRANSACTIONS"
        or
        "CL_SERVICE_TRG================CP" "UNKNOWN_TRANSCAT"
        or
        "SBIE0001 " "UNKNOWN_TRANSCAT"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
        4. Details about the conditions under which the error occurred or which
        actions and input led to the error.

    Hi,
    It seems like some routine are there and check your rotines , transformation etc.
    Regards
    sivaraju

  • I just loaded the most recent FFox8, and gmail messages no longer load. All I get is an ad, and a blank. If I try to reply, a message says "cannot load rich text editor.

    gmail loads, but when I click on an email, the body is blank, except for a two-line text ad. I can see the source code via the menu selection.
    I tried to "reply" and see if I could read the attached email, but I got a message that said "cannot load the rich text editor"
    How can i get back the previous version of firefox?

    ''GMail entire message content missing (blank) after header title''
    In Firefox, if you have "Adblock Plus" extension.
    # "Ctrl+Shift+F" Preferences (or right click on ADP symbol, and choose preferences)
    # 'Filters' menu > "'''Update all subscriptions'''"
    reference: ''https://support.mozilla.com/questions/896267''

  • Cannot load mail - iCloud

    I receive the above message when logging in to iCloud beta. At first it said my password was incorrect, so I reset it and now when I log in it says 'cannot load mail'
    Also, when trying to retrieve my mail via my iPhone running iOS 5 beta, it says that my password is incorrect, even though I have changed it to the new one
    Any suggestions, or at least info on why this is happening/when it will be fixed?

    Ya...well... It's BEEN launched and a boat load of us can't get mail. All other cloud features work and logging in is NOT the issue. The mail IS! What's it going to take to fix it? More the question is WHEN?
    Super angry and disappointed in Apple. Projects shouldn't be launched until they WORK! Totally regret changing my account to cloud!

  • Cannot load EWA report

    Dear All,
    i have configure for EWA report but the report still not give reported for each satellite system in Solman. one week ago we receive msg from SAP that give us Red Alert for our Production systems, this mean that solution manager for EWA is working. but the problem is the report cannot load the EWA report for every systems in Solman. anyone can help me please...
    Thanks

    make sure you configured your satellite system properly in SMSY and the RFC are working, also the BACK RFC from satellite system to SolMan.
    Goto SDCCN in your satellite system and make sure that a EarlyWatch is scheduled which sends data to your SolMan SID (not OSS!!). This can only be achieved by having a "Request Session Data" Report which has a 10* session and not a Z* session.
    If this is not the case :
    1) delete your EarlyWatch Schedule in Satellite system via SDCCN
    2) unschedule your task processer
    3) make sure the installation number in SMSY (SolMan) is correct - same like in satellite system
    4) recreate via "Maintain service definitions" your SDCC_OSS connection
    5) reschedule the task processer job.
    6) recreate a new EarlyWatch Alert for Solution Manager which sends data to your SolMan.
    If you have defined your SolMan as the Master for SDCCN (done via SMSY / Menue: Environment / Solution Manager Operation /  Administer SDCCN) you just have to schedule "EarlyWatch" instead of 6., this should automatically generate "EarlyWatch Alert for Solution Manager "
    HTH
    Nesimi

  • Decimals cut off loading into Essbase via DIM

    Have you ever run into the issue of small numbers (9 decimals) getting cut off/rounded when loading into Essbase via DIM? When I try to load rates into my Essbase app via DIM they get cut off at 6 decimals even the though the entire rate is 9. For instance, the rate 0.752615338 coming out of the source gets stored in the target as 0.752615. Also, if a load a text file with the 9 digit rate into my target app via DIM it STILL gets cut off. Therefore, I've isolated the issue to the loading of data into the target. I cannot modify the precision, however, for my target. Any thoughts?

    Ha ha!  Oy!  It's like having bees live in your head.  You are correct Russ!  iTunes 11.2.1.  Thanks.  I went to verify the release number and looked right at iTunes and my fingers typed Safari.  Funny how that works.  Back to work!

  • Management Portal unavailable - "cannot load management data for this resource type"

    Noticing that with the exception of virtual machines, every resource type in the (non preview) Azure Management Portal is showing a sad pink icon and the help text "cannot load management data for this resource type."
    So that's a near total portal outage for us. Anybody else experiencing this?
    I've attempted to open a ticket with developer support but I'm not sure if that's the right channel.
    Brian

    Hi Brian,
    Thanks for your posting!
    From Dashboard shown (http://azure.microsoft.com/en-us/status/#history), Currently, the Azure portal works fine in every regions.
    So I suggest you can submit a tick via this channel:
    http://www.windowsazure.com/en-us/support/contact/
    Also, you can click your right-top account name and select the "Microsoft Support" item to create free ticket.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cannot load certain websites, cannot find fix

    I've noticed I cannot load 2 specific websites through Firefox: www.bankofinternet.com and www.quiksilver.com
    these sites will not load in any other browser on my computer as well. I've tried loading the pages directly & through google search. I've tried deleting cookies and history and cache, restarting computer.
    all other webpages open.

    Does it work via Google Translate with a random source language?
    *http://translate.google.com/translate?hl=en&sl=fr&tl=en
    Try to disable IPv6.
    * http://kb.mozillazine.org/Error_loading_websites#IPv6
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Firefox > Preferences > Privacy > Cookies: "Show Cookies"

  • Firefox cannot load certain websites and I've tried all suggested options to fix the problem.

    I cannot load certain websites (my bank, some public/civic offices, etc.) on Firefox or Internet Explorer (I usually use Firefox) and have tried all the suggested options in Firefox Help to remedy this problem: clearing cache and cookies, making sure no proxy is selected, allowing cookies). How do I fix this? I use a broadband internet connection that is shared.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • PLS-00907: cannot load library unit

    I have a problem with a stored procedure that runs via cron to insert records into a large partitioned table. This was running fine until a week back it stopped working.
    The error it mentioned during execution is
    PLS-00907: cannot load library unit
    MET.CLINICAL_DATA (referenced by MET.INSERT_CLINICAL_DATA)
    MET is the owner of the CLINICAL_DATA table and the INSERT_CLINICAL_DATA procedure. This procedure is run by a user called MET_USER who has an execute privilege on MET's INSERT_CLINICAL_DATA and its tables.
    So what might have caused this error. I did spend atleast 2 hours looking in the metalink and as those articles mentioned, I am neither using a database link here nor I am calling a remote procedure.
    Any thoughts?
    Thanks

    355099,
    No, not to my knowledge. But I do have another stored procedure that also runs everyday that has got DDL statements on the CLINICAL_DATA table. Some of the DDLs in that are ----
    execute immediate 'alter table clinical_data drop partition part' || part_rec_l.id || ' update global indexes';
    execute immediate 'alter table clinical_data split partition ' || 'last_values at ( ''' || (temp_day_l * ms_per_day_l)|| ''') into (partition part' || new_id_l
    || ', partition last_values) update global indexes';
    execute immediate 'alter table clinical_data modify partition '|| 'part' || new_id_l || ' rebuild unusable local indexes';
    execute immediate 'alter table clinical_data modify partition ' || 'last_values rebuild unusable local indexes';
    Thank you

  • Error: cannot load library unit CTXSYS.CTX_CONTAINS

    Anyone know what might be causing this error when doing a query that uses CONTAINS?
    It was working fine, then suddenly stopped working
    [Oracle][ODBC][Ora]ORA-29900: operator binding does not exist ORA-06540: PL/SQL: compilation error ORA-06553: PLS-907: cannot load library unit CTXSYS.CTX_CONTAINS (referenced by CTXSYS.CONTAINS)

    Could you please explain what you mean by recompile packages?
    Sorry - new to Oracle - I'm playing with an Eval and running on NT.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Hernan Mejia ([email protected]):
    may be your packages corrupts, I haved a similar problem try to recompile and look for the status of your packages<HR></BLOCKQUOTE>
    null

Maybe you are looking for