CFWDDX Time Issue with CF7

We're upgrading a bunch of apps from CF5 to CF7. We've run
into an issue with cfwddx that results in times coming across with
one hour subtracted - this didn't happen with CF5. Basically I'm
packetizing query results with an action CFML2JS. If I just dump
that packet via something like alert(mypacket.value) I can see that
the date is intact. However, if I break it down via WDDX2CFML then
run a cfquery against it, the datetime fields are all coming back
one hour short, i.e. 10 PM instead of 11 PM. I'm suspecting I need
to manipulate the usetimezoneinfo property of the serializer
object, but I'm not sure how to do that - at any rate, is this a
known problem with CF7? Any suggestions at all on how to get around
this would be greatly appreciated!
Regards,
Al
P.S. I'll be happy to post code if that's required.

Very same thing here. Iphone 5C on 7.0.2 from tmobile in NC.
time is frozen when auto lock is engage. Both manual and automatic settings failed to help.
Tried the LTE trick, tried the reset network trick...

Similar Messages

  • Reponse time issue with a simple qurey .

    hi all,
    i started facing a strange issue with the below query form the biging of the month. we have a DW system for a banking domain and in that our accounts table from the first of this month is taking a huge amount of time to retive the data. if i query a back dated data say 31st of may that would be '310509' it give the result in less that 5 seconds. this is a very simple query which i am joing with a transaction table.
    i assume the reason for the change in query reponce time is may be tha data from the beging of this month had a datablock extantion and this block is corrupted . kindly let me know what i am thinking is correct or there is another reaosn for this.
    Also let me know what resolution should i take to resolve this issue.
    my database version is Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    Thanks in advance
    SELECT * FROM
    (select * from gtxn_dtl_v1 where batch_id='070609') a,
    (select * from gacc_dtl_v1 where batch_id='070609') b
    WHERE a.account_number = b.id
    SELECT * FROM
    (select * from gtxn_dtl_v1 where batch_id='310509') a,
    (select * from gacc_dtl_v1 where batch_id='310509') b
    WHERE a.account_number = b.id

    Hemant K Chitale wrote:
    I don't think that it is a simple query.
    The two objects "gtxn_dtl_v1" and "gacc_dtl_v1" seem to be Views. So, the queries are probably involving joins of other tables.
    Without an Execution Plan and information about table and index definitions and statistics on the tables and indexes, any attempt to answer your question would be meaningless.Both are tables. Explain plan is shown below:
    SQL> explain plan for
      2  SELECT * FROM
      3  (select * from gtxn_dtl_v1 where batch_id='070609') a,
      4  (select * from gacc_dtl_v1 where batch_id='070609') b
      5   WHERE a.account_number = b.id;
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 4236620027
    | Id  | Operation                    | Name        | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |             |     1 |   601 |    38   (0)| 00:00:01 |
    |   1 |  NESTED LOOPS                |             |     1 |   601 |    38   (0)| 00:00:01 |
    |*  2 |   TABLE ACCESS BY INDEX ROWID| GACC_DTL_V1 |     1 |   313 |     4   (0)| 00:00:01 |
    |*  3 |    INDEX RANGE SCAN          | IDX_ACC2_V1 |     1 |       |     3   (0)| 00:00:01 |
    |*  4 |   TABLE ACCESS BY INDEX ROWID| GTXN_DTL_V1 |     1 |   288 |    34   (0)| 00:00:01 |
    |*  5 |    INDEX RANGE SCAN          | IDX_TXN2_V1 |    55 |       |     8   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - filter("BATCH_ID"='070609')
       3 - access(SUBSTR("BATCH_ID",1,6)='070609')
       4 - filter("BATCH_ID"='070609' AND SUBSTR("GTXN_DTL_V1"."BATCH_ID",1,6)='070609')
       5 - access("GTXN_DTL_V1"."ACCOUNT_NUMBER"="GACC_DTL_V1"."ID")
           filter(SUBSTR("GTXN_DTL_V1"."ACCOUNT_NUMBER",1,3)=SUBSTR("GACC_DTL_V1"."ID",1
                  ,3))
    22 rows selected.
    SQL> explain plan for
      2  SELECT * FROM
      3  (select * from gtxn_dtl_v1 where batch_id='310509') a,
      4  (select * from gacc_dtl_v1 where batch_id='310509') b
      5  WHERE a.account_number = b.id;
    Explained.
    SQL>  select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 1249675553
    | Id  | Operation                     | Name            | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |                 |     1 |   601 |   785   (1)| 00:00:10 |
    |   1 |  TABLE ACCESS BY INDEX ROWID  | GACC_DTL_V1     |     1 |   313 |     4   (0)| 00:00:01 |
    |   2 |   NESTED LOOPS                |                 |     1 |   601 |   785   (1)| 00:00:10 |
    |   3 |    TABLE ACCESS BY INDEX ROWID| GTXN_DTL_V1     |   104 | 29952 |   368   (2)| 00:00:05 |
    |*  4 |     INDEX RANGE SCAN          | IDX_TXN1        |   104 |       |   340   (2)| 00:00:05 |
    |*  5 |    INDEX RANGE SCAN           | GACC_DTL_V1_IDX |     1 |       |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - access("BATCH_ID"='310509')
           filter(SUBSTR("GTXN_DTL_V1"."BATCH_ID",1,6)='310509')
       5 - access("GTXN_DTL_V1"."ACCOUNT_NUMBER"="GACC_DTL_V1"."ID" AND "BATCH_ID"='310509')
           filter(SUBSTR("GACC_DTL_V1"."BATCH_ID",1,6)='310509' AND
                  SUBSTR("GTXN_DTL_V1"."ACCOUNT_NUMBER",1,3)=SUBSTR("GACC_DTL_V1"."ID",1,3))
    21 rows selected.
    Indexes:
    select i.index_name,index_type,i.table_name,num_rows,column_name,COLUMN_EXPRESSION
    from all_indexes i,all_ind_columns c,ALL_IND_EXPRESSIONS e
    where i.table_name in ('GACC_DTL_V1','GTXN_DTL_V')
    and i.index_name = c.index_name
    and e.index_name(+) = i.index_name;
    INDEX_NAME     INDEX_TYPE          TABLE_NAME     NUM_ROWS     COLUMN_NAME     COLUMN_EXPRESSION
    GACC_DTL_V1_IDX     NORMAL               GACC_DTL_V1     57190895     ID     
    GACC_DTL_V1_IDX     NORMAL               GACC_DTL_V1     57190895     BATCH_ID     
    IDX_ACC5_V1     NORMAL               GACC_DTL_V1     34524304     POSTING_RESTRICT     
    IDX_ACC1_V1     NORMAL               GACC_DTL_V1     55919578     CATEGORY     
    IDX_CUS5_V1     NORMAL               GACC_DTL_V1     54461378     CUSTOMER_NUMBER     
    IDX_CUS6_V1     NORMAL               GACC_DTL_V1     3272052     LIMIT_REF     
    IDX_ACC3_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     52940894     SYS_NC00099$     "CUSTOMER_NUMBER"||'.'||"LIMIT_REF"
    IDX_ACC4_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     57238600     SYS_NC00100$     "CUSTOMER_NUMBER"||'.000'||"LIMIT_REF"
    GACC_DTL_V1_IX2     FUNCTION-BASED NORMAL     GACC_DTL_V1     54448627     SYS_NC00101$     SUBSTR("ID",1,3)
    IDX_ACC2_V1     FUNCTION-BASED NORMAL     GACC_DTL_V1     55566106     SYS_NC00102$     SUBSTR("BATCH_ID",1,6)Edited by: user577300 on Jun 10, 2009 11:41 PM
    So many strange things here:
    1.Query showing cost 38 is taking a long time  (hours). Other quey takes 5 sec
    2. Plans are different.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Execution time issues with SU01 demo script

    Having worked with Scripting in a Box for a while now I wanted to try out the examples there. I read FM: SO_USER_LIST_READ or another one explaining why my attempt to narrow the returned users failed (Craig, did you find out why the functionality was removed?) and Re: Issue with "Scripting in a Box" seeing that  Harry had the same problems with only ~200 users in his system. However, Craig's original post states he successfully managed with over 400 users. I'm a bit confused...
    I included some simple timing stuff and found out that processing of one user in the loop takes about 1.7 seconds - little surprise then that every script times out. This seems to be due to the additional calls to GetStatus() and GetValid() - by commenting them out I get the whole list rather quickly.
    Unfortunately commenting them out also means no nice icons for 'Status' and 'Valid', which is not desired. I probably could create a Z FM to deliver me the userlist with these two fields already added (which would save on rfc-calls, assuming the operation is much quicker on the server directly), but I hoped to get a solution based purely on PHP, not own ABAP coding (being aware that Craig also used a Z FM anyway, but still...)
    I'm a bit unsure now how easy it is to actually create useful frontends in PHP, with such long execution times. I assume this will happen in other occasions as well, not only for user lists. Is there an alternative? Or a general way to do those things quicker?
    :Frederic:

    Craig: you say it's easy to go from 1.7 seconds per user lookup down to a small fraction of it? Then apparently I'm lacking these skills. Could you please give me a hint what should be done there?
    I though about creating a Z function, but having to write custom wrappers - possibly for about any transaction in this style - I wanted to avoid.
    Bala: the two functions only take one user as input, not a list. So w/o modifying the ABAP side I can't feed the whole list in there. I wonder how much it would improve the result time anyway, so perhaps I'm trying it. It's just not a solution I'd prefer.
    Paging is a good idea, the actual call to get the whole userlist is quite quick. Having like 20 users displayed at a time is manageable - still slow, but the script won't timeout anymore. I think I'll implement this today.
    About AJAX: yes, I want to play around a bit with AJAX, however having the two columns valid and status removed and the information only displayed on mouseover etc is a bit like cheating. And 1.7+ seconds waiting for a hoover info is too long. So I'd like to optimize on the rfc-calling side primarily.
    Craig: surely it was just a demo, and I'm just trying to get it to work for understanding it
    :Frederic:

  • Render time Issues with 5.0 project in CC 12.1

    This is actually a copy of a post I had in a different discussion entitled "render time" but this now
    I did some extensive testing to try and see why my render times in CC were so much slower that 5.5 and I found some very interesting results.
    The original project was created in 5.0 and opened in 5.5 and rendered, it contained video footage and graphics. When it was render in 5.5 it rendered in 4:27. When I opened it in 12.1 and rendered it was 18:00. I then started turning off layers and my render times shot up. basically layer 12 had two animated masks on colored solid. With this off it took 8:30
    I then imported the project into 12.1 and saved it, reopened it and with layer 12 off it took 5:11. So importing and saving the project made a difference. Now I recreated layer 12 in 12.1 from scratch and turned it on and my rendered time was 6:50.
    So there is something going on with projects being converted from earlier versions - Now to really test this theory I would need to recreate the project from scratch and compare to the 5.5 times.
    To further test this we did the same sort of testing with a different comp and found similar results - the render times were different if it was imported vs. just opened. But the big thing we found with this comp was a layer where we were moving large stills with some z space. It looks like the 3d from 5.0 was causing a major slow down in CC on layers that has AE 3d applied.
    I think the major take away is if your comp was created in 5.0 and you need to modify it, then make changes in 5.5 or 5.0 or be prepared to recreate any layers with more than simple key frames.
    Just to also answer some other questions - in rendering to prores vs. animation or dvcprohd the times were almost the same. The animation was slightly longer but that makes sense cause the file was much bigger.
    I also found that with 32 gigs of ram my magic number was 11 reserved for other apps ...
    Hope someone can jump in and add some light to this
    This was all done on a 2010 mac pro 2.66 w 12 cores 36 megs ram running 10.8.4 - I have 5.5 and CC and the 12. 1 updates are installed and the video card is an NVidia 575. Mulit threading was on and in 5.5 - 9 Megs is reserved and in 12.1 - 10 is reserved

    I've experienced similar problem with Java Web Start twice.
    Also using JRE version 1.5.0_06 Java HotSpot(TM) Client VM and Browser Internet Explorer 6.0.2800.1106 on Windows XP (Problem was the same with Java 1.4.2)
    My application was signed and launched via JNLP. The security warning popup was shown in the windows taskbar, but it was hidden. Using maximize in the taskmanager, I was able to see the dialog but it was blank. The problem was persistent, although I did not try as many times as 20-30 :-)
    On both occations the problem occured on multi (3) screen systems, which I suspected to be the problem (Java has historically had some issues regarding multi screen systems), but now I'm not so sure.
    Did you find a solution / cause?

  • Daylight Savings Time issue with Palm Treo 755p/Missing Sync 6.0.6

    I'm not sure where the fault is, but here's what a user sees here:
    User has a Palm Treo 755p with the 1.08 software installed.
    Since DST on March 14th, when he syncs the iCal information to the phone using Missing Sync 6.0.6, the information on the phone is pushed ahead one hour.
    But the odd thing about it is how it shows on the phone.
    User created a repeating event from March 12-20 from 9-10 a.m. called "test 9" for an example of this.
    On March 12 and 13, this shows as "test 9" -- at 9:00 on the Treo
    From the 14th on, it shows as: "test 9 (9 am EST)" -- but it is entered at *10:00* a.m.
    What I don't know is if this is a Missing Sync issue or a Palm OS issue.
    User's computer is running 10.6.2 -- and both computer and Palm are in the Eastern time zone.
    I'm open for suggestions here -- is this a *Palm* issue? Or something else?
    Thanks!

    We "fixed" this by noticing that -- for whatever reason -- Detroit (we're in Ann Arbor, actually) shows as "Eastern Standard Time" where it seems that every other major city in the time zone (Columbus, Indianapolis, New York, Miami, Philadelphia, etc...) shows as "Eastern Time".
    So we set up iCal on this computer to use New York ("Eastern Time") and all the events added to iCal after that synced properly.
    I tried to add "Detroit" to the Palm, but had no luck in syncing with that.  I think the "Eastern Time" thing is key.   I have a Bug Report into Apple about the fact that the time zone seems wrong for us.
    That said, while I could  change pre-existing events from "Eastern Standard Time" to "Eastern Time" in iCal, those events did *NOT* sync to the Palm correctly.
    The user had to delete/readd the events in the right "time zone" to get them to sync correctly.
    I'd be curious to know if this solution (?) works for you as well.

  • Logging Time issue with Job running under SYS.MAINTENANCE_WINDOW_GROUP

    Hi,
    We have configured a nightly job to run daily at 2:00 AM
    And configured the Job to run under Sys,maintenance_window_group.
    The nightly job is producing some log(trace) files in the format
    <date-time> message
    the <date-time> entry is made as
    UTL_FILE.PUT_LINE (log_file, TO_CHAR(SYSDATE,'DD/MM/YYYY HH24:MI:SS') || ' ' || msg, TRUE);
    the problem is the entry for date-time field in the log file is not correct.
    06/02/2013 20:00:02 NIGHTLY_JOB Begin
    It is using EST time ( e.g.- 20:00:00 PM ) but the job is running at timezone Europe/VIENNA
    the file modifcation time is OK, when we check it with ls command ( it gives time near to 2:00 AM)
    -rw-r--r-- 1 oracle asmadmin 3494 Feb 7 02:36 NIGHTLY_JOB.log
    could you please suggest what could be wrong?
    Oracle release is 11.2.0.2

    hi,
    Can you , paste the o/p of
    select * from NLS_DATABASE_PARAMETERS;Thanks,
    Ajay More
    http://www.moreajays.com

  • Daylight savings time issue with iphone

    When syncing iphone to pc (Vista) and Microsoft Outlook 2007, the time on the iPhone is one hour LATER that it is on the computer source.
    It seems that, once again, Apple and Microsoft are at odds with each other and the new rules on Daylight Savings time were never considered.
    Anybody have ideas? Seen this? There is NOTHING on the Apple website (also typical!!).

    This seems like it might be similar to the problem I was having. Please see the following thread for the solution:
    http://discussions.apple.com/thread.jspa?threadID=1791145&tstart=0
    It worked for me, give it a shot.

  • Time issue with iphone 5c?

    after upgrading to 7.0.3 our 5c quits keeping time when the autolock is used when unlocked time starts but is behind. Anyone else seen this or have suggestions.?

    Very same thing here. Iphone 5C on 7.0.2 from tmobile in NC.
    time is frozen when auto lock is engage. Both manual and automatic settings failed to help.
    Tried the LTE trick, tried the reset network trick...

  • Time issues with planning

    So, where I work I get my roster mailed to me every week. What I like to do is click on that time and date and make it an activity in my agenda, but when the time goes beyond 12 pm it still somehow doubles it's count within the 24 hour cycle.
    For example, when i have to work from 23:30 to 6:30 it will say from 23:30 to 18:30.
    Except for me being able to fix this manually each time I don't know to how to fix this.
    Hopefully someone will be abke to help me out here.
    Thanks in advance,

    Hi,
    Can you check OS COLLECTOR (SAPOSCOL) status in ST06 T-code.
    Also check for SM21 relate logs and Canceled jobs in SM37, data based jobs scheduled in DB13 T-code.
    Also possible any logs/Tablespaces/Files full in SAP.
    Regards
    Nagaraju

  • TS4185 Face Time issue with iPhone5?

    Using Face Time call from an iPad2 to my iPhon5 doesn't work.  Apple IDs are different and checked on both Face Time settings. But both the iPad2 and iPhone5 can face time to an iPhone 4s. Why? 

    Post in the Facetime for Mac community

  • RV220W System Time Issue in Combination with WiFi Active Time

    Hi
    Have system time issues with rv220w!
    Setup:
    Note that the real time is 17.32 (bottom right) but the system time is 16.20, result 1h offset (sad that the possibility to configure summertime start/end is missing)
    Setting up the WiFi active time from 5.30PM until 6PM (testing only):
    Note that the real time is 17.44, the WiFi is "Disabled". The RV220W system time is 16.44 with setting "CET +1h".
    BUT:
    Even when i change the RV220W system time to a Time/Date offset GMT +2h EET has this no issue to the WiFi time profile i set up. The WiFi stay down.
    Note:
    The WiFi Active Time Settings only working correct when the Clock Source is setting up with "Set Date and Time Manually" (in "Administration" "Time Settings"), but that is not the way.... i don't like to configure time settings manually (no system administrator will do that tinking)
    Conclusion:
    I think that the WiFi Time setting does not work fine, mean that the WiFi does not include the configured offset as usually system does....
    Further:
    RV220W firmware is up to date....
    Hope Cisco will fix that and add the summer time feature (like in other systems and other manufacturer) in the next FW.....

    GJinAmsterdam wrote:
    I have a MacBook upgraded from Tiger 10.4 to *Snow Leopard OS X 10.6.1.* I'm now using *Time Machine* to make back-ups on a *MiniMax external drive* through an USB connection. However, I wish to make wireless back-ups by connecting the external drive to my *Airport Extreme*. I learned that this wasn't possible until the recent release by Apple of the software update "*About Time Machine and AirPort Updates v1.0*".
    this has been possible for a long time, since about February 2008 when those updates came out.
    The minimum system requirement for this software update is OS X 10.5.2. I should think this requirement is met because I have upgraded to 10.6.1. But when I try to install the software I get the message that the system requirement is at least 10.5.2. and as a result *I can't continue installing*. Apparently my OS update is not recognized by the software. Is there a solution for this problem? Many thanks.
    you don't need to install those updates. they are for leopard, not snow leopard. you should be fine as is. do keep in mind that TM backups to air disks are not "officially" supported but they have worked for a long time. also, keep in midn that you'll need to start a new backup sequence once you move the drive to AEBS as remote backups are stored differently from directly attached ones.

  • Time issue seems odd to me

    I put a secondary domain and po at a remote location - running 8.03 on Sles/Oes and moved all of the "local" users to that po.
    while everything seems to run ok we have a weird time issue.
    Mail into and out of the new mailboxes shows a three and a half hour time difference both in the date column in the groupwise client and in the printed header of the email.
    The odd thing is that if I go to the properties of the email - the Creation date and the File date and time are both correct.
    I can't see any time issues with the servers (primary or secondary) and especially something that would be 3:30 minutes off
    there is a timezone difference between the pri and sec but that's just 1 hour.
    Any thoughts?
    As a workaround I have had my users add the creation column to see when they actually received the email as our clients have time critical projects.
    Thanks
    Dennis

    Danita,
    Thanks for the reply - Oh how I wish it were that easy - I've checked and double checked the PO object and the domain object - both say US eastern time.
    If I send email from a mailbox on the secondary to the primary - everything is correct (a 1 hour time difference - Eastern to Central)
    If I send mail from a mailbox on the primary to the secondary - it shows up right away, but says 3:30 minutes later than it should (in Date/Time, but not in Created)
    If I send email from a mailbox on the secondary to a GMail account - the header shows the 3:30 offset, but the properties of the mail shows correctly.
    I would be happy to send email from that po to anyone that wants to see for themselves.
    Other than the PO Object and the DOM object - Where should I be looking for a time difference
    and how would it be getting UTC minus 30 minutes - - Is there a special timezone out there for Hy Brasil?
    The workstations all get their time settings from "time.windows.com" the windows default.
    Thanks for looking into this - I just hope that I can get it figured out because as small of an issue that I think it is (they get their email, it just looks like it gets read before they officially receive it)
    but it seems that this office uses the received time to track how long it takes them to do their work.
    Dennis

  • Issue with PTO (Paid Time Off) quota generation

    Hi All,
    We have an issue with quota generation of PTO for our employees.
    The issue goes like this:
    We have a Paid time off for employees 5weeks( 200 hrs) for employees who have worked less than 5 years.
    we have  paid time off for employees 6 weeks ( 240 hrs) for employees who have worked more than 5 years.
    we have the following logic that has to go in this config:
    -- Our fiscal year starts on Feb 1st and ends on Jan end or Feb starts which has a full week of working days. ( ex: if 01/31/2012 falls on a Thursday the following Monday which has full 5 day working week would be the end of the fiscal year).
    -- Depending on the working hours of  the employees and the date of joining for the first year ( for new hires)0041 info type the eligibility gets varied and reduced. Ex( employees who joins on start of fiscal year and works 40hrs per week schedules is eligible for 200hrs of PTO. Employees who join in the month of august and works for 35 hrs per week ( i.e mid of fiscal year) would get 91 hrs of PTO.
    I need to put this in the system. I am thinking this could be done with out tweaking PCR.I need help in configuring this in Absence quotas as to what are the things i need change in system config and how do i do it. Please help with some screen shots if possible.  I really need this to get it done ASAP. Looking forward for help.
    Thanks,
    Chowdary.

    We use TM00 schema. Can i call TS15 and TS 12  rules into TM00 acheieve my issue of quota entilements?
    Iam doing this because my businees needs to see if an employee chages his work schedule from 40 to 30 or 20 etc.. the PTO has to vary accordingly.
    As the minimum eligibility is to work for 20 hrs to avail the PTO days. If at any point the employee drops it under 20 he will not be eligible till he work any this >= 20hrs per month so the evaluation has to check periodically to update the quota availability.... I need help plz suggest ...

  • I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work. Help?

    I just restored my 13" MBP i5 at the apple store to the newest version of Lion after issues with a previous Time Machine backup from Snow Leopard- this time I created a new account and just ported files and folders, and now MS Office doesn't work.
    ^^ that's the main problem. Here's the full history.
    I bought a new 13" i5 MBP, early 2011 edition. I had an old white Macbook 2.14 ghz core2duo on Snow Leopard. I attempted to port over my time machine backup, but encountered problems in that my User was inaccessible from the new computer after the import finished, and I had to go in and change the root password, etc, and for some reason or another, I couldn't install any programs at all from that administrator's account. By "couldn't" I mean I could install them, but upon installation they would never boot. So, I took it to the apple store and did a clean install from the most up to date Lion OSX. Then, I created a brand new admin account, instead of trying to import the old one, and things seemed great. Then, I just imported my old files from the TM backup, but not any system settings, permissions, or user data. Just my Docs, pics, vids, apps, and itunes stuff.
    Here's where things get weird again. I imported this stuff under the name "old", but all of these folders have a red negative sign on them, marking them as restricted. So, from my main admin account, I cannot even peruse these folders. Since I didn't import user data, I can't sign in to the "old" account to change permissions. I already tried to change the permissions from system preferences, but that didn't change anything. And now, for whatever reason, of all the apps that were imported then, MS Office is the only set of apps that does not work. When I click on it, it just says there was a problem and asks if I'd like to send a report to apple. I tried reinstalling it to no avail. I'm an English student, so i really need access to Word. Can anyone help? The Apple store is a major detour for me and would like to fix this issue myself.

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • I am experiencing some major problems with my MacBook Pro. I have had some issues with it turning on/off at random times, but today, when starting, I get the grey start-up screen and a recovery bar. After filling in approx 1/4 of the way, the machine dies

    I am experiencing some major problems with my MacBook Pro. I have had some issues with it turning on/off at random times, but today, when starting, I get the grey start-up screen and a recovery bar. After filling in approx 1/4 of the way, the machine dies. After starting it in recovery mode, it will not allow me to download OS X Mavericks- it says the disk is locked. Any ideas? I do not have a back-up and do not want to erase everything before I have explored my options. Help?

    try forcing internet recover, hold 3 keys - command, option, r - you should see a spinning globe
    most people will tell you to do both pram and smc resets (google) and if you still have issues, either clean install (easy) or troubleshoot (hard)

Maybe you are looking for

  • Mainstage 2.2.2 with 10.68 and mountain lion

    I currently use Mainstage 2.1.3 on Snow Leopard, for live performances, and it works great. I am curious about either upgrading to Mainstage 2.2.2 and/or Mountain Lion.  I am afraid of issues coming up from either or both upgrades.   I also use Logic

  • How to lock the iPad 2

    I just bought an iPad and had it stolen. The Mobile me was not set up. I wonder if there is a way to remotely lock the iPad permanently.

  • How could new instance registed to an old listerner automatically?

    There is an oracle 11.2.0.1 database called gddb running on sever. Then I tried to install another one called lab11gr2 with dbca. After dbca, I found instance lab11gr2 had been registered to listener gddb when I didn't install listener lab11gr2 for t

  • Alv FRID with detail & summary sections

    Hi, I want a ALV Grid report with Details pages & at last(next page) Summary report can any one suggest how to perform this regards Bobby

  • Code added to document when opening in Dreamweaver

    When I open a .html document in dreamweaver it is mysteriously adding code (<a href="#"></a>) to my list item - see below <li><a href="#">Systems </a><table><tr><td><ul>     <li>     <a href="#"></a><a href="gatso.html">Gatsometer</a></li>     <li><a