System Status of newly added project objects for a RELEASED Project.

Hi Experts
During the course of execution of project, we may need to add new activities.
However, as the project is released, the newly added activtity or project object attains REL status.
How to ensure CRTD status for the newly created object so that can ensure subsequent release by Higher Authority.
I think user status may be useful here but i do not know how to set. Please suggest feasible solution.
Warm regards
ramSiva

Release status is PS pass on for PS  Objects. So,  Create two no. of Level one  WBS Element in your PS Structure. One for which you want release that structure you create under that WBS  and Second WBS don't Release and use the same leg for your created status structuring.
And do not Release Project Definition, Let it be max. PREL only, Till your structuring process is over.
I think User status cannot help you in this  case.  ( Because user status reside between the System Status )
With Regards
Nitin P.

Similar Messages

  • [svn:fx-trunk] 7801: Submit on behalf of Pete - an update to the project settings for the flex4test project , the link type was wrong.

    Revision: 7801
    Author:   [email protected]
    Date:     2009-06-12 14:38:25 -0700 (Fri, 12 Jun 2009)
    Log Message:
    Submit on behalf of Pete - an update to the project settings for the flex4test project, the link type was wrong.
    Doc Notes: None
    Bugs: None
    Reviewer: none
    tests: compile & run
    Modified Paths:
        flex/sdk/trunk/development/eclipse/flex/flex4test/.actionScriptProperties

    Wait a second...there is more to that error message that I overlooked before.
    There might be something other than just the way I set the CODE and CODEBASE parameters wrong here
    Any ideas?
    Here is the entire messsage:
    load: class DisplayMonoApplet.class not found.
    java.lang.ClassNotFoundException: DisplayMonoApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

  • Filtering not working for newly added child objects in master-detail table

    Hi,
    I am using Jdeveloper 11.1.1.4 version.
    Problem scenario:
    Filtering of records is not working for newly created child objects in a master-detail scenario.
    Steps to reproduce this issue using HR Schema (using LOCATIONS and DEPARTMENTS table ) :
    1. Create Business components (EO's & VO's ) for LOCATIONS & DEPARTMENTS table)
    1. Create a .jspx page and insert a readonly master table of Locations
    2. Insert a child table (inline-edit table) of Departments and enable filtering
    4. For the child table, drag and drop CreateInsert operation as a toolbar button .
    5. Create a new child record using the toolbar button and enter data .
    6. Filtering on the newly created child record's attributes does not work.
    Please note that the same filter works for existing child records.
    Any suggestions for resolving this issue?
    Thanks,
    Vikas

    Found from Fusion Developer's Guide the following snippet about QBE functionality :
    "+When you create data controls, all data collections will automatically include a Named Criteria node with an All Queriable Attributes criteria. This is the default view criteria that includes all the searchable attributes or columns of the data collection. You cannot edit or modify this view criteria+. "
    So, the question is if the implicit view criteria cannot be edited, how else to set the query execution mode to "Both" ?
    Shouldn't ADF BC support this by default? Is this a bug?
    Note:- If you create a maste-detail table using POJO datacontrols, filter works correctly for newly created child records also .
    This seems to be an issue with ADF-BC datacontrols only.
    Thanks,
    Vikas

  • System status change with delegated standard object

    Hi everybody,
    I delegated BUS2005 (production order) to ZBUS2005 and created a new event based upon the system status MANC (I0420). It works fine when I use my custom object ZBUS2005 in BSVZ and this event is successfully triggered. But when I change this object to the standard object BUS2005 in the same transaction BSVZ, the event is not triggered. BUS2005 has been already delegated to ZBUS2005.
    Can somebody kindly tell me how this can be fixed? I want to see the standard object, BUS2005 in the trace, instead of my custom object.
    Thanks,
    Max

    Thanks Nishant,
    Well, I have created many events for other objects and delegated the objects.
    In all these cases, I can see the standard objects in the trace, not the customized objects. But in these cases, I didnt go for status change management.
    So, why dont I see the same standard object in the trace in this case of BUS2005? Even the setting in BAVZ has been done according to BUS2005, not ZBUS2005. So, I am expecting BUS2005 in the trace. Trace comes only when I change this BUS2005 to ZBUS2005 in BSVZ.
    Please give your comments.
    Thanks,
    Max

  • Adding authorization object for "Function Group"s ?

    Is it possible to add any authorization object for any function group ?
    We have an issue i.e. whenever user "XYZ" is getting some Windows Excel related error whenever trying call an excel report from BW server. System log related to "XYZ" user shows that -> User "XYZ" has no RFC authorization for the function group "ABCD". The RFC authorization object is S_RFC.
    Function Group you can check through SE37->GoTO->Display Function Group
    Now is it possible to add authorization for any "Function Group" ?

    You give authorisation for all function groups by giving auth object S_RFC a * value in field RFC_NAME
    However I do not recommend this as giving wide access to RFC's can bypass a lot of the security you have implemented for the users.
    In this case, add only the function group that the user requires in this instance into S_RFC

  • Adding responsibility objects for the Notification Groups for a PA

    Hi Gurus,
    I am supposed to add responsibility objects for the notiifcation groups for a PA.. Could you please confirm the steps I am planning to follow
    1. Find out the Workflow
    2. Add the responsibilities objects ( Where can Add  those ( in the workflow or in Org Management?)
    3. Edit the rule to point to that PA..
    I am new to workflows ..points are assured for the help

    Just write your own composite Icon class:
    public class CompositeIcon implements Icon
      private Icon icon1;
      private Icon icon2;
      public CompositeIcon(Icon icon1, Icon icon2)
        this.icon1 = icon1;
        this.icon2 = icon2;
      public int getIconHeight()
        return Math.max(icon1.getIconHeight(), icon2.getIconHeight());
      public int getIconWidth()
        return icon1.getIconWidth() + icon2.getIconWidth();
      public void paintIcon(Component c, Graphics g, int x, int y)
        icon1.paintIcon(c, g, x, y);
        icon2.paintIcon(c, g, x + icon1.getIconWidth, y);
    }Hopefully a slightly more reusable solution. You could write all sorts of different layouts in this way.
    Hope this helps.

  • How assign a "Project Manager" for a new project?

    Hello,
    I need to know about the "Project Manager" in a new project.
    Does the "Resource Manager" build the team and assign a "Project Manager"?

    It totally depends on your organization process.
    Normally PMO creates project, build team,assign resources to tasks, then while save and  publish the projec assign Project manager as owner for the project plan.
    If you have Resource manager in your organization then he can build the team for the project publish it then PMO or project manager can assign the resource to the task then save and publish the plan. 
    IF project manager has idea about resources then he can also build the team and assign resource to the task.
    Note :- once PMO or resource manager build the team and publish the project then Project owner need to open the project plan add new field in the plan STATUS MANAGER and select his name for all task for which he will give the approval to the actual of the
    task send by resources.
    By default who ever will create project act as STATUS MANAGER for all the task. 
    kirtesh

  • How to generate a project report for a BPM project in Oracle Jdeveloper 11g

    Hi,
    Till Oracle 10g we can generate a project report by right clicking on project name in BPM studio project navigator.
    Is this facility available with Jdeveloper 11g for BPM project as I am not able to generate the report.
    If this is possible than please let me know how can i generate.
    Thanks
    GG

    Hi there,
    I would also like to know when the Project Report functionality will be available for 11g.
    My client have several BA's who are crying out for documentation and exported diagrams, which are exactly what the Project Report features provided.
    Any ideas if it will come back?
    Cheers,
    Chris

  • Pb with populating newly added AD fields for existing users

    Hello,
    Let's say that we have version 10 of the AD process form pushed to production.
    Then we decided to push version 11 of the AD process form, which now has 4 more fields, to prod.
    For new users, we can see that the new fields are populated and the data flows down to AD.
    But, how do things work for existing users with existing AD account?
    How can we make the new fields appear in the process form of an existing user with old AD account that did not contain the new 4 fields.
    Thanks
    Khanh

    FVC or Form Version Control Utility is specifically designed for this purpose. Refer OIM documentation & also have a look at the following links:
    http://download.oracle.com/docs/cd/E10391_01/doc.910/e10363/appc.htm
    http://oim-iam.blogspot.com/2010/04/oim-fvc.html
    Thanks
    SRS

  • New Authorization Objects for latest releases

    Dear Colleagues,
    Do you happen to know how to find out the objects that should be added when using a role from a previous SAP version in a new one. That is, we have imported a role from a previous SAP version into our system and would like to update it with the latest objects. How should I find out which are the new objects?.
    Thanks in advance for your help.
    Best regards,
    CMPT

    Charles,
    If you role has transactions in the menu the new authorization objects will be pulled in when you go to change the authorizations (select read old and merge with new under expert mode).
    If the transactions are not in the menu you will need to do a compare of the usobt_c and usobx_c between the old and the new system.
    During new auth objects analysis is performed via transaction SU25.
    Cheers,
    Ben

  • SAP PS: Changing the WBS number for a released project

    Hi Gurus,
    I am wondering if anyone here knows how to change the WBS number under a project that is released (REL). Until the project is partially released (PREL), the WBS number can be changed, but once it's released, the number is greyed out. Is there a special authorization that could be used to achieve this? I do have authorization to C_PRPS_VNR activity 45, but I believe it's the business transaction (for status REL) that's blocking this number from being changed. A quick answer will be highly appreciated and rewarded.
    Regards,
    Venkata.

    The WBS number cannot be changed after it has been released.

  • Bug in workshop Project Properties for a Java Project !!

    I have a Java project which i am trying to make work with junitee so
    that i can automate my test cases. I have installed junitee as a web
    application named 'junitee' and configured it no problem.
    I have my JUnit test cases in Java Project named 'UnitTest'. What i want
    to happen is that when i build my UnitTest project i want the resulting
    JAR file UnitTest.jar copied into the WEB-INF\lib of the junitee project.
    In order to do this i needed to change the project 'Build' options and
    select the "Copy JAR file from Libraires to Project as" and refer to the
    junitee web app as follows:-
    ../junitee/WEB-INF/lib/UnitTest.jar
    Unfortunately when i do this and select Ok to save my changes workshop
    gives me the following error:-
    The JAR name contains illegal characters. Please correct the name.
    However i have managed to get around this and make it work by manually
    modifying my .work file by hand and not through workshop. This works and
    achieves exactly what i want however it must be a bug in workshop to not
    allow this through the Project Properties window !.
    Else if it is deliberate then i cant see why as you should be able to
    copy a JAR file to any lcoation inside the project if you wish to. I
    hope this gets fixed in SP3.
    Martin

    .. I tried using iPhoto to export a QT file of an image slideshow....
    I would start here to play on the knobs&sliders ..
    what were your settings for export? "QT file" => that is many dozends of options of compression, codecs, resolutions, etc. pp ...
    the consumer apps FCE and iM are meant for TV display only => reduced res + reduced colors, quality reduced due to interlace (due to TV standards) ...-
    a Full Res, h264 encoded qt.mov should display your photos in shining quality ...

  • Changing the System status for previous transactions

    Hello,
    Could some body help me with this ?
    I have a User status profile with user status ABC which triggers system status Inprocess. This is applicable for all the new transactions for which we set the status ABC which works fine. But we have some previous transactions  ( Prior to this config ) with status ABC , but system status is not Inprocess.
    How can we change the system statuses for all these transactions? do we have a report for this?
    Best Regards,

    Hi,
      You can use 'STATUS_CHANGE_INTERN' FM to change the system status. Pass Object number and status ID as inputs to the Function Module.
    Regards,
    Lakshmi.Y

  • System Status Authorizations for Marketing Plans and Campaigns

    Hi Experts,
    We are using the Standard System Statuses on the Marketing Planner like the Created , Released, Approved, Finished, Locked and Rejected. My requirement is to limit the access to the Users for these Statuses. For Example :
    User 1 will have access to Created.
    User 2 will have access to Aproved.
    User 3 will have access to Aproved,Released, Create
    How do I set the Authorizations for the System status based on the User? I tried creating Authorization Keys under Status Profiles, but I am not clear on where to assign them.
    Please guide me.
    Thanks in Advance.

    Hi ,
    Thanks for your input. I am planning to go with your second option to go with assigning the Authorization objects at the Marketing Plan and also at the Campaign level . My only concern here is will we be able to assign status specific authorizations here ?
    The Authorization objects given are for change, create etc. There are no status specific authorization  objects mentioned.   My requirement is the person who creates the MP should have access to release it and only the approver should be able to see the approved status and change the status o approved.
    Do you suggest using Authorization keys and assigning them ?If so where do we define the restictions on the Authorization keys like
    Authorization Group 1 has authorization to Create , modify  a MP and can only   View / Change the  statuses to Create and Release.
    Authorization Group 2 has access to Modify and has access to change the  statuses to Aproved.
    Is there any way this can be achieved ? Please let me know if I am going in the right direction.
    Regards,
    Pooja

  • Table for system status for an order

    Hi Gurus,
    we are displaying a report in which list of orders we are displaying in that system status also we need to dispaly for that the logic we have used is take OBJNR from AUFK by passing AUFNR and get all the active status for that AUFNR by passing AUFNR in to JEST by setting the inactive status is equal to space and then by comparing those system status with table TJ02 and we are taking the system status codes from that table. But my requirement is to display the user status in the order how we will get in order screen? In JCDS table am getting the entries based on date and time but unwanted status also it is showing. tell me is there any way to get the exact order how we will get in the order screen.
    Thanks in advance.
    Regards
    Satish

    Hi,
    Its client requirement. we need to show list of orders in a alv report for a particular selection. There for each and every order we are displaying the system status but it is not coming in proper sequence as compared with the order screen system status.
    Please do the needful.
    Regards
    satish

Maybe you are looking for

  • Is there any practical reason to use DB helper class?

    Is there any practical reason to use database helper class ( e.g. database.bookDB in Duke's bookstore)in servlet design? What if I setup a DB connection for every servlet?

  • IPod getting overloaded

    Hi, I hope these forums can help me, as three applecare agents have proven useless 2 hours later! Ok... My 5G 30G Ipod had an absurd amount of memory taken up by videos on it on it. I had about 4 Gb on my ipod of video podcasts and like 1 movie. So,

  • Macbook won't load leopard

    I have a macbook with leopard 10.5.2 and it will not load. The computer goes to the apple with the pinwheel, then goes to a bluescreen but no further (with the pinwheel coming up for a little bit then going away). I have reset the ram, and tried to s

  • How to make an appointment with a contact from the address book directly to iCal

    What is the easiest way to make an appointment with a contact from the address book. My idea is that once you identify a contact down the bottom where it has Text message Share contact, add to favorites it would be nice if it had make appointment in

  • IDVD cannot use full capacity of a DVD

    This is sort of a pet peeve. On single-layer project, it tells me I have 4.0GB of space to work with, and this actually means 4.0 billion bytes, not 4.0GiB. Same with double-layer project: it shows 8.0GB of space, which is roughly 7.5GiB. A double-la