Month and Year has to Display as month name and Year

Hi,
For Fiscal year/period, report displays like for example <b>004.2007</b> instead of <b>July 2007</b>
I would like to see the reports as <b>July 2007</b> ( not to display as <b>004.2007</b>)..
Our financial year is <b>April to March</b>.
Help will be greatly appreciated...
Thanks

Hi venkat,
i could suggest something as follow:
Say for e.g. your report wants to display following way...
jan feb march.........dece.
net quantity----
char1..........x.x.x.x.x..x...x...x.
char2..........x.x.x.x.x..x...x...x.
Now what you can do is ...create restricted key figure 12 times...
Now in each restriction bring in Net quantity....
for 1st restriction     edit the restriction. bring in Calendar month and restrict it to January.
then in Description of that key figure put January.......
Save and come out...
Copy that first restricted key figure and copy it 11 times........
Now go in each restricted key figure and change the restriction of calendar month by Feb , march and so on.........(Also change the description to feb. march and so on)
Now in each description include Text variable whose replacement path is Fiscal year...
In bex properties,,, make the setting SUPRRESS ZERO VALUE DISPLAY...
With this, what you can do is lets say your user just want the display of Jan to march or something similar, so whatever empty box will be created will not display.....
You will achieve the result as Jan 2006 and so on........
Hope this helps.

Similar Messages

  • Suddenly my phone has stopped displaying my contacts names when I receive a message from them and just a number appears instead?

    Suddenly my phone has stopped displaying my contacts names when I receive a message from them and just a number appears instead?

    This happened to me and I was baffled for a bit.  I went to my contact list and that contact (that was now a number) had disappeared.  Then, multiple contacts started disappearing.  Subsequently, they reappeared but in duplicate and sometimes triplicate.  I believe that it had something to do with iCloud sync.  I ended up removing the contacts (in settings) and then bringing them back in.  Everything seemed to work after that.

  • Query has to display completed quarters and Data loaded month.

    Hi All,
    I have  2 issues in  BEX .
    1. I need to display  data  loaded month(0calmonth):
    Ex: Jan  2007  data has loaded in May 2007, my query has to display  for  3 months JAN 2007, Dec 2006, November 2006.
    2. completed quarters :  if we are in mid of 3 quarter, query has to display Quarter1 and quarter2 (completed)  ,nothing has to display in quarter 3.
    Thanks in advance for your inputs.

    1. you mentioned data loded month... but you are pointing Calender month that data belongs to? Are you want display based on Calender Month that data belongs to (Jan 2007) or Loded Month (May 2007) or Last Loded Month?
    2. create User Exit variable on Quarter or Month IO. in the User Exit Code, check which Quarter that current month belongs to? if it is mid of 3rd quarter, pass Quarter 1 and 2 (or for month 1 to 6).
    hope this helps.
    Nagesh Ganisetti.
    REMOVED

  • Display Month name Year

    Hi,
    Which variable Displays Month name Year (Exaple: July 2007)???
    Help will be gratly appreciated...
    Thanks...

    Hi,
    Thanks for your information..
    But i am not getting like month and year display( Example:  Sept 2007)
    I am using Text variable 0P_FPER on 0Fiscal year/period..
    and entering Input as 006.2007 then the resultant query displays as 06.
    Please suggest me how to do it??
    For entry i should give 006.2007 (or) Sept 2007..
    But in the result it should display as Sept 2007..
    Help will be greatly appreciated...
    Thanks

  • My iphone has serious display issues . wil it be replaced .? i stil hav a month left in my warranty period

    my iphone5 has serious display issues . wil it be replaced .? i stil hav a month left in my warranty period.

    iPhone warranty/support, except for the EU, is limited to country of original purchase. If you're in the EU, & purchased your phone in any EU country, you're OK. Otherwise, you'll have to return the phone to Apple in the country where you originally purchased, and you can't mail the phone to Apple. You must physically deliver it.

  • Month name displayed in month calendar view for previous month

    In iPad IOS 7.04 iCal month view the month name displayed at the top of the window is incorrect. The previous month name show when viewing a calendar month. Test by selecting year view and the any month from the year. The month view will be for the selected month, but the month name will be for the preceding month. The incorrect month name in month vie is also displayed if the month view is scrolled to new months.
    I observe this on my iPad II.
    Ha s anyone seen this error? Does anyone know if Apple has seen this and has a plan to correct it?

    Imhave the same exact problem on my iPad2.  It was not fixed in the recent iOS 7.1 release, even though modifications were made to the calendar app.  Very frustrating, since this is such an easily observable problem.

  • Checking for month name and number in different language?

    I have to let people search for documents by date. The database is used by French-speakers as well as English-speakers. The search allows users to type in free text (because it's not just dates they might search by, though if they do type in something that's intended to be interpreted as a date, that's the only thing they're allowed to type in). So, I might get '23/Apr/2009' or '2009/04/23', for example. (I also have to allow them to submit 23.04.2009 and 23 04 2009 and any combination of the above!)
    I have written a function which breaks the string into three bits, and then I work out if each bit is a year, or a month, or a day with simple rules (eg, if it's a number between 1900 and 2400, it must be the year component).
    When it comes to the month, I do two things. One is obvious: is it a number between 1 and 12? The other is, is it a month name that appears in a list of 'allowed' month names. So my function does this at the start:
    v_validmonths := 'january,february,march,april <and so on>';
    v_validmonths := v_validmonths || ',janv,fevr,avr,mai, <and so on>';Then I do this:
        for x in 1 .. listlen(v_validmonths,',') loop
          v_probemonth := listgetat(v_validmonths,x,',');   
          if instr(lower(v_partone),v_probemonth) > 0 then
            v_month := extract (month from to_date(v_partone,'MON'));
          end if;
        end loop;   IE, I compare the first component of the string (v_partone) with the list of allowed month names. I repeat that for the other two parts of the supplied string. As you can see, if one of the parts of the supplied string matches an allowed month name, I then try to extract the month number into a variable, using Oracle's own extract function.
    And that's where my problem arises. Because although "aout" is valid French for August and is permitted by my list of valid months, the extract function fails to understand it. A simple select extract (month from to_date('AOUT','MON')) from dual, for example, gives an ORA01843 (invalid month).
    How can I get the code to work with French (and German, actually) months and month abbreviations whilst also being able to understand English ones? Is there an in-built function that would allow me to do this? Or is there some way neatly to say, 'yes: AOUT is in the list, and it's month 8' without me having to rely on the extract function to work it out?
    (I realise that the business requirement here is very peculiar and your first reaction will probably be "this is horrible!". I will absolutely agree with you! But this is the requirement as has been explicitly specified by the MD and I can't negotiate it away, sadly.)

    Hi,
    Many of Oracle's date functions allow a parameter where you can override the current NLS settings only for that function call.
    For example:
    SELECT  TO_DATE ( 'JUIL.'
                     , 'MON'
                     , 'NLS_DATE_LANGUAGE=FRENCH'
                     ) AS month
    FROM    DUAL;You could also create your own table of month names
    NAME     NUM     LANGUAGE
    JANVIER   1     FRENCH
    JANV       1     FRENCHand look up the names in this table, rather than in a string hard-coded in the function. This might be especially useful if you wanted to allow your own abbreviations or spellings (e.g., ignoring accent marks).
    Edited by: Frank Kulash on Dec 16, 2010 11:40 PM

  • Period number to be displayed as month name

    Hi,
    I have Fiscal year/Period defined in the column section of the BW query.  Currently the column will be displayed for example: Period 01, 2009, Period 02 2009 and etc.   Our users are asking to display the month name instead of the Period#.  Is it something can be handled within the query definition (or) via the BW query user exit. 
    Thanks in advance for any response.

    Hi Venugopal,
    Fiscal period is not always the same as calmonth.
    For eg - In India, you have April as the 1st fiscal period of this year.
    Hence, it does not make sense to have month names for fiscal period.
    Also in FICO you may have special periods..ie periods after period 12.( eg period 13 to 16) you wont be able to map them to a particular month in some cases.
    If you want to display month name in your column selections, use 0calmonth object with text display.
    However, this would mean you are view a dataset as per calmonth and not as per fiscal period.
    Check if this is acceptable for your business requirement.
    Lastly, you can always have a formula, to check the value and put texts instead.
    ( if fiscal period is 02/2009 then month is feb ..(based on the country).
    Hope it helps,
    Best regards,
    Sunmit.

  • Program has to display the calender year with certain dates highlighted

    The program will have a selection screen with the parameter option for empid (Provide F4 help) and select option for Start Date and End Date (Provide the F4 functionality to the date fields.)
    2.        When the user  Executes the program, the program will do the following:
    a.       It has to display the calendar year for the start date and end date(same as Microsoft outlook calendar) . For Ex: you had taken casual leave on 12/04/05 then this date should be colored with yellow. And use different colors for different type of leaves.(it should cover casual, sick, optional, vacation and privilege leaves).
    we have maintained separate ztable to get the leave data.
    [email protected]
    [email protected]

    Hi Ashwneder,
    1. To implement the first part of your requirement , you can use the following code :
    REPORT  ZKUN_DATE1                              .
    tables : ztable.
    parameter : empid type ztable-empid.
    select-options  sdate for  sy-datum.
    Here i am assuming the table ztable contains the field empid.
    2. After you execute the button , you should retrieve the dates for the various leaves from the database table as below :
    select cas_leave Sick_leave opt_leave vac_leave pri_leave from ztable into table itab where empid = empid and sdate = sdate-low and edate = sdate-high.
    Note : Ztable is assumed to be the database table containig the other fileds also .
    Also ztable-sdate =Start date
    ztable-edate = End date.
    3. to display the data you can use the following code .
    Loop at itab.
    write the code tro display.
    Endloop.
    Here to display the various leaves as colored , you should use the option For coloring.
    The synax for coloring is :
    <b>FORMAT COLOR <n> [ON] INTENSIFIED [ON|OFF] INVERSE [ON|OFF].</b>
    Note : When n = 3, the color is yellow.
    Simlarly other values of n will give you different color.
    Hope this solves your provblem.
    Regards,
    Kunal.
    Note : Reward the helpful answer.

  • Change of Month names as per selection of Month / Year

    We have the following requirements:
    1. Change of Month names as per selection of Month / Year e.g. If the user select April 08 then the column name should be April 08, at the same time the next column should be April 07.
    2. Next there are two in -line totals as per different logic as recurring rows. e.g Row header is Total and it totals the items in the column, next row header is Comparable total and it is based on checking the adjacent column values for doing the total.
    Please let us know if this is feasible and can be done using BI Publisher. If you have any alternate way of doing it using OBIEE also , please share.

    Hi,
    The parameter / prompt used is for month which can have values from JAN , feb, MAR, APR,....... DEC. and the other PROMPT being YEAR e.g. 2006, 2007, 2008.
    The Column Name of the Report SHould get changed as April 08 if selected as month APril and year 2008.The subsequent column of the report should be April 2007. The same applicable for selecting any month/ year
    Layout of Report as below
    SALES
    || April 08 || April 07
    Shop1 100 200
    Shop2 300 100
    Thanks
    NJ

  • HT1860 my apple tv (1st gen) has worked fine for a year/ All of a sudden it has stopped displaying any movies or tv. It only displays my movies or my tv that has been previously down loaded. however it appears connected wirelessly with good strenght. Any

    my apple tv (1st gen) has worked fine for a year/ All of a sudden it has stopped displaying any movies or tv. It only displays my movies or my tv that has been previously down loaded. however it appears connected wirelessly with good signal strength. Have tired swithing off both router and apple TV. Any ideas?

    This is a known, ans ongoing issue. Rest assured you're not the only one affected. There are several threads here already discussing this, I suggest searhing them out if you want more details, and possible work-arounds for locally hosted content.

  • I have 12 core with Quatro 4000 and 5770, I want to use dual monitor setup, monitors are NEC with Spectraview-II.  How do I connect?  4000 only has 1 Display Port and 1 DVI.  5770 has 2 of each, if I use both 5770 Display Ports, does the 4000 contribute?

    I just bought a 12 core with Quatro 4000 and 5770, I want to use dual monitor setup, monitors are NEC with Spectraview-II.  How do I connect?  4000 only has 1 Display Port and 1 DVI.  5770 has 2 of each, if I use both 5770 Display Ports, does the 4000 contribute any work at all?  I read where on a PC they would work together, but on a MAC they do not.
    I read that Display Port has higher band width than DVI, NEC monitors for best performance they recommend using DIsplay Port.
    When I was setting this up I looked at a Nvidia Quadro 4000, unfortunately it was for PC, it had 2 Display Ports, in the Mac version they reduce it to one.  I did not think there could be a difference.
    Mainly want to use it for CS6 and LR4.
    How to proceed??? 
    I do not want to use the Quadro 4000 for both, that would not optimize both monitors, one DP and 1 DVI.  Using just the 5770 would work but I do not think the 4000 would be doing anything, and the 5770 has been replaced by the 5870.more bandwidth.
    Any ideas, I am a Mac newbie, have not ever tried a Mac Pro, just bought off ebay and now I have these problems.
    As a last resort I could sell both and get a 5870.  That would work, I'm sure of that, it's just that I wanted the better graphics card.
    Thanks,
    Bill

    The Hatter,
    I am a novice at Mac so I read all I can.  From what I understand the NEC monitors I bought require Display Port for their maximum performance.  The GTX 680 only has DVI outputs.  Difference from what I understand is larger bandwidth with the DP.
    You said I have the 4000 for CUDA.  I am not all that familiar with CUDA and when I do read about it I do not understand it. 
    A concern I have is, that if I connect the 2 high end NEC monitors via the 5770, using it's 2 Display Ports I would have nothing connected to the 4000.  Is the 4000 doing anything with nothing connected?  I read where in a PC system the 2 cards would interact but in a Mac system they do not.
    Bottom line, as I see it, the 4000 will not be useful at all to me, since I want a dual monitor set-up.
    So far the 5870 seems the best choice, higher band width than the 5770, and it has 2 Display Ports to optimize the NEC monitors.
    I'm not sure how fine I am splitting hairs, nor do I know how important those hairs are.  I am just trying to set up a really fast reliable system that will mainly be used for CS6 and LR4.  Those NEC monitors are supposed to be top notch.

  • Why do the foreign language Siri voices use English day and month names?

    I had picked French (Canada) and was ready to believe that "nous sommes le Sunday, June seize, deux mille treize" was correct in Quebec and Nova Scotia, until I checked in German and Japanese, and all the answers used English day and month names!

    Hutchpat wrote:
    is the Spellchecker language tied to the keyboard one is using?
    Yes, that is exactly how it works.  You can quickly switch among keyboards using the Globe key.
    I'm sure you will easily find the Region Formats if you have a look at Settings/General/International

  • Function Modules for Format Date, Month Name and Quarter value.

    Hi All,
    1. I am getting the date field from the Flatfile, so i need to format the date to YYYYMMDD. Is there any Function module for that in BW.
    2. Based on the above Formated Date i have to find out the Name of the Month like JANUARY, FEBUARY etc.
    3. Based on the same above Formated Date i need to find out the Quarter like 1, 2 etc.
    Could you please let me know if any function modules are there for the above questions in BW not in ABAP, why i mention is some Function modules are there in ABAP but not in BW.
    Thanks in advance.
    Regards,
    srinivas

    Hi ,
    1.If your input date format is MMDDYYYY then Use SDATE as conversion routine in trans strucutre to convert into YYYYMMDD.
    2.By passing year as input parameter for the following FM you would get all the months with text.Using READ statement in routine you can get month name
    MONTH_NAMES_GET
    3.For Quarters you can use the following FM:
    TSTR_PERIODS_QUARTERS
    hope it helps...
    regards,
    Raju

  • Get first and last day given month name with combobox

    hi guys ;
    I loaded to month name in combobox and I want to get first and last day by the name of month from selected Combobox
    So if I select to february than results get 01.02.2015 and 28.02.2015
    if select March than 01.03.2015 and 31.03.2015
    Thanks .

    Thank you for useful post , How to change Culturinfo as a Turkish Month name ?
    your's code is work if I use English month name But it was get error when use the turkish month name
    If you are running your application on a Turkish Windows you could use the System.Globalization.CultureInfo.CurrentCulture:
    int month = DateTime.ParseExact(monthName, "MMMM", System.Globalization.CultureInfo.CurrentCulture).Month;
    Or you could use create an explicit culture object like this:
    System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("tr-TR");
    int month = DateTime.ParseExact(monthName, "MMMM", ci).Month;
    Please remember to mark all helpful posts as answer to close your threads.

  • Function to get all the months name of a year from dual

    HI GURUS
    Is there any function to get all the months name of a year from dual
    thanks in advance

    What about this --
    satyaki>
    satyaki>select months_name
      2  from (
      3         select to_char(add_months(trunc(sysdate,'YEAR'),rownum-1),'MONTH') months_name
      4         from dual
      5         connect by rownum<=12
      6       );
    MONTHS_NAME
    JANUARY
    FEBRUARY
    MARCH
    APRIL
    MAY
    JUNE
    JULY
    AUGUST
    SEPTEMBER
    OCTOBER
    NOVEMBER
    MONTHS_NAME
    DECEMBER
    12 rows selected.
    satyaki>Regards.
    Satyaki De.

Maybe you are looking for