Test packages cant be created in locked system

I am using project management part of solution manager, & because the info structures are sap objects, I have to transport any change to a test package. I cannot create them in the production system as it is locked to changes. Other sap objects lets you tick the current settings box in sobj & then sap treats it like master data (which in reality this is !!)
Has any found a way around this, I think it is crazy to have to transport test packages

Rajesh,
Answer is very simple. I did get same kind of problem. It is very simple answer depending on your R3 version.
Use password all capital letters. Don't include any small letter at all. unlock your user id and change password to capital letter. BW doesn't like small and capital letter mix. this bug is fixed in ECC 6.0
<removed_by_moderator>
*Do not ask for points
Read the "Rules of Engagement"
Regards
RK
Edited by: Juan Reyes on May 21, 2009 9:30 AM

Similar Messages

  • Can't create Test package

    Hello, After updating up to 22 version new problem has apeared in Test management. I can't create test package in newly created Test Plan. There are disabled buttons like a "create package" and "change package" on the "Test package management" screan. I try to make it with SAP_ALL authorisations.

    Try using this authorization SAP_SOL_PROJ_ADMIN_ALL
    some authorizsations are not included in the SAP_ALL
    hope it helps.

  • Regenerating test packages in Solution Manager 4.0 after blueprint changes.

    Hello,
    This is the scenario.
    A test plan and test package (1 process = 1 test package) have been created.
    The blueprint has changed and a new step has been added to the process (the process that has already been assigned into a test package.
    How do you get that new task/step into the test package??
    Current situation:
    I've managed to regenerate the test plan with the new task listed under the process. However when I go into change test package the new process is NOT there. Why is that? Can I had a new step to a package or not?
    Regards
    Dan

    You must go down to the transaction leveland click and then regenerate it will then be eligible in the package for regeneration.

  • Zones not booting - failed to create devlinks: Interrupted system call

    I just installed the latest 10_Recommended cluster with 118833-36 kernel patch and now my zones won't boot. I get the error:
    (root)Yes Master?> zoneadm list -iv
    ID NAME STATUS PATH
    0 global running /
    - samba installed /export/home/zones/samba
    - web installed /export/home/zones/web
    - dhcp installed /export/home/zones/dhcp
    - dns installed /export/home/zones/dns
    - vs1 installed /zdata/zones/vs1
    - dss installed /zdata/zones/dss
    - test installed /zdata/zones/test
    (root)Yes Master?> zoneadm -z test boot
    failed to create devlinks: Interrupted system call
    console setup: device initialization failed
    zoneadm: zone 'test': could not start zoneadmd
    zoneadm: zone 'test': call to zoneadmd failed
    Also, running devfsadm or drvconfig;devlinks from the global zone will core dump.
    Any ideas..??
    tia..

    First, you gotta change your prompt to something less embarrassing when you post to a public forum :)
    I'd forget about the zones problem and focus on why devfsadm core dumps -- that's the core of the problem (no pun intended...no, really!).
    First, review the install logs of all the patches installed during the recent service (/var/sadm/patch/*/log). Even if they all show a good completion, check the messages they generated, sometimes they have errors that aren't bad enough to cause a complete failure of the patch. The KJP (118833-36) is probably a good one to start with.
    Next I'd "truss" the devfsadm command while it core dumps then get a stack trace of the core (run "adb <corefile>" and type "$C" -- that's old school, I'm sure mdb is much cooler...).
    Throw some of the strings from those against sunsolve and see if something sticks.
    Good luck!

  • Can I Test the Test Package Created in SolMan Directly from ECC?

    Hi,
    the test plan and test packages are created in Solution Manager. The Test Packages are comprised of transactions (on ECC).
    (The business scenarios and processes are defined in Solar01, ECC is defined as logical component and assigned to every tx, the test case description is uploaded in Solar02,...)
    The needed Trusted RFC (to enable the tester to start the tx from within SolMan) is running late, but I can see that STWB_WORK tx is also available in ECC.
    Of course - when I open it in ECC (logged on as a test user - defined in test package in SolMan) the test package is empty in ECC.
    What kind of connection is there within STWB_WORK in ECC and SolMan?
    Can one somehow "transfer" the packages from SM to ECC, so the tester can start to test the transactions from ECC directly?
    Is it possible to see the results and status overview in SolMan during and after testing?
    Thank you in advance,
    cheers,
    Nenad

    Hi
    You getting confused between old ECC test workbench and Solution Manager Test workbench.
    Test workbench is present there from r/3 version onwards.
    When you are performing testing via solman then you have to use the test packages assign to you in STWB_WORK which has the relevant transaction and doc for you to test
    here you upload the test result and update status .Later any PM can generate report for overall testing including entire landscape and not one system.
    But remember it has got no connection to ur r/3 workbench
    The diff between 2 is...solman test workbench is for entire landscape including BI R/3 ECC any other system ...but in r/3 etc the workbench is alone and obsolete now is used for standalone testing.
    Hope it carifies ur doubt completely
    Regards
    Prakhar

  • Yet another ALERT: Cannot create class in system package

    I've searched on the forums and seen several postings and none that really explained a solution, just the initial poster replying they fixed the problem. I am new to J2ME and java in general, I'm going off a book and my first test worked fine but this one gives me the the ALERT: Cannot create class in system package, when I select the GO command. The error occurs in the commandAction method where command == go trying to create an alert message. I am using MIDP 2.0 and as I stated new to this whole thing so a detail response would be greatly appreciated and what I need to do to resolve this for now and the future.
    Source code for TextBoxTest.java :
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    public class TextBoxTest extends MIDlet implements CommandListener
       private TextBox textBox;
       private Alert alert;
       private Command quit;
       private Command go;
       public TextBoxTest()
          // Setup the UI
          textBox = new TextBox("Enter Name", "", 20, TextField.ANY);
          go = new Command("Go", Command.SCREEN, 1);
          quit = new Command("Quit", Command.EXIT, 2);
          textBox.addCommand(go);
          textBox.addCommand(quit);
          textBox.setCommandListener(this);
       protected void startApp() throws MIDletStateChangeException
          Display.getDisplay(this).setCurrent(textBox);
       protected void pauseApp()
       protected void destroyApp(boolean unconditional)
            throws MIDletStateChangeException
       public void commandAction(Command command, Displayable displayable)
          try
             if (command == quit)
                destroyApp(true);
                notifyDestroyed();
             if (command == go)
                alert = new Alert("", "Greetings " + textBox.getString(), null,
    AlertType.CONFIRMATION);
                Display.getDisplay(this).setCurrent(alert);
          catch (MIDletStateChangeException me)
             System.out.println(me + " caught.");
    }

    Ok so my problem isn't with the code it's with the build order. I guess I needed to state that I was following a book and trying to compile and preverify through command line and not using the toolkit or an IDE. So if I use NetBeans 5.0 or the Wireless Toolkit 2.5 I can compile fine.
    So my new question is, can someone show me the steps to build through command line? This is MIDP 2.0.

  • Cant LOCK system preferences

    Cant LOCK system preferences: File Sharing, Network, startup disk, date&time, time machine, energy saver, print&fax
    I can LOCK : security, accounts login, parental control
    no rhyme or reason. any help would be appreciated.

    If you are using an Admin account for your daily-Use account, that is a problem.
    The Admin can unlock and bypass nearly everything, so these things will not stay locked for your Admin account.
    To protect these items from others, you need to create a new Admin account that you will use ONLY for Administration (such as installing software) and use it to demote your daily-use account to a non-Admin account. then things that are locked will stay locked, and others who wander by your computer will not be able to unlock them.
    PS. Others in your household should each have their own "User" (not Admin) account. Then you can add additional restrictions with Parental Controls.

  • Can database activities of creating or dropping tables/packages be tracked in the security/system logs

    Can database activity like create or drop tables and packages be tracked in the security/system logs of windows 2003 server for the oracle database 10.2.0.4?
    Can purging of oracle log, n case the file has become big or even tempered be tracked in the security/system logs of windows 2003 server for the oracle database 10.2.0.4?

    2765539 wrote:
    Can database activity like create or drop tables and packages be tracked in the security/system logs of windows 2003 server for the oracle database 10.2.0.4?
    Can purging of oracle log, n case the file has become big or even tempered be tracked in the security/system logs of windows 2003 server for the oracle database 10.2.0.4?
    Your first question is easy, you configure audit to log to the OS audit trail with
    alter system set audit_trail=os scope=spfile;
    and then enable audit for whatever actions you want to capture. All documented in the Security Guide.
    Your second question makes no sense unless you explain what you mean by "oracle log".

  • The test package does not point to the correct logical system

    Hello,
    I have defined SMSY logical componant, I have copied project1 to project2.
    I have changed within the system landscape of project2, the logical componant.
    I have also defined a project plan, and the test packages.
    Hence, the test packages still do not point to the logical component that is defined in the landscape...
    I must have missed something !
    Can you help ?
    Thanks a lot

    hi
    try following
    1 check in smsy the logical component is correctly defined with clients dev qa and prd
    2 same logical component is assigned to solar_project_admin
    3 Project IMG is generated in the respective system
    4 in solar01 check the logical component is shown correctly
    5 Re- Generate the test plan once
    hope above steps will resolve issue
    regards
    prakhar

  • Cannot create class in system package

    Hello,
    I wrote a J2ME game for nokia S40 phones. It compiles without any errors, but when I'm trying to run in on the Nokia 7210 phone emulator I receive the following message:
    Cannot create class in system package.
    Howerver running on the Nokia 6230 phone emulator is ok.
    I have obfuscated my applet as I read in previous topics, but still it does not work.
    Can anyone help me?
    Thanks,
    Alexander.

    You get that error when you try to reference a class that is part of the MIDP framework but isn't installed on the phone.
    The 7210 doesn't support MMAPI or WMA or MIDP 2.0, while the 6230 does, so check that you don't have any references (even an import statement), to classes from those packages (like the javax.microedition.media.*, javax.microedition.lcdui.game.*,javax.wireless.messaging.*, etc. packages hierarchies).
    shmoove

  • Cannot create class in system package while Using Sprite class

    Hi i developed a game using Sprite class & imported
    javax.microedition.lcdui.game.*; package. But when i tried to build this project it gave me "Cannot create class in system package" error. Worst thing is that now again if i build, then it displays error "package javax.microedition.lcdui.game.*; does not exist" . Pls help me

    First exception means that you tried to create a class with the package name equaling one from the predefined libraries in midp/cldc.
    For your second error, add all the jars you are using into the project's classpath.
    Mihai

  • Jsr 180 cannot create class in system package.

    Hi,
    I am trying to run the jsr 180 api sip-example midlets from jbuilder. The project buildes fien but when I run it I get the following:
    C:\JBuilderX\j2mewtk2.0\bin\emulator.exe -Xdevice:DefaultColorPhone -Xdescriptor:"C:\Documents and Settings\aishling\jbproject\aisling\lib\sip-examples.jad"
    Running with storage root DefaultColorPhone
    ALERT: Cannot create class in system package
    Execution completed successfully
    398951 bytecodes executed
    8 thread switches
    434 classes in the system (including system classes)
    2473 dynamic objects allocated (82448 bytes)
    3 garbage collections (58908 bytes collected)
    From going through the archives, I thought I should change the name of the package. So I renamed the directory containing the midlet files from /src/examples to /src/aisexamples and updated each file to include package aisexamples. However this just results in another error (22 + 14) unable to create MIDlet aisexamples.
    Please, please can someone let me know whats going on?
    Thanks,
    Aisling.

    i m also facing the same prob can any body help us

  • Acer aspire 5733 windows 7 intel core 13 inside, setupwas unable to create a new system partition orlocate an .......

    i woke up today to see my laptop asking for  a current password i entered 
    then it was asking
    please input password for st9500325as
    and nothing seems to be working
    i tried to reboot the system and then the error message displayed in the title comes when i click next screen asking fro where do you want to install windows, i havent connected anything on the laptop and just
    1 disc0 unallocated space  465.8gb 
    and i cant partition it also
    i clicked on drive option and clicked on new( thets the only one i can click from the options) and it waited for some time as it is trying to do something and telling me failed to create new partition, what can i do. [laese explain in  astep bt step
    procedure,
    i am not a genius on laptops or computer

    Hi,
    Quote: setup was unable to create a new system partition or locate an existing system partition.
    It can be caused by corrupt partition table.
    Boot from Windows installation media, press Shift + F10 at setup screen, and run chkdsk command to fix drive error.
    http://technet.microsoft.com/en-us/magazine/dd637756.aspx
    Also, please remmember to mark your system partition as active using diskpart command, if you do not have a system reserved partition.
    http://www.sevenforums.com/tutorials/71432-partition-mark-active.html
    NOTE This response contains a reference to a third
    party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites.
    Andy Altmann
    TechNet Community Support

  • SCAT - Tester in the Test Package

    Hi! All Experts,
    I have created a Test Package and assigned Tester to each Test Case. e.g.Data Entry Clerk to Test Script A, Approver to Test Script B.
    However, when I run the Test Case in the Test Package, the system always logon as user "ALE-BATCH" and run the Test Scripts A and B.
    Is it possible to logon as the Tester and run the Test Script ? E.g. logon as Data Entry Clerk and run Test Script A, then logon as Approver and run Test Script B ?
    Thanks in advance for all the advise.

    It is because I have picked a RFC Destination with default user id ALE-BATCH and password.
    To solve this, I have to build another RFC Destination which will prompt for logon ID and password.

  • Error during execution in background: No Test Package Selected

    We have created a test package and tried to run both in foreground (Goto -> Automatic Test -> Execute) and background (Goto -> Automatic Test -> Execute in background). We are pretty confident that the test case included in the package works well.
    Foreground run is successful. However, when we try to run using background mode, we get the error "No Test Package Selected." What could be the possible issue for this?

    Unsigned applets are not allowed to access the file system...
    http://java.sun.com/developer/technicalArticles/Security/Signed/

Maybe you are looking for