Simulation version Error - Message no. C2323

Dear Experts,
I'm trying to create simulation version from operative project.
I'm getting the following error even though I have maintained settlement rule.
Settlement rule contains errors and has not been saved
Message no. C2323
Diagnosis
You use a strategy and/or default rule to automatically determine settlement rules for orders/networks.
The system has determined a settlement rule for NWA #46 according to the defined strategy and/or default rule. However, when checking this settlement rule, an error appeared.
This error may occur, for example, when you want to create a settlement rule for the superior WBS element, because due to a user status on the WBS element, this is not allowed.
System Response
The settlement rule is not saved due to the error.
Procedure
Maintain the settlement rule manually for NWA #46, and check the strategy and/or default rule used.
Please help.
Regards,
VINOD.V

below is the settlement strategy parameter for network
Manual maintenance of settlement rule
1   Automatic generation of settlement rule
2   Generate settlement to WBS element
3   Copy settlement rule of the WBS element
4   Copy settlement rule of the project definition
5   No settlement rule
then assign strategy to PSP/PS1
assign network settlement profile to network type as zps1,2,3,4&5
so just configure the strategy according to suitability then run simulation.
Regards,
Sanjeev

Similar Messages

  • "Invalid DOS version" error message when installing Tomcat in Windows98

    I tried to install Tomcat 5.0 in Windows 98. At first, it produced "Out of Environment Space" error message. I then changed the "Initial Environment" from Auto to other values (bigger than 2816) for both startup.bat and shutdown.bat.
    When I restarted the Tomcat, it produce "Invalid DOS version" error message. I thought about updating the DOS but previously when I had WinXP installed in computer, I couldn't access to the server due to the dos version issue.
    Is there any way to handle this? I would really appreciate the help:) Thank you very much..

    no, use the serial number listed on the page where you downloaded acrobat 7, not your acrobat serial number

  • Wrong CAP file version error message

    I'm trying to write a loader application that will send a CAP file into JavaCard, and then install it automatically.
    I have developed my JavaCard Applet by using Eclipse3.1.0 and JCOP30.
    After running my JavaCard Applet by Eclipse, I got its CAP file in folder [b\bin\FVSCardPkg\javacard\[/b]
    But when I run my loader application with this CAP file, the error message will display:
    EX: msg Wrong CAP file version, class class com.ibm.jc.JCException
    Wrong CAP file version
         at com.ibm.jc.CapFile.parseHeader(Unknown Source)
         at com.ibm.jc.CapFile.readCapFile(Unknown Source)
         at com.ibm.jc.CapFile.<init>(Unknown Source)
         at LoaderPkg.loader.load(loader.java:35)
         at LoaderPkg.loader.main(loader.java:20)
    This is my loader application source code:
    import java.io.*;
    import com.ibm.jc.*;
    import com.ibm.jc.terminal.*;
    *  Sample /**
    *  Sample loader. Demonstrates how to use the offcard API to download
    *  a cap-file on a JCOP41V22 Engineering sample card and listing of applets loaded will
    * follow.
    public class loader{
         private final static String termName = "pcsc:4"; // Real card
    //     private final static String termName = "Remote"; // Simulator
         protected static final byte[] JCOP_CARD_MANAGER_AID = { (byte) 0xa0, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00};
         protected static final byte defaultInstallParam[] = { -55, 0 };
         static String[] capFileName={"D:/MyCardPkg.cap"};
         public static void main(String[] args){
              try{
                   loader l = new loader();
                   l.load();
              }catch(Exception e){
                   System.err.println("EX: msg " + e.getMessage() + ", class " + e.getClass());
                   e.printStackTrace(System.err);
              System.exit(0);
              //Likewise for simulation, be patient the port takes time to close.
              //Use command line "netstate" to check the disapperance of the port before
              // activating JCShell command to read the simulated card.
         private loader(){}
         private void load() throws Exception{
              CapFile capFile = new CapFile(capFileName[0], null);
              System.out.println("Package name: " + capFile.pkg);
              byte[][] applets = capFile.aids;
              if ((applets == null) || (applets.length == 0)){
                   throw new RuntimeException("no applets in cap file");
              // Get connection to terminal, take note that jcop.exe is required to be activated
              // in simulation mode.
              System.out.println("Open terminal ...");
              //Make sure that the simulator jcop.exe is activated before unmarking this satement
              //Remember to delete the downloaded applet before running otherwise error is
              //expected if the simulator finds the existence of the applet with the
              //same pakage name ID and AID
              //Issue /close command at "cm" prompt if the card is in use,, ie it should
              //have "-" prompt. Be patient that the port takes time to close. Use command line
              //"netstate" to check the disapperance of the port before running.
              // pcsc:4=Card Terminal  Or  Remote=LocalHost Terminal
              JCTerminal term = JCTerminal.getInstance(termName, null);
              //For real JCOP41V22 card, please unmark this statement and delete the downloaded
              //applet before running. Error expected if the card finds the existence of the applet
              //with the same pakage name ID and AID
              //Issue /close command at "cm" prompt if the card is in use,, ie it should
              //have "-" prompt.
              term.open();
              // Add in this statement for real card which requires some response time
              term.waitForCard(5000);
              // Create a logging terminal spitting out the APDUs on standard out
              TraceJCTerminal _term = new TraceJCTerminal();
              _term.setLog(new PrintWriter(System.out));
              _term.init(term);
              term = _term;
              // Get JavaCard representative, passing NULL resets card and returns ATR
              System.out.println("Get card ...");
              JCard card = new JCard(term, null, 2000);
              // Get the off-card representative for the card manager and use it to
              // select the on-card CardManager
              System.out.println("Select card manager ...");
              CardManager cardManager = new CardManager(card, CardManager.daid);
              cardManager.select();
              // For downloading something, we have to be authenticated to card manager.
              // For this, the keys must be set. The keys to use should of course
              // be configurable as well.
              byte[] dfltKey = c2b("404142434445464748494a4b4c4d4e4f");
              cardManager.setKey(new OPKey(255, 1, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(255, 2, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(255, 3, OPKey.DES_ECB, dfltKey));
              cardManager.setKey(new OPKey(1, 1, OPKey.DES_ECB, c2b("707172737475767778797a7b7c7d7e7f")));
              cardManager.setKey(new OPKey(1, 2, OPKey.DES_ECB, c2b("606162636465666768696a6b6c6d6e6f")));
              cardManager.setKey(new OPKey(1, 3, OPKey.DES_ECB, c2b("505152535455565758595a5b5c5d5e5f")));
              System.out.println("init Update ...");
              cardManager.initializeUpdate(255,0);
              System.out.println("Authenticate to card manager ...");
              cardManager.externalAuthenticate(OPApplet.APDU_CLR);
              // And load the cap-file, do not forget to call installForLoad
              System.out.println("Loading cap-file ...");
              byte[] cardManagerAid = cardManager.getAID();
              cardManager.installForLoad(capFile.pkgId,0, capFile.pkgId.length, cardManagerAid, 0, cardManagerAid.length, null, 0, null, 0, 0, null, 0);
              cardManager.load(capFile, null, CardManager.LOAD_ALL, null, cardManager.getMaxBlockLen());
              byte[] capaid = capFile.aids[0];
              System.out.println("Finished loading !");
              // Install applet, we try to install the first applet given in the
              // cap file, and try to instantiate it under the same AID as given for its
              // representation in the cap file. No installation data is passed.
              System.out.println("Installing applet ...");
              cardManager.installForInstallAndMakeSelectable(capFile.pkgId, 0, capFile.pkgId.length, capaid,0, capaid.length, capaid, 0, capaid.length, 0, defaultInstallParam, 0, defaultInstallParam.length, null, 0);
              System.out.println("Install succeeded!");
              // synchronize state with on-card card manager
              System.out.println("Update!");
              cardManager.update();
              // Print information regarding card manager, applets and packages on-card
              JCInfo info = JCInfo.INFO;
              System.out.println("\nCardManager AID : " + JCInfo.dataToString(cardManager.getAID()));
              System.out.println("CardManager state : " + info.toString("card.status", (byte) cardManager.getState()) + "\n");
              //Echountered error 6A 86 with this statement:Object[] app = cardManager.getApplets(CardManager.GET_APPLETS,
              //CardManager.CVM_FORMAT_HEX, true);
              //Solved the bug by playing the integers in arg0 and arg1.
              Object[] app = cardManager.getApplets(1, true);
              if (app == null) {
                   System.out.println("No applets installed on-card");
              } else {
                   System.out.println("Applets:");
                   for (int i = 0; i < app.length; i++) {
                        System.out.println(info.toString("applet.status", (byte) ((OPApplet) app).getState()) + " " + JCInfo.dataToString(((OPApplet) app[i]).getAID()));
              // List packages on card
              // Encountered error with this statement:Object[] lf = cardManager.getLoadFiles(CardManager.CVM_FORMAT_HEX, true);
              // Solved the bug by setting arg0 = 0,
              Object[] lf = cardManager.getLoadFiles(true);
              if (lf == null) {
                   System.out.println("No packages installed on-card");
              } else {
                   System.out.println("Packages:");
                   for (int i = 0; i < lf.length; i++) {
                        System.out.println(info.toString("loadfile.status", (byte)((LoadFile) lf[i]).getState()) + " " + JCInfo.dataToString(((LoadFile) lf[i]).getAID()));
              term.close();
         static String numbers = "0123456789abcdef";
         private byte[] c2b(String s) {
              if (s == null) return null;
              if (s.length() % 2 != 0) throw new RuntimeException("invalid length");
              byte[] result = new byte[s.length() / 2];
              for (int i = 0; i < s.length(); i += 2) {
                   int i1 = numbers.indexOf(s.charAt(i));
                   if (i1 == -1) throw new RuntimeException("invalid number");
                   int i2 = numbers.indexOf(s.charAt(i + 1));
                   if (i2 == -1) throw new RuntimeException("invalid number");
                   result[i / 2] = (byte) ((i1 << 4) | i2);
              return result;
    How to solve this problem?
    Thank you in advance.

    I'm not understanding if your cap file is in "b\bin\FVSCardPkg\javacard\", then why are you loading "D:/MyCardPkg.cap"?
    The issue isn't with your off card application, but the cap file version. Look at the cap file components in JCVM specification. I believe it's the Header component. The major, minor should match your card but not greater. In other words, your can't load a 2.2 on a 2.1 card, but a 2.1 can load on a 2.2

  • "uses a file type that is blocked from opening in this version" error message when opening a *.doc file with Word already running

    Several customers running different versions of Office 2011 (14.4.1-14.4.5) on OSX varying from 10.7.5 to 10.9.5, running on various kinds of hardware (iMac/MacBook Pro/MacBook Air) of various ages are having issues opening *.doc files if the Word is already open. The error message that gets displayed is, "XXXX.doc uses a file type that is blocked from opening in this version"
    When the customer tries to open the same file via File-Open, she gets "The file is locked for editing. you can open the file as read-only".
    When trying to do so, she gets "Word cannot open this document. The document might be in use, the document might not be a valid Word document, or the file name might contain invalid characters".
    If Word gets Force-quit, the same document opens without any problems.
    1. Repairing Disk permissions was ran several times. and the volume was found to be OK.
    2. I have noticed that in this scenario either deleting the normal.dotm or com.microsoft.word.plist (~/Library/Preferences) sometimes resolves the issue, sometimes it doesn’t. There is no pattern to follow. All versions of Office are affected, the fully updated and the non-updated ones.
    3. I have tried completely removing the suite using Office 2011 Uninstall.app and/or Remove Office 2011 Uninstaller.pkg, then going through customer's library and manually removing all the Office references.
    4. None of these systems had Office 2008 in the past.
    Any help will be greatly appreciated.

    Reboot both the Mac and the server. Word opens .DOC files and Excel opens .XLS files. As you have found out by copying the files to the computer. It is the connection between the 2 computer that is causing the error.

  • Strange newer FCP version error message when opening project

    I'm working on a large (500+ hours) project that I have divided into seperate Final Cut projects so that I can load the sequences without waiting 10 minutes for the masterclips project to open. Lately, when I load the masterclips project it will give me an error message that says that it was made in a newer version of Final Cut. Then, when I restart FCP it will open fine. Does anybody know why it's doing this and how to fix the problem?
    I have been copying a lot of media with media manager lately, it has crashed once or twice could that be part of the problem? Also, there are about 20,000 clips about 75% of them are online and they were captured in different capture projects so they are in different capture scratch folders. Is the fact that they are scattered a problem?

    If you want, you could send me the project. I''ll
    open it and do a save as and zap it back to you. You
    should then be able to open it and do a reconnect.
    May help. My email is in my profile. If it's too
    big to email, you could bring it by my cutting room
    (in times square). If you can email it, be sure and
    archive the file before attaching to an email.
    Thank You
    I really appreciate the offer and I may still take you up on that, but can I get the same result by opening it on one of out other editing systems and doing a save as? The files are too big to email and Times Square is a bit far from where we are.
    Will reconnecting all of the media to a copy of the project help FCP dealing with badly written meta data for clips that is causing corruption. Is that the idea?
    Thanks again for your help.

  • Firefox 4 screwed up, I returned to earlir version & error message re Chrom comes up 8 times now when starting Firefox. how can I fix?

    Firefox 4 lost my bookmarks sidebar, started my home page with Yahoo finance in a strange place on Yahoo and generally gave me fits. I ran the install on an earlier version of Firefox which works great after I click on an error message eight times to get Firefox to start. The error box said Chrome Registration Failed the text in the box said "Firefox could not install this item because of Chrome Registration. Please contact the author about this problem." I felt comfortable with version 3.8??? and Firefox 4 isn't comfortable for me and now the earlier version is messed up. How do I get back into my comfort zone. My computer experience started with Heath Disk Operating System, CPM, Windows 1 through 7. I don't like Firefox 4 or Chrome internet browsers. Windows IE caused problems early on with virus and male ware.

    Is it still showing up in your ad-on manager?

  • Post complete logs/output/versions/error messages

    When you have an issue, post the ENTIRE output or log. Information is crucial to being able to solve any problem. I've seen threads go for pages and all someone needed to do was ask for a log file or simple command output.
    Don't do this
    It doesnt work!!!
    That is not output, that says absolutely nothing. It's probably the most useless thing you could post.
    It said something about this, I think the problem is this
    That's not an exact error message, that's an intepretation of an error message. It's like playing chinese whispers.
    Responding
    When someone posts something like the above, don't respond with a blind guess. Usually it'll just confuse the situation, instead just politely request more details. Don't post some solution that worked for you for something vaguely similar 2 years ago unless you are confident it is the same issue.
    Sources of information
    Full output of any command involved
    Log files (have a look in /var/log)
    Relevant configuration files
    Drivers involved
    Versions of packages involved
    Kernel: dmesg. For a boot problem, at least the last 10 lines displayed, preferably more
    Networking: Exact output of commands involved, and any configuration files
    Xorg: /var/log/Xorg.0.log, and prior logs if you have overwritten the problematic one
    If a recent -Syu broke it, have a look through your pacman log and see what packages were upgraded.
    Where to put the information?
    In the post is fine or if it's very long - pastebins are great, particularly for config files. However make sure it's a long term paste so that it doesnt expire within a day.
    A useful tool for pastebins, especially if you can't copy paste is community/nopaste. Just pipe any output through nopaste and you'll get a link. eg
    iphitus@korolev:~$ dmesg|nopaste
    http://rafb.net/p/W7Z4t761.html
    Last edited by iphitus (2008-10-26 23:54:15)

    bernarcher wrote:
    To be fair, it took some time before I myself became accustomed to the logs. It is just like any other documentation. You need practice to make it really useful.
    That said, don't take it for granted that newbies will be aware of what is needed. It takes patience to provide help (rather often, unfortunately). And to me it suffices if I see that somebody wants to learn (and does so).
    Bernarcher hints at something else here: it works both ways.  It is fine enough having a sticky at the top of the newbie board to explain the basic locations of various outputs, but the responsibility of seasoned archers doesn't end there.  Experienced users ought to assume the role of teachers when entering forum discussion with beginners, and at the very least should be aware of the gap in knowledge.  Fortunately Arch newbies can boast more familiarity and objectivity than say Ubuntu newbies but they still require some preliminary (and sometimes background) information on where and what to implement.
    "Post output of /var/program" or "Post /var/program.log" are better instructions than "Post output of program"

  • "unsupported system version error" Message

    I just loaded Mavericks, upgrading from snow leopard server.  Everything uploaded great except I keep getting an error message that keeps popping up saying "unsupported system version error."  It tells me that I need some version of Mac OSX 10.6 to 10.8 to run this application.  What application is it talking about?  Everytime that I click "OK" to close the error box, it popps right back open immediately all over again.  Annoying!  I can't get rid of it.
    My question is what app is doing this?  It doesn't tell me.  How do I delete it off my system to stop this annoyance? When I mouse over the icon in the dock it says "Quay Menu"  I have no idea what this is or what I should do?  Any help woud be greatly appreciated.
    Thank You,
    -kirk
    2010 Mac Mini

    right click the quay menu icon in the dock and open in finder then delete the contents. have not had the message since

  • How to customize production version error message

    Hi Friends,
    I copied the BAPI_REPMANCONF1_CREATE_MTS into Z FM and when I test the Z FM, I wantedly entered the wrong production version say ABCD instead of 1234. The message field of my return bapi BAPIRET2 is populated with an error message saying that "Production version not found". Till here it is working fine.
    I need to modify my code in such a way that if I enter the wrong production version, my bapi should error me in such a way that "ABCD Production version not found" in the message field of BAPIRET2.
    Please sugesst me ideas for solving this.
    Thanks.

    Nani,
    Please follow approach suggested by Suman.
    All you have to do is validate production version ( of that material/product?) against DB Tables before calling you ZFM or Std BAPI.
    If you would like to go by my approach.. you will have to do something like this..
    option1:
    IF RETURN-TYPE = 'E' AND RETURN-ID EQ 'RM' AND RETURN-MESSAGE = '149'.
    CONCATENAT  'XXXX' RETURN-MESSAGE INTO RETURN-MESSAGE.
    ENDIF.
    Option2: Create a Z class.
    IF RETURN-TYPE = 'E' AND RETURN-ID EQ 'RM' AND RETURN-MESSAGE = '149'.
    RETURN-ID = 'ZID'.
    RETURN-NUMBER = 'XXX' -> Number in Z class.
    RETURN-MESSAGE = 'your message'.
    ENDIF.

  • Itunes corrupt version error message.  tried to re-download itunes and same error message

    My itunes gives me an error message saying
    "This copy of iTunes is corrupted or is not installed correctly.  Please reinstall iTunes"
    I tried to download from their site, and when i try to install it, it says "thank you for downloading iTunes" but it is not on my computer, i cant find the file anywhere
    please help

    Let's try a repair install of iTunes first.
    Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "iTunes" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "iTunes", click "Change" and then click "Repair".
    Can you launch your iTunes now?

  • Exchange rate type for version - error message GP541 during confirmation

    Hi FICO Experts,
    I bumped into a problem during confirmation in CO15. (I would like to get the SFG by mvt 101 and consume the raw material by 261).
    The error messase I get is:
    Maintain the exchange rate type for version 000 in 2009
    Message no. GP541
    Diagnosis
    You want to use plan version 000 with controlling area 1000 in fiscal year 2009.
    You have not specified an exchange rate type for this plan version for fiscal year 2009. Since the update of all currencies in 2009 is active in the control indicators of the controlling area, currency conversions are possible and sometimes also needed.
    It is therefore necessary to specify an exchange rate type for plan version 000 in year 2009.
    System Response
    The system will not accept your entry.
    Procedure
    1. Please maintain plan version 000 first using the function 'Change Plan Version', or
    2. correct your typing error.
    I'd like to ask you to please help to resolve this issue.
    Thanks,
    Csaba

    go to Maintain Version at SPRO-Controlling-General Controlling-Organization->Maintan Version and do what ever it says. Provide Exchange rate type P or M would resolve your issue

  • Aperture import of iPhoto '11 lib ad odd version error message

    I installed my Aperture 3 upgrade as a 'fresh' install - i.e., deleted my 1.5 library and created a new Aperture library.
    When I try to import my iPhoto '11 library Aperture tells me I can't import an iPhoto library from iPhoto 7.xxxxx
    huh!? iPhoto '11 opens/writes/converted this database some time ago...
    any tips?
    (I'd provide more specific wording but I'm not at my Mac)

    Usually a sign of a damaged iPhoto db.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • ITunes - newest Version 10.6 - error message installing

    Trying to install latest iTunes version - error message "iPod" folder not accessible - log in as Administrator - but I already am - any suggestions?

    error message "iPod" folder not accessible - log in as Administrator
    What's the precise text of the message, please? (There's a couple of different ones I can think of that you might be getting.)

  • Simulation error message

    Hi,
    I really need you help. I've bought a book with a Multisim 10.1 Student Edition.
    When I want to simulate something, I receive the following error message:
    "This circuit has no power sources: unable to determine the simulation timestep automatically.
    Please add a power source or set the simulation timestep under "Interactive Simulation Settings" to proceed."
    I am using Windows XP.
    Some time before I downloaded Evaluation Version from NI website and had the same problem.
    Thank you for your help.
    Best,
    Anis

    Hi,
    Just as Johann explains, you need to set a VCC and GND on your schematic so the digital components can work correctly, here's a link to a document that has a more detailed explanation on why you need them and how to connect them.
    http://digital.ni.com/public.nsf/allkb/221393F998C08491862571ED0077FCC3?OpenDocument
    Hope the information is useful.
    Good Luck
    Francisco Arellano
    National Instruments Mexico
    Field Systems Engineer - Energy Segment
    www.ni.com/soporte

  • Mozilla will not open with error message: platform 1.5.2.15 is not compatible with min version =1.9.2.16 max version = 1.9.2.16

    Cant open Mozilla in normal mode. Also get same error message when trying to click on embedded links in internet explorer and outlook express emails

    Do a clean (re-)install:
    * Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 3.6.x: http://www.mozilla.com/en-US/firefox/all-older.html
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Do not remove personal data if you uninstall the current version.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

Maybe you are looking for