Getting a calender in WAD

hi,
I want to get Calender in WAD
my scenario is this have a Date field-Input box or Drill down and i should get a calender selection option on that box from that calender the date,month,year should be selected.
For this scenario i have created an Character using 0CALDAY and not any custom object for date...
and aslo created a variable in reporting level but still i dont get a calender can any one help me to solve this problem
Is getting a calender in WAD is possible or not pls confirm me its urgent
regards,
sri

Hi,
Check the methods in
http://help.sap.com/saphelp_nw70/helpdata/en/43/f5daaddfdb4c60e10000000a155369/frameset.htm
WAD Dropdown Box Help
Eddy
PS. Which type of SDN Ubergeek/BPX suit are <a href="/people/eddy.declercq/blog/2007/05/14/which-type-of-sdn-ubergeekbpx-suit-are-you">you</a>?
Deadline: June 15th

Similar Messages

  • I have an iPad 2. It synced all my information from my Android to the ipad.  I cannot get my calender on my ipad to sync with iCloud.  Can anyone help?

    have an iPad 2. It synced all my information from my Android to the ipad.  I cannot get my calender on my ipad to sync with iCloud.  Can anyone help?

    Okay, this is interesting, because I was under the impression that FOR IOS DEVICES, contacts are NOT included in a backup, since they are already on icloud (in the contact database).  And since you erased the contacts, then they are gone for good.  One recommendation I've read about is, assuming you have a computer like a Mac also connected to the same icloud account, you can get the contacts back from a backup of the computer, like Time Machine.  However, I don't know where you'd look for that file or files (even though the contacts are stored centrally on icloud, I'm guessing they are also stored locally in a cache file).
    I think another suggestion made here (IIRC) is to turn off syncing of contacts (on the device), then do a restore.  Since there's no sync, icloud's empty contact database will not overwrite the local contacts on the deviced.   Again, I may not be remembering correctly.  Some of these older posts about this same problem were some time ago.
    I'd welcome anyone who really knows the details on this to add to the discussion here.  This is an issue faced by many posters.

  • Variable value is not getting set in BEx / WAD

    Hi,
    We have a WAD report where we have selection on Comp Code which is restricted to a variable Var1. In the same WAD, a button group is used to execute a Planning Sequence, it has a filter for Comp Code which is restricted to a mandatory variable Var2.
    Idea is unless the user selects a value for Comp Code in WAD selection screen(Var1), the button group to execute the Planning Sequence will not be visible. When this button group is visible and user clicks to execute the Planning Sequence, the value for Var2 is supposed to get the same value as Var1 since in the underlying BEx query of WAD, we have restricted Comp Code InfoObject with Var1 in Default Values region.
    This was working absolutely fine in BW 7.3. But recently we upgraded to BW 7.4 and now the value for Var2 is not getting set if user selects the value for Var1.
    Appreciate any help on this.
    Note: The issue will resolve if we use the same variable in BEx query as well as the Planning Sequence, but this is not feasible in our case.
    Thanks and Regards,
    Shravan Marathe

    Hi Suman,
    As the issue came up with the latest BW 7.4 upgrade, we are looking for a work around may be implementation of Notes instead of going for an alternative.
    Thanks and Regards,
    Shravan Marathe

  • All Cells are Not getting Background Color in WAD

    Hello All,
    I have a query with 29 Columns and Nearly 1000 Rows.
    This query is being displayed through WAD.
    I have used  com.sap.ip.bi.rig.Format to color different columns : e.g.
    1st - 8th column -> Color Green
    9th - 10th -> Color Red etc.
    Also, in the Analysis Web Item properties, the values are:
    BLOCK_COLUMN_SIZE = 50
    BLOCK_COLUMNS_STEP_SIZE = 1
    BLOCK_ROWS_SIZE = 1000
    BLOCK_ROWS_STEP_SIZE = 0
    My Issue: For all columns , a few of the Cells are not getting colured. They are absolutely random.
    When I reduce the data volume (restrict to some region), all the columns are properly colured.
    Please Help to fix the issue.
    Thanks,
    Mainak

    Closing the thread as seems below note answers my query:
    1648692  Modification Format styles not applied on huge result set
    Thanks,
    Mainak

  • Getting factory calender weekly duration timings

    hi all,
    I have a scenario to get the factory calender weeky avaialable(working) timings like
    MONDAY - 8:00 TO 17:00 etc.,
    how to get these values is there any function module associate to get those value by passing date rule id.
    Appreciate ur help
    thanks
    viswa

    check below code...
      DATA: W_FACTORYDATE          LIKE  SCAL-FACDATE.
    Convert Delivery Date to Factory Date
      CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'
           EXPORTING
                CORRECT_OPTION               = '-'
                DATE                         = I_EINDT
                FACTORY_CALENDAR_ID          = I_FABKL
           IMPORTING
                DATE                         = E_EINDT
                FACTORYDATE                  = W_FACTORYDATE
           EXCEPTIONS
                CALENDAR_BUFFER_NOT_LOADABLE = 1
                CORRECT_OPTION_INVALID       = 2
                DATE_AFTER_RANGE             = 3
                DATE_BEFORE_RANGE            = 4
                DATE_INVALID                 = 5
                FACTORY_CALENDAR_NOT_FOUND   = 6
                OTHERS                       = 7.
    Find the Lower Limit of Delivery date
      E_LOWER = E_EINDT.
      IF I_VINT1 NE 0.
        W_FACTORYDATE = W_FACTORYDATE - I_VINT1.
        CALL FUNCTION 'FACTORYDATE_CONVERT_TO_DATE'
             EXPORTING
                  FACTORYDATE                  = W_FACTORYDATE
                  FACTORY_CALENDAR_ID          = I_FABKL
             IMPORTING
                  DATE                         = E_LOWER
             EXCEPTIONS
                  CALENDAR_BUFFER_NOT_LOADABLE = 1
                  FACTORYDATE_AFTER_RANGE      = 2
                  FACTORYDATE_BEFORE_RANGE     = 3
                  FACTORYDATE_INVALID          = 4
                  FACTORY_CALENDAR_ID_MISSING  = 5
                  FACTORY_CALENDAR_NOT_FOUND   = 6
                  OTHERS                       = 7.
      ENDIF.
    Find the Upper Limit of Delivery date
      E_UPPER = E_EINDT.
      IF I_VINT2 NE 0.
        W_FACTORYDATE = W_FACTORYDATE + I_VINT1 + I_VINT2.
        CALL FUNCTION 'FACTORYDATE_CONVERT_TO_DATE'
             EXPORTING
                  FACTORYDATE                  = W_FACTORYDATE
                  FACTORY_CALENDAR_ID          = I_FABKL
             IMPORTING
                  DATE                         = E_UPPER
             EXCEPTIONS
                  CALENDAR_BUFFER_NOT_LOADABLE = 1
                  FACTORYDATE_AFTER_RANGE      = 2
                  FACTORYDATE_BEFORE_RANGE     = 3
                  FACTORYDATE_INVALID          = 4
                  FACTORY_CALENDAR_ID_MISSING  = 5
                  FACTORY_CALENDAR_NOT_FOUND   = 6
                  OTHERS                       = 7.
      ENDIF.

  • I have my iphone 4S backed up to icloud and now I can not get any calender information at all previous to September 2012.  I had last backed it up at the end of January and Calender saved to icloud is "on".  How can I retrieve my calenders?  Help now!

    Help!  I recorded odometer readings on my work calender on my iphone 4S all last year and now my calenders are blank from September2012 and earlier.  It is backed up to icloud.  What happened and can I get that information back somehow?

    Go to iCloud.com, select the calendar.
    Is the information listed in the calendar?
    If it is, it should be syncing to the device.
    If it is not, then that information is gone.

  • HT4061 How do I get my calender to my home PC

    I am a complete beginner and want to get my ipad calender to my home PC

    Install iTunes on your PC.  Use it to sync the iPad with your PC.

  • How to get open calender of specific date from adf-mobile

    HI,
    I have 2 variablesin my bean class. 1st contains the date and 2nd contains the event name.
    in my poc when user click on a commandLink it opens the calender with that date selected and with an event which is in our second variable.
    Kindly help me in this, how can i do this with ADF-Moble on AMX or HTML page.
    Thanks and Regards,

    Hi,
    Please try this.
    PARAMETERS: P_START LIKE SY-DATUM,
                P_END   LIKE SY-DATUM.
    DATA: DAYS    TYPE I,
          WEEKDAY LIKE DTRESR-WEEKDAY.
    DAYS = P_END - P_START.
    DO DAYS TIMES.
      CALL FUNCTION 'DATE_TO_DAY'
        EXPORTING
          DATE    = P_START
        IMPORTING
          WEEKDAY = WEEKDAY.
      IF WEEKDAY = 'Sat.'.
        WRITE: / P_START.
      ENDIF.
      P_START = P_START + 1.
    ENDDO.
    Regards,
    Ferry Lianto

  • I cant get my calender to work right or at all

    I have been using my calender for a while now tell today and now when i go into it it will not let me change or add anything

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (Later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or by right-clicking the downloaded installer and selecting Run as Administrator.
    See also HT1925: Removing and Reinstalling iTunes for Windows XP or HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • How to get Selection Screen in WAD?

    Hi Experts,
    I have designed a WAD where when executed, the selection screen does not come. It goes straight to the report.
    I have used a table for the Data Providers.
    What settings I have to make for the selection screen to pop out?
    Kindly guide me.
    With kind regards,
    Shreeem.

    Hi,
    Have a look at below thread,
    Display of the selection screen in WAD
    Hope this helps.
    Regards,
    Mani

  • My iphone just died and i'm trying to at least get my calender on my computer how do i do that

    my iphone just died went all black and i'm wondering 1- how can i fix this and also how can i find all my info that i on my iphone to my computer???

    You'd be better off just syncing your phone to the computer you've sync'd your old phone with, just make sure you use the same user account.

  • Hi there. Having some problems getting my calender to show the correct days for birthdays I have in my contacts. If the correct date in contacts is the 22nd, then in iCal it appears on the 21st. Has happened on 3 occasions. All have been in the 20's ??

    Hi there,
    Having an issue where some birthday dates in my contacts appear as a different date in my iCal. One day before infact. Most are fine but three are incorrect. Seems to be all involving dates in the 20's. Have tried editing contacts but to no avail. Have read about syncing but because most are correct I am not sure about this. Very perplexed! The contacts dates are all correct.
    Thanks for any advice.

    Hi there,
    Having an issue where some birthday dates in my contacts appear as a different date in my iCal. One day before infact. Most are fine but three are incorrect. Seems to be all involving dates in the 20's. Have tried editing contacts but to no avail. Have read about syncing but because most are correct I am not sure about this. Very perplexed! The contacts dates are all correct.
    Thanks for any advice.

  • How to get calender week (200733) from a date (20071002)

    Hi All,
    Could you please suggest a method or function module to get the calender week of a date.
    Thanks and best regards,
    Bindiya

    try function DATE_GET_WEEK
    Regards,
    Dirk.

  • Getting Calender through SQL

    Hello,
    Using 9i and windows XP :
    select lpad( Month, 20-(20-length(month))/2 ) month,
    "Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"
    from (select to_char(dt,'fmMonthfm YYYY') month,
    CASE when to_char(dt,'fmMonthfm YYYY') like 'Dec%' AND to_char(dt+1,'iw') = '01' then '53'
    when to_char(dt,'fmMonthfm YYYY') like 'Jan%' AND to_char(dt+1,'iw') = '53' then '.5'
    else to_char(dt+1,'iw')
    END week,
    max(decode(to_char(dt,'d'),'1',lpad(to_char(dt,'fmdd'),2))) "Su",
    max(decode(to_char(dt,'d'),'2',lpad(to_char(dt,'fmdd'),2))) "Mo",
    max(decode(to_char(dt,'d'),'3',lpad(to_char(dt,'fmdd'),2))) "Tu",
    max(decode(to_char(dt,'d'),'4',lpad(to_char(dt,'fmdd'),2))) "We",
    max(decode(to_char(dt,'d'),'5',lpad(to_char(dt,'fmdd'),2))) "Th",
    max(decode(to_char(dt,'d'),'6',lpad(to_char(dt,'fmdd'),2))) "Fr",
    max(decode(to_char(dt,'d'),'7',lpad(to_char(dt,'fmdd'),2))) "Sa"
    from (select trunc(sysdate,'y')-1+rownum dt
    from all_objects
    where rownum <= add_months(trunc(sysdate,'y'),12) - trunc(sysdate,'y'))
    group by to_char(dt,'fmMonthfm YYYY'), to_char( dt+1, 'iw' )
    order by to_char(dt+1,'iw'))
    order by to_date( month, 'Month YYYY' ), to_number(week)
    I got above code from http://www.oracle.com/technology/oramag/code/tips2007/020507.html link. I wish to:
    1. Get the calender of required month(s).
    2. It is returning month name and year on every line; how to disable to print month name and year on every line.
    Thanks.
    Regards

    TRAINING @ training>define yourdate = '''01-feb-2008'''
    TRAINING @ training>select
      2  max(decode(dow,'sun',d,null)) Sun,
      3  max(decode(dow,'mon',d,null)) Mon,
      4  max(decode(dow,'tue',d,null)) Tue,
      5  max(decode(dow,'wed',d,null)) Wed,
      6  max(decode(dow,'thu',d,null)) Thu,
      7  max(decode(dow,'fri',d,null)) Fri,
      8  max(decode(dow,'sat',d,null)) Sat
      9  from
    10  (
    11  select d,dow,www,dd,d-dd e
    12  from
    13  (select rownum d, to_char(to_date(to_char(rownum) || '-' ||
    14  to_char(to_date(&yourdate),'mon') || '-'  || to_char(to_date(&yourdate),'yyyy')),'dy') dow,
    15  to_char(to_date(to_char(rownum) || '-' ||
    16  to_char(to_date(&yourdate),'mon') || '-'  || to_char(to_date(&yourdate),'yyyy')),'w') www,
    17  to_char(to_date(to_char(rownum) || '-' ||
    18  to_char(to_date(&yourdate),'mon') || '-'  || to_char(to_date(&yourdate),'yyyy')),'d') dd
    19  from all_objects where rownum <=
    20  (select to_char(last_day(&yourdate),'dd') from dual))
    21  )
    22  group by e
    23  order by 7;
    old  14: to_char(to_date(&yourdate),'mon') || '-'  || to_char(to_date(&yourdate),'yyyy')),'dy') dow,
    new  14: to_char(to_date('01-feb-2008'),'mon') || '-'  || to_char(to_date('01-feb-2008'),'yyyy')),'dy') dow,
    old  16: to_char(to_date(&yourdate),'mon') || '-'  || to_char(to_date(&yourdate),'yyyy')),'w') www,
    new  16: to_char(to_date('01-feb-2008'),'mon') || '-'  || to_char(to_date('01-feb-2008'),'yyyy')),'w') www,
    old  18: to_char(to_date(&yourdate),'mon') || '-'  || to_char(to_date(&yourdate),'yyyy')),'d') dd
    new  18: to_char(to_date('01-feb-2008'),'mon') || '-'  || to_char(to_date('01-feb-2008'),'yyyy')),'d') dd
    old  20: (select to_char(last_day(&yourdate),'dd') from dual))
    new  20: (select to_char(last_day('01-feb-2008'),'dd') from dual))
           SUN        MON        TUE        WED        THU        FRI        SAT
                                                                    1          2
             3          4          5          6          7          8          9
            10         11         12         13         14         15         16
            17         18         19         20         21         22         23
            24         25         26         27         28         29
    TRAINING @ training>Message was edited by:
    David A

  • Sap calendar in wad

    hi experts
    How can i get a calender for a date field in wad
    is it possible to get a calender instead of values stored in data targets.
    please suggest
    its urgent
    Thanx in Advance

    hi maaya..
    chk this thread.. will be very helpful..
    Calender display on date field
    Check the methods in
    http://help.sap.com/saphelp_nw70/helpdata/en/43/f5daaddfdb4c60e10000000a155369/frameset.htm
    WAD Dropdown Box Help
    hope it helps..

Maybe you are looking for

  • Dock not working; command-tab switch between programs not working

    The Dock does not work. I have restarted (although the computer will not restart under "Restart", getting stuck at the last part, and needs to be restarted manually). When I change Dock preferences it reverts back to default settings. If I am lucky,

  • Why do my contacts have such large print? How can i reduce the Size?

    mmy contacts are appearing in large print, which means I do,not easily see the whole phone number. How can alter the size of the print?

  • HELP ME! Transfering Songs

    I have my iPod and I got all my songs on iTunes on my old computer. Well, I have around 400 songs on my iPod and I am going to only use the new computer. Everytime I try to load my iPod to the computer it asks if I want to load the songs on my iPod f

  • Looping intro media?

    I'm creating an iBook textbook to be used at a convention.  I need the intro media to loop continously until someone slides over to the TOC for Chapter 1.  In the Inspector panel i have the repeat option set to "Loop" but no matter what at the end of

  • Idoc Type SYIDOC01

    Has anyone already worked with idoc Type SYIDOC01, message type SYIDOC? Is there any way to use this Idoc to post idoc types that do not exist in an EBP SRM 3.0 system? If so, which process code should be used? thanks in advance, Raquel.