How to specify two time periods in data manager

Hi
How to configure a data manager where in I have to provide option of coping INR data from last year period to the current year.
Note:- Users do not want to use copy package as we have to run logic for only few accounts
Regards
Edited by: Rohit26 on Sep 24, 2011 9:36 AM
Edited by: Rohit26 on Sep 24, 2011 9:36 AM

I think that PROMPT SELECTINPUT should be able to do what you need: have 2 selections of same Dimension in one Package. Take a look at example given in the documentation [http://help.sap.com/saphelp_bpc75_nw/helpdata/en/e9/23ece2cfd7489f8aa457d78d306a38/frameset.htm].
Let us know if this is not what you are looking for.
Gersh

Similar Messages

  • Oracle (SQL) support for Temporal / time period based data

    Beyond standard SQL (DATE type etc. and <,>, LEAST, GREATEST, etc.) does Oracle offer anything to help handle time period based data? E.g. overlapping periods, joins when gaps in time periods from 2+ tables, period contiguity checks, etc. I've developed various SQL query techniques, but they're all rather cumbersome using standard SQL.
    Oracle Spatial offers geo-location support - is there anything similar for temporal query support?
    Any good books / docs on the subject?

    Check out Workspace manager for limited out of the box temporal support.
    You may also want to have a read through this series of articles about temporal database systems. They aren't Oracle specific, but may help you with your temporal system design.

  • How to merge two Outlook 2010 pst data files?

    How to merge two Outlook 2010 pst data files?

    Easy way: with the one you want to use open in Outlook and the other one not in your profile, go to File, Open, Import.
    If you only want to merge some content, open both pst files in outlook and drag between folders. For calendar, use a list view to see all of the appointments.
    Diane Poremsky [MVP - Outlook]
    Outlook Daily Tips |
    Outlook & Exchange Solutions Center
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • Q10 how do I definethe time period in which my emails are kept on my smartphone

    Q10  how do I definethe time period in which my emails are kept on my smartphone,  30 days, 60 days, 90 days  forever etc...

    I am confused..."Advanced Options" is not there? Or inside of Advanced Options, "Sync Timeframe" is not there?
    I'm sorry but I don't have any POP integrated accounts (gave up on POP years ago, IMAP and ActiveSync are so much more powerful), so I can't compare specifically for you. It may possibly be called "Days to Synchronize", and may possibly be elsewhere in the Account screens for that specific account.
    Or, indeed, it just may not exist as an available setting for POP.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to combine two datarows (business component data) in BI Publisher

    Hi ,
    We are using BI Publisher in Siebel Environment.
    We have data coming from two business components (like from 2 diff tables)
    a) <?for-each:ssTest1?>
    b) <?for-each:ssTest2?>
    ssTest1 and ssTest2 are the business components
    We need to combine these 2 datarows (a&b) and show the data into a single combined data row for ex like <?for-each:ssTest1ssTest2?> and show all the fields in that.
    I'm not sure how we can combine these two data rows into a single combined data row and show the data.
    Any help from any one would be apprecated.
    Thanks
    PV
    Edited by: user8633002 on Oct 21, 2010 4:05 PM

    Hi sajid
    There was nothing more description about your issue in this site and I found an issue below is mostly like yours
    http://www.codeproject.com/Questions/855487/how-to-combine-two-table-value-in-rdlc-report
    In the issue above, if you want to show the two other tables in the report, I think you could combine the tables into one datatable joining on key. The link below show an example of a DataSet Helper from Microsoft about combine DataSets. Take note of
    the related content for other DataSet Helper examples. And then you could use the datatable in your RDLC.
    # HOW TO: Implement a DataSet JOIN helper class in Visual C# .NET
    http://support.microsoft.com/kb/326080/en-us
    In an alternative way, I think you could create a view in the database which combine your tables and use it in your rdlc.
    In addition, your issue is about asp.net and you could get more support in the asp.net forum whose link as below.
    http://forums.asp.net
    Best Regards
    Edward
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • How to sync two time capsules?

    I have two time capsules on my network and want to set them to automatically sync files between them for redundancy.  How do I do this?

    In theory, you could have another application like Carbon Copy Cloner or SuperDuper backup Time Capsule 1 to Time Capsule 2, but the same risks apply.. I haven't tried this....and won't....but maybe another user has.
    Agree with Bob.. what you can do and what you should do are different. It is possible to use CCC and put the two TC in sync. The result will still be only as good as the quality of the first disk. That is a very slow way to backup.. TC is not designed as a NAS so it has no internal ability to sync files. It is purely designed as a target for Time Machine.
    If you do use CCC all packets are copied via the computer.. over the network.. so if you use wireless expect to never finish.. before the next TM backup starts and CCC will still be syncing.. ie you will have created an endless loop. Don't do it.

  • How to get a time part from Date datatype

    Hi,
    I would like to know how to extract the timestamp alone from DATE datatype? If my input is '27-SEP-2011 23:59:00' I need the output as 23:59:00. I am surprised to see that there are no in-built functions for this or may be I am wrong. Basically I need to remove the date part from DATE data type and get the time.Please assist.
    -Thanks
    Edited by: user9546145 on Sep 27, 2011 2:24 PM
    Edited by: user9546145 on Sep 27, 2011 2:25 PM

    Hi,
    user9546145 wrote:
    Hi,
    I would like to know how to extract the timestamp alone from DATE datatype? Be careful! In Oracle, TIMESTAMP means a datatype, similar to but distinct from DATE. You'll avoid confusion if you don't use the word "timestamp" to mean anything else.
    There is a built-in function, TO_CHAR:
    TO_CHAR (dt_col, 'HH24:MI:SS')Depending on how you plan to use the time, TRUNC is another handy built-in function:
    dt_col - TRUNC (dt_col)is a NUMBER (not less than 0, but less than 1) which is suitable for many tasks, such as finding the average time.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.

  • How to Group discontinued time periods

    Hi All:
    I have an issue which costs me bunch of time to develop. Basically I am trying to use discounted time in a select query but feel  like get nowhere to start.
    the scenarios is like this:
    I have many rows of data of this and I would like to have a solution I can select time period from just like what I can do for integer and text:
    Select *
    From Table
    Where Group = B
    and Open_Date in (select the all group A's time interval)
    to explain this problem in plain text, I would like to select all records from Group B whose Open_Date is within the interval between Group A's Open_Date and Close_Date. Thanks all in advance.
    Record
    Open_Date
    Close_Date
    GROUP
    1
    9/12/2013 9:25
    9/12/2013 10:44
    A
    2
    9/12/2013 10:19
    9/12/2013 10:39
    A
    3
    9/12/2013 10:22
    9/12/2013 10:22
    A
    4
    9/12/2013 10:56
    9/12/2013 12:41
    B
    5
    9/12/2013 12:00
    9/12/2013 12:00
    B
    6
    9/12/2013 12:00
    9/12/2013 12:01
    A
    7
    A+E301:H318
    9/12/2013 12:03
    A
    8
    9/12/2013 13:44
    9/12/2013 13:46
    C
    9
    9/12/2013 13:46
    9/12/2013 13:46
    C
    10
    9/12/2013 13:46
    9/12/2013 14:33
    C
    11
    9/12/2013 14:04
    9/12/2013 14:09
    A
    12
    9/12/2013 14:23
    9/12/2013 17:05
    A
    13
    9/12/2013 15:54
    9/12/2013 15:54
    A
    14
    9/12/2013 15:54
    9/12/2013 15:55
    B
    15
    9/12/2013 15:55
    9/12/2013 15:55
    B
    16
    9/12/2013 15:55
    9/12/2013 15:58
    A
    17
    9/12/2013 16:02
    9/12/2013 16:02
    A

    Sorry cannot test it right now
    Select *
    From Table
    Where Group = B
    AND Open_Date in (SELECT OpenDate FROM Table WHERE  Group = A
    AND  OpenDate  BETWEEN OpenDate  AND CloseDate )
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to increase the time period in Debugger

    Hi,
    If we put Debugging screen Idle for some time,we will get timed out Status bar message.Can we increase that time period.

    hi,
    A work process which is processing your task is set into a DEBUG mode.
    Debugging in general does requesting a huge memory consumption and system resources as well.
    This means that system is moving data to its extended memory in PRIV mode.
    In this mode normal request being processed by other work processes are located in local memory instead of extended. Extended memory is occupied by data for debugging user exclusively. However this cannot persist in system for a long time. So since you are not active in debugging session for some time system is canceling whole debugging with following messages:
    1) Transaction from "PRIV" session reset after timeout (Message no. 14048)
    2) Transaction from "DEBUG" mode (after timeout) reset (Message no. 14056)
    From basis point of view for production system there should not be a necessity to adjust profile parameters in order to allow debugging for a long time and for a so much users. If you wish to avoid this message anyway or you want to make debugging more comfortable on development or test system you need to consider following profile parameters:
    1)rdisp/max_priv_time # Standard value: 600
    2)rdisp/wppriv_max_no # Standard value: MAX(1, Anzahl Dialog-WPs)
    3)rdisp/max_debug_lazy_time # Standard value: 600
    thanks and regards
    chinnaiya

  • How to queue two waveforms in dynamic data

    I am collecting two waveforms for voltage data via DAQ assistant. The output is dynamic data which I can view as two waveforms via a chart. 
    I am sending the retrived data to a queue for storage until a seperate loop can flush the queue and write the data to a measurement file via the Write to Measurement File vi.
    When I retrive my measurement file only one of the two waveforms have been stored.
    I have troubleshot the issue and have determined the correct data is going into the queue

    I'd recommend posting some code.  Are you passing in the two waveforms to the queue as an array of waveforms, or a cluster of waveforms?  Without seeing the code, it is just a guess as to what is going on.

  • How to perform Graphical Time Scheduling in audit management application?

    I am not able to perform Graphical Time Scheduling in audit management application.
    The pre requisite i have done are:
    1. Install SAPGUI Component CRM-ADDON using SAP Front End Installer on my PC locally.
    2. Install MS Project 2007 on my PC locally.
    when i press Graphical Time Schedulling button or Press F7 key MS Project application opens but without any values. How can i see plan actual time comparison from Audit management application to MS project???
    Regards

    waiting for the reply...

  • Is it possible to view/compare two Time Machine desktop dates at the same time?

    I accidentally lost a file on my desktop, inadvertently dragging it onto my browser. I don't know what file I lost, and would like to retrieve it through my Time Machine.  I don't want to replace all of the files on my desktop, but I would like to compare the files from two different dates (current date and last time saved) to discover the file I lost. If there's an easier way to make this discovery, I'm open for suggestions. Otherwise, I wonder if there's a way to see or compare my current   files on desktop vs. my last save to Time Machine (without printing out a list).
    Thanks in advance for your help!

    Hey apple_peeler,
    Thanks for using Apple Support Communities.
    It sounds like you want to find out what is now missing by comparing it with other backups. The Restoring data from Time Machine backups section explains how you can do that.
    Mac Basics: Time Machine backs up your Mac
    http://support.apple.com/kb/HT1427
    You can use the timeline on the right side of the window to reach a certain point back in time. The timeline shows the times of all backups on your backup drive. If you don’t know exactly when you deleted or changed a file, you can use the back arrow to let Time Machine automatically travel through time to show you when that folder last changed.
    Have a nice day,
    Mario

  • How to make two jobs periodic,second job starting after first get fini

    Hi  ,
          I had posted this question previously also. I can't understand Why the Moderator Locked it. 
          I searched the SDN and found that  hardly any one has given a correct  answer.
           Every one gives an ans create  a job with  two steps.
           NO i don't require that. I have to  update joblogs of the first job in  a Z table.  So i have to create two periodic jobs.
        If you have tried and succeeded plaease answer.
        I will  request Thomas if he has got some valid links please do share.

    Ok Thomas let expalin my problem in detail.
    I have one report A which updates some Z tables. Now the user is going to schedule a monthly job for this report.
    He wants to  see the log details of the Job to be stored in a Ztable. Fields will like 'Job name,Id, Start date,  Start time,End Date,End Time, User ,Status of Job (Canceled/Finished) , Tables Updated, Tables Failed '.
    What my  second report does it picks up the lates Job finished/Cancelled for the Report A. Then  Passes it to  'BP_JOBLOG_READ'
    fetches the Log messages of JobA.  From where I can get which Table is updated and which one failed.
    So  my second report Report B should be excuted every time Job A Finishes. 
    What i Felt it will easier to  create a job ffor report B , and Let this Job B fired every time Job A finishe/Cancelled.
    Any hope  i can resolve this.
    thanks in advace.

  • How to specify dataschema name for oracle data source?

    hi all,
    I've a following problem:
    we have specified 2 Oracle dataschemas into a one Oracle SID, choosing of dataschema depends on user login name. So, if I use SQL/Plus then I successful connect with proeprietary database schema, and when I specify this user in "data-sources.xml" for datasource definition, however connection estabished with a default dataschema.
    And so question: how can I choose proeprietary database schema defined in one Oracle SID? There is any settings for this purpose in data-sources.xml?
    thanx in advance,
    Val.

    sorry, it works! was my error.

  • How to synchronized two Timer Task ?

    I need to execute 2 job
    job1 every sec
    job2 every min
    when one task is executing other task should wait
    so i created 2 timer
    timer1 will execute secjob every sec
    timer2 will execute minjob every min
    and one job object with synchronized execute method
    please see the code for further detail
    problem:
    before completion of secjob , minjob started excuting
    job Fired Fri Oct 10 20:45:16 IST 2008 by Timer-0 ID :7.....
    job Fired Fri Oct 10 20:45:21 IST 2008 by Timer-0 ID :7.....
    job Fired Fri Oct 10 20:45:26 IST 2008 by Timer-0 ID :7....{color:#ff0000}*job Fired Fri Oct 10 20:45:31 IST 2008 by Timer-1 ID :8*{color}*.*
    {color:#ff0000}*...*{color}
    job Fired Fri Oct 10 20:45:34 IST 2008 by Timer-0 ID :7.....
    job Fired Fri Oct 10 20:45:39 IST 2008 by Timer-0 ID :7.....
    public class Fire {
        static void secJob(Job job)  {
             Timer timer = new Timer();
             int delay = 0;  
             int period = 1000*1; 
             SecJob secJob = new SecJob(job);
             timer.schedule(secJob, delay, period);        
        static void minJob(Job job) {
             Timer timer = new Timer();
             int delay = 0;  
             int period = 1000*60; 
             MinJob minJob = new MinJob(job);
             timer.schedule(minJob, delay, period);
        public static void main(String[] args) {       
            final Job job = new Job();
            secJob(job);
            minJob(job);
    public class SecJob extends TimerTask{
        Job job;
        public SecJob(Job job) {
            this.job = job;
        public void run() {
            job.execute(SecJob.class);
    public class MinJob extends TimerTask{
        Job job;
        public MinJob(Job job) {
            this.job = job;
        public void run() {
            job.execute(MinJob.class);   
    public class Job {
        private void sleep(long count,PrintStream out) {
            try {
                for (int i = 0; i < count; i++) {
                    Thread.sleep(1000*1);
                    out.print(".");
                out.println();
            } catch (InterruptedException e) {
                e.printStackTrace();
        public synchronized void execute(Class c) {
            Thread t = Thread.currentThread();
            if(c == MinJob.class ) {
                System.err.print("job Fired "+new Date()+" by "+t.getName()+" ID :"+t.getId());
                sleep(3,System.err);
            }else if(c == SecJob.class ) {
                System.out.print("job Fired "+new Date()+" by "+t.getName()+" ID :"+t.getId());
                sleep(5,System.out);

    I'd only use one timer and write a dispatcher task that stores the time at which job2 is executed. If the last time is more than one minute past, execute job1, reset the time tracking field, and execute job2.

Maybe you are looking for