Save Button in a Planning Sequence

Hi,
Can i include SAVE button in a planning sequence? My requirement is to have one button which executes a planning function then saves the data and then executes another planning function after the SAVE. How can i achieve this?
Thanks
Rashmi.

Hi,
Seems you are using WAD for your planning application and using 'Button Group' web item to include the planning functions in your layout.
If so, then you must be adding 3 seperate buttons for each planning function in 'List of Buttons' in 'Internal Display' of your web item button group. Rather than doing this, add just one button in your 'List of Buttons' and on that button add 3 separate commands in below order
1. EXEC_PLANNING_FUNCTION with your planning function name and variable values if you have any
2. SAVE_DATA
3  EXEC_PLANNING_FUNCTION with your planning function name and variable values if you have any
This will solve your purpose.
Regards,
Deepti

Similar Messages

  • What are the setting for Save button for saving plan data in WAD template

    Hi,
    i created SAVE button in Webtemplate for saving plan data.But this button is not
    active.is there any setting for this?
    thanks in advance
    chandu

    Hi Chandu,
    The settings to Configure the  Save function.
    Right click the Button Group Item ® Properties ®  * Button    ® 
    Type Caption  ‘Save’ ® Command    ® Select ‘All Commands’ Tab ® 
    De-select ‘Execute Planning Function’ and then select checkbox ‘Save
    Changed Data’ ® Double click on ‘Save Changed Data’ ® OK ® OK ® Save your template.
    *pls assign points,if info is useful*
    Regards
    CSM Reddy

  • Using Planning Sequence in a Process Chain With input variants

    Hi,
    I have a COPY planning function which has multiple FROM and TO options like (From:Fiscal Year To Fiscal Year, From Version TO Version). In the layout they select the options for which they want to COPY and execute the function.
    How can I replicate the same approach in a process chain with the varaints, how can i create the FROM and TO variables in the process chain.
    Thanks
    Rashmi.

    Hi.
    You can save variable variant for planning sequence in modeler and then use it in process chain.
    In process chain you choose "Execute planning sequence" and add planning sequence with variant.
    All this if you using IP instead BPS.
    Regards.

  • Excecute a planning sequence when open Web Template (JUST ONE TIME)

    Hello experts,
    I want to excecute a planning sequence everytime when a webtemplate is opened.
    I use the "Action before first display" for this. The problem is, that the planning sequence is excecuted multiple times when I open the web template. The web template contains several queries. Could it be that the planning sequence is started for every query?
    If yes is there a way to suppress this? I want to run the planning sequence just one time for the whole web template
    Thanks
    Johannes

    Yes I tried in action before rendering it is the same behaviour with the difference that the sequence is also executed after clicking on a button with another planning sequence. Action before first display is excactly what I need but I want to run the sequence just one time when the web template is loaded and not for every query. We don't use tabs at all.
    Thanks
    Johannes

  • Compensation Planning save Button On Portal

    Hi,
    I want to know when the save button is clicked on Compensation Planning worksheet in MSS Portal, what Function Module ,BADi or BApi is called at the backend and also where is the Assignment on the config side for this save functionality on the worksheet.
    Thanks
    Umang
    Message was edited by: GT

    Hi GT,
    PL take a look at the function group HRECM00UI in SE80. It contains all the Function modules that interface with the Compensation frontend.
    ~Suresh

  • How to create SAVE button in Workbook using BI IP Functionality

    Hi All,
    I have Real-time Infocube (ZCUBSDID) with me. Planning has been done on the cube using BI-IP (like Aggregation level, filter, planning function and planning sequence are present there).
    As an Input i have everything in Quality system like I can access query in Bex Anlyzer (Input Ready Query) and also i have workbook associated with the query. SAVE button is also present on workbook which is giving result based on fiscal year and version.
    Now my task is to create workbook on Development system with the same functionality as Quality System.
    I have same Query available on DEV system also. I created new  Workbook but SAVE button is not available in my workbook.
    Can anyone suggest how to create SAVE button in my new workbook.
    I am new in IP side so please let me know if i can get any help from workbook which is already present in Quality system.
    Which type of analysis i should do to come out with solution.....otherwise let me know step by step procedure to create SAVE button on workbook using BI-IP functionality.
    It will be great help. My advance thanks goes to you people.
    Thanks,
    Rupali Singh

    Check points 19 & 20 on this link http://help.sap.com/saphelp_nw2004s/helpdata/en/43/a033e0f56e21b5e10000000a1553f6/frameset.htm.
    Command to be called on SAVE button is SAVE_AREA as explained in the point 20.
    Regards,
    Deepti

  • Currency Translation in Planning sequence with variable for target currency

    Hello ,
    i have a requirement, the cube contains multiple data in the Group Currency for multiple company codes. & I want to convert these amounts to another KF as local currency using planning sequence only (not using transformation, as the users want to do this when they require.)
    For this, i defined a Aggr level , filter & Planning function with Currency translation selecting the source field as AMOUNT_GC & target field as AMOUNT_LC using the Currency Translation type ZCTGCLC.
    The target currency is not know beforehand, as it depends on the company code of each records that comes in.
    Hence, Currency translation type uses  a Customer exit variable 'Z_R_0026' for target currency.
    This is customer exit variable which searches the Master data table of the Company code & replies back with the local currency of that particular company code (derived value from the company code variable also in teh filter).
    However, when i execute this planning sequence, it gives me an error saying, "no value found for variable 'Z_R_0026'
    1. when edit the CMOD code, to return only say "EUR" the planning sequence runs fine.However when i use this select statement to fetch the corresponding value of the currency using the company code reference from the company code master data table, it gives the above error. it seems to be a problem with the select statement.
    below is the code for that exit
    when 'Z_R_0026'.
         data: l_curr type /BI0/OICURRENCY.
         IF i_step = 2.
           LOOP AT i_t_var_range INTO loc_var_range
                              WHERE vnam = 'Z_S_0003'. " Company Code Single
             CLEAR l_s_range.
        Filling Currency Key from Company Code
             select single currency
             from /bi0/pcomp_code
             into l_curr
             where comp_code = loc_var_range-low
             and objvers = 'A'.
             if sy-subrc = 0.
               l_s_range-low = l_curr.
             else.
               l_s_range-low      = 'ABC'.
             endif.
             l_s_range-opt      = 'EQ'.
             l_s_range-sign     = 'I'.
             APPEND l_s_range TO e_t_range.
             clear l_s_range.
             EXIT.
           ENDLOOP.
         ENDIF.
    2. there is a option of using infoobject for target currency in the RSCUR itself, however, when i try to input the 0COMP_CODE for finding the attribute currency from this infoobject, it doesnt accept.
    has anyone tried this earlier ?
    Any help/suggestions , guys, pls?
    Thanks
    John

    Hi Praveen ,
    Thanks for that.
    I have a Question.
    If RSCUR were to only accept a Date InfoObject , it would be placed under a differnt heading.
    The Tab is "Currrency"  & the sub-Tab is "Target Currency"
    so i guess, it should accept other infoObjects as well.
    Moreover, the help on that InfoObject buttons says
    "Specification of an InfoObject (Characteristic) in which a currency
    attribute is stored in InfoObject maintenance. At runtime, the
    associated currency attribute is determined using the characteristic
    value and this is interpreted as source or target currency."
    & i have already defined 0currency as a attribute of 0comp_code. so this should work ideally.
    almost similiar CMOD code i have used for other too, but i dont know why only this one is getting struck.
    any help, pls.
    Thanks
    John
    Edited by: John Lewis on Apr 17, 2009 3:24 PM
    Edited by: John Lewis on Apr 17, 2009 3:25 PM

  • Report is Blank after Click on Save button

    Hi All,
    I am having a Real Time Infocube, which is been used by Monthly and Yearly report separately using different Aggregation Levels.
    During Monthly report testing, I made changes in Yearly Report (common for monthly as well) and clicked on SAVE button.
    As a result, a new request generated into the Cube, whereas my old request (yellow one) was still there and was containing only 700 records.
    Step1:
    Now,  after that when I activated aggregation level. The output of the report was blank.
    Same thing happened with monthly report also.
    Step2:
    So, I deleted that new request from Cube after changing its behaviour from Planned mode --> Load mode.
    Now, when I tried to get it back. It was asking me to green the existing request (old request).
    Step3:
    when the cube was containing only old yellow request (before changing the behaviour) monthly report was showing me correct data. But, Yearly report was blank.
    So, I manually green the request and changed the behaviour to Planned mode.
    Whereas, Now (after changing behavior to Planned mode) both reports are blank.
    Please help!!
    Best Regards,
    Jatin

    Hi,
    first you the correct settings in transaction RSDIPROP for your InfoCube:
    On tab 'Roll Up' you should set the flag Set Quality Status to OK Automatically.
    Second delete the cache for the planbuffer query; the name of the plan buffer queries are as follows
    - if your aggregation level is defined on InfoCube CUBE the name is CUBE/!!1CUBE
    - if your aggregation level is defined on MultiProvider IPROV the name is IPROV/!!1IPROV
    - if you are using a query on a MultiProvider containing aggregatiion levels delete also the cache of the query.
    Now check the values of your query again.
    Note 1136163 contains the recommended cache settings in RSRT.
    Regards,
    Gregor

  • How to use the same variable value for data entry and the planning sequence

    Hi,
    the scenario is the following:
    Using the WAD template a user enters cost center plan data. The cost center is selected by the chosen value for the variable "V1".
    Afterwards he shall push a button which starts a planning sequence (including saving the data and further functions). This planning sequence uses a filter that also contains the variable "V1".
    What or where has it to be defined that the planning sequence uses automatically the same value for the variable "V1" as selected for the data entry?

    You have to define in the planning function. The planning sequence is only a sequence and it read the planning functions underneath it.
    Ravi Thothadri

  • Screen values are not retained in Tcode BP, onclick of SAVE button

    Hi,
    In Tcode BP, I am selecting a Role with the Business Partner number. COMPANY CODE Push button on the Top is Enabled and Click on that.
    Enter the Company Code and provide the Account management tab by providing Reconciliation Acct 120113, Sort key as 035, Planning Group as E1. Go to Payment Transaction Tab, Enter the Payment terms as Z003, check Record payment history. Now, Click on SAVE Button on the TOP.
    The issue is that, The screen values are not retained in the Payment terms tab and Customer is not Created after saving of a BP Number which is related to a Customer.
    Regards,
    Deepthi.

    OSS Note 1254214 is applied and it is solved.

  • Planning function and planning sequence of Design studio new features!!

    Hi Experts
    Recently I have updated my design studio to 1.3 and happy to see many new updates. Meanwhile i saw some new features add planning function and planning sequence.
    As per my understanding, Using this features we can enter data at run time. My query is here
    Is it like we are entering data at run time and see the changes in current data(chart series)
    Ex: Add discount for product 10% and relevant data(in chart) reduced to 10%
    or
    Is it like integrated planning? Once we enter data in run time and it saves in BW planning cube?
    I am totally confused with this feature.. Can any one help me to get clear understanding on this please !
    Regards,
    Mathivanan M

    Hi,
    maybe these two article can help you:
    #1 Planning in Design Studio 1.3
    #2 Planning in DS 1.3 - Using different script methods for planning
    As i unterstand, it's only possible to write back in BW.
    Best Regards 
    Sebastian

  • Tring to save data for n iterations, beginning when SAVE button is pressed

    OK, I'm STILL struggling with this vi.  (See post from 12/16).  I've cleaned up the code considerably, and better defined what it is I want to accomplish.  When the vi begins, I want to immediately begin displaying on the front panel 3 values: Indicated Flow Rate O2, Indicated Flow Rate N2, and Helium Concentration.  When the operator presses the SAVE button, I want the next n iterations to be saved to file.  N is determined by the Measurement Duration (in minutes) divided by the measurement interval (in seconds).  After the desired number of data points are saved, the operator can press the stop button, at which time the vi goes to frame 1 of the sequence, shuts off the Helium Solenoid and returns the detector to standby.  The whole key to this vi is being able to monitor the data in real time, and decide based on measurement criteria when to begin saving the data, initiated by pressing the SAVE button.  Somehow, I know I need to initiate the save with the case statement, and then save the data (n-1) more times.  When I tried a loop within a loop, I just saved the same data for the given # of iterations, and then the displays began updating again.  Is this making any sense at all?  I'm beginning to understand what an aneurism feels like.
    Attachments:
    Master He Concentration 12_20 V5.vi ‏88 KB

    One possibility solution is attached. Basically, we have a shift register that contains zero and regulates a case structure. Case zero is empty. If save is pressed, we feed a positive, nonzero number to it , which triggers the default case that (1) saves a data point and (2) decrements the shift register. This contiunes until the shift register reaches zero again.
    Modify as needed.
    btw: there is no reason for any local variables, use direct wires.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Master_He_Concentration_12_20_V5MOD.vi ‏75 KB

  • Order of variables in a Planning sequence.

    Hi,
    We have a problem now where we are unable to control the sequence (the order) of which our variables are presented when executing a planning sequence in I.P.
    An example (ok, it's a bit long...):
    We have created a Planning function of type Distribution by Key. We are distributing Amount FROM Period '#' TO 12 months (period 1- 12).
    For each of these 12 periods we have a Variable for each month where the user can enter a value to represent the % (or share) of the Amount of '#' to be distributed to that month.
    In our Planning Function we have then put in the respective periods (1-12) in to "distribute to"-field, in the correct order (January, february, march, april, may...etc).
    Finally, we have put this Function in a Planning sequence, and added it to a button in our Web template.
    When pressing this button to execute the planning sequence, the variables come out in a different order to what we expect, and what we have said in the planning function.
    First, three variables from our Filter (which is as expected, and Ok),
    Then the 12 months, in an incorrect order (January, March, February...).
    So for some reason, Feb and March exchange places.
    So, the question: What is it that decides the order of how variables are presented when a planning function is executed?
    We have tried creating new variables, changing the technical names etc, but we can not see any logic to how the variable sequence is presented.
    Cheers.

    Hi,
    Instead of giving 12variables to enter % share, you can give input layout wherein user enter the share% for all the periods, store this in one keyfigure. Use this figure as reference for distribution function.
    You can try this if this seems ok to you.
    Bindu

  • Save button instead of print button in CS3

    I suddenly have a Save button instead of a Print button in CS3.  I think my Print Preset, Printer and PPD settings might have changed.  I don't know why and don't remember what they were before. 
    My printer is an HP Laser Jet 1300 Series.  It is a postscript laser printer.  If I change the Printer setting to Microsoft XPS Document Writer, the Print button appears but it doesn't print.  Instead it wants me to save the file as a .xps document.
    I am using VMWare Fusion on a Mac so that I can still use my Windows version of CS3.  It has worked until now.  What have I done wrong?  Can I fix this? 
    I've done a church newsletter that I was planning to copy at the church tomorrow morning.  Cannot believe this has happened to me!  Thank you.

    Steffan, I followed your advice to save the file as a PDF and print it in Adobe Acrobat.  This worked, but I still would like to print directly from InDesign again. 
    You and Bob are both correct that I seem to be printing to postscript.  I don't know why this happened or how to change the settings. 
    My options in Printer are Postscript, Adobe PDF, Microsoft XPSD Document Writer and Fax.  My LaserJet 1300 printer is not listed.  It is listed in PPD, however.  
    Do you know what options I should be choosing for Print Preset, Printer and PPD?  Thank you.

  • BEx Analyzer: Use Of Variable Values For Planning Sequence

    Hi experts,
    I want to start a planning sequence using a button item in a BEx Analyzer workbook. The planning sequence itself is defined with several variables, that are input ready. The same variables are used in BEx Queries that are bound to DataProviders in the workbook. Therefore the variables are filled by the user, if the workbook has been started. If the user wants to start the planning sequence, that is defined on the button item, the same variable values (which the user has already set in the beginning) should be used. But I didn't find a way to fill planning sequence variable from variables (like it is possible in the web interface using the DataBinding function). It seems, that it is only possible to set the variable with static values, that are defined in the button item. Am I erring in this point?
    Anyone here who can help me regarding this issue?

    Eitan Ohayon wrote:
    Why did you raise this question?,did you face any problem?
    Hi Eitan,
    The problem was, that the planning sequence worked fine in web but not in analyzer. The system told me in web, that several records had been read, created, changed and deleted. System messages in BEx Analyzer always indicated zero reads, creations, reads and deletions.
    Using your idea to set breakpoint in the INIT_EXECUTION method gave me the information, that all variables are not set or set with initial values (like '0000' for fiscal year). This seems to be the reason for my problem. Now I've reduced the planning sequence definition on the button only to that variables, that are really needed. Furthermore I defined the Command Range to get dynamic values for the variables from the excel sheet grid. So it seems to work.
    Thank you for your help!

Maybe you are looking for

  • Import Process Server has encountered a problem and needs to close

    Hello, Loaded an AVI-from the desktop, as that is where my project file and scratch disk go, about 7.5 GB's, and when I scroll through it or try to render, I get this little message:Import Process Server has encountered a problem and needs to close W

  • Apple mobil device failed start

    I was working in iTunes today and was asked if I wanted to install the latest update. I did and then my iTunes shut down and I am not getting an error message that says The progam can't start because MSVCR80.dll is missing from your computer. Try rei

  • "Service Level" defined for UCCX v8.5

                       One of my Service Desk Chief's are asking how Service Level is DEFINED. From the UCCX Administration Guide it states that Service Level is "the target maximum number of seconds a call is queued before it is connected to an agent".

  • WAM (Work Asset Management) report, srpt.pll library missing.

    Hi All, I Just installed WAM 1.9 on my vmware. i try to create customize report from the current wam report. when i opened the current report on oracle report developer it shows an error message "Cannot find srpt.pll library". I've try to search the

  • Dragging image from one file to another in photoshop causes color hue to change

    Can anyone tell me why this is happening to me? When I have two image files open in photoshop and I dgrag one of them to the other file it changes color hue?  The original image is in TIFF format. When I save that file two PSD and close it, then reop