How to make rolling plan at any point of time for 12 months using SOP/LTP?

Hi Gurus,
I am configuring an MTS scenario where the client desires that at any point of time, when he does planning, system should do a rolling plan. For example, let us say that we first do the planning in Jan for Jan to Dec. When he does the planning again in Feb, it should become a plan for Feb to Jan and so on. Is this possible in SOP/LTP? Please advise. Thanks.
Regards,
SB

Yes. This is normal for SOP, but what are looking to achieve using LTP? Is this rolling plan operative, or simulative?

Similar Messages

  • How to make a photo STAY in the assets panel for future use for In browser editing?

    How to make a photo STAY in the assets panel for future use for In browser editing?
    When I delete a photo from a page, it does not stay in the assets panel. My client uses in browser editing daily. Once a week he changes a photo just for a day, then needs the previous photo to replace it. The original photo is not in the asset panel (or folder) for him to choose.
    When you upload a photo, it has an arrow in the asset panel. How do you use this as an asset?

    Sure ... right mouse click on  your page and choose 'Exclude Page from Menus' :-)

  • Query to bring 6 rolling pay check date at any point of time

    Hi,
    we have a date dimension dim_date which is having calendar date. I need to write a query which will always bring 6 rolling pay check dates ant any point of time. there is 14 days gap between each pay check date and it is fall on friday. please take below example as a reference and help me to write query as per my requirement. thanks in advance.
    pay check date example:
    3/23/2012
    3/09/2012
    2/24/2012
    2/10/2012
    1/27/2012
    Thanks
    Jay.

    The to_char function with 'D' mask returns the day of the week:
    Sunday is 1, we need to sum 6-mod(1,7)=5 for next friday
    Monday is 2, we need to sum 6-mod(2,7)=4 for next friday
    Tuesday is 3, we need to sum 6-mod(3,7)=3 for next friday
    Wednesday is 4, we need to sum 6-mod(4,7)=2 for next friday
    Thursday is 5, we need to sum 6-mod(5,7)=1 for next friday
    Friday is 6, we need to sum 6-mod(6,7)=0 for next friday (well, current or next friday)
    Saturday is 7, we need to sum 6-mod(7,7)=6 for next friday
    So, we always need to sum 6-mod(to_char(sysdate, 'D'), 7) to found the current or next friday:
    SQL> select to_char(sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') next_friday from dual;
    NEXT_FRIDAY
    2012-02-17
    And, adding other 14 days for each next rolling pay chack, we have:
    SQL> select to_char(sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
    2 union all
    3 select to_char(14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
    4 union all
    5 select to_char(14+14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
    6 union all
    7 select to_char(14+14+14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
    8 union all
    9 select to_char(14+14+14+14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual
    10 union all
    11 select to_char(14+14+14+14+14+sysdate+6-mod(to_char(sysdate, 'D'), 7), 'yyyy-mm-dd') rolling_dates from dual;
    ROLLING_DA
    2012-02-17
    2012-03-02
    2012-03-16
    2012-03-30
    2012-04-13
    2012-04-27
    6 rows selected.
    Please check the results in your instance, because week day numbers are NLS dependents
    I hope this helps
    Best Regards
    Alfonso Vicente
    [http://www.logos.com.uy/el_blog_de_alfonso]

  • A "designer" file being worked on a machine, is checked-in regularly, if at any point of time the latest version of that file is taken on the same machine, all the data gets deleted

    A “designer” file being worked on a machine, is checked-in regularly, if at any point of time the latest version of that file is taken on the same machine, all the data gets deleted

    Hi,
    Could you provide us more information to help you?
    If you have resolved the issue, it would be better if you can post the solution here, which will help others.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I want to know why some box of Iphone5s it's not come full accessories in box simple my iPhone 5s I have bought from Apple store last week it's first time for me use iPhone but so surprise me how the company make the phone have to use a pin to open

    I want to know why some box of Iphone5s it's not come full accessories in box simple my iPhone 5s I have bought from Apple store last week it's first time for me use iPhone but so surprise me how the company make the phone have to use a pin to open the sim but didn't give a pin inside the box and I ask staff at store their said they also don't know some box have some of are don't have a pin come together so then they told me I have to find solution or I have to buy a pin by my self I can buy it by myself but I really don't understand how come apple big company but how it's happen like this?thank you.

    Where did you purchase this. The US phones do not come with the SIM removal tool anymore. They haven't for some time now. I'm not even sure it comes with any of the devices anymore. You can just straighten out a paper clip and do the same thing.

  • How to make a button to stop and run a for loop?

    How to make a button to stop and run a for loop?  and if it is stopped it shall start from where i t stopped.

    Your VI has some very fundamental flaws.
    The start/stop button is outside the FOR loop, thus it will NOT get read during execution of the FOR loop, but only before the FOR loop starts. Think dataflow!
    Thus the terminal of the start/stop button belongs inside the FOR loop.
    Your FOR loop iterates 20x, which probably takes about a nanosecond. You will NOT be fast enough to reliably press the start/stop button during a specific iteration of the FOR loop.
    Your code does not "stop and run" a FOR loop (sic). The loop always spins, but executes an empty case when "Stopped". I guess that's what you actually want?
    Once you solve (2), the x indicator will contain a random value whenever you "stop".
    As soon as the 20 iterations complete, the outer while loop spin an things start over, another nanosecond later.
    Place e.g. a 500ms wait inside the FOR loop to solve this.
    Don't place terminals of indicators on top of formula nodes.
    Your formula does not produce any output, so really has no purpose.
    Use a real "stop" button to terminate the while loop (mechanical action: latch when released). Right now you are using a plain switch, which does not reset to false before the next run. This means that you need to manually reset it before running the program again.
    It is oftern useful to operate the VI in execution highlighting mode. You will immediately see that your button does not get read during execution of the FOR loop. Try it!
    LabVIEW Champion . Do more with less code and in less time .

  • I have garageband 11 and need to know how to make a good deep bass drum that thumps for a rap type song - thanks

    I have garageband 11 and need to know how to make a good deep bass drum that thumps for a rap type song - thanks
    just getting started so I would appreciate some assistance
    Mike

    Quit Mail. Force quit if necessary.
    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Mail/V2/MailData
    Copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder
    from the menu bar. Paste into the box that opens by pressing command-V, then press return.
    A folder window will open. Inside it there should be files with names as follows:
              Envelope Index
              ExternalUpdates.storedata
    Move those files to the Desktop, leaving the window open. Other files in the folder may have longer names that begin as above. Move those files, if any, to the Trash.
    Relaunch Mail. It should prompt you to re-import your messages. You may get a warning that the index is damaged and that Mail has to quit. Click OK. Typically, the process takes a few minutes, but it may take hours if you have gigantic mailboxes. In that case, you may be able to speed things up by temporarily adding your home folder to the Privacy list in the Spotlight preference pane. Remove it when Mail has finished importing.
    Test. If Mail now works as expected, you can delete the files you moved to the Desktop. Otherwise, post your results.

  • Balance Sheet translation at spot rate at ANY point in time

    My client produces its financial accounts in AUD.  They will have open items in AR, AP and Bank in foreign currencies.  WITHOUT running periodic valuation they wish to produce a Balance Sheet at any point in time during the month applying the applicable daily spot rate to valuate the Foreign Currency open items (for reporting purposes only).  I have run S_ALR_87012284 and maintained the special evaluations tab for Display Currency (AUD), Key date for translation (current date) and exchange rate type (spot rate type).  However, this does not appear to be revaluating the open items in the subledger accounts to produce the balance sheet at the current spot rate.  Appreciate input / alternate approach.  Cheers, Dean.

    Hi Chirag
    As per Oracle following are the rules that has to be followed for translation.
    1. For Balance Sheet Accounts (Asset & Liabilities) GL as a default uses the YTD rule.
    2. For P&L Accounts you can choose between YTD and PTD rule. So in your case you can use the default PTD Rule. (Profile Option 'GL Translation: Revenue/Expense Translation Rule')
    YTD Rule = (Translated Period Amount = Period-End Rate x YTD Ledger Currency Balance - Beginning Translated Balance).
    PTD Rule = (Translated Period Amount = Period Average Rate x PTD Ledger Currency Balance)
    Hope this helps.
    Regards,
    Gautam
    Edited by: Gahlout on Sep 25, 2012 11:04 PM

  • How to make more than one partition on Airport Time Capsule?

    how to make more than one partition on Airport Time Capsule?

    Only for the very brave......
    Open up the Time Capsule (voids the warranty)
    Pull the hard drive
    Place the hard drive in a separate enclosure
    Connect the enclosure directly to your Mac
    Use Disk Utility to partition the hard drive
    Reinstall the hard drive back in the Time Capsule
    For the rest of us.....
    The next best thing might be to set up one or more disk images on the Time Capsule, which will allow you reserve a given amount of space for each disk image.
    Open up Macintosh HD > Applications > Utilities > Disk Utility
    Click on the New Image tab
    Navigate to the Time Capsule
    Set up the disk image by naming it and specifying how much space you want to reserve

  • Migration status at any point of time

    Hello to All,
    I am running a migration scripts (which are actually a procedures) to pick the data from the source table to target
    table.
    My requirement is to find out the migration status at any point of time.Is there any way to do it?
    Please help.
    Best regards,
    Pavan

    Hi Pavan,
    Does your source table have columns to store the status, error message?
    In general, stage tables should have a status and error message column which are updated by the migration script with the status of that particular record.
    You can check these columns to get the status.
    For eg
    select status, error_message, count(*)
    from you_table
    group by status, error_message;The above script will give the number of records Successfully processed, errored during migration.
    Regards
    Imran

  • How to make custom icc color profile work as default for all users?

    Hi!
    I've calibrated two monitors for the machine running Mavericks OS X. I've managed to move these custom icc color profiles to ColorSync folder in HDD Library, so that that they are available for all the users. However, I cannot figure out how to make these icc profiles work as default profiles for all users and not only the one I used to calibrate monitors.
    Is there a specific place I have to put custom icc profile to make it system default?
    Thank you!

    If you put the profiles in the root /Library/ColorSync/Profiles/ folder, then each user needs to select them in their account. There isn't a way to apply them globally so each account automatically comes up that way.

  • How to make an hypertext link workable with adobe reader for IOS ?

    Hello,
    Hypertext links in a PDF file work perfectly well on Mac OS (Yosemite).
    The same document on an IPAD with IOS is not able to open an hypertext link ...
    How could I do to solve this problem ?
    An author who want to publish electronic books with hypertext links on mobile devices

    Hello Steve,
    All my best wishes for the new year.
    To answer your question :
    . I am writing books on my IMAC with Yosemite  (10.10.1) using Word (14.4.7)
    of  OFFICE MAC.
    . I can open Hyperlink connection by clicking on the link
            . I save the document in a .PDF format
    . This document is sent to my IPAD with IOS 8.1.2
    . In this .PDF document I am no more able to open hyperlink connection
    Please see attached an abstract of my book.
    Thanks a lot for your help and advices.
    Michel Poncet
    Tel: +33 4 76 89 50 82
    http://www.amazon.fr/Glariand-Copent/e/B007NXP7FU
    De :  Steve Werner <[email protected]>
    Répondre à : 
    <[email protected]>
    Date :  vendredi 2 janvier 2015 03:34
    À :  Michel Poncet <[email protected]>
    Objet :   How to make an hypertext link workable with
    adobe reader for IOS ?
    How to make an hypertext link workable with adobe reader for IOS ?
    created by Steve Werner <https://forums.adobe.com/people/Steve+Werner>  in
    Adobe Reader for iOS - View the full discussion
    <https://forums.adobe.com/message/7058559#7058559>
    Hyperlinks can be of several types. What are you linking to? Exactly what
    application did you test the hyperlinks with on the Mac? What application
    did you use to create the hyperlinks?
    If the reply above answers your question, please take a moment to mark this
    answer as correct by visiting:
    https://forums.adobe.com/message/7058559#7058559 and clicking ŒCorrect¹
    below the answer Replies to this message go to everyone subscribed to this
    thread, not directly to the person who posted the message. To post a reply,
    either reply to this email or visit the message page:
    Please note that the Adobe
    Forums do not accept email attachments. If you want to embed an image in
    your message please visit the thread in the forum and click the camera icon:
    https://forums.adobe.com/message/7058559#7058559 To unsubscribe from this
    thread, please visit the message page at
    , click "Following" at the
    top right, & "Stop Following" Start a new discussion in Adobe Reader for iOS
    by email
    <mailto:[email protected]eso
    ftware.com>  or at Adobe Community
    <https://forums.adobe.com/choose-container.jspa?contentType=1&containerType=
    14&container=4631>  For more information about maintaining your forum email
    notifications please go to https://forums.adobe.com/thread/1516624.

  • When I enter time machine (on Time Capsule) i see the stack of screen shots and the time line. However, when I roll over the mouse pointer, the time line does not activate. The cancel button does not get me out of the app: have to alt cmd esc. Ideas?

    When I enter time machine (on Time Capsule) i see the stack of screen shots and the time line. However, when I roll over the mouse pointer, the time line does not activate. The cancel button does not get me out of the app: have to alt+cmd+esc. Ideas?

    I have never seen it but then I run SL which is much more reliable than Lion..
    See
    http://pondini.org/TM/E4.html
    Check the master guru of all TM problems.

  • How do I discontinue payment of an app I pay for monthly?

    how do I discontinue payment of an app I pay for monthly?

    You did not name the application, but it should beone of the settings in its preferences.

  • How to make a straight line of points in a curve in CS6

    In PSCS5 and earlier, I used to be able to make a straight line of points in a curve by placing 9 points on the straight line curve.  I did this by drawing a small straight line at the bottom of the curve using the pencil tool and then clicking the curve point icon.
    I can't seem to do this with CS6.  Any thoughts?
    Thanks,
    Matthew Kraus

    Did you not ask a similar question a while ago?
    http://forums.adobe.com/message/4524084#4524084

Maybe you are looking for

  • Runtime Dump solution required

    when running the program in background it gives short dump at a remote function call(CALL FUNCTION 'RFC_MAIL'               DESTINATION 'CC_MAIL'        EXPORTING           USER = E_MAIL_USERS-UNAME        TABLES           MAIL = MAIL_TAB .) It was l

  • Calculation of Foreign Currency Translation Reserve (FCTR)

    I am trying to calculate the FCTR in the <Parent Currency> member of the Value Dimension. I want to calculate the difference between the Net Assets and Equity and return it to the FCTR account in the <Parent Currency>. I have tried a number of combin

  • Calculate Avg basic of an employee

    Dear Friends, Is there any function module where I would get the avg of BASIC from IT0008 for the past 10 months ? Can anybody help me in developing this logic ? This is very urgent.. Please help me. Regards Radha Madhav

  • Reinstalling Patch 137137-09

    Hi, i have problem with patch 137137-09, during patching this patch system crash down (Interupt Electricity). System see this patch installed, but in log is interupted installing. I have problem with ssh, scp etc... xxx:~$ ssh ld.so.1: ssh: fatal: re

  • Catalogue transfert from Element  7 to 11

    I made a catalogue transfert from Photoshop Element 7 to Photoshop Element 11 (and 9) The labels " face of Paul, Face of Peter, ..." exist, but the labels are empty of the pictures marqued by 'Paul Visage, Peter Visage, ...".