In PS module transaction CJ40 after detail planning back button throws out

In CJ40 primary cost planning we come back to annual view by clicking back button now if i press back button system throws out from transaction CJ40 . rather to come back to element overview screen. Anybody can give me solution for this as the user suffer most during the cost planning of project having more than 100 WBS. if by mistake he click button in middle of his work . all his work lost and he has to do it again it should ask for saving or not . please give me solution
Edited by: shab396 on Mar 9, 2011 6:07 PM

Hello,
Are you uploading the data manually through transaction code?
It is better if you create a program to manage planning data and upload the data at one go. You will save a lot of time.
You can use FM 'KBPP_EXTERN_UPDATE_CO' for CJ40.
You can also go for BDC recording but if there is a FM or a BAPI available for it then better is to use FM/BAPI.
Hope this helps.
Regards,
Saba

Similar Messages

  • Sometimes when using the Google search engine, after using the Back button in the Firefox 4.0.1 browser, I am no longer able to click in the Google search box.

    Sometimes when using the Google search engine, after using the Back button in the Firefox 4.0.1 browser, I am no longer able to click in the Google search box.
    This problems has been occurring on two different machines over the last two days.

    I think this may not be a browser problem but rather a Google problem.
    I am getting the same problem with the Google Chrome browser.

  • Safari reloading previous page after pressing the back button

    Hey guys, here my question regarding Safari...
    Why is it that every time I do the two finger swipe on the trackpad to go back to the previous page I was viewing on the web, freaking Safari takes me back to that page instantly but then automatically reloads the page. WHY?!?!
    I don't have this issue while using Firefox. I swipe to go back to the previous page and it's instantly available for me to continue browzing / scrolling, etc.
    Another thing I noticed in Safari is that if I'm half way down a page and click on something, which takes me to that page but then I swipe to go back, it doesn't take me back to where I was on the page (say, half way down, for example) it take me up towards the top (not all the way at the top, mind you, just up higher, NOT WHERE I WAS WHEN I LEFT THE PAGE) Why does it do this?!?! You'd think that Apple would have designed Safari to be the next best thing since sliced bread and that it would work instantly and flawlessly. I'd imagine that Firefox and other browzers would be the ones taking forever to load but it's freakin Safari that is doing this, I don't get it.
    For the record, Firefox functions flawlessly. Instantly shows the page I was at when I press the back button or swipe back and it puts me BACK IN THE SAME SPOT THAT I WAS AT BEFORE I LEFT THE PAGE!!!!
    I use both browzers as I need two (use both for different things and have different bookmarks saved, etc) but I'm starting to HATE Safari simply for this one issue I'm having. It makes surfing the web take 2x as long as I not only have to wait for the page to RELOAD after pressing the back button, I also have to scroll back down to where I was before I left the page, which takes TIME!
    Someone please explain this to me. I looked at other posts regarding this issue but there is no clear solution to the problem.
    HELP.

    I think Apple should give the end user the choice whether to autoload the webpage when you press the back button or not. It would be a simple fix for this issue that it seems a lot of people are suffering with.
    I WANT to use the default web browser that my Macbook Pro came with (Safari) and don't really want to use the alternatives (Firefox, Chrome, etc) but surfing the web is a slow, time consuming process with this auto reload "feature".
    Apple, Please fix this ASAP!
    This is my first Apple laptop (was a long time Sony Vaio / Windows user) and I expected good things from my Mac, after hearing / reading all the reviews but this Safari issue is a MAJOR turn off for me. It needs to be address ASAP.

  • Unable to go back to where I ieft off after clicking the back button

    When I browse photos in Smugmug, after selecting the gallery I want, when I am finished and I click the back button it takes me back to the beginning of the galleries and not where I selected the last gallery or photo. IE and chrome don't do this.

    Let me see if I can make this more clear. In Smugmug I browse galleries and scroll down a page until I see a gallery I want to look at. I may have scrolled down past several hundred galleries before I select a gallery to look at, so I am quite a ways down. Anyway I select the gallery and it opens and I browse all the photos. When I am finished I go to the top and click the back button. If I am using IE it takes me back to the point where I selected the gallery I looked at. However, in firefox if I click the back button it takes me back to the beginning of the gallery and I have to scroll thru all the galleries again and find where I left off.

  • Windows Phone 8 Can't Update listbox item in XML file after using hardware back button?

    Hi All i have a list box and i am saving list box selected item in XML file thats working fine but the problem is that when i will close my app and reopen and add more value to list box my previous value is removed form the xml file and listbox also how
    i can save my current added value and previous value in xml file i am using following code :
    and iam using following code
    <Grid x:Name="ContentPanel" Grid.Row="2" Margin="15,10,15,0">
    <ListBox Name="list_location" Tap="list_location_Tap" Foreground="Black">
    <ListBox.ItemTemplate>
    <DataTemplate>
    <TextBlock x:Name="item_name" Text="{Binding description, Mode=OneWay}" Padding="5,15,5,15" TextWrapping="Wrap" FontSize="{StaticResource PhoneFontSizeLarge}"/>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>
    <ListBox Name="list_locationAdd" Background="Red" Foreground="Black" Visibility="Collapsed">
    <ListBox.ItemTemplate>
    <DataTemplate>
    <TextBlock x:Name="item_name" Text="{Binding description, Mode=OneWay}" Padding="5,15,5,15" TextWrapping="Wrap" FontSize="{StaticResource PhoneFontSizeLarge}"/>
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>
    </Grid>
    and my back end code is follow:
    XmlWriterSettings x_W_Settings = new XmlWriterSettings();
    x_W_Settings.Indent = true;
    using (IsolatedStorageFile ISF = IsolatedStorageFile.GetUserStoreForApplication())
    using (IsolatedStorageFileStream stream = ISF.OpenFile(filename, FileMode.Create))
    XmlSerializer serializer = new XmlSerializer(typeof(ObservableCollection<Prediction>));
    using (XmlWriter xmlWriter = XmlWriter.Create(stream, x_W_Settings))
    data.Add(new Prediction() { description = App.professionalId });
    list_locationAdd.ItemsSource = data;
    serializer.Serialize(xmlWriter, data);
    protected override void OnNavigatedTo(NavigationEventArgs e)
    try
    if (list_locationAdd != null)
    using (IsolatedStorageFile ISF = IsolatedStorageFile.GetUserStoreForApplication())
    using (IsolatedStorageFileStream str = ISF.OpenFile(filename, FileMode.Open))
    XmlSerializer serializer = new XmlSerializer(typeof(ObservableCollection<Prediction>));
    ObservableCollection<Prediction> data = (ObservableCollection<Prediction>)serializer.Deserialize(str);
    if (list_locationAdd != null)
    this.list_locationAdd.ItemsSource = data;
    list_locationAdd.Visibility = Visibility.Visible;
    catch (Exception ex)

    Can you provide a working sample?  Upload to Onedrive and share it with us.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Youtube audio keeps playing after I hit back button.

    Hi,
    I've been having this issue on youtube when I hit the back button the audio from the video keeps playing, I've also noticed that it only seems to happen when the comment section gets stuck loading which is frequent even though I have a fast internet connection.

    why do repliers keep suggesting to disable protected mode and harfware acceleration when that clearlyisnt a solution to this problem. are you robots?

  • CJ40 Detailed Planning options not active

    Hi Experts
    I wish to do Detailed Cost Planning for my WBS elements, but when I go to transaction CJ40 >> Extras >> Detailed Planning, the options are grayed out (inactive). So I am not able to do detailed Planning through CJ40.
    Can sombody have an idea how it can be rectified.
    Thanks
    JOHRI

    I think you are trying to access detailed planning from CJ40 in overall value screen. Detailed planning is available for fiscal year wise. Change the period from overall to any current or any fiscal year and now check again, detailed planning will be active now

  • Trap back button processing and exit transaction and re-enter program.

    Hi
    I wonder if one of you guru's can help me. We seem to be getting loads of short dumps and I have been assigned the task of looking into it. Basically we have a program that the user runs (transaction FBL5N - Program is RFITEMAR).
    When the user executes the program he/she will be presented with a list of customer line item display they then select the items they want to view and press the display icon that gives a more detailed view.
    When they press the back button it goes back to the list and they are able to select another item and repeat the above process.
    My task is to trap the back button from the deatail screen (the last screen) and after trapping the back button I need to completely exit out of the transaction and then go back in at the point that they were at prior to going into the detailed screen.
    This is required as we think everytime the user displays the detail screen the system is grabbing memomry and not relinquishing it.
    Many thanks in advance .
    Raj
    Disagramatically
    =============
    Currently
    =======
    screen 1 (selection screen) --> execute
                      screen 2 --> (select item & press detail icon)
                                screen 3 (detail info)  press back
                      screen 2 --> (select item & press detail icon)
                                screen 3 (detail info)  press back
                      screen 2 --> (select item & press detail icon)
                                screen 3 (detail info)  press back
                      screen 2 --> (select item & press detail icon)
                                screen 3 (detail info)  press back
    What I require
    ============
    screen 1 (selection screen) --> execute
                      screen 2 --> (select item & press detail icon)
                                screen 3 (detail info)  press back
                      exit transaction and then go to
                      screen 2 --> (select item & press detail icon)
                                screen 3 (detail info)  press back
                      exit transaction and then go to
                      screen 2 --> (select item & press detail icon)
                                screen 3 (detail info)  press back
                      exit transaction and then go to
                      screen 2 --> (select item & press detail icon)
                                screen 3 (detail info)  press back

    trap the back button
    its not at all clear...
    ur req is from screen 3 ->display document    then on back button
    screen 2 the list display...
    The report acts in the same way ....

  • After user logout, browsers back button is still working

    when the user logout, after clicking the back button we can see the application.
    Can anyone suggest me how to stop this.

    which means the browser has cached your page (if IE your setting for check for newer versions of pages is probably automatically ). You need to expire your pages , if you dont want this to happen (either you have to set expiry headers in code, or you can do it on your webserver if you have a webserver fronting weblogic) or live with this behavior (you may have noticed that bank sites ask you to close your browser for added security for this purpose.
    Alternately if you want to simply stop a majority of users you should change the logout to a post and perform a redirect after logout to the next page (so that back will redirect again to the same). Users would have to know to click back button twice, but this behavior is annoying

  • Cost plan (transact. cj40 ) and G/L ACCOUNT (transact. FB50 )

    Hi all,
    I have to enter COST PLAN by transaction CJ40 and G/L ACCOUNT by transaction FB50. I have to make it inside a program to run in background and not use batch input.
    Do you have some idea ?? some bapi ??
    tks a lot,
    Roberto.

    Hi,
    try using this Standard program RSBDCSUB-for background processing.
    In your report program-
    Use the SY-BATCH to check for backaground processing set or not.
    Depending on this SY-BATCH value call the transaction as required by you.
    Or
    Design a report by calling thse 2 transactions and In menu
    PROGRAM->EXCEUTE->BACKGROUND this way we can do it. Pls let me know if you any issues with this.
    <removed_by_moderator>
    Best Wishes,
    Chandralekha.
    Edited by: Chandralekha on Jul 8, 2008 7:45 AM
    Edited by: Julius Bussche on Jul 28, 2008 10:28 AM

  • Report to Check material attach in CJR2 (detail planning)

    Hi All,
    Is there any report to show which material that i already input in CJr2 (detail planning)
    Step 1. CjR2
           2. choose layout 1-701 CE planning
           3. Input WBS and CE
           4. Go to edit and detail planning
           5. Input material no dan plant , quantity, when it save it goes to the total value. But i could not find report to show material that was assigned.
    Plz advice.
    Cheers,
    Nies

    Hi Sreenivas,
    I go to CJR2
    Then I put WBS element : let say ABCD
    Cost element : 630600
    Then I select august and go to Edit - detail planning
    I choose item category M and put material number and qty
    then save it and post
    After that i try to use standard report S_ALR_87013532 ..its only show the plan cost.
    I wish there is standard report to check which material has been assigned in the WBS and CE.
    Cheers,
    Nies

  • Problem with MIRO Transaction while posting Un planned Delivery cost

    Hi all,
    We have entered all the details including unplanned delivery cost in transaction MIRO. When we are trying to post the same by using post button directly with out simulation, system is asking for plant details.
    For first time we have entered wrong Plant details , system immediately asking again for plant details.
    Next time even if we entered correct plant details, the system is coming out from the screen MIRO and it is not posting the document.
    If you go through simulate button and it is working fine and it is giving Warning message, If we enter the wrong Plant details.
    My Client requirement is If we post the MIRO transaction including Un planned delivery cost with Post button. If we enter wrong plant details. System will through Error message, until we enter the correct plant details.
    Is there any way to do this. Pl help me in this regard.
    Regards,
    Ramesh

    In the MIRO T Code, U can see PO reference tab is there, Just below it there is Purchase order/scheduling agreement field is there . enter the purchase order number in blank field next to Purchase order/scheduling agreement and press enter. U can see it will  take the required data automatically.
    hope this helps
    regards

  • Personnel Cost Planning - Detail Planning

    I would like to ask you if some user in R3 system can handle the detail planning functionality of personnel cost planning component for all the plans-scenarios for all existing organizational units;
    how is it possible and through wich connection between the user and this role.
    (For example this user must be able to add or to increase cost items to the total sum of the company)
    thanks a lot

    Hello Andreas,
    Please review the note 736170 and make sure that the suggested support package is implemented in your system.
    And also please check if your cost plan has the 'Detail Planning Possible' date filled in, because it should be maintained.
    If Badi HRHCP00_RESP_OBJECTS activated, then did you try to regenerate the Badi definition for checking the
    resposible objects? (Se18)
    Is any other Badi activ instead of this one?
    In IMG - Cost Plan Runs - Badi Specify Authorizations & Objects in Area of Responsibility if badi is activated, see if you get this error if you deactivate it.
    Please check further the configuration for the BSP application. Is transaction PHCPDETLC called properly?
    See also the note 592085.
    Best Regards,
    Shree

  • How to identify Which function modules are used in the planning area?

    Hi all,
    there are couple of function module derviation is used to derive the calendar year, month, fiscal period etc.
    But how to identify which function module is used in which planning area?
    I cant find out from the where used list from function modules?
    Thanks
    pooja

    Hi Pooja,
    Go to characteristic relationship tab,click on detail icon on extreme left of the derivation,there you will get the name and the details of function module used for derivation.
    Regards,
    Indu

  • Returns PO appearing in VL10B  transaction even after delivery is created with full PO qty

    Hi All,
    Returns PO is  appearing in VL10B  transaction even after delivery is created with full PO  qty /
    Regards
    ab

    Hi Ayub,
    Please go to the Return PO item details, and check the Delivery tab and make sure the delivery completed check box is selected. If not please select the check box and save the line items.
    If there are multiple line items, then do the same for all the line items.
    Then check in VL10B and confirm me.

Maybe you are looking for