Keyword ALL errors

Hi,
I am working with BPC 7.0 SP7 . We have created data manager packages to load data from one application to another application. For this, we have implemented the BADI "DAPP" . To select the dataset to be copied to the destination app we are using the XDIM_MEMBERSET keyword. When we want to select all members of dimension, we cannot use the following statement :
*XDIM_MEMBERSET = <ALL>
The <ALL> keyword seems not to work. Is there any note that solves this issue ? As a workaround we are using the BAS () statement.
Also we have prompts in the dynamic script, for which the users can select a time period. When the user selects <ALL> in the prompt, the package seems to select no data, however there is data available for some time periods. The package does select data when the user selects a specific time period. For other dimensions in the prompt, the <all> keyword does work.
Any notes available that solves issues with the <ALL> keyword (bpc 7.0 sp7) ?
Kr,
Wouter

Hi,
If you haven't provided any scope, the system executes the logic for all base members. So there is no need for specifiying <ALL> in the logic and it is not possible too.
So your work is easy now, specify only the the dimensions where need to restrict rest will be for all basemembers.
Regarding execution with package, you cant have <ALL> for all the prompts in the package. i.e if you have only Time as a prompt in your package, you need to enter some value for that.
If you have 2 or more prompts you can execute the logic with ALL in all prompts except for any one prompt where you need to select some values.
Hope this helps,
Regards,
G.Vijaya Kumar

Similar Messages

  • Itunes wont open at all, error message : quicktime was not found .... please reinstall ... i did that but no luck this only seems to have happened since the 10.4 update, im on windows 7 ..

    itunes wont open at all, error message : quicktime was not found .... please reinstall ... i did that but no luck this only seems to have happened since the 10.4 update, im on windows 7 ..

    Can you start QuickTime on your computer?
    You'll probably have to search for the Windows Installer Cleanup Utility and use it to remove QuickTime Player and iTunes. Then download and install the iTunes again.

  • Bw report to show all error message from an infopackage

    Dears Experts,
    I am looking for a way to analyze within a BW reports (a specific one or already existing in a BI content) all errors messages generated by an infopackage and stored within the status field of a PSA. Does someone have any feedbacks or ideas on that?
    Thanks in advance,
    LL

    Thanks Sam,
    And how to retrieved detailled message regarding each wrong status?
    LL

  • Excel 2007 = Refresh All = Error Message "Initialization Data Source Failed"

    Excel 2007 => Data Tab - Refresh All => Error Message "Initialization Data Source Failed
    2nd Error message:
    The following data ranged failed to refresh:  ExternalData1 - Continue to refresh all
    How do I resolve this? Trying to connect to Oracle DB environment 12C

    What will happen if you rebuild the PivotTable/Table ?
    Make sure the external database is available and the Oracle Provider for OLE DB is installed correctly.
    Wind Zhang
    TechNet Community Support

  • How can i set a global error page for all error cod

    how can i set a global error page for all error code?
    i don't want to leave a long list in the web.xml file.could any one help me?
    thanks

    If u have a common Error JSP named as ErrorPage.jsp
    You need to have the following piece of code in the JSP as :
    <%@ page isErrorPage ="true"%>
    This makes it as the Common Error Page for the Application. Now all you need to do is from other JSP's throw the Exception to teh container. The container will redirect to this Page and process accordingly.
    Thanks and regards,
    Pazhanikanthan. P

  • Catch all error information while validating xml content with xsd schema

    Hi experts,
    I created a java mapping to validating the input xml content with xsd schema (schema validation). What I want is to catch all error message to the xml not just the first error. I used SAXParser in sapxmltoolkit.jar to do the schema validation. The below is a part of my java mapping.
    XMLReader parser = XMLReaderFactory.createXMLReader("com.sap.engine.lib.xml.parser.SAXParser");
    parser.setFeature( "http://xml.org/sax/features/validation" ,  true);
    parser.setFeature( "http://apache.org/xml/features/validation/schema" , true);
    parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage", "http://www.w3.org/2001/XMLSchema");          parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaSource",this.getClass().getClassLoader().getResourceAsStream(schema)); // schema is my schema name
    parser.setErrorHandler(new ParseErrorHandler()); // ParseErrorHandler is my own ErrorHandler which extends DefaultHandler
    parser.parse(new InputSource(new ByteArrayInputStream(sinput.getBytes())));
    // In error handler, I comment all code so as not to throw any exception
    public class ParseErrorHandler extends DefaultHandler
         public void error(SAXParseException e) throws SAXException
              // sSystem.out.println("Error" + e.getMessage());
              // throw e;
         public void fatalError(SAXParseException e)
              // throw e;
              // System.out.println("SAP Fatal Error" + e.getMessage());
    Unfortunately the program always stopped while catching the first error. Check the below log.
    com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException:
    ERRORS :
    cvc-simple-type : information item '/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]/:AddressInformation[1]/:CityName[1]' is not valid, because it's value does not satisfy the constraints of facet 'minLength' with value '1'.
    cvc-data : information item '/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]/:AddressInformation[1]/:CityName[1]' is is not valid with respoct to the corresponding simple type definition.
    cvc-element : element information item '/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]/:AddressInformation[1]/:CityName[1]' is associated with invalid data.
    cvc-element : element information item '/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]/:AddressInformation[1]' is not valid with respect to it's complex type definition..
    cvc-element : element information item '/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]' is not valid with respect to it's complex type definition..
    cvc-element : element information item '/:ShipNotice[1]/:Header[1]/:To[1]' is not valid with respect to it's complex type definition..
    cvc-element : element information item '/:ShipNotice[1]/:Header[1]' is not valid with respect to it's complex type definition..
    cvc-element : element information item '/:ShipNotice[1]' is not valid with respect to it's complex type definition..
    -> com.sap.engine.lib.xml.parser.ParserException:
    I tried using Xerces and JAXP to do validation, the same error happened. I have no idea on this. Does xi has its own error handler logic? Is there any body can make me get out of this?
    Thanks.

    <h6>Hi experts,
    <h6>
    <h6>I created a java mapping to validating the input xml content with xsd schema (schema validation). What I want is to catch all <h6>error message to the xml not just the first error. I used SAXParser in sapxmltoolkit.jar to do the schema validation. The below <h6>is a part of my java mapping.
    <h6>XMLReader parser = XMLReaderFactory.createXMLReader("com.sap.engine.lib.xml.parser.SAXParser");
    <h6>parser.setFeature( "http://xml.org/sax/features/validation" ,  true);
    <h6>parser.setFeature( "http://apache.org/xml/features/validation/schema" , true);
    <h6>parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage", "http://www.w3.org/2001/XMLSchema");          <h6>parser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaSource",this.getClass().getClassLoader().getResourceAsStream(schema)); <h6>// schema is my schema name
    <h6>parser.setErrorHandler(new ParseErrorHandler()); // ParseErrorHandler is my own ErrorHandler which extends Default Handler
    <h6>parser.parse(new InputSource(new ByteArrayInputStream(sinput.getBytes())));
    <h6>
    <h6>// In error handler, I comment all code so as not to throw any exception
    <h6>public class ParseErrorHandler extends DefaultHandler
    <h6>{
    <h6>     public void error(SAXParseException e) throws SAXException
    <h6>     {
    <h6>          // sSystem.out.println("Error" + e.getMessage());
    <h6>          // throw e;
    <h6>     }
    <h6>
    <h6>     public void fatalError(SAXParseException e)
    <h6>     {
    <h6>          // throw e;
    <h6>          // System.out.println("SAP Fatal Error" + e.getMessage());
    <h6>
    <h6>     }
    <h6>
    <h6>}
    <h6>
    <h6>Unfortunately the program always stopped while catching the first error. Check the below log.
    <h6>
    <h6>com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException:
    <h6>ERRORS :
    <h6>cvc-simple-type : information item <h6>'/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]/:AddressInformation[1]/:CityName[1]' <h6>is not valid, because it's value does not satisfy the constraints of facet 'minLength' with value '1'.
    <h6>cvc-data : information item <h6>'/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]/:AddressInformation[1]/:CityName[1]' <h6>is is not valid with respoct to the corresponding simple type definition.
    <h6>cvc-element : element information item <h6>'/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]/:AddressInformation[1]/:CityName[1]' <h6>is associated with invalid data.
    <h6>cvc-element : element information item <h6>'/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]/:AddressInformation[1]' <h6>is not valid with respect to it's complex type definition..
    <h6>cvc-element : element information item <h6>'/:ShipNotice[1]/:Header[1]/:To[1]/:PartnerInformation[1]' <h6>is not valid with respect to it's complex type definition..
    <h6>cvc-element : element information item <h6>'/:ShipNotice[1]/:Header[1]/:To[1]' <h6>is not valid with respect to it's complex type definition..
    <h6>cvc-element : element information item <h6>'/:ShipNotice[1]/:Header[1]' <h6>is not valid with respect to it's complex type definition..
    <h6>cvc-element : element information item '/:ShipNotice[1]' is not valid with <h6>respect to it's complex type definition..
    <h6> -> com.sap.engine.lib.xml.parser.ParserException:
    <h6>
    <h6>
    <h6>I tried using Xerces and JAXP to do validation, the same error happened. I have no idea on this. Does xi has its own error <h6>handler logic? Is there any body can make me get out of this?
    <h6>Thanks.

  • Catching all errors

    Hi
    is there a way to catch all errors, I know you can do try and
    catch fro your code
    about how about errors that come from built in Flex component
    I am trying to catch all errors and show it to the user in
    better format
    but most important, it seems flex will be frozen and you can
    do anything if the error is not caught and the only way around it
    to restart your browser
    Please help
    Thanks
    Kasem

    Everything I read suggests that this isn't possible in Flex.
    It seems that uncaught exceptions are handled by the Flash player.
    This link discusses the problem in Flex 1.5 and it notes the
    problem is not fixed in Flex 2.
    http://www.mail-archive.com/[email protected]/msg25874.html
    I'm going to continue to look. I really can't imagine that
    Adobe spent all that time reworking Flex and didn't address this
    problem.

  • Error Handling - displaying Error on ALL error events

    I am trying to set up a global error handling page error.cfm so that whenever any error at all occurs I can display my error.cfm page.
    At first I tried the following in the application.cfm page, and then ran a page that tried to output a variable that did not exist, and it seemed to work:
    <cferror type = "EXCEPTION" exception = "any" template = "error.cfm">
    But then it just decided not to work, so I added these
    <cferror type = "REQUEST" template = "error.cfm">
    <cferror type = "VALIDATION" template = "error.cfm">
    Is there a way to make sure that all errors are handled? Am I right in putting all 3 of these in the application.cfm or do I need more (or less?)
    Thanks
    Mark

    It just didn't react to the error, by going to error.cfm, it just threw out the usual CF error as if I had not added CFERROR
    With those 3 statements in there is seems to work, but I wanted to make sure that no matter what error occurs it's going to hit the error.cfm

  • IDoc acknowledgement with all error messages

    We are getting one IDoc in SAP from middleware and after it is processed we need to send acknowledgement back to sender system with all the messages in IDoc.
    I tried with ALEAUD msg type, but it seems it only send IDoc last status.
    However, requirement is to send back all error messages which came during IDoc processing to sender system, can any1 please suggest?

    Hi Hans,
    The list of all error messages is in the file ErrorMessages_en.properties.
    If you have SDK installed then this file for base ME is located in Base ME Resources/resources/properties.
    For customizations - Global Configuration/Properties
    Thanks
    Ivan

  • SQL loader - ignore all errors

    Hi,
    If I want to ignore all errors in when using the SQL loader what command do I use?
    ERRORS= ?
    I know I could use a high number but is there a better way to do this? what about NULL?
    regards
    M

    I know I could use a high number but is there a better way to do this? what about NULL?No there is no better way: "To specify that all errors be allowed, use a very high number."
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96652/ch04.htm#1004769

  • Write All Error Messages

    Hi Folks,
    I have developed an application using JBuilder that works perfectly in the JBuilder environment (i.e. without any errors).
    The application purpose is iterative (doing the same thing many times), using Threads and large internet connection.
    Now, I have created an executable and it runs to a certain point then BANG... it fails. The failure is simply that the window freezes.
    QUESTION: Is it possible to capture all error messages into a log file generated by the application? Pref, via text file.
    I know how to create a text file and am familar with the text file handling. However, I am not familar in how to set the application to dumb anything there.
    In addition :- Is there any way to check the error messages through the JSE (Java development environment).
    Thanks for you time in reading this message and I would appreciate any help anyone is able to give.
    Kind regards
    Angus

    Steve & Ryan,
    Thanks for your response, much appreciated. I have one or two followup points.
    My application currently uses extensively try & catch and in every catch there is a method call that writes the output to a log file.
    My issue is that running the application in JBuilder it works fine. However running the application as an executable it crashes after a short time. The issue find exactly what code is causing the issue.
    In JBuilder if I dont catch the error, it throughs the error out in the execution panel. I was wondering if there exists any such log/panel for applications being executed, or if I can program my application to always dump into a file if it crashes.
    Saying all this... I think I have found the issue. I have installed two versions of Java Runtime Environments. Could this be the issue?
    I have the application running again to see if this time it ends. It takes 4 hours to complete and crashes have been occuring randomly.
    Keeping my fingers crossed.
    Kind regards
    Angus

  • Project PSI API checkoutproject is causing exception :LastError=CICOCheckedOutToOtherUser Instructions: Pass this into PSClientError constructor to access all error information

    Hi,
    I'm trying to add a value to the project custom field. After that I'm calling the checkout function before the queueupdate and queuepublish. While calling the checkout  the program is throwing exception as follow:
    The exception is as follows: ProjectServerError(s) LastError=CICOCheckedOutToOtherUser Instructions: Pass this into PSClientError constructor to access all error information
    Please help me to resolve this issue.  I have also tried the ReaProjectentity method i nthe PSI service inrodr to find that project is checked out or not  . Still  the issue is remains . Anyone please help me for this
    flagCheckout = IsProjectCheckedOut(myProjectId);
                        if (!flagCheckout)
                            eventLog.WriteEntry("Inside the updatedata== true and value of the checkout is " + flagCheckout);
                            projectClient.CheckOutProject(myProjectId, sessionId, "custom field update checkout");
    Regards,
    Sabitha

    Standard Information:PSI Entry Point:
    Project User: Service account
    Correlation Id: 7ded1694-35d9-487d-bc1b-c2e8557a2170
    PWA Site URL: httpservername.name/PWA
    SSP Name: Project Server Service Application
    PSError: GeneralQueueCorrelationBlocked (26005)
    Operation could not completed since the Queue Correlated Job Group is blocked. Correlated Job Group ID is: a9dda7f4-fc78-4b6f-ace6-13dddcf784c5. The job ID of the affected job is: 7768f60d-5fe8-4184-b80d-cbab271e38e1. The job type of the affected job is:
    ProjectCheckIn. You can recover from the situation by unblocking or cancelling the blocked job. To do that, go to PWA, navigate to 'Server Settings -> Manage Queue Jobs', go to 'Filter Type' section, choose 'By ID', enter the 'Job Group ID' mentioned in
    this error and click the 'Refresh Status' button at the bottom of the page. In the resulting set of jobs, click on the 'Error' column link to see more details about why the job has failed and blocked the Correlated Job Group. For more troubleshooting you can
    look at the trace log also. Once you have corrected the cause of the error, select the affected job and click on the 'Retry Jobs' or 'Cancel Jobs' button at the bottom of the page.
    This is the error I'm getting now while currently calling the forcehckin, checkout and update. Earlier it was not logging any errors.From this I'm not able to resolve as i cannot filter with job guid

  • All errors in Nokia 5500

    I am going to type here all errors(and invite everybody to do it, only if you sure that it is a error), that i have found in my nokia 5500 to ask Nokia to improve it's firmware.
    /Some of them is quating from forum/
    1. When you press and hold the meny button on Nokia 5500 it shows the programs that are running in the phone, and when i press it, it shows the standby menu and sports. Is this correct? Shouldnt it just be the standby menu? When i try to turn off the sports menu, the phone says "Exit sports?" and i press Yes and nothing happens, it´s still on!
    Is this a firmware error?
    It drains my battery! Less than 48hr standby!
    The only thing that I found how to close it is so:
    To turn off the sports mode:
    1.Connect the phone to ur PC with the USB cable
    2.Select Data transfer
    3.All applications are closed
    4.Voila! Even the sports mode is closed
    5.Disconnect the usb cable
    6.Take care not to activate it again using the swap button, else u have to do the perform the above steps again
    But this mistake is not good for such firm as Nokia!
    2. my keypad's falling off too after visiting service.
    I'm very disappointed, as I'm a sturdy Nokia customer, coming straight from the 5140.
    Is there a representative from Nokia that can give us an answer on what is going to be done with this design fault, and if it can be repaired properly, or if we should choose another phone model??? Must I pay money to buy it, or Nokia will recall it's phone free or change to another? I am a student and I can't pay money every month to glue it's keypad!
    3 It is not comfortably to change every time my language to another (to Russian, for example) to find contacts in my contact-list and to English to write sms. (sms in another language than English are shorter and costs more). May you in new versions of firmware to make in every program it's own default language and to make possibility to choice it by user (myself)? Or to make search in contact-list in English and Russian at one time, like this: if I press key "5" on my keyped, the search starts for contacts, starting with letter "j" and ALSO from Russian letter, that has printed on the keypad on the same key("5").
    4. It will be very pleasant if I could in "speed dial" to call not only phones, but also to run my phones applications.
    5. To change time-duration when I can read a new message(that has come to my phone second ago) without unlocking my keypad to longer period.
    I will be very glad if you inform could I hope to see this improvement in new firmware versions?
    With best regards, Ilya Polyakov.

    Except the keypad issue (which is solved by Nokia FREE under warranty) you're not listing ANY errors.
    Nokia 5500 ~ v04.60 on Vodafone NL
    Consultant/Developer

  • Keyword list errors

    My keywords were part of my import from Elements into LR2.  Some where in the process I developed some keyword errors.
    I have one keyword that shows 59 photos in the keyword list, a sub category with 5 photos and a sub-sub category with 2 photos.  All categories and subs have the same name.  When I use the Library filter I can find only 49 photos.  When I click on the arrow to the right of any of the keywords 49 photos are shown, not the 59 /5/2 listed.
    How can I correct this problem?

    This is a long-standing bug in LR on Windows -- the Keyword List pane is limited to showing about 1600 keywords.  A workaround is to introduce more hierarchy into your keywords and keep most of the parent keywords collapsed.
    You could submit a bug report to the new Adobe feedback site:
    http://feedback.photoshop.com/photoshop_family/products/photoshop_family_photoshop_lightro om
    (There may already be a bug report there on this topic, but I couldn't find it.  It's perfectly ok, and preferrable, to submit a new one and let Adobe merge it with an existing one if they can find it.)

  • Hi All,Error while creating a file in EMIGALL

    Hi All,
            When am creating a File name in Data import screen.
    The process which i had done is :
    I had copied the Migration object DEVICE from std SAP to my company ZTEST and generated the report for this from menu option Migration object --> Generate Report . After that i had selected the option Data import from the same menu option .
    In the Data import screen i had selected radibutton Batch Wrork porc and in the Import file tab i had given the file name as DEVICE.ZDE and pressed the create .When i pressed create the following message  is appearing :
    "Error Opening the file DEVICE.ZDE" .
    if I see the detailed help it is showing the following message :
    Error opening file DEVICE.ZDE
    Message no. EM022
    Diagnosis
    File DEVICE.ZDE could not be opened.
    Procedure
    Check the file name and ensure that the file is not being used in another way.
    pls provide me the solution for the above Issue ASAP.
    regards,
    Bharat

    Hi Bharat,
    First of all make sure that Device file is of .txt with tab deliminated format, before uploading this file please close this file and try. Still if you are facing the same problem then let me know.
    Regards,
    Shailesh

Maybe you are looking for

  • Vendor Change - Specific fields

    Hi Guys, We have to give users access to only specific fields of the vendor master like Email, Bank Account number and Payment Methods. So the users should not be able to change any other fields in the vendor master. I want to create a new role and g

  • KE5Z:Profit Center actual line items report.

    Hello gurus, Points available. I need some clarification on the following issue. I just ran tcode KE5Z. In my report I see that any posting to any of my COGS accounts are flowing to a Dummy Profit Center that I created previously. My question is this

  • Self join please help

    I would be very grateful if someone would show me show to use the self join, I understand what is does but just don't know how to use it. I have a question from a exercise but no answer so I can't check it the question is - using temporary labels to

  • Saved files will not load Premiere Elements 8

    I have a Sony Vaio laptop I purchased in 2011, running Windows 7. Preinstalled on the computer was Premiere Elements 8 so I have been editing a video I recorded using this software, December 31, 2014 was the last time I edited the video until yesterd

  • Linked server error

    When I run below query its giving error:    SELECT * FROM [P3FI.WORLD]..[ADHOC].[V_POSITION_FW] Msg 7356, Level 16, State 1, Line 1 The OLE DB provider "OraOLEDB.Oracle" for linked server "P3FI.WORLD" supplied inconsistent metadata for a column. The