Write data on Next Month

Hello,
I'm trying to get the next month's value from a variable named &V_FIRST_FORECAST.
So, let's say if my first forecast is "Oct", I want a function to return the next month "Nov" and write on it.
And also I want it to be dynamic if I want to write on the next 3 or 4 months.
I've tried using @Next(Element X,1)=@Next(Element Y,1). But the @next function isn't working on the left hand side of the equation..
So, what can be done in order to enable the left hand side of the equation to write starting from next month or the month after and so on ?
Any help?
Thank you.

Yeah.. that wont work. You need to try to get your next member either in a calc block or fix statement to get this to work. If you share more about what you are trying to do (more code sharing), people here may be able to help you point in the right direction.

Similar Messages

  • Report carry forwarding the current month 2weeks data to next month

    Hi experts,
    Issue statement:
    XXXXX Procurement reports in MSTR (MRP Adhoc report) is showing weeks out of order, the last 2 weeks of a current month are carried over to the first two weeks of the next month (ie, working week 33-ww34 from August are repeated as the first 2 weeks of September, therefore September will have 7 weeks, ww33 to ww39), this happens month over month, this issue is probably making the EOH calculation to be wrong and most likely any other calculations. Materilas need this report to place PO's based on inventory levels and so far the data is not trustable and wrong. Need this to be fixed asap. Thanks a lot.
    we running the process chain the Job set to clear every 2 weeks data, could you plz let me know why it geting current month 2weeks data to next month.

    thanks

  • FM to find same date of next month

    Hi All,
       Please tell me the FM to find out the same date of the next month?
    Thanks - Chandan

    Hi,
      Use the FM   HR_PT_ADD_MONTH_TO_DATE.
    Give the input like this,
    Import Parameters               Value                                                                               
    DMM_DATIN                       12.11.2007                                         
    DMM_COUNT                       1                                                  
    DMM_OPER                        -                                                  
    DMM_POS                         1                                                                               
    Export Parameters               Value                                                                               
    DMM_DAOUT                       12.10.2007                                                                               
    if the count is ' - ' ,it will give the previous month same date and and '+' will give u the next month same date depending upon the count u give i.e. 1 or 2 etc.
    reward pts if useful.
    Regards,
    Subha

  • I have 10 gb data..the next month rolled over...

    Now I have 20gb of data since it rolled over the next more an extra 10 gigs a month . I have only 10gbs of data on my plan.Will it rolloveer another 10 gbs month next month so I'll have about 30 gbs as rollever date?if so, in total, if thats true ill have used 4gb out of 26 gb of date for next month.

    I know many people think that using your base data first makes rollover useless but it sure comes in handy when you need it. In this current bill cycle my family has for the first time used all of our base data and we are now using what rolled over from last month. So far I have avoided over $100 in overage charges. I realize I won't have any rollover data next month but I don't mind.

  • Getting data of next 4 months in Webi

    Hello Experts,
    I have data of next  4 years in my database.  I have created one date object in universe and I have created prompt on this date object. My requirement is as follows :
    User will enter the date through prompt and my report should pull data for next 4 months  from entered date  and display in report as follows:
    e.g If user enters date as 17/02/2011, then report should pull data of next 4 months as follows:
          March                          Apr             May           Jun     
    Records for March       Records for April     ........          .......
    I think this should be achivable using Crosstab. But I am not getting exact way to do this.
    Any help in this regard is greatly appreciated.
    Regards,
    Chinmay

    Other approach is:
    1. Go to Universe Designer
    2. Create a filter named "Prompt Date + 4 months"
    In the 'Where' textbox write something like this:
    dateDimension between @Prompt('Enter date','D',,mono,free) and dateadd ( Month ,4, @Prompt('Enter date','D',,mono,free) )
    (I am using Sybase database syntax that's why I can use dateadd function.  You have to use the equivalent function depending on the database you are using).
    3. Back to WebIntelligence, in Query Editor, Pane Filter use this filter "Prompt Date + 4 months", instead of the condition you were using before
    4. Then you can use a function like
    =NumberOfMonth([Date Dimension])
    in the headers of your crosstab.

  • Function Module for calculating NEXT MONTH's start date and End date

    Hi Friends,
    I want a function module which could calculate the next months start date and end date...
    Say my input will be like 01.01.2006(start date) it should return
    01.02.2006 and 28.02.2006...
    IS there any FM for this ... or how to go about this scenario ???
    thanks in advance
    Cheers,
    R.Kripa

    Hi kripa,
    1. There is no DIRECT Way.
    2. We have to do in 2 steps.
    3. See this code (just copy paste in new program)
       U can use its FORM anywhere in your program,
       for getting the desired dates.
    4.
    REPORT abc.
    DATA : sdate TYPE sy-datum,
           edate TYPE sy-datum.
    PARAMETERS : dt TYPE sy-datum DEFAULT sy-datum.
    PERFORM getdt USING dt sdate edate.
    WRITE :/ sdate , edate.
    INDEPENDENT FORM
    FORM getdt USING orgdate stdate enddate.
      DATA : mydate TYPE sy-datum.
      CALL FUNCTION 'HR_PSD_DATES_ADD_MONTHS'
        EXPORTING
          v_date             = orgdate
          V_MONTHS           = 1
       IMPORTING
         E_DATE             = mydate
       EXCEPTIONS
         NOT_POSITIVE       = 1
         OTHERS             = 2
      CALL FUNCTION 'HR_JP_MONTH_BEGIN_END_DATE'
        EXPORTING
          iv_date             = mydate
        IMPORTING
          ev_month_begin_date = stdate
          ev_month_end_date   = enddate.
    ENDFORM.                    "getdt
    regards,
    amit m.

  • ICal moving an event to a new date, next week or next months,

    how do i drag my event from todays days to next months, i can not seem to drag an event from a date to another date unless its in the same week if in week view, or same month if in the mionth view, Their must be a simple drag function
    Message was edited by: CaptainStarwars

    CaptainStarwars,
    Dragging is not possible under the circumstances that you describe.
    You click on the event and use (⌘C) and then (⌘V). if you want to remove the event from the first occurrence use (⌘X), and (⌘V).
    ;~)

  • Select records by date after first of next month

    Hi
    I have an asp app accessing a SQL Server db and am getting
    myself into a tangle over dates. I have a date field ValidFromDt
    (smalldatetime) and another date field ValidUntilDt which
    respectively define when a record is valid from and until. I want
    to select all records valid on the first of next month - i.e. were
    now in July so I want any whose 'valid from' date is now or any day
    up to 1 Aug but excluding those which expire before 1 Aug and also
    those whose valid from date is 2 Aug or later. Whatever month we're
    in, it is the first of next month I want to select up until.
    Any suggestions much appreciated.
    Thanks
    TP

    Try...
    SELECT yourTable.* FROM yourTable WHERE
    CSng(Month([ValidFromDt]))>CSng(Month(Date()))

  • To get Current,Last, Next months data for Efashion report

    To Create a report with the user input prompt on Year and Month:
    If user select year as 2005 and month as 2 (Feb), revenue should be displayed for previous Month (Jan) and next month (March) of selected year.
    Sample output should looks as below.
    Year : 2005
    State
    Prev Month - Jan
    Current Month - Feb
    Next Month - Mar
    AAA
    $100
    $100
    $600
    BBB
    $200
    $400
    $200
    CCC
    $300
    $300
    $300
    I have created dimensions in universe premonth=(@Select(Time period\Month) -1) & Nextmonth=@Select(Time period\Month) +1) & taken 3 dataproviders from efashion universe .these are not working for year ends

    Hi
    solution found, taken 3 data providers & added below filters for 2 &3 data providers
    DP2
    @Select(Time period\Year)=iif(@Prompt('Enter Month','N','Time period\Month',,)=12,@Prompt('Enter Year','A','Time period\Year',,)+1,@Prompt('Enter Year','A','Time period\Year',,))
    @Select(Time period\Month)=iif(@Prompt('Enter Month','N','Time period\Month',,)=12,1,@Prompt('Enter Month','N','Time period\Month',,)+1)
    DP3
    @Select(Time period\Year)=iif(@Prompt('Enter Month','N','Time period\Month',,)=1,@Prompt('Enter Year','A','Time period\Year',,)-1,@Prompt('Enter Year','A','Time period\Year',,))
    @Select(Time period\Month)=iif(@Prompt('Enter Month','N','Time period\Month',,)=1,12,@Prompt('Enter Month','N','Time period\Month',,)-1)
    Thanks

  • Next month 7th day data

    01-jan-09 5
    02-jan-09 3
    03-jan-09 2
    01-feb-09 1
    02-feb-09 1
    03-feb-09 1
    04-feb-09 1
    05-feb-09 1
    06-feb-09 1
    07-feb-09 1
    select sum(featured_moveouts) OVER (PARTITION BY propertynumber ORDER BY relavantdate
    RANGE BETWEEN ADD_MONTHS (TRUNC ( relavantdate, 'MM'), 1)-relavantdate FOLLOWING
    AND ADD_MONTHS (TRUNC ( relavantdate, 'MM'), 1) + 6-relavantdate FOLLOWING) "FW1_NEXT_MONTH_OUTS"
    from fact_occupancy
    if i give the above query i will get the sum of next months first week data if i give any date in jan
    for example: if i give 09-jan-09 i will get the sum of next months first week data.. i,e 7
    ...i dont want that i need next months 7th(07-feb-09) day data if i give any date in jan
    Edited by: sai praneeth on Mar 14, 2009 12:56 AM

    I'm sorry but I don't understand... could you post the tables (CREATE TABLE statements) and some sample data (INSERT statements). And the expected outcome, the results.

  • Last Date of the next month

    Hi,
    How to find the last date of the next month.
    Thanks in advance
    Sunitha

    Use the below mentioned FM
      call function 'LAST_DAY_IN_PERIOD_GET'
        exporting
          i_gjahr              = p_finyear
          i_periv              = 'X1'
          i_poper              = lv_popere
        importing
          e_date               = p_edate
        exceptions
          input_false          = 1
          t009_notfound        = 2
          t009b_notfound       = 3
          others               = 4.
      if sy-subrc <> 0.
      endif.
    Supply the proper parameters, u will get the last date in  the next month.

  • QUERY TO PRINT THE DATE OF NEXT FRIDAY THAT IS SIX MONTHS FROM TODAY

    CAN ANY PLZ LET ME KNOW THE QUERY TO PRINT THE DATE OF NEXT FRIDAY THAT IS SIX MONTHS FROM TODAY.THE OUTPUT DATE FORMAT SHOULD BE AS SHOWN IN THE EXAMPLE.
    (Eg) : TODAY: 24-FEB-09          
    NEXT_FRIDAY_AFTER_SIX_MONTHS: 28-AUG-2009 (FRIDAY)
    USING DUAL TABLE

    Laurent Schneider wrote:
    yes, but when I create a view, I cannot guarantee that every client accessing this view will be using English, can I?You're in an environment where you can't guarentee that, I agree. I'm in an environment where I very luckily can guarentee it. But in general, I take your point *{:-)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to get next months date

    Hi. How do i return date records of next month?
    I am aware i may need sysdate.
    At the moment i have been trying:
    WHERE delivery_date = ADDMONTHS (sysdate, 1);
    No avail.
    Ideas?

    Hello
    If you mean you want to set up a range from the start of next month to the end of next month. This shows what happens when you apply add_months to sysdate
    SQL> select sysdate from dual;
    20-NOV-05
    SQL> select add_months(sysdate,1) from dual;
    20-DEC-05
    --Truncate sysdate to the first day of the month and then add 1 month
    SQL> select add_months(trunc(sysdate,'MM'),1) from dual;
    01-DEC-05
    --do the same, but use LAST_DAY to get the date of the last day next month
    SQL> select add_months(trunc(sysdate,'MM'),1),last_day(add_months(trunc(sysdate,'MM'),1)) from dual;
    01-DEC-05 31-DEC-05So with that in mind, you probably need to do something like
    WHERE
        delivery_date BETWEEN add_months(trunc(sysdate,'MM'),1) AND last_day(add_months(trunc(sysdate,'MM'),1));If you just want to get rows for "this" day next month you may well need to set a date range up especially if the delivery_date has not been truncated to set the time portion to 00:00:00
    WHERE
        delivery_date = ADD_MONTHS(TRUNC(sysdate),1))
    WHERE
        delivery_date >= ADD_MONTHS(TRUNC(sysdate),1))
    AND
        delivery_date < ADD_MONTHS(TRUNC(sysdate),1)) + 1HTH
    David
    Message was edited by:
    david_tyler

  • In making a monthly budget how do you repeat for next month and update the dates to the next month?

    i want to make my budget speadsheet update the month and date as it goes to the next month automatically, from sheet to sheet.  is there any way to make this happen?

    You could have a cell where you enter the month and year...
    Or you could pull the month and year from the first entry in the date column.  Like Barry I would want more information regarding your  set up before proposing any other, more specific, ideas.

  • How to fetch the Date column(or Month column) from the file name from the specified path in ODI 11g

    Hi ALL,
    Can any one help us regarding How to fecth the Date column(or month column) from the file name specified in the path in a generalized way .
    For example :
    file name is :subscribers (Cost) Sep13.csv is specified in the below path
      E:\Accounting\documents\subscribers (Cost) Sep13.csv
    here I need to fetch the "Sep13" as a Date column in the ODI 11g in the generalized way.
    Can any one help us in this case as early as possible.

    I would suggest using a piece of Jython code for this.  Something like this...
    import os
    import os.path
    filelist  = os.listdir(E:\Accounting\documents\)
    for file in filelist:
    datestr = file[19:-4]
    You'd need to work out what to do with datestr next...  perhaps write it to a table or update an ODI variable with it.
    Hope this is of some help.

Maybe you are looking for

  • My Andoid Devices wil not wake up my printer from Power Save Mode

    I have an HP LaserJet Pro 200 color MFP M276nw istalled as a wireless network printer. I have various computers with XP and Windows 8 operating systems that wake up  the printer from Power Save mode without problems. I also can print wirelessly from

  • How do you change the font in multiple text boxes?

    I just started using illustrator and I can't figure this one out.  Maybe someone can point me in the right direction. I made a bunch of text boxes using the type tool.  Is there a way I can link the boxes and easily change the font? Thanks, Justin

  • Problem with Yahoo mail after updating to 10.4.11

    I have recently updated to 10.4.11. After doing this, a change occurred when using my Yahoo Mail with Safari 3.0.4. Before the update, when typing in addresses in the "To" window when composing a message, Yahoo would fill in any recently used address

  • IDM 1.4.2 with WNA

    Hi , we are running IDM 1.4.0.1 and its working fine other than unable to access PArtner application pages, Oracle suggested to upgrade to IDM 1.4.2. After we upgraded to IDM 1.4.2, our WNA stop working and showing following messages in log 08/09/02

  • Custom login module

    hi, I'm would like to configure a custom authentication module between OIM, JBOSS and AD. I try to use the LdapLoginModule from JBOSS. Add in xlconfig.xml : <login-module> <thirdPartyLoginModule>org.jboss.security.auth.spi.LdapLoginModule</thirdParty