Issue with project structure...

Hi all,
Our projects are created from sales order through assembly processing. All wbs are of first level..the user By mistake manually made changes to the structure by dragging the wbs and dropping it under another wbs in the project thus making it a subordinate wbs I.e second level wbs. Now during the running of the result analysis  for the first level wbs the system is giving an error to delete the ra data of the second level wbs before proceeding with the first level wbs and now the user has realized that project structure is changed. Can we go ahead and delete the ra data of the lower wbs and change the project structure back at this point? What implications will changing the structure have at this point?

Hi
Besides above suggestion, you can reorganize your structure by executing "Derive structure" in CJ20N.
Go to menu bar Project > Check/Derive Structure.
Note that this is possible before saving changes to system. in you case, when WBS element was dragged and placed under another WBS element, level of WBS also got changed.
These kind of issues are user induced and avoidance is very difficult. But we can still control implementing User Status. Try this option which will default at initial level and stays there till the closing of project.
You can select the object  "Change Structure"  and option - Forbidden.
Thanks,
Sudhakar
Message was edited by: Sudhakar Pappu

Similar Messages

  • SAP BI 7.0 Transport issue with HR Structural Authorization DSO

    Hi,
    I am trying to transport HR Structural Authorization DSO Objects in  BI 7.0  from Dev to QA system. The Data sources are 0PA_DS02 and 0PA_DS03. ( I am sure that there are lots of changes in Authrorization concept in BI 7.0),.
    1. Please suggest me if I need to make any changes and tests before moving these authorization objects to QA system.
    2. Also, do I need to take any pre-cautions while activating business content objects 0TCTAUTH  and 0TCTAUTH_T (Datasources look like are from 3.x) as I am getting issue with the activation of the transfer structure for these objects?
    Thanks a lot for your valuable inputs.
    Regards
    Paramesh
    Edited by: paramesh kumar on May 5, 2009 12:45 AM

    Hi Paramesh.
    You can use the DSOs 0PA_DS02 and 0PA_DS03 in BI7.0 as well. You just need to use the new generation of analysis authorizations in transaction RSECADMIN.
    You can use 0TCTAUTH and 0TCTAUTH_T in BI7.0, however we have experienced som problems with the 0TCTAUTH_T extractor, which dumped because of a poorly designed SELECT statement that was unable to cope with 10000 records. We have replaced it with a generic data source that uses table RSECTEXT directly.
    Regards,
    Lars

  • Cube issue with Project server

    We are having PWA instance and configured Cube(OLAP) to be pulled out from PWA using default OLAP build option in PWA.
    Resource pool and Reporting database has correct data but Cube report is showing wrong data.
    how can i troubleshoot this issue further. 

    Thanks for the reply!
    We are using PS2010 and this is related to few set of resources not for projects. columns has right values in Resource pool and also verified in reporting database which is matching data with resource pool but cube is showing incorrect values.. i have also
    tested by creating fresh cube with same set of fields there also its reporting same information but its not matching with resource pool or reporting database.
    Thanks,.
    Manojkumar 

  • Issue with project having Tag File containing definition of other Tag File

    Hi Everyone,
    I have a small problem which you experts are able to help with.
    As the subject of this Post has suggested, I have a project which was originally built in NetBean 6.0 and I'm trying to migrate it across to JDeveloper 10.1.3. So far, I've managed to compiled all jsps and java source files successfully but I'm now stuck with the following error messages during building of the project in JDeveloper:
    --- START OF ERROR ---
    Error(6): Unable to instantiate tag: menu:tab (class: oracle.jsp._tag._tabmenu._tab_tag) Make sure that the tag class is available and that the tag library containing the class is not excluded from this application.
    Error(6): Unable to find class for bean: null defined by tag with class: oracle.jsp._tag._tabmenu._tab_tag
    --- END OF ERROR ---
    I believe the reason was that I have this Tag file (menu.tag) that contains definitions and references to another Tag file and here is its content:
    --- START OF TAG FILE ---
    <%@ taglib prefix="menu" tagdir="/WEB-INF/tags/tabmenu" %>
    <%@ attribute name="tab" required="true" type="java.lang.String" %>
    <jsp:useBean id="login" class="au.wa.apa.webbeans.WrsLogin" scope="session" />
    <div id="menu">
    <ul>
    <menu:tab tab="NEW" currentTab="<%=tab%>" label="New Query" tooltip="Create New Query" url="aq/adv_new_query.wrs?formMode=new"/>
    <menu:tab tab="OPEN" currentTab="<%=tab%>" label="Open Queries" tooltip="View Open/Active Queries" url="aq/adv_queries_list.wrs?view=OPEN"/>
    <menu:tab tab="CLOSED" currentTab="<%=tab%>" label="Closed Queries" tooltip="View Closed Queries" url="aq/adv_queries_list.wrs?view=CLOSED"/>
    <menu:tab tab="SEARCH" currentTab="<%=tab%>" label="Search" tooltip="Search Query" url="aq/adv_queries_search.wrs?view=OPEN"/>
    <% if (!"STAFF".equals(login.getUserType())) { %>           
    <menu:tab tab="ATTN" currentTab="<%=tab%>" label="Attention Of" tooltip="Attention Of Administration" url="aq/adv_query_attention_of_list.wrs"/>
    <% } else { %>
    <menu:tab tab="TEMP" currentTab="<%=tab%>" label="Templates" tooltip="Template Management" url="aq/adv_query_template_list.wrs"/>
    <% } %>
    </ul>
    <div class="clear"></div>
    </div>
    --- END OF TAG FILE ---
    I've this problem for several days now and have not been able to solve it and I hope you are able to help me with this problem. Thank you for time and assistance and have a nice day.
    Kind Regards,
    John

    Hi Guys,
    Do we have any workaround to this problem? Any feedback will be welcomed.
    Thanks and Regards,
    John

  • Issue with the Structure urgent please.

    Hi guys,
    Hope every one doing great...
    I am creating a report in that v r having month/year char on this v have created a variable of type user entry.
    I had created the structure with many selection for the current year along with this my requirement is to restrict the data in the structure for the prior year as one of the selection.
    suppose the user enter the value in the variable = 05.2008
    then i need to restrict the data for the prior year= 05.2007.
    thanks in advance
    KK

    Hello KK,
                   Create a customer exit variable on 0calmonth characteristic , it must be with single option.
    here just for example i have given your new variable as test1 and the user entry variable as var1.
    then check the following code if it works.
    data: year1(4) type n,
          mon1(2) type n,
          mon2(6) type n.   
    when 'test1'.
        if i_step = 2. "after the popup
          loop at i_t_var_range into loc_var_range
          where vnam = 'var1'.
           clear l_s_range.      
            year1 = loc_var_range-low(4).
            mon1 = loc_var_range-low+4(2).
            year1 = year1 - 1.
            concatenate year1 mon1 into mon2.
            endif.  
            l_s_range-low = mon2.
            l_s_range-sign = 'I'.
            l_s_range-opt = 'EQ'.
            append l_s_range to e_t_range.
            exit.
          endloop.
        endif.
    hope it helps,
    regards,
    karthik.

  • Fade Effect Issue with table structure

    I have an existing HTML page with a table framework that uses
    CSS divs in some of the table rows. My SPRY data is currently
    wrapped in DIV tags within the table. I've discovered that the
    table is screwing up the fade effect in IE7. Is there any way I can
    get around this without removing the table and recoding the whole
    page in CSS? FYI...I using version 1.4. I'm not sure if 1.5 will
    fix this issue.

    Essentially the fade in fade out effect isn't working at all
    in IE. It's setup as a slideshow and uses the fade effect as a
    transition between the spry data. The slideshow works fine just
    without the fade effect. Everything works perfectly in Firefox
    though. I know this code will work as we have used it before, the
    only thing different is that I have my DIV with the SPRY content
    wrapped within a table cell and row. I've read that the TR tag
    cannot be used, but it's not exactly using the TR as an ID. Once I
    comment out the table, tr, and td tags, the effect works no problem
    so I know it is the table. I can't give you the URL because it's on
    our local network.

  • Issue with Project specific stylesheets

    Hi all,
    I was watching the thread Project specific stylesheets, and i think i follow all the steps but I can see any change on my WD app.
    I did the following:
    1.- Create a custom portal display, this generates a new entry inside
    usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\portalapps\com.sap.portal.design.urdesigndata\themes\portal
    2.- I copy this folder to:
    usr\sap\J2E\JC00\j2ee\cluster\server0\temp\webdynpro\web\sap.com\tcwddispwda\global\SSR\themes
    3.- Call my wd app like this
    http://<server>:50000/webdynpro/dispatcher/local/WDProy/WDApp?style_sheet=http://<server>:50000/webdynpro/dispatcher/sap.com/tcwddispwda/global/SSR/themes/ThemeName/ur/ur_ie6.css
    But this doesn’t do the work for me.
    Regards,
    Orlando Covault

    Hi Bharathwaj,
    Thanks for your reply, it was a nearly approach. I said nearly because the style changed but not entire well for example, I got a table with selection but the table doesn’t look well, the selection button is a button and there are no lines between rows or columns. Besides I can’t see a difference between any theme that I choose for example sap_tradeshow or sap_chrome. Any idea of what could be wrong?
    Regards,
    Orlando Covault

  • Issue with Project Site

    Hi
      Ideally project site would be created only when we publish the project for first time.
     I have published the project plan and site was created for first time without any issues
    When i try to publish the project plan from second time. Getting below error
    Please advise
    Regards
    Santosh

    Hello,
    So the project site still exists for this project? If you look in PWA Server Settings > Project Sites (if 2007 or 2010) or Connected SharePoint sites (if 2013), do you see the URL for the project site against the project in question?
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Rfc to jdbc --issue with import structure

    Hi
    I am doing asynch RFc to jdbc scenario, for which I followed the below blog,
    /people/swaroopa.vishwanath/blog/2006/12/28/send-rfc-to-sap-xi-150-asynchronous
    (My abap code is as per the blog)
    But one doubt ,as per the blog, my imported rfc structure in IR doesnot conatin those fields(table structure) then how this mapping is going to happen?
    Else all the configurations are ok and success in runtime n in sxmb_moni,
    Please can anyone help in understanding this,
    Thanks

    Hi,
    What is the problem which you are facing ?
    You cant see the fields after importing in XI ?
    If so where are you trying to see the fields ?
    >>wanted to know as to how to code in R/3 so as to trigger the RFC in background.
    This is what is mentioned in the blog.
    >>i am not able to understand the blogs logic (R/3 code)
    Which part of the code you are not able to understand ?? theres hardly any code .
    Any part/word of the code which you cant understand ..just click on that word and press F1.
    Regards,
    Sumit

  • Any Problem Running Office 2010 SP2 with Project Server 2010 SP1?

    We are running Project Server 2010 SP1 April 2013 CU and the desktop clients have now been upgraded to SP2 October 13 CU. We are having issues with projects in local cache showing as checked out when they are not actually checked out on the server. I was
    wondering if it is problematic to run the desktop client on a newer service pack than the server and if it could cause this type of issue?

    Hello, Aaron.
    The answer is YES, you'll probably have some issues.
    I would recommend:
    Downgrade clients to match Server's version
    Upgrade Server to SP2+October '13 CU
    And my preferred:
    Upgrade Server and clients to SP2 + '14 April CU

  • Project Structure in SAP R/3 Replication Issues

    Hi All,
    I have some of the Issues while creating the Project Structure in cProjects.
    1) The Project Structure getting generated in SAP R/3 is only mappped with WBS elements, why not Networks and Network Activies.
    e.g
    *cProjects                     SAP Project Systems*
    Project Definition -
    > Project definition
    Phase----
    > WBS Element
    Task----
    >WBS Element
    Mirrored Task----
    >WBS Element
    Sub Task----
    >WBS Element
    Checklist----
    >WBS Element
    Checklist item----
    >WBS Element
    Is this the standard feature or whether we can create the Network and Network Activites for Tasks and Checklist??
    2) The Numbering of the Phase, Tasks, Sub tasks, hecklist etc... all are of some 24 digit numerals, Can we automate the numbering like, the WBS element at level 1 should copy the project definition number and some extension...
    3) the Project generated in SAP Project Systems i.e the WBS Elements has status "MDLK" Master data locked.... Why is this set. Is it standard? Can we eliminate this?
    Hoping for answers from you all.
    Thanks & Regards,
    Stephen

    Hi Stephen,
    1) The Project Structure getting generated in SAP R/3 is only mappped with WBS elements, why not Networks and Network Activies.
    e.g
    *cProjects SAP Project Systems*
    Project Definition -
    > Project definition
    Phase----
    > WBS Element
    Task----
    >WBS Element
    Mirrored Task----
    >WBS Element
    Sub Task----
    >WBS Element
    Checklist----
    >WBS Element
    Checklist item----
    >WBS Element
    Is this the standard feature or whether we can create the Network and Network Activites for Tasks and Checklist??
    >>>> I think, you use cProject 4.0, as in cProject 3.1 it is possible to get object be replicated as PS activity. 
    Reason: The prupose of the replication is the costs-integration.
    2) The Numbering of the Phase, Tasks, Sub tasks, hecklist etc... all are of some 24 digit numerals, Can we automate the numbering like, the WBS element at level 1 should copy the project definition number and some extension...
    >>> You can implement a Badi to apply your own logic. There is a Note to give you instruction how to do it. If you fails to find it, please let me know. I will search it.
    3) the Project generated in SAP Project Systems i.e the WBS Elements has status "MDLK" Master data locked.... Why is this set. Is it standard? Can we eliminate this?
    >>> As the WBS is automatically created via integration. Use this status to prevent the user change it by mistaken. To behonest, I do not this logic, but it is standard behaviour.
    Kind regards,
    Zhenbo

  • SAP BW structure/table name change issue with BODS Jobs promotion

    Dear All, One of my client has issue with promotion of BODS jobs from one environment to another. They move SAP BW projects/tables along with BODS jobs (separately) from DEV to QA to Prod.
    In SAP-BW the structures and tables get a different postfix when they are transported to the next environment.  The promotion in SAP-BW (transport) is an automated process and it is the BW deployment mechanism that causes the postfixes to change.  As a result with the transport from Dev to QA in SAP-BW we end up with table name changes (be they only suffixes), but this does mean that when we deploy our Data Services jobs we immediately have to change them for the target environments.
    Please let me know if someone has deployed some solution for this.
    Thanks

    This is an issue with SAP BW promotion process. SAP BASIS team should not turn on setting to suffix systemid with the table names during promotion.
    Thanks,

  • Issue with Building OLAP Cubes in Project Server 2010

    Hi
    There is some issue with while building OLAP cubes. 
    I have created OLAP cube then successfully cube has builded. When i add resource level custom field which has lookup tables values in ASSIGNMENT CUBE  then getting cube failure meesage.
    I deleted and recreated custom field and lookup table but no luck
    Below error message from manage queue jobs
    General
    CBS message processor failed:
    CBSOlapProcessingFailure (17004) - Failed to process the Analysis Services database <DB NAME> on the 10.3.66.12 server. Error: OLE DB error: OLE DB or ODBC error: 
    Warning: Null value is eliminated by an aggregate or other SET operation.; 01003. Errors in the OLAP storage engine: An error occurred while processing 
    the 'Assignment Timephased' partition of the 'Assignment Timephased' measure group for the 'Assignment Timephased' cube from the <DB NAME> database. 
    Internal error: The operation terminated unsuccessfully. Server:  Details: id='17004' name='CBSOlapProcessingFailure' uid='f2dea43a-eeea-4704-9996-dc0e074cf5c8'
     QueueMessageBody='Setting UID=afb5c521-2669-4242-b9f4-116f892e70f5 
    ASServerName=10.3.66.12 ASDBName=<DB NAME> ASExtraNetAddress= RangeChoice=0 PastNum=1 PastUnit=0 NextNum=1 NextUnit=0 FromDate=02/27/2015 02:10:15 
    ToDate=02/27/2015 02:10:15 HighPriority=True' Error='Failed to process the Analysis Services <DB NAME> on the 10.3.66.12 server. Error:
     OLE DB error: OLE DB or ODBC error: Warning: Null value is eliminated by an aggregate or other SET operation.; 01003. Errors in the OLAP storage engine: An error 
    occurred while processing the 'Assignment Timephased' partition of the 'Assignment Timephased' measure group for the 'Assignment Timephased' cube from the 
    <DB NAME> database. Internal  
    Queue:
    GeneralQueueJobFailed (26000) - CBSRequest.CBSQueueMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='b7162f77-9fb5-49d2-8ff5-8dd63cc1d1d3' 
    JobUID='76837d02-d0c6-4bf8-9628-8cec4d3addd8' ComputerName='WebServer2010' GroupType='CBSRequest' MessageType='CBSQueueMessage' MessageId='2' Stage=''.
     Help me to resolve the issue
    Regards
    Santosh

    Is the SQL Server and Analysis Server are running on different servers and not on default ports? 
    If yes, then check if the same alias’s name added in Project Server is added on the Analysis Server.
    Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
    the thread.

  • Long list of issues with CP5 project

    I've been working on a project for the past few weeks and its nearing completion. A couple of things have happened which seem to have completely messed up the project. On the surface all looks well but when you actually use it, major usability issues emerge. I've listed the problems below. Would appreciate any advice if possible. Am using CP5 (latest update applied) on an XP pc.
    1. Throughout the project development I've been publishing to html to test it. All was working fine until I decided to trial a scorm export. When I selected Quiz Preferences to enable scorm reporting, CP locked up. I was then presented with the top strip of the Preferences menu window with the rest missing. This was a blue strip which ran right across the screen and onto my second monitor. I couldn't close it or escape it, or select anything beneath. So I had to force quit, no choice really.
    2. After the force quit I restarted CP and managed to enable scorm reporting. I tested an export (to zip), deployed on my Moodle site and all worked fine. I then noticed I needed to change a few details so went ahead and made these (all I added was a title for the scorm manifest). When I exported again, I ran into problems with my embedded flv videos, saying they were corrupt (which they weren't). I eventually got round this by exporting the zip to its own folder (had been exporting to the main folder containing the CP project file... obviously not a good thing). The exported scorm file is about 74MB.
    3. After all the above issues with the videos were sorted, I tested the scorm export and immediately ran into a whole rang of problems. Every single object that had a fade in & out affect had to have it removed as they were greyed out. My embedded videos were barely visable, looking like they'd been set to a 20% opacity in Pshop. Could still be played though, if you could find the play button. The opening slide decided to immediately fade once the scorm pack launched, despite never setting to do anything of the sort. I had to take a copy of another slide and recreate the front slide, then delete the old one. This seems to have fixed that issue. Now my final slide (which follows on from a Quiz Result slide) has decided to do an immediate fade in & out, so you can't read the text. Again I never told it to do that. All objects on the page have effects/transitions off but this hasn't had any affect at all.
    4. I have also found a very very odd pattern of behaviour with Click boxes used as links to web sites. I have 8 links on a slide (text boxes with text blue colour & click boxes overlaying). Clicking on the 1st two links works fine, opens them in a new window. Clicking on the 3rd, nothing happens. A 2nd click loads the web page. When you close it you find yourself on the next slide and have to go back. The same pattern occurs for the next 3 links. Very very odd.
    5. The other really annoying problem is with my next & back buttons. If I navigate through the package and then click back a few slides (or even go back 1 slide), I can't go forward again. I have to refresh the page. I've also found if I go back to the opening slide its greys outs completely, nothings visable. Again you have to guess when the next button is to move forward. The nav buttons are simple set to "go to next slide" and ticked infinite. This problem completely ruins the who package making it unuseable.
    I'm starting to think something has corrupted my project. If its not that then its CP being buggy. One thing I do know is its one of the most sluggish Adobe apps I've ever used. If I can't fix these issues the course won't be useable and I'll have to start from scratch with something else.

    Hi there. Welcome to the forum.  Sounds like you've had a bad day.
    Since no one else has chimed in yet, I'm going to suggest that you get rid of your Preferences file and let Captivate regenerate this, just in case it resolves some of the glitches.  This preference file can get corrupted and cause all kinds of weird behaviour.  So what I'm suggesting here might sound a bit radical but it's often proven to be successful for Cp weirdness issues.
    Here's an explanation I've copied from another post by the eminent Captiv8tr:
    You might try clobbering the preferences file. If you look in the following location, you should find the file named captivate_40.dat. Just Close Captivate, delete the file and restart Captivate.
    To locate this file, right-click your Start button and choose Explore. This should easily get you in the general area. If you look at the parent folder you should see Application Data. (you may need to configure Windows Explorer to show you this folder) Inside the Application Data folder should be an Adobe folder. And inside the Adobe folder should be the Adobe Captivate folder. And inside this folder should be the file.

  • Issue with stock qty of component in Structured Articles in SAP BI

    Dear Experts,
    We are extracting stock in BI through SAP standard data source. We have used 2lis_03_bx and 2lis_03_bf data sources. We are facing issue with stock data validation due to structure articles (pre-pack) available in SAP source system.
    We have stock of structure articles available at DC in source system.  When we extract this information in BI, this article gets split into its components automatically. Due to which stock of components articles gets increased with huge amounts.
    To analysis it in further detail, we have created below scenario:
    Article Document Number:  4900000827
    Article Number (Pre-pack):  300000082901
    Article Number (Component): 300000082002
    Stock of pre- pack article at this article document number: 174 pc
    Stock of component article at this article document number: 348 pc (due to splitting of pre-pack article) + 151 (its own stock movement). Total stock for this article is 499. But actually total stock for this article should be 151 only.
    As per our Business requirement, pre-pack article should not be split into its components. And stock in BI should be totally in sync with SAP stock.
    I kindly request you to suggest the solution to rectify the same.
    Thanks in advance.
    --Vikas

    Hi Vikas,
    Check the OSS note L 1320386 - Frequently asked questions regarding BW Trade Foundation too.
    Regards,
    Rajesh

Maybe you are looking for

  • Mac Formatted Time Capsule w/ PC Formatted External Drive Via USB?

    I use a Mac-formatted Time Capsule to run Time Machine backups on my MacBook Pro.  My wife backs up her PC laptop on a PC-formatted Western Digital "My Book" hard drive which is powered via A/C wall adapter.  I connected the Western Digital PC drive

  • How can I change the order of the songs listed in a playlist?

    How can I change the order of the songs listed in a playlist?

  • QuickAddress(UK) in Forms6

    I am looking at using QuickAddress to automatically populate address fields in Forms 6 client server. (Windows Client, Unix Server). Does anyone know how this works.

  • IPhoto Book, Page Formats

    Anyone have any suggestions on how to do a custom format in creating an IPhoto book that allows more text and pictures added where you want them and smaller than the formatted pages provided?

  • How to integrate help files to Oracle applications?

    Dear sir, I am develping a software based on Oracle forms. my questions are: can I integrate help files created with Robohelp inside the software?? what is the best output type that suites my application?? if you got what I mean, I need the user of m