STS - Locks lower level nodes when planning has been started

HI there,
I have 2 leaf level nodes in my STS hierarchy which for some reason are getting locked with the message 'Locked data through STS', this message usually occurs when they submit, but these users have not submitted and no one above them has done any activity, these leaf level users should be the first to enter data.  It only happens for 2 leaf nodes, the others seem okay.
Sounds a bit funny I know, does anyone have any ideas?
Thanks
SMS

Hi Shaiks,
Greeting.
I suggest you to check "Define Header Chars for Planning Session", perhaps, there is some selection that you miss where it causes data locking.
Hopefully it helps you
Thanks a lot and have a good day,
Daniel N.

Similar Messages

  • HT1222 i have low battery indicator when phone has been charged

    i have a low battery even when phone has been charged

    Battery meter recalibration...
    Fully discharg (until it shuts off) and then fully recharging (don't unplug until 100%) to recalibrate the battery meter.  You may need to do this a few times.

  • Nodes with Only One Lower-Level Node = Hide

    Hi everyone
    Have anyone present this situation:
    Iu2019ve a quey to report inventory aging. It has two hierarchies to show data. In Rows I have Major Markets and in Columns a date hierarchy to show aging Ex: from 0 to 8 months, 9+ and 13+. Of course here I have also value and volume.
    Query reports all values for all major markets fine. When I filter one major market, letu2019s say France also brings detailed figures but when I add any drill down in rows all values goes to cero (0).
    Te estrange is that if you swap drill down order with major markets or drill down by columns with the same characteristic figures come out again as usual.
    I know this sounds like a SAP note but I have not been able to find it either.
    Thanks a lot for your help, and of course points will be assignedu2026..
    Ps. Important, this happen when  option u201CNodes with Only One Lower-Level Node = Hideu201D (this is selected on purpose because there are some repeated nodes in major market hierarchy Ex. France u2013 France and if there is just one value under first node then means that only display of last one is necessary to avoid repeated values).

    Solution we found is to remove flag "Do not display leaves for inner-nodes in the query", directly on the hierarchy.
    Thanks

  • How to get label of Parent level nodes, when itemOpen() event of any node in AdvancedDataGrid in Flex?

    Hi all,
              This is the code, to get the label of every one parent level nodes, when we open the parent node item in AdvancedDataGrid in Flex.
    <?xml version="1.0"?><!-- dpcontrols/adg/SimpleGroupADGMXML.mxml --><mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert; 
    import mx.events.AdvancedDataGridEvent; 
    import mx.collections.ArrayCollection; [
    Bindable] 
    private var groupData:ArrayCollection = new ArrayCollection([{Computer:
    "HardWare Devices", Device:"Keyboard", Company:
    "Logitech", PriceInRupees:"500"}, {Computer:
    "HardWare Devices", Device:"Keyboard", Company:
    "Microsoft", PriceInRupees:"500"},{Computer:
    "HardWare Devices", Device:"Mouse", Company:
    "Logitech", PriceInRupees:"300"},{Computer:
    "HardWare Devices", Device:"Mouse", Company:
    "Microsoft", PriceInRupees:"300"},{Computer:
    "HardWare Devices", Device:"Monitor", Company:
    "LG", PriceInRupees:"5000"},{Computer:
    "HardWare Devices", Device:"Monitor", Company:
    "Microsoft", PriceInRupees:"5000"}]);
    //This method is used to get label of every parent lavel nodes, when we open any item 
    private function getLabel(e:AdvancedDataGridEvent):void{
    Alert.show(e.item[
    "GroupLabel"]);}
    ]]>
    </mx:Script>
    <mx:Label text="NOTE : Open the every parent level nodes here. We can get the label of every one parent level nodes."color="
    blue" fontWeight="bold"/>
    <mx:AdvancedDataGrid id="groupADG" width="
    100%" height="437" initialize="gc.refresh();" itemOpen="getLabel(event)"
    >  
    <mx:dataProvider>
    <mx:GroupingCollection id="gc" source="{groupData}">
    <mx:grouping>
    <mx:Grouping>
    <mx:GroupingField name="Computer"/>
    <mx:GroupingField name="Device"/>
    </mx:Grouping>
    </mx:grouping>
    </mx:GroupingCollection>
    </mx:dataProvider>  
    <mx:columns>  
    <mx:AdvancedDataGridColumn headerText="
    Computer"/>
    <mx:AdvancedDataGridColumn dataField="Company"headerText="
    Company"/>
    <mx:AdvancedDataGridColumn dataField="PriceInRupees" headerText="PriceInRupees"/>
    </mx:columns>
    </mx:AdvancedDataGrid>

    Dialog\ResponseTime 6585
    "The dialog response time consists of the period of time from the request of the dialog to the dispatcher through the processing, to the ending of the dialog in the dispatcher and the transfer of the data to the presentation layer"
    This is not buffered as far as I know is measured on demand
    Read,
    http://help.sap.com/saphelp_nw70/helpdata/en/31/d7843b43c8e937e10000000a11402f/content.htm
    Regards
    Juan

  • Its near impossible to get a Advanced datagrid to remember its opened nodes when it has fresh data

    Theres a post in
    http://www.mail-archive.com/[email protected]/msg85521.html//www.mail-archive.com/[email protected]/msg85521.html
    which is basically saying its near impossible to get a Advanced datagrid to remember its opened nodes when it has fresh data
    I'm having pretty much the same problem (exept I'm not filtering just getting the latest data from the server)as this guy and have been searching for a solution, heres what he said:
    Sun, 02 Mar 2008 08:07:46 -0800
    Hello guys,
    I'm trying to filter my ADG without success :
    I created a GroupingCollection from a flat ArrayCollection.
    ADG's dataProvider is GroupingCollection.
    First issue : refresh
    if I filter the underlaying ArrayCollection, the related
    groupingCollection doesn't refresh automatically (bug? feature?)
    Actually I menaged to force gc.refresh() with some event( it is
    impossible to listen on CollectionEventKind.REFRESH because of
    infinite loop ac.refresh => gc.refresh )
    Second issue (more important) : openNodes
    Ok now that my gc is refreshed, the Tree in the ADG collapses itself
    (ok let say that is normal), and I need it to expand all nodes that
    were opened before.
    I tried to do something like this :
    var openNodes : Object = IHierarchicalCollectionView(
    myADG.dataProvider ).openNodes;
    gc.refresh();
    myADG.dataProvider.openNodes = openNodes;
    and it doesn't works.
    next I tried this :
    var openNodes : Object = IHierarchicalCollectionView(
    myADG.dataProvider ).openNodes;
    for each( var node : Object in openNodes )
    IHierarchicalCollectionView( myADG.dataProvider.openNode( node )
    guess what, doesn't work
    I'm calling myADG.invalidateList() each time too.
    I don't know what to do to achieve this simple task, I'm a bit
    disappointed because I expected lot more from the brand new
    AdvancedDataGrid and this basic functionality actually seems too hard
    to implement.
    I still hope I'm wrong and someone can show me the correct solution
    Thank you all,
    Adnan

    Hi,
    I remember the days when Oracle would practically give Oracle Financial s away just for the implementation consulting fees.
    Yeah, IBM used to give-away DB2 also . . . .
    Oracle Financial s away just for the implementation consulting fees. Yeah, but any ERP requires massive set-up costs. I once worked on an SAP effort that cost over $20,000,000.
    complete with Microsoft head to headIn what? Oracle is far-and-away the world's most robust and flexible database, hundreds of times more powerful that SQL Server.
    IMHO, it's like apples-to-oranges . . . .
    Everyone is running SQL server Here, DICE shows over a hundred Oracle openings in the Boston area, that might help you:
    http://seeker.dice.com/jobsearch/servlet/JobSearch?op=300&rel_code=1102&N=0&Hf=0&NUM_PER_PAGE=30&Ntk=JobSearchRanking&Ntx=mode+matchall&AREA_CODES=&AC_COUNTRY=1525&QUICK=1&ZIPCODE=&RADIUS=64.37376&ZC_COUNTRY=0&COUNTRY=1525&STAT_PROV=0&METRO_AREA=33.78715899%2C-84.39164034&TRAVEL=0&TAXTERM=0&SORTSPEC=0&FRMT=0&DAYSBACK=30&LOCATION_OPTION=2&FREE_TEXT=oracle&WHERE=Boston+MA&WHEREList=Boston+MA&SEARCH.x=0&SEARCH.y=0
    Excel is the tool of choice for accountants and its integration withcubes is nothing short of stunning
    Sorry, I must disagree! Yes, CPA's will download Oracle data into spreadsheets for analysis, but Excel is wanting, especially for hypothesis testing, correlational analysis and data mining. Oracle's ODM, however, is truly stunning, light-years ahead of PC-based tools:
    http://www.rampant-books.com/book_2006_1_oracle_data_mining.htm
    Larry make Oracle great again be cutting the costI cannot speak for Oracle Corporation, but Oracle XE is FREE, totally and completely free. Add-in Apex for free, and it's very competitive.
    Hope this helps. . .
    Don Burleson
    Oracle Press author
    Author of “Oracle Tuning: The Definitive Reference”
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

  • How do I tell what version (update / release level) of version 6 has been applied to my system?

    Question
    How do I tell what version (update / release level) of version 6 has been applied to my system? I have applied several different release levels to version 6 of FF but all the about feature tells me is Version 6.0. no version! This seems to be a change in the way updates are handled. Is that a bending because of the speed of which you're pushing out updates and new releases?
    contact me if you need something more
    ''deleted email address''

    @cchur <br />
    Nope, I never used Chrome, but I did try Chromium on my Windows desktop PC for a few months last year. I got tired of the Google updater. exe running all the time and Google's method of doing updates, so it's gone. I do have Chromium on my Linux EeePC since last summer, but Ubuntu handles all updates and gives the user the capability to accept or deny, any or all updates - much more to my liking, similar to the way Mozilla does it. I don't like software developers forcing to update until I am ready to proceed.
    There's a lot more about this new Fast Release system, than just the lack of visible version numbers, that I don't like. The Nightly, Aurora, Beta, & Release sequence is dumb with the way it changes the version numbers. I prefer installing (for instance) what will become version 7 and have that installation progress thru the 4 stages, instead. Now it's like Nightly going from 7 to 8, Aurora going from 6 to 7, and Beta doing - hell, I won't know if it becomes a Release or if it just dies and I will have to install the Release version myself. ''Quite honestly I don't care, because I don't think this new "system" is going to last too long without major modifications. Too damn many users are so pissed off, that when Firefox starts losing large numbers of users, Chrome keeps growing and eventually passes Firefox in number of users and market share of usage - Mozilla will wake up and see the "light" and change back to the way things used to be done, to a certain extent.''
    I also dislike the UI changes in 4/5/6/7 enough that I am still using Firefox 3.6 for almost everything and Firefox 2.0.0.20 for the rest. I have been setting my toolbars up almost like Mozilla did for Firefox 4, since Firefox '''0.7''' in 2003 and I haven't come up with a workable combination of mods and extensions to configure Firefox to look and work the way I have been doing for almost 8 years now.

  • My data plan has been abrutly changed

    Hello
    I have a family plan that I share with my mother.  We have been Verizon customers 10 years.  Today, I received a text that my plan had been changed.  I quickly rushed to the computer to login to our account on My Verizon.  It showed that my mother had added a line to our plan, my step-father has just returned from Afghanistan a few days ago and needs a phone for employment-seeking.  I wish they had told me, because it seems the workers at the Verizon store has screwed us out of our unlimited data.
    My step-father and mother purchased the new phone at full price.  They were led to believe by the Verizon employee that no changes would be made to our account aside from the additional line.  Now, I login to find that not only are my eligible phone upgrades gone, so is our unlimited data.  As my mother lives 1500 miles away, I cannot go into the store and assist her in this matter.  I was wondering if anyone has insight into this situation.
    I was under the impression that we were 'grandfathered' in to the upgrade program as well as unlimited data, so long as all phones were paid at full price with no subsidy.

    cbjb19er wrote:
    Thank you for the input, everyone.  Am I safe to assume that if the plan has been changed for some reason, this is all reversible under the 30-day hassle free guarantee?  Firstly, my parents clearly did not know what they were doing and were likely led out of unlimited data by a wiser and sneaky employee.  Secondly, they stated to me after the fact that they didn't even really want a smartphone so I am just going to mail them one of my old phones and have them return the smartphone they just purchased.
    So if it comes down to it, will this resolve the issue under the circumstances described and put everything back as it was?
      Who is the owner of the account? If they return the phone, they "should" be able to reverse everything, and then you could add a line with a basic phone and keep everything the way it was. People have a tendancy to listen too much to salespeople, when they need to go in with a plan, and not vary from it, even if they are urged to.

  • No maintenance plan has been confirmed for Order 000004024181; Follow-up ca

    Hi
    I try to close a list of preventive order (initiated by maintenance plan) from the transaction IW38 but the system displays the following error message
    "No maintenance plan has been confirmed for Order 000004024181; Follow-up call exists
    Message no. IW597"
    thank you for your help

    Hi,
    You mean close -
    >TECO???
    If yes Go in IW38 select all orders  ,click Enviroment Tab and you can do the TECO but that order should not have Open reservation.
    Regards,
    Rakesh
    Edited by: RAKESH ASHOK MANE on Aug 26, 2010 1:02 PM

  • I have enlarged icons on the log in screen and can not enter my login code. I have tried enough times that I am locked out and my iphone 5 has been disabled.How do I fix this??

    I have enlarged icons on the log in screen and can not enter my login code. I have tried enough times that I am locked out and my iphone 5 has been disabled.How do I fix this??

    Hey there byambar,
    Welcome to Apple Support Communities.
    It sounds like you’re describing two issues, the first issue is related to the Zoom accessibility feature and the second issue is related to the device being disabled.
    Take a look at the article linked below to learn more about Zoom and the other accessibility features on your iPhone 5.
    Use Accessibility features in iOS - Apple Support
    This article will help you resolve the issue with your iPhone being disabled.
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    Take care,
    -Jason

  • HT1212 How do i restore my iphone when it has been disabled and can not be restored through itunes because of the error message that says "The iphone software update server could not be contacted.

    How do i restore my iphone when it has been disabled and cannot be restored through itunes because of the error message that says "The iphone software update server could not be contacted

    Have you jailbroken this device? This will make the iPhone not talk to the Software Update Server (that signs and accepts software updates) please refer to the following link? Error 3194, Error 17, or "This device isn't eligible for the requested build"
    The iPhone will talk to the software update servers, just need to change the host files, it's a simple process, sorry if you were confused about the wording in to top?

  • Why do Sony DSC-RX100M3 raw files look strange in PE9 when flash has been used in the shot?

    I have just bought a Sony DSC-RX100M3 camera and use it to shoot raw + jpeg.  I want to use the raw files in my Photoshop Elements 9, which has the Camera Raw plug-in version 6.5.0.216 installed. I have downloaded the Adobe DNG converter version 8.7.1.311 so I can import my Sony raw files into PE 9 as they cannot be used directly. Most of the time these raw files look OK, but when I use the flash on my camera and then look at the raw files in PE9 they look far more pink than the corresponding jpeg files. The jpeg files look more or less as I remember the scene when I shot the picture.
    When I look at the same raw and jpeg files in Sony's own Image Data Converter software (version 4.2.04.17270) the raw and jpeg files look very similar to one another, and there is no pink colour cast in the raw file.
    What am I doing wrong in Photoshop Elements? I though the DNG converter keeps all the information from the original raw file and makes no changes to it, so why does the raw file look so different when flash has been used?
    Thanks for any help you can give!
    AVM

    Looking at the pictures of the camera online, I'd say there is no lens shade--a device to keep light from the sides from causing lens flare--and the camera lens, itself, was just too far extended and there was a lens shadow.  You probably can't use the flash that close up and should back off and zoom in further.  Experimenting would give you a sense of what situations will have a shadow of the lens or not.
    Your ACR plug-in is old enough not use have Process Version 2012, yet, only 2010 and 2003 so Adobe didn't have the idea to put the selector down next to the camera profile. The toning options are better with Process 2012 so that would be a reason to upgrade, but I am not sure that the Camera Neutral profile in PSE9 would be different than PSE13.  If Adobe changed the camera profiles then people's pictures would look different once they upgraded to a new version and that's not something that's supposed to happen.
    You can certainly download the PSE13 trial and see if things look any different, but they may not:  Download a free trial or buy Adobe products | Adobe downloads   There would be newer minimum OS version requirements for the newer versions of Adobe software so check those out before trying to install, unless you're on Windows 7+ or OSX 10.8+ then it should be fine.
    One more thing, the White-Balance tint is set to +10 by the camera:
    This As Shot WB is more magenta and even when using the Adobe Standard profile, moving the Tint down to +0 makes things a little more green like your camera JPG.  So there is more than just changing the camera profile that you can do:

  • How do I unlock my iPod touch when it has been disabled?

    How do I unlock my iPod touch when it has been disabled? My children can't remember the four digit pass code they entered and it is now disabled.

    Recovery mode...
    http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...
    But... if the Device has been Modified... this will Not necessarily work.

  • Error detailed planning has been reset

    PS Gurus,
    user is trying to copy planning through CJ9BS
    Gave project definition & versions & month & year
    In setting button user selected copy detailed planning for Cost elements
    User is getting error (detailed planning has been reset) Message no. KPT3017
    Thanks
    MM

    We would appreciate if you post the solution for this.
    Regards
    Madhusekhar Gupta

  • Why is the message app popping up on my mac when everything has been disabled on my iphone and mac, I use my phone for messages, not my mac. Is this a bug? I just want it off my mac forever!

    Why is the message app popping up on my mac when everything has been disabled on my iphone and mac as per the instructions all over this forum, I use my phone for messages, not my mac. Is this a bug? I just want it off my mac forever!
    Have disabled in Messages > preferences on the Mac
    imessage is disabled on my iphone
    Same goes for Safari which pops up on the mac when I open it on my iphone, how can I disable it all?

    Thanks but have signed out, disabled and nothing.
    It's Yosemite not Mavericks.
    What it won't let me do is delete the account as the - button is greyed
    out.
    It won't let me delete the app from the OS
    On Monday, February 2, 2015, Apple Support Communities Updates <

  • Is it possible to block an ipod touch when it has been stolen ?

    Is it possible to block an ipod touch when it has been stolen ?

    - If you previously turned on FIndMyiPod and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have to iPod play a sound via iCloud.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing
    Reporting a lost or stolen Apple product
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

Maybe you are looking for

  • Confusion with chapters vs. sections

    Reviewing the InDesign support documents, I found this: "You can add a chapter number variable to your document. Like page numbers, chapter numbers can be updated automatically and formatted and styled as text. A chapter number variable is commonly u

  • System wide font settings

    I am a websdite designer / developer and I am noticing that I may have accidently hit a key combination that has changed my system wide font settings... I have a co-worker, same hardware / software and my browsers render my code different. Same brows

  • IPhone won't call, error message in itunes

    So I have an iPhone 3g, all updated and everything. My itunes says it can not read or write on the disk, also my iphone will not make or receive calls. It says I have no service when I should; I tried everything the troubleshooting website told me an

  • Remove Mobil me Sign In

    Does anyone know how to remove the Mobile me sign in (or join now) splash page that pops up every time I load the iweb program? I do not publish to Mobile me, but to my own hosted server. I guess if you don't mind me asking two questions, is there a

  • Mac OS X 10.6.3 doesn't recognize my iPod touch 3.1.3

    Help please. My Mac OS X 10.6.3 doesn't recognize my iPod touch 3.1.3, I am using Xcode 3.2.3 now. My iTunes is 9.2.1(5). What will I do?