Time Characteristic selection for FOX

Hello,
I have a requirement where i need to select the time characteristic as it is in the FOX formulae not the variable . Please can anyone help me to do so.
Thanks

Hi,
You can use the time characteristic directly without using variable in the fox.It depend upon your requirement whether you want to loop through it ,read one by one using OBJV(),or perform some operations through TMVL.
For example:-
Time characteristic fisper.
Data L_fisper type 0fiscper.
*Keep it n a fields to be changed if it is changing and you want to use in foreach.
Foreach L_fiscper.
endfor.
If it is not changing like the entire operation has to be performed only with one fiscper value,then use OBJV(),it should not be part of fields to be changed.
L_fiscper = OBJV().
The value of 0fiscper purel depends upon your aggrgation level and filter restriction.
Regards,
Indu

Similar Messages

  • Once Firefox crashes & restarts, homepage opens (not tabs that were open prior to crash) even though "tabs from last time" is selected for when Firefox starts.

    When Firefox crashes and subsequently restarts, the tabs that were open are not restored. I do not get the "well, this is embarrassing" dialogue box that gives me the option to restore tabs. When restarting, Firefox just gives me my home page. This happens even though I have selected under options for Firefox to open previous windows & tabs upon start up.

    Hopefully you still can use History > Restore Previous Session to get back to where you were.
    To restore the regular behavior of resuming your previous session after a crash, you probably need to change one of your preferences back to its default value.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''sess''' and pause while the list is filtered
    (3) Double-click '''browser.sessionstore.resume_from_crash''' to switch its value from false to true.
    If you prefer to always get the "this is embarrassing" screen rather than having Firefox re-open all the windows and tabs immediately, also change this preference:
    (4) Double-click '''browser.sessionstore.max_resumed_crashes''' and change the value from 1 to 0.
    Hope that helps in the unfortunate event that you have a crash!

  • Time characteristic restriction in BW BPS

    Hi to all,
    I got one question for BW-BPS. This was happened after upgrade of Netweaver
    service pack. Before that it was fine. My question is as follow:
    Under DW workbench when I create an InfoProvider which included time dimension
    that consist of fiscal year, fiscal year/period, posting period, calendar
    year, calender year/ month. I try to select fiscal year, fiscal year/period
    under a planning level, then I select unassigned(#) time characteristic for
    fiscal year/period and save it. System allow for this restriction under time
    characteristic fiscal year/period. However, if I deselect fiscal year, fiscal
    year/period under a planning level and select calendar year, calender year/
    month under the same planning level, then I select unassigned(#) time
    characteristic for calender year/ month and save it. System was not allow for
    this restriction for time characteristic and generate the following message:  
      Message: UPC003- Value# is not permitted for characteristic calendar
    year/month.
    There was no characteristic relationship set for time dimension
    characteristics. I still not understand why system is not allow for
    unassigned(#) time characteristic selection for calender year/ month
    Therefore, I would like to need a support for this. Is it a system error?

    Hi Gupta,
    Thanks for your guide. I already try as per your instruction but not work because when I create a planning level with only 0calmonth, system still not allow me to include unassigned (#) for time restriction. May be I could explain to you why I need to select unassigned (#)  for 0calmonth.
    My explanation is as follows:
      Actually I already create a planning level with selected time characteristic calender year only for example Year 2008 and input value. Now I want to distribute the yearly figure to monthly, therefore I need to create another planning level and perform top down distribution. In the top down planning level, I have to select calender year/month for time characteristic and restrict the period to Jan 2008 to Dec 2008 and include unassigned(#) for the purpose of running distribution function.
    As I have told you in the earlier note which mentioned that the above task was actually worked in the beginning time before we have upgrade our Netweaver service pack. Unfortunately, it not work anymore after the upgrading of Netweaver .
    Do you have any idea regarding the scenario of before and after upgrading of Netweaver. Does it affect the previous settings?
    Hope you can help me to find out more on this.
    Tq.

  • In iOS 4, you could make separate photo slide shows with separate songs.   In iOS 5, this has changed. Now only 1 song is allowed at a time. It will not save separate song selections for each slide show.  Is there any way to fix this? This is something I

    In iOS 4, you could make separate photo slide shows with separate songs.
    In iOS 5, this has changed. Now only 1 song is allowed at a time. It will not save separate song selections for each slide show.
    Is there any way to fix this? This is something I use every day.
    I am on an iPad 2, 32gb, wifi...
    Thank you

    My Photos app works the same on iOS 5 as it did on iOS 4 i.e. I can have a different track for each album. When I select a track for a photo album I then start the slideshow so that it shows the first couple of photos with the track playing - I'm not sure it's necessary to start the slideshow but I always do and it remembers that track for that album.

  • No 'order by' selection for cluster tables generates run-time

    Hi together,
    Basically I want to use a "select...order by" statement with table mhnd.
    Since mhnd is a cluster table you can not use "...order by".
    So, I use a select ... into table. I then sort this table and finally read it (index = 1)
    Unfortunatly this approach generates huge run-time.
    What can be done to minimize run-time?
    Thanks for any help

    Hi Gerd,
    Which cluster table you are using and what`s data you wanted? Maybe there are some FM to extract data from it.
    regards,
    Archer

  • Restrict Time characteristic filter at selection screen

    Hi,
    I am trying to find out a solution for the below typical requirment which i have in my project.
    The scenario is as follow:
    I have a BEx report with many characteristics in the selection screen. There are three time characteristics in the selection screen based on which the report can be executed. The three time chars are CALDAY, CALMONTH and CALWEEK. Now the requirement is that we need to provide a functionality to the user to select only one of the three time char i.e. they can either input date filter or month filter or week filter.
    If user tries to input filter on more than one time char then he shouldnt be able to execute the report and it should show some kind of message. Also if the user dosent select any one of them it should not run
    the report.
    Please provide any work around for the same.
    Thanks,
    Varun

    Hi Varun,
    Yes this can be acheived by coing the same in the CMOD.  Please follow the steps as given below -
    Please excuse me if I have done any typo errors -
    Goto to CMOD and write a customer exit for i_step = 3 as given below -
    IF i_step = 3.
    data: count type n.
    count = 0.
    LOOP at i_t_var_range INTO l_s_var where vnam = 'date_var'
                              OR vnam = 'month_var'
                              OR vnam = 'week_var'.
       count = count + 1.
    ENDLOOP.
    IF count > 2.                 "this is for multiple time range selection
    CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
    EXPORTING
      I_CLASS = 'RSBBS'
      I_TYPE = 'E'
      I_NUMBER = '000'
      I_MSGV1 = 'Please enter either of Date/Month/Week'.
    raise again.
    ELSEIF count = 0.            "this is for no time range selection
    CALL FUNCTION 'RRMS_MESSAGE_HANDLING'
    EXPORTING
      I_CLASS = 'RSBBS'
      I_TYPE = 'E'
      I_NUMBER = '000'
      I_MSGV1 = 'Please enter at least Date/Month/Week'.
    raise again.
    ENDIF.
    ENDIF.
    Hope this helps.
    Regards,
    RashmiG

  • Hello, I'm pretty sure my fan on my 2009 mac book pro has stopped running. Would this cause the computer to slow down and take for ever to boot up and show the color wheel every time I select an application ?

    Hello, I'm pretty sure my fan on my 2009 mac book pro has stopped running. Would this cause the computer to slow down and take for ever to boot up and show the color wheel every time I select an application ? how involved to replace fan ? cost ?
    thanks

    Not directly, but if the CPU overheats because of incompatible software, that would cause slowdowns. Do not allow the computer to run if the fan is not working unless you wish to fry your motherboard. Please make a Genius Appointment and take it in for service.

  • HT201272 Why all my previous downloaded apps (free or paid) suddenly not showing up on the iTunes store "purchased" section.  Every time I select "purchased", the next screen shows "no purchased app available for downloaded"?? Please help!!

    Why all my previous downloaded apps (free or paid) suddenly not showing up on the iTunes store "purchased" section.  Every time I select "purchased", the next screen shows "no purchased app available for downloaded"?? It is the same on my iphone4 or ipad 2!!  Please help!!

    Dear Metal Wheels and King Penguin.
    I have to actually same problem today 23.10.2012. For an example I have only changed billing methods and have bought hundreds of apps but I remember clearly that I bought for an example ,,Wikipanion Plus'' and ,,OPlayer'' which is now HD OPlayer and I did not see them in purchased items, neither ,,not on ipad/iphone'' nour ,,not on my computer'' and I check in both my computer. I confirm hereby that I took the chance to re-buy these two Apps again through the same account but I got the message ,,As you have bought the previous version on this account you will get this update for free'' so I clicked yes and I got them both. This doesnt only proof that I have purchased them before and purchased items in iTunes Store has some lacks to fix but also it proofs that I also bought them through that specific account as I had to confirm the buying process. In my opnion this is not a thing which Apple should be relaxed with as its very important that powerusers and regular consumers can trust and rely on doing business and to shop via iTunes. I have a lot of expensive Apple Hardware and for me this is a stepping stone and a serious test on the circle of trust. If this cant be fixed I cannot recommend others to trust the store.
    Best Regards, davidtryggva

  • 'Music' displays but won't play. Settings appear correct and iPhone is selected for output.  Startup screen intermittently displays with the lower pause/play volume bar for no clear reason..... developed at the same time as play failure.  Ideas????

    'Music' displays but won't play. Settings appear correct and iPhone (3G)  is selected for output.  Startup screen intermittently displays with the lower pause/play volume bar for no clear reason..... developed at the same time as play failure.  Ideas????

    Thank you for the replies.
    Appearane of 'Music' functions (I>>   > II   <<I,   plus volume slider)  on the lock/log in screen (when first turning on the iPhone) thus far seems without pattern, i.e. regardless of which if any applications are up in the background, and indeed even when all have been quit.
    All visual aspects of 'Music' appear normal after launch including the title scroll across the top in vertical mode. However, while pressing play (>) converts the play (>) icon to pause (II), selected song does not play and the elapsed time bar (upper end between the track count and the repeat/shuffle icons) remains stationary at 0:00 or at any point to which it is dragged.  When using home sharing this same problem persists regardless of what output is selected.
    Hope that may prompt a thought somewhere.

  • How to select correct time machine backup for migration assistant

    We have two MacBooks backing up to one Time Capsule using time machine: let's call them H and R.
    I have had to reinstall Leopard on Macbook H and am now trying to restore using Migration Assistant.
    Migration Assistant finds the Time Capsule and identifies that there are two Time Machine Backups, but doesn't give an option to select the one to use.
    Whenever I click 'Continue' it does the 'Checking time machine backup' (for hours), then brings up the data to restore, but every time it comes up with the data and settings from Macbook R.
    How can I tell Migration Assistant which Time Machine Backup I want to use?

    Brilliant. That was it.
    I used the other MacBook to run Disk Utility on my backup volume and repaired it: #A5 is bang on.
    Then, Setup Assistant saw both backups and let me select the one I wanted. It's now transferring my stuff.
    Very relieved and extremely grateful.
    Your apple tips should come with every mac and time capsule.

  • Setting # for 0CALYEAR in selection for planning level in BPS

    hi all!
    when i try to set # for 0CALYEAR (and other time variables) in selection for planning level in BPS, i recieve the following error message: 'Value # is not permitted for characteristic Calendar Year' (UPC003). As i understand, this problem began to occur after upgrading to SPS12.
    we have BI 7.0 installed
    can anyone help me solve this problem please?

    <FONT FACE = "Tahoma", Font Color = "Blue">
    Hi<br>
    Check in year master data if value BLANK (#) exists. System should permit only those values for characteristics which are available in master data tables.<br><br>
    Secondly, does system allow you to select value # for calendar year using the F4 drilldown?
    <br><br>
    Hope it helps.<br>
    Cheers Abhijit</FONT><FONT FACE = "Verdana", Font Color = "Red">
    Please assign Reward Points if I above information was useful
    </FONT>

  • Remodeling a time characteristic in a cube - Doesn't allow??

    I have a cube containing time characteristic 0CALWEEK.  I would like to use the remodeling toolkit so i can write some custom user exit code to replace the values in this field based on logic.  However I am not allowed to select this field!!  Why doesn't SAP allow you to remodel (change values) in any of the time characteristics in a cube??  Is there any way around this?
    Thanks, Peggy

    You are close to my issue.  This is a regular basic cube.  (no non-cumulative)
    It contains snapshots of an 18 month plan (future dates).  We have over 2 years of snapshots.  Last year the source system sending us the plan data used a calendar that handled the weeks of 2010 differently than the SAP calendar.  (SAP buckets the first 10 days of 2010 in week 1; whereas our company only used first 3 days of 2010 as week 1).
    Anyway, we have about 100 million records in these snapshots to adjust the calendar week to match up with the SAP calendar week.
    All we wanted to do was to use  the remodeling toolkit on the 0calweek field and choose "replace characteristic" and populate with a bit of ABAP code.  However we are not allowed to pick any time characteristics.
    We know we could always use the old standard ways to move data around to dummy cubes and fix, but that takes hours of processing for all the data we have to do.  (actually about 10 cubes this size).
    So we are testing the remodeling toolkit by adding a new characteristic that "references" ocalweek and using Abap to populate that the way we want.  We can move the queries over to the new field.  That seems to be working and fast since work is done using Oracle level commands, instead of data packet by data packet.
    Do you have any other ideas?
    Thanks much!

  • Time dependent selection

    Hi,
    Can anybody help me with me problem?
    I'm creating a datasource for a characteristic with time dependent attributes.
    I need to have 0DATEFROM as a selection characteristic in the infopackage.
    But when I do this, the load fails with the next error mesage: " ZEMPLOYEE : Data record 1 ('01000001 ') : Invalid "from" date '00000000 '". And the same error appears for all values of ZEMPLOYEE.
    Does anybody how to solve the problem?

    Hi Elena,
    Do you load master or transactional data?
    If the latter, you need to load master data of 0EMPLOYEE first. The date supplied by the system you need to use in TO_DATE field. The system will take care about creating time-dependent records.
    See some examples here:
    Re: Master Data: 2 records with different FROM-TO dates
    Re: Master data load failure
    Re: Loading Multiple Time-Dependent Characteristics for an InfoObject
    Best regards,
    Eugene

  • Error message: "playlists selected for updating no longer exist"

    I tried to update my ipod nano and I guess I had deleted a playlist, but since then, I have not been able to update. Every time I try, I get the following message:
    "Cannot be updated because all of the playlists selected for updating no longer exist."
    I haven't been able to highlight which playlists are selected to begin with.
    I read through the manual and thought that maybe rebooting the whole system might work. So I deleted Itunes from my computer and re-installed.
    Then I tried re-setting my ipod. So now I have nothing on my ipod.
    I also deleted everything from my library, thinking it might help to start from scratch. Nothing has worked.
    How do I "select" and "unselect" playlists so I can get up and running again?

    Here you go.
    http://discussions.apple.com/thread.jspa?messageID=607312&#607312

  • Songs cannot be synced: playlists selected for syncing no longer exist

    "Songs on the ipod cannot be synced because all of the playlists selected for syncing no longer exist"
    I finally filled all of the memory in my nano for the first time, and I got a popup to put all of my playlists in one file so it wouldn't take up as much space. When I saw it, I deleted it, I wasn't aware of what was going on. I tried to fix it by changing the settings to manually sync music but that didn't work. Then I restored my ipod and now it doesn't have any songs on it. So I tried to uninstall everything, itunes and ipod to restore the settings back to normal but that didn't work either. Everytime I connect my nano, all it says it can't sync because the playlists don't exist anymore. I don't know what to do anymore. Can someone help me?
    inspiron b130 laptop   Windows XP  

    But then it says it can't read or write to my nano.
    is that the message discussed in the following document?
    "Disk cannot be read from or written to" when syncing iPod or "Firmware update failure" error when updating or restoring iPod

Maybe you are looking for