Month range issue

Hi Experts,
             I need to get data between different intervals (like January 2010 to January 2011),for this am using filter in webi  with the help of u201D betweenu201D operator. but am not getting original data .
Here am applying filter on cal year\month  field.
Please do needful

Hi
Did you checked that in query filter the months order like jan .feb ,march,...if it is like that order  then you will get values corecty filtered in the report level by default it will show like apr,aug...in order instead of jan ,feb .
In query filter the list  of values are not in order like jan2010,jan 2011 ..like that then you have to contact to universe designer to rearrange  the order
Hope this helps u
Edited by: K.sunil on Nov 26, 2011 11:27 AM

Similar Messages

  • Query using 0calmonth, to input the month range, data incorrect

    hi, experts,
    I have a query using 0CALMONTH in the filter, restricted the range value ( eg. 2009.01-2009.08 ),
    but the data in Bex Analyzer only 2009.08, doest not collect the cube data from 2009.01 to 2009.08.
    If restrict the single value (eg, 2009.02), the data is correct.
    I tried to restrict the key figure by 0CALMONTH and then tried using variables with an offset but it does not work as input is a month range.
    my bw support package13, basis sp12.
    thanks in advance,
    xwu.

    this issue solved by myself, there is a non-cumulative Key Figure.
    thanks,
    xwu.

  • No. range issue : at the time of production order settlement

    Hi expert,
    My user is unable to settle production order due no no range issue:
    Short text of error message:
    Document number 9000 20001 2008 was already assigned
    Technical information about the message:
    Diagnosis
         Document number 20001 in company code 9000 and fiscal year
         already been assigned.
    System response
         Termination of processing.
    Procedure
         Check document number range 02 in company code 9000 and fi
         2008 and correct the number range status if necessary.
    Message classe...... "F5"
    Number.............. 152
    Variable 1.......... 9000
    Variable 2.......... 20001
    Variable 3.......... 2008
    Variable 4.......... 02
    Variable 3.......... 2008
    Variable 4.......... 02
    Pl advise.
    Regards,
    Samar

    Hi experts,
    Thaks for the reply.
    Pl advise what is the configuration/T code to be maintained for no range
    Regards,
    Samar

  • IPad 2 WiFi Range Issues (but not issues with connectivity when in range)

    Okay. I hate to start a new thread when there are bunches of threads on the iPad 2 having WiFi problems (particularly with 5Ghz networks and also related to 4.3). Nonetheless, I'm not seeing anyone talking about range in these forums.
    Issue: iPad 2 WiFi range is not as far as iPad 1 (with no cover on either).
    Alternative Explanation: iPad 2 has difficulty connecting to Airport Express or Time Capsule extended networks.
    Devices: iPad 2 3g, iPad 1 3g (iOS 4.3), iPhone 3gs (iOS 4.3), iPhone (iOS 3.2x), iMac, MacBook Pros, etc.
    Network Router: Simultaneous Dual-Band Airport Extreme (latest version) set up with 2.4, 5 ghz and Guest Networks (each with their own name).
    Network Extender: Airport Express (latest version) extending the 2.4 ghz network
    Network Extender 2: Time Capsule (original, single band) extending the 2.4 ghz network
    Longer Description: iPad 2 connected without an issue to the 5 ghz network and the 2.4 ghz network when it was in the same room as the Aiport Extreme. Didn't have any issues maintaining that connection.
    However, the iPad 2 doesn't work in any of the farther rooms and can't see the network. iPad 1 and iPhones have no issues (and typically show 1 or two bars). I believe they typically are connecting through the Airport Express (but it could be the Time Capsule).
    Given that the iPad 2 isn't even seeing the networks, I'm guessing it's a range issue, but hoping it's not.
    Anyone else seeing this? Any fixes?

    While it is possible that an Apple moderator (Apple host) could pass some information to an Apple development/support group, in practice this doesn't really seem to happen (at least often). I believe that the moderators are kept quite busy just administering the forums and keeping them under control (no spam, ads, abuse, etc.). I've never seen a post by an Apple host here or seen a technical correction to a post (and there is certainly a lot of incorrect information posted here).
    Unfortunately, a lot of new posters here seem to think that they are talking directly to Apple and post bug reports, feature suggestions, complaints, etc. These would be much better submitted via the Apple feedback vehicle at http://www.apple.com/feedback. These are not anonymous, are directed to the appropriate product and provide an email contact for Apple to get back to the submittor if more detail is required.

  • Need help with select that month range with flexible first date

    Hello everyone,
    I am trying to create a selection of month range (will be in a WITH clause) for a report to display monthly data. But the first month start date can be any date. (Not necessarily the first date of the month)
    Examples:
    Report input parameters:
    Start Date: 08/10/12
    End Month: Dec 2012
    I was trying to build a with select that will list
    Month_Start, Month_End
    08/10/12, 31/10/12
    01/11/12, 30/11/12
    01/12/12, 31/12/12
    OR
    Month_Start, Next_Month
    08/10/12, 01/11/12
    01/11/12, 01/12/12
    01/12/12, 01/01/13
    End month is optional, so if no value the select will list only
    08/10/12, 01/11/12
    Oracle Database Details is
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    My code so far is
    VARIABLE  P50_START_DATE  VARCHAR2 (10)
    VARIABLE  P50_END_MONTH    VARCHAR2 (10)
    EXEC  :P50_START_DATE  := '10/10/2012';
    EXEC  :P50_END_MONTH   := '31/12/2012';
      SELECT  to_char(:P50_START_DATE) AS start_date
            ,  ADD_MONTHS( TRUNC(to_date(:P50_START_DATE,'DD/MM/YYYY'),'MONTH'), 1) AS next_month
      FROM dual
      union
       SELECT to_char(ADD_MONTHS( TRUNC(to_date(:P50_START_DATE,'DD/MM/YYYY'),'MONTH'), ROWNUM-1)) AS start_date
       ,      ADD_MONTHS( TRUNC(to_date(:P50_START_DATE,'DD/MM/YYYY'),'MONTH'), ROWNUM) AS next_month
       --, rownum
       from all_objects
       where
       rownum <= months_between(to_date(NVL(:P50_END_MONTH, :P50_START_DATE),'DD/MM/YYYY'), add_months(to_date(:P50_START_DATE,'DD/MM/YYYY'), -1))
       and rownum > 1If I put comment – on line and rownum > 1, as
    -- and rownum > 1The result I get is
    START_DATE                     NEXT_MONTH               
    01/10/12                       01/10/12                 
    01/11/12                       01/11/12                 
    01/12/12                       01/01/13                 
    10/10/2012                     01/11/12    But when I try to remove the duplicate period (of the first month) out by restrict rownum, it do not return any rows for the second select at all. The result I get is:
    START_DATE                     NEXT_MONTH               
    10/10/2012                     01/11/12    Can anyone advise what wrong with the select statement ?
    Thanks a lot in advance,
    Ann

    Hi,
    Here's one way:
    WITH   params      AS
         SELECT     TO_DATE (:p50_start_date, 'DD/MM/YYYY')     AS start_date
         ,     TO_DATE (:p50_end_month,  'DD/MM/YYYY')     AS end_date
         FROM     dual
    SELECT     GREATEST ( start_date
               , ADD_MONTHS ( TRUNC (start_date, 'MONTH')
                            , LEVEL - 1
              )               AS month_start
    ,     LEAST     ( end_date
              , ADD_MONTHS ( TRUNC (start_date, 'MONTH')
                          , LEVEL
                        ) - 1
              )               AS month_end
    FROM    params
    CONNECT BY     LEVEL     <= 1 + MONTHS_BETWEEN ( end_date
                                      , TRUNC (start_date, 'MONTH')
    ;:p50_end_month doesn't have to be the last day of the month; any day will work.
    If you want to generate a Counter Table containing the integers 1 througn x in SQL, you could say
    SELECT  ROWNUM  AS n
    FROM    all_objects
    WHERE   ROWNUM  <= x
    ;but, starting in Oracle 9.1, it's much faster to say
    SELECT  LEVEL   AS n
    FROM    dual    -- or any table containing exactly 1 row
    CONNECT BY  LEVEL <= x
    ;Also, x can be greater than the number of rows in all_objects.

  • Month Range Selection in OBIEE against Essbase

    OK. I am pretty knowledgeable on the Hyperion side, but new to the OBIEE world so I am looking for some major assistance in getting this to work.
    We currently have an Essbase outline that is built with the Year and Periods combined like the below example from 2001 - 2015:
    YrPeriod (generation 1)
    -----2011 (generation 2)
    ----------201101 (generation 3)
    ----------201102
    ----------201103
    ----------201104
    ----------201105
    ----------201106
    ----------201107
    ----------201108
    ----------201109
    ----------201110
    ----------201112
    -----2012
    ----------201201
    ----------201202
    ----------201203
    ----------201204
    ----------201205
    ----------201206
    ----------201207
    ----------201208
    ----------201209
    ----------201210
    ----------201211
    ----------201212
    ETC...
    What we are trying to do in OBIEE is build a dashboard that shows multiple reports (analysis) that are graphing 25 months of data (customer request). I have tried to:
    1. use the dashboard prompt to select a Start_Month and a prompt for the End_Month. These were selecting the Gen3 members of the YrPeriod dimension and saving to a Presentation variable. This allows the users to select from the dropdown list all the Gen3 members of the dimension which I want. Those presentation variables where then selected in the BETWEEN filter for the Analysis on the YrPeriod dimension. HOWEVER, it seems to only select the first member in the range which is the START_MONTH presentation variable. Not sure if this approach will work or not.
    SO I tried to do it a different way.
    2. I created Session_Variables, but I am not seeing a way to use them in the BETWEEN filters on the Analysis for YrPeriod dim. It only allows you to select Presentation variables or Request Variables.The only way I have gotten them to work was to add a sql on the Initialization block for the session variable:
    One FOR THE START MONTH - select to_char(add_months(sysdate,-25),'yyyymm') start_month from dual ;
    AND THE END_MONTH - select to_char(add_months(sysdate,-1),'yyyymm') Ending_Month from dual AND) .
    When added to the BETWEEN filter this works in getting the full 25 month range!
    HOWEVER, I would like to give the users the ability to change the run period range and not be stuck with just the system date.
    Ideally, I would like to have just 1 prompt for the Run period and have it update the range based on the selection.
    I hope I have given you all enough info to let you know what we are trying to do and what I have tried to this point. Hopefully this is something relatively simple and I am just missing it completely!
    Thank you in advance for any and all your help with this!
    Robert
    Edited by: user627522 on Nov 12, 2012 3:08 PM

    A web search for "OBIEE rolling months" comes back with i.e. this one: http://shivabizint.wordpress.com/2008/09/19/rolling-months-data-for-year-month-prompt-in-obiee/
    or this one: http://obieetutorialguide.blogspot.ie/2012/02/modeling-time-series-function-in-obiee.html
    In earlier Siebel days, one also used to define multiple alias in OBIEE physical layer for DIM_DATE with different joins to different months. I needed to go this route in a project where we had MS-SQL as the back end where the at that time relatively new AGO and TODATE were performing very badly.
    But now to solve your problem at hand:
    In the very latest release the new OBIEE function PERIODROLLING was introduced. Not sure though how this is function shipped to Essbase, if at all.
    You can read some more details about it i.e. here: http://gerardnico.com/wiki/dat/obiee/function_time
    Thanks for letting us know if it works at all with Essbase in physical layer and if it works, what query is actually being sent to Essbase.

  • Help reqd on no ranges issue for SD

    Hi experts,
    After i have loaded my customer master datas(xd01) thru lsmw,im facing a problem in the current number ranges issue...i've uploaded of 1000 records of no range started from 10000 to 11000...but in XDN1(tcode)...it shows the current number range is 11004....(i.e., if i create a new record.it starts from 11004..)
    why it has been arised and how??????...how will it be resolved????
    from my side....once i cancelled the recording in the middle after its loaded of 4 records. then after i ran it successfully for the balance records by the sequence way....is this the reason or something else...
    waiting for ur solution/expert comments
    thanks and regards
    sankar

    Dear Sankarbabu,
    IF there's no setting for Date Check in OS54 - Engineering Change Management
    Control Data,then you can create a change number with past dates,and also to
    use the same one for changing BOM.
    Tell me one thing you are saying you want to use ECM.Was the earlier one
    created without BOM was created without an ECN?
    See already if you have created your BOM with an ECN,then remove the date
    check setting which I have mentioned in OS54.
    Now goto T code CC02 ,enter the Change number and give the valid from date as
    01.10.2007.
    After that check in CS03 whether this date(01.10.2007)is getting reflected or not.
    I'm sure this will solve your problem.
    Regards
    Mangal

  • E4200 range issues

    Hi,
    I can lots of posts here on the same subject of E4200 range issues but no fix.
    I have purchased a E4200 as a replacement to my eight year old WRT54G that went pop last week.  Since installing I have a noticeable degradation in range in comparison to the old unit.  I have tried everything I have read here, upgraded firmware, moved the unit to the middle of the house, and frankly my opinion on the unit so far is that it is no good to me if it can't do the basics that I require ie reach my kitchen or bathroom - a matter of <4m away.  Any ideas, suggestions would be appreciated before I send it back?
    Failing this any tips on a good router to replace this unit with, Linksys or non-Linksys?
    Mark Ferris

    Ferris, your problem may simply stem from being on the same channel as your neighbors.  I'm pasting a link to a program called "IInsider".  From this from your laptop (and it's safe, so hit yes for the UAC prompt if you're running Windows) and it will list all the wireless networks it detects, what channels they are using, and other information (which is unnecessary for purposes of this post).  It will also, of course, list your own network.  The graph in the lower portion of the screen will also indicate the strength of the detected networks.  If it's really congested, choose a channel away from the strongest networks.
    To change the channel on your E4200, go to the web interface, which is probably 192.168.1.1, click the "Wireless" tab.  The options you want are under "Basic Wireless Settings", which should be the page that appears after clicking the "Wireless" tab mentioned above.
    Don't choose 1 channel away; if possible, choose at least two channels away.  If you're lucky, perhaps ALL your neighbors are using their default channels, in which case, choose a channel as far away from them as possible.
    In case 192.168.1.1 is not the address of your router, in Windows, hit the Windows orb in the lower left-hand corner in Windows, which used to be called the "Start" button (and is still referred to as such).  Type "cmd" (without the quotes) <ENTER> to get a command prompt.  Type "ipconfig" (without the quotes) <ENTER>.  The top section, called "Ehternet Adapter Local Area Connection" has a listing called "Default Gateway Adapter" and an ip address for that listing.  THAT is the number to get to the web interface of your router.
    Hope this helps!
    Keith Schmidt

  • Calculate Month Range from Single Month input

    Hi Gurus,
    In a particular query, the mandatory input is 0calmonth. Variable used is 0PCALMON.
    When user inputs 12.2007, then during runtime one of the keyfigure i need to calculate is quarter quantity for the month range 10.2007 to 12.2007 as 12.2007 falls in this quarter.
    Similarly if user inputs 03.2008, quarter quantity will be for these months 01.2008 to 03.2008.
    Plz tell me the steps from variable creation and writing code in cmod.
    Thanks in advance.
    Vaishnavi.

    Hi Jaya,
    I have written this code in cmod and activated.
    when 'ZMQ_RNG'.
    Data : ZYear(4) .
    Data : ZMon(2) type N .
    loop at i_t_var_range into loc_var_range
    where vnam = '0PCALMON'.
    clear l_s_range.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'BT'.
    ZYear = loc_var_range-low(4) .
    ZMon = loc_var_range-low+4(2) .
    If ( ZMon = '04' or ZMon = '05' or ZMon = '06' ) .
    l_s_range-high+4(3) = '06' .
    l_s_range-high(4) = ZYear .
    l_s_range-low+4(3) = '04' .
    l_s_range-low(4) = ZYear .
    Endif .
    If ( ZMon = '07' or ZMon = '08' or ZMon = '09' ) .
    l_s_range-high+4(3) = '09' .
    l_s_range-high(4) = ZYear .
    l_s_range-low+4(3) = '07' .
    l_s_range-low(4) = ZYear .
    Endif .
    If ( ZMon = '10' or ZMon = '11' or ZMon = '12' ) .
    l_s_range-high+4(3) = '012' .
    l_s_range-high(4) = ZYear .
    l_s_range-low+4(3) = '010' .
    l_s_range-low(4) = ZYear .
    Endif .
    If ( ZMon = '01' or ZMon = '02' or ZMon = '03' ) .
    l_s_range-high+4(3) = '03' .
    l_s_range-high(4) = ZYear .
    l_s_range-low+4(3) = '01' .
    l_s_range-low(4) = ZYear .
    Endif .
    append l_s_range to e_t_range.
    exit.
    endloop.
    ZMQ_RNG variable is customer exit, not ready for input, and mandatory field whereas oPcalmon variable is user entry, ready for input, mandatory.
    I have a RKF with 0CALMONTH restricted with ZMQ_RNG on quantity. free characteristics i have ocalmonth with variable 0pcalmon.
    Still my RKF doesnot calculate quantities for the 3 month range..
    Plz help.
    Rgrds,
    Vaishnavi

  • Month Range from Single Month Entry

    Hi Gurus,
    In a particular query, the mandatory input is 0calmonth. Variable used is 0PCALMON.
    When user inputs 12.2007, then during runtime one of the keyfigure i need to calculate is quarter quantity for the month range 10.2007 to 12.2007 as 12.2007 falls in this quarter.
    Similarly if user inputs 03.2008, quarter quantity will be for these months 01.2008 to 03.2008.
    have written this code in cmod and activated.
    when 'ZMQ_RNG'.
    Data : ZYear(4) .
    Data : ZMon(2) type N .
    loop at i_t_var_range into loc_var_range
    where vnam = '0PCALMON'.
    clear l_s_range.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'BT'.
    ZYear = loc_var_range-low(4) .
    ZMon = loc_var_range-low+4(2) .
    If ( ZMon = '04' or ZMon = '05' or ZMon = '06' ) .
    l_s_range-high+4(3) = '06' .
    l_s_range-high(4) = ZYear .
    l_s_range-low+4(3) = '04' .
    l_s_range-low(4) = ZYear .
    Endif .
    If ( ZMon = '07' or ZMon = '08' or ZMon = '09' ) .
    l_s_range-high+4(3) = '09' .
    l_s_range-high(4) = ZYear .
    l_s_range-low+4(3) = '07' .
    l_s_range-low(4) = ZYear .
    Endif .
    If ( ZMon = '10' or ZMon = '11' or ZMon = '12' ) .
    l_s_range-high+4(3) = '012' .
    l_s_range-high(4) = ZYear .
    l_s_range-low+4(3) = '010' .
    l_s_range-low(4) = ZYear .
    Endif .
    If ( ZMon = '01' or ZMon = '02' or ZMon = '03' ) .
    l_s_range-high+4(3) = '03' .
    l_s_range-high(4) = ZYear .
    l_s_range-low+4(3) = '01' .
    l_s_range-low(4) = ZYear .
    Endif .
    append l_s_range to e_t_range.
    exit.
    endloop.
    ZMQ_RNG variable is customer exit, not ready for input, and mandatory field whereas oPcalmon variable is user entry, ready for input, mandatory.
    I have a RKF with 0CALMONTH restricted with ZMQ_RNG on quantity. free characteristics i have ocalmonth with variable 0pcalmon.
    Still my RKF doesnot calculate quantities for the 3 month range..
    Plz help.
    Rgrds,
    Thanks in advance.
    Vaishnavi.

    Hi USERPV,
    Thanks a ton!
    I created one more RKF (hidden) as well as replaced 3 by 2.
    The problem is solved. n my query is executed.
    Assigned points.
    Rgrds,
    vaishnavi

  • FM 'Fti_Fiscal_year_Month_Get' - month range low - high not working

    Hi Experts,
    My req. is : If I enter: '01' to '12' in month range and '2008' in year ( I have taken out extention and intervals in year). Its should go and read records from '04' (april) '2007' to '03' (march) '2008'
    For this I have used the FM 'Fti_Fiscal_year_Month_Get' but after the parameters I am facing
    a problem, like
    If I give the month range as '04' to '12'  and year '2008' 
    it is reading '01' (april in dbat) to '09' (dec in dbtab)
    and i am getting the correct o/p.
    And if I give '01' to '12' and year '2008' its not fetching
    as '01 ' 2008  means '04' 2007 April in dbat.
    I tried hard coding and faced similar prob.
    Please advice
    Karthik

    Hi I am concatenating year , moth, '01' to date and later passing to the FM.
    Do u have any idea? else please advice me how to hard code it correctly ..
    Please advice
    Edited by: Karthik R on May 28, 2009 7:53 PM

  • I have number range issue for fi posting.

    hi gurus,
    i have number range issue for fi posting (fb01,fb50).
    problem in updating table glpca due to duplication of record.
    INSERT GLPCA FROM TABLE T_GLPCA .
    With Regards,
    Shakthi Raj N.

    error msg  after generating document no and it is not getting updated in data base
    error msg
    "Express document "Update was terminated" received from author "ecciabap""
    Client.......   750
    User.....   ECCIABAP
    Transaction..   FB01
    Update key...   C83B07DE4DADF13CB4950017A4AB8015
    Generated....   02.03.2009, 20:37:23
    Completed....   02.03.2009, 20:37:23
    Error Info...   00 671: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC

  • Material document number's range issue

    Dear Friends,
    We are  facing Material document number's range issue i.e. For year 2010, 5000202085 number  does not exist but higher number 5000202691, 5000203284 exists in system. 
    why the number 5000202085  is missing?
    I checked in the system for  relevant setting at tcode OMBT with year 9999 are okay.
    Can you pls help me in getting it resolved?
    Rgrds,
    Pradeep Jain

    I had the same question so I searched, that should always be the first step before posting a question.
    No points to me please as this answer is not from me!
    Search results show:
    Answer from: Mauro Bianchi  (SAP moderator)
    This issue with the internal number assignment occurs due to bufferingin the application server. Buffering increases the performance of theserver and documents don't loose their properties. Nevertheless, it may cause gaps in the internal number assignment and sometimes the numbers may not be chronologically assigned. As I stated before, this won't cause inconsistencies in the system and is usually not an inconvenient, unless you require sequential number assignment in your documents due
    to legal reasons. In this case, you'll have to disable buffering in the application server.
    in order to disable buffering Just access transaction SNRO and enter the Object type MATBELEGhttp:// Number Range for Material and Phys. Inventory Document In change mode, in the menu bar, please, follow the path:
    Edit -> Set-up buffering -> No buffering
    Check note 62077 which describes this issue in detail

  • Getting fed up after almost 3 months of issues the...

    Hi, well long story that around 3 months ago my net connection went down (solid amber light) got a BT engineer visit though 2 hours before he came the Internet connect came back up. The Engineer keep his appointment and re-wired everything for me and put in a BTfaceplate/iplate thing. True to his word after that I seen my speed rise from 6.1 to 7.1. Few weeks later back to square one solid amber light..Another engineer visit again few hours before connection comes back up. Engineer says no wiring issues to my home or in my home. Checked by BB speed and was only getting around 214kbps. Now over 2 weeks later and another engineer visit still no difference. This time they said they would send out a new router (after 4 working days still not has arrived) went out and bought my own router at my own expense as I'm just fed-up getting no-where with Tech helpline asking me the same dopy questions and just offering to send out more engineer visits. Anyhow here's all my stats. Wired connection using Edimax AR-7266WnA Router
    ModeG.dmt
    LatencyInterleave
    Trellis CodingEnable
    StatusSHOWTIME.
    Power LevelL0
    Uptime00:29:25
    Downstream Upstream
    SNR Margin (dB)10.4
    27.0
    Attenuation (dB)21.5
    9.5
    Output Power (dBm)19.5
    12.5
    Attainable Rate (Kbps)10016
    1232
    Rate (Kbps)8096
    448
    K (number of bytes in DMT frame)127
    15
    R (number of check bytes in RS code word)10
    16
    S (RS code word size in DMT frame)0.50
    8.00
    D (interleaver depth)64
    4
    Delay (msec)8.00
    8.00
    FEC68
    0
    CRC0
    0
    Total ES0
    0
    Total SES0
    0
    Total UAS0
    0
                                                                                       Here's the speed test results.
     Download speedachieved during the test was - 413 Kbps
     For your connection, the acceptable range of speeds is 600-7150 Kbps.
     Additional Information:
     Your DSL Connection Rate :8096 Kbps(DOWN-STREAM), 448 Kbps(UP-STREAM)
     IP Profile for your line is - 7000 Kbps
    Download speedachieved during the test was - 374 Kbps
     For your connection, the acceptable range of speeds is 576-600 Kbps.
     Additional Information:
     Assured Rate IP profile on your line is - 600 Kbps
    Solved!
    Go to Solution.

    ohhh update guess what as per normal we will complete a line test which takes 4 hours to complete...but since you rang us after 5pm (The usual time most people actually finish work to be able to still find out they have issues) that department closes at 8pm (still cant figure that one out when there volume of calls received during the 5-6 pm time must be at its peak) we will ring you back in the morning an arrange another visit. This Engineer will come out to my house and again till me for the 5th time there there is no issue with connection to/in my home. I shall ring up BT and tell them the results again we shall complete another line test and another week/month will pass with still no action. Also that Router which the last engineer said he would sent out to me last Wednesday guess what was not even ordered. As usual getting no-where and the call centre even refused to put me through to his manager....after some time said he would get him to call me back. Asked to speak to there Managers boss but guess what they will not accept calls from customers. What a joke. Complaint going to OFCOM. I even asked if they would set my line to re-sync..but they cant without an engineers permission. Pays all this money to BT for broadband and TV through the BTvision. So had no TV internet soo slow its almost unworkable rearranging my work hours around not being able to do some work from home. Rearranging work hours around BT Engineer Visits and will they offer anything to me NO not until the issue has been resolved then we will look at how long we have not provided you with a service. The other Online services which I subscribe to which have been rendered useless since of my speed having to still pay them since payed for a full years service up front. This has become such a joke.
    Trying his best not to scream, Cecil.

  • Mid Month Transfer Issue in Payroll

    Hello All
    Good Day!
    We have two payrolls defined, Payroll A and Payroll B and both has separate Legal entity but Business Group for both Payroll is same. We are having an issue when employee transfers from Payroll A to B or vice versa as mentioned below :
    1) Lets assume Employee transfers from Payroll A to Payroll B as on 17 Oct 2012.
    2) As Business Group is same , employee remain in the same BG.
    3) So we tried to terminate the employee as on 17-Oct-2012 and re-hired as on 18-Oct-2012 in the Payroll B. We need two IRP5 (tax certificate) so we need to terminate the employee from one payroll and reinstate in new payroll.
    4)) We have most of the recurring element configured to Terminate as Last Standard Process so all the recurring elements ended as on 31-Oct-2012, i think this should have been Actual Termination Date but as Payroll is running from last 2 years so this will be too big to change now.
    5) Now when we process the payroll as on 31-Oct-2012, employee got full month salary in Payroll A which is not correct as employee worked up to 17-Oct-2012.
    6) To avoid full month Salary, we changed the Last Standard Process to 17-Oct-2012 so all elements ended as on 17-Oct-2012 but now when we process the payroll as on 31-Oct-2012, employee is getting picked up but no element processed and no balance generated. Don’t know why ?
    Could you please provide your input as what is the best practice to handle this mid month transfer ?
    Thanks
    Gaurav

    Hi, Gaurav..
    6) To avoid full month Salary, we changed the Last Standard Process to 17-Oct-2012 so all elements ended as on 17-Oct-2012 but now when we process the payroll as on 31-Oct-2012, employee is getting picked up but no element processed and no balance generated. Don’t know why ?
    =>I guess.. The "Final Process Date" set as 31-Oct-2012 when you end this employee, isn't it?
    Actual Termination Date will let person end at this date, that's mean person record's effective_end_date will equal to the Actual Termination Date and create a new person record after Actual Termination Date.
    Last Standard Process Date let all elements ended as this date.
    Final Process Date means you can process payroll run before this date, and the assignment record's effective_end_date will equal to Final Process Date. That's why your payroll run includes this person. There's no elements because all elements ended on 17-Oct-2012, system doesn't get any element on 31-Oct-2012.
    Best Regards,
    Changhua

Maybe you are looking for

  • How to hide login and password transported in interface ?

    Hi !         In the current project that I´m working, the customer is developing a website in .Net and intend to use XI to communication between website and ECC 6.0. One of their needs is to create an interface to call a RFC in ECC 6.0 to validate lo

  • Accordion makes page jump with SpryURLUtils

    Hi, To see my problem you need to reduce the depth of the browser window or click "Quick Contact" to expand the page. Then refresh or click samples 02. http://www.adelantedesign.co.uk/websites/adelante/Packaging/Packaging_Samples01.asp?panel= 1#Accor

  • Query Performance COST - HELP

    Hello Experts, Please help me how the table "digital_compatibility" be modified for faster performance? BANNER Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi PL/SQL Release 10.2.0.1.0 - Production CORE     10.2.0.1.0     Production

  • Storing a position value from the previous frame

    Hey guys, So, I'm trying to assign the X value a null object had at the previous frame so I can continue to subtract a number from it cumulatively. I'm trying to assign it to a variable (prevframe). I'm not sure where I'm going wrong, but the line I'

  • Outbound idoc creation with MIGO

    Hello, I need to create outbound idoc when the GR is created (MIGO). I created one output type (ME) with the processing program RSNASTED and form routine ALE_PROCESSING. Unfortunately, the rsnasted does not work, as I can not create message type MBGM