Totals for hour not summing

Hello,
I have a query that is supposed to filling in missing values for individual hours of the date in the date range specified if there is nothing for that hour in the database.
It is also supposed to sum the totals for each hour. I have not been able to get my query to group by the hour. For example, I get
<br><br>
call_start_date     st_hour   inc_comp
06-NOV-06           00          0
06-NOV-06           01          0
06-NOV-06           02          1
06-NOV-06           02          1
06-NOV-06           02          0
06-NOV-06           02          1
06-NOV-06           03          0
06-NOV-06           04          0      ..and so on, up to hour 23 for the date, then it
continues with 07-NOV-07, etc.
What I should be getting is this:
call_start_date     st_hour   inc_comp
06-NOV-06           00          0
06-NOV-06           01          0
06-NOV-06           02          3
06-NOV-06           03          0
06-NOV-06           04          0      ..and so on, up to hour 23 for the date, then it
continues with 07-NOV-07, etc.
<BR>Code:
SELECT call_start_date, TO_CHAR(call_start_date,'HH24') st_hour,
       SUM(int_comp) inc_comp
FROM (
SELECT call_start_date,      
       sum( int_comp) int_comp
       FROM cdhtp.station_sum_view      
       WHERE call_start_date       
       BETWEEN TO_DATE(SUBSTR('06-NOV-2006 00:00',1,19),'DD-MON-YYYY HH24:MI')      
       AND to_date (substr ('07-NOV-2006 23:59',1,19),'DD-MON-YYYY HH24:MI')      
       AND switch_id = 'PABST'
       GROUP BY call_start_date
UNION
SELECT TO_DATE('06-NOV-2006', 'DD-MON-YYYY') + (LEVEL - 1) / 24 call_start_date, 0,0,0,0,0,0,0
FROM dual 
CONNECT BY LEVEL <= ((TO_DATE('07-NOV-2006','DD-MON-YYYY')+1) - TO_DATE('06-NOV-2006','DD-MON-YYYY')) * 24
MINUS
SELECT call_start_date, 0,0,0,0,0,0,0
       FROM cdhtp.station_sum_view      
       WHERE call_start_date       
       BETWEEN TO_DATE(SUBSTR('06-NOV-2006 00:00',1,19),'DD-MON-YYYY HH24:MI')      
       AND to_date (substr ('07-NOV-2006 23:59',1,19),'DD-MON-YYYY HH24:MI')      
       AND switch_id = 'PABST'  
)) GROUP BY call_start_date, TO_CHAR(call_start_date,'HH24') ;<br>
Thanks!
Laura

Is your problem this error?
ORA-01789: query block has incorrect number of result columnsIf so, you just need to remove those exra zeroes in the sub-query. the number of columns must be the same on either side of a UNION.
Given this data ...
SQL> alter session set nls_date_format = 'DD-MON-YYYY HH24';
Session altered.
SQL> select * from station_sum_view 
  2  /
CALL_START_DAT   INT_COMP SWITC
06-NOV-2006 00          0 PABST
06-NOV-2006 01          0 PABST
06-NOV-2006 02          1 PABST
06-NOV-2006 02          1 PABST
06-NOV-2006 02          0 PABST
06-NOV-2006 02          1 PABST
06-NOV-2006 03          0 PABST
06-NOV-2006 04          0 PABST
06-NOV-2006 07          0 PABST
06-NOV-2006 07          0 PABST
06-NOV-2006 07          0 PABST
06-NOV-2006 09          0 PABST
06-NOV-2006 09          1 PABST
13 rows selected.
SQL> I get this ...
SQL> SELECT call_start_date, TO_CHAR(call_start_date,'HH24') st_hour,
  2         SUM(int_comp) int_comp
  3  FROM (
  4  SELECT call_start_date,      
  5         sum( int_comp) int_comp
  6         FROM station_sum_view      
  7         WHERE call_start_date       
  8         BETWEEN TO_DATE(SUBSTR('06-NOV-2006 00:00',1,19),'DD-MON-YYYY HH24:MI')      
  9         AND to_date (substr ('07-NOV-2006 23:59',1,19),'DD-MON-YYYY HH24:MI')      
10         AND switch_id = 'PABST'
11         GROUP BY call_start_date
12  UNION
13  (
14  SELECT TO_DATE('06-NOV-2006', 'DD-MON-YYYY') + (LEVEL - 1) / 24 call_start_date, 0
15  FROM dual 
16  CONNECT BY LEVEL <= ((TO_DATE('07-NOV-2006','DD-MON-YYYY')+1) - TO_DATE('06-NOV-2006','DD-MON-YYYY')) * 24
17  MINUS
18  SELECT call_start_date, 0
19         FROM station_sum_view      
20         WHERE call_start_date       
21         BETWEEN TO_DATE(SUBSTR('06-NOV-2006 00:00',1,19),'DD-MON-YYYY HH24:MI')      
22         AND to_date (substr ('07-NOV-2006 23:59',1,19),'DD-MON-YYYY HH24:MI')      
23         AND switch_id = 'PABST'  
24  )) GROUP BY call_start_date, TO_CHAR(call_start_date,'HH24') ;
CALL_START_DAT ST   INT_COMP
06-NOV-2006 00 00          0
06-NOV-2006 01 01          0
06-NOV-2006 02 02          3
06-NOV-2006 03 03          0
06-NOV-2006 04 04          0
06-NOV-2006 05 05          0
06-NOV-2006 06 06          0
06-NOV-2006 07 07          0
06-NOV-2006 08 08          0
06-NOV-2006 09 09          1
06-NOV-2006 10 10          0
06-NOV-2006 11 11          0
06-NOV-2006 12 12          0
.....Cheers, APC

Similar Messages

  • Totals for Groups not adding

    Hello,
    I created a report for our Scheduling team here and I thought it was working nicely and someone found  that my totals are not adding up.
    In the Group Header Reset I have:
    WhilePrintingRecords;
    Shared NumberVar PastDue :=0;
    Shared NumberVar Day1Value :=0;
    Shared NumberVar Day2Value :=0;
    Shared NumberVar Day3Value :=0;
    Shared NumberVar Day4Value :=0;
    Shared NumberVar Day5Value :=0;
    Shared NumberVar Day6Value :=0;
    Shared NumberVar Day7Value :=0;
    Shared NumberVar Day8Value :=0;
    Shared NumberVar Day9Value :=0;
    Shared NumberVar Day10Value :=0;
    Shared NumberVar SDay1 :=0;
    Shared NumberVar SDay2 :=0;
    Shared NumberVar SDay3 :=0;
    Shared NumberVar SDay4 :=0;
    Shared NumberVar SDay5 :=0;
    Shared NumberVar SDay6 :=0;
    Shared NumberVar SDay7 :=0;
    Shared NumberVar SDay8 :=0;
    Shared NumberVar SDay9 :=0;
    Shared NumberVar SDay10 :=0;
    Day 1 Values  (Day1Value should hold totals, but it's only holding the last value it seen, Detail Section)
    WhilePrintingRecords;
    Shared NumberVar Day1Value;
    if IsNull({V_SHIP_SCHED.DAY_1}) then 0
    else {V_SHIP_SCHED.DAY_1};
    Day1Value := {V_SHIP_SCHED.DAY_1} + Day1Value;
    Day 1 Totals (Group Footer Section)
    WhilePrintingRecords;
    Shared NumberVar Day1Value;
    Day1Value;
    Not sure why it's happening.  Any ideas?

    Okay found out my Totals in the Group Footer are working, it's just in the detail not working.
    When I do this:
    WhilePrintingRecords;
    Shared NumberVar Day1Value;
    if IsNull({V_SHIP_SCHED.DAY_1}) then 0
    else {V_SHIP_SCHED.DAY_1};
    Day1Value := {V_SHIP_SCHED.DAY_1} + Day1Value;
    it printing out the First line amount being correct but the next line it's adding the first line with the second line and giving it total
    ie:  Customer 1 - Day 1 = 100
         Customer 2 - Day 1 = 200
    Then when printing it doing this:
                             Day 1
    Customer 1     100
    Customer 2     300
    Total               300
    What I need to do this:
                             Day 1
    Customer 1     100
    Customer 2     200
    Total               300
    Thanks.

  • Totals for Hierarchys not correct with condition

    Dear All
    I have a Bex query with two hierarchys, one in rows and the other in column. query is working perfectly fine without condition in query. when there is a condition added in the query for the total amount more than or equal to * the totals are not displaying correctly.
    Totals are displayed for the amount which are less than the amount *.

    Try to change in the KF properties, defining the totals as summation, instead of "nothing defined".

  • Blue screen with cursor on start-up been like it for hours, not changing...? please help

    basically a few days ago i had a box pop up saying that my 'start up storage was low. then everything went insanly slow google wouldnt load now of my apps would load, so i thought, just turn it off restart it, thats when the blue screen started. It loads the white screen with apple logo (takes a good 20 mins mind) then just goes blue with a black cursor, i tried to be patient but i left it for 12 hours and no change.
    I have tried hold X on start up and nothing also shift key, then tried unplugging everything, still no change. Also changing the screen as i am using a 37 inch, but nothing, i cant put the back up disc in as there is a disc in the drive and it wont eject.. i dont really know what else to do so please can someone give me a hand.
    Thanks in advance..
    Pad Chandler

    Thanks but I was hoping for some advice on whether I could fix the problem myself.
    However, do you know roughly how much it would cost to replace the Logic Board or Video GPU? If they are expensive and this is the only solution, might it not be better to buy a cheap monitor instead?
    Would it be possible to hook the monitor up to my iMac if I can't see the screen on the host computer?

  • Group/Sort Summary Totals for Duration % Complete not working

    Hello, I'm new to this forum and have used p3 off and on years ago and had some exposure to p5, my background is more toward Project Controls - Cost management rather than scheduling. Here is my issue/question: I was told by the PM not to baseline the schedule (I know, I should have but I didn't, I did as I was specifically requested), that is a topic for another day, however. I am trying to understand the process of the % completes on my resource loaded schedule which all activities are set to duration percent complete. The schedule has roughly quarter of the activities which have been actualized, but my issue is with the "Summary Totals" of the duration % complete when I select that option in the Group/Sorting. All of the activities in a group for example will show 0% complete but the Summary Total of those activities will show greater than 0% or some of the activities duration % completes show a value greater than 0% but the Summary Total of those activities show 0%. What is causing this and why are they not consistent? Any help is greatly appreciated!
    Shannon

    I'm currently showing the duration % complete with a renamed label. The total is not rolling up to the summary. I've also discovered that the unit % complete is not calculating correctly too I believe. For example: I have 3708 budgeted hours and have expended 656 hours and the Unit % Complete is showing 19.08% when I would have thought that the % would have been calculated based on Actual Units (656) / Budgeted Units (3708) totaling 17.69% not 19.08% which it is showing. I cannot find in the reference manual how the percent completes are calculated for units nor in the help section of the software itself either. An explenation would be greatly appreciated!
    Shannon

  • Total labour hours for a FG

    I have one finished good A which has a multi level bom.
    I want to see the total labour hours required to manufacture this material A.
    i.e. total of all the labour hours of all the subassemblies
    under A.
    In which transaction can I see it.
    I have tried CK13N but am not able to find the total hours required to manufacture A.

    Hi Amit,
    You can do this via routing itself,
    goto CA02
    there you enter header detail screen
    goto
    extras
    scheduling
    there you can put the quantity as required
    There there you will see the results of scheduling the labor Hrs
    But for that you need maintain your work center scheduling category as labour.
    Regards,
    R.Brahmankar

  • POS system reports daily totals for each store, not for each cashier

    Hi!
    We are implementing SAP Retail (ERP 6.0 EHP4 stack 3), SAP PI (Netweaver PI 7.1 SP 8) and SAP BW (NetWeaver 7.0 ehp1 stack 4, incl BI content 704, SP 3 ) for a client. Their POS system is a 3rd party system, i.e. not SAP POS.
    This issue concerns the fact that the POS system reports daily totals for each store, not for each cashier.
    At my client, the daily settlements are done for each cashier. At the end of day, we will get cash drawers counted with sum of each tender (cash and checks) at the end of day. In addition, the POS system will send sum of each tender, sum of all sales and sum of different finance transactions made each day. However, this u201Ctotals messageu201D is not sent separately for each workstation, or for each cashier, but rather for each store. So we only gets the totals per store.
    Questions:
    i)     Are the tasks available for comparing totals to the aggregates for POS transaction able to handle u201Cstore-only figuresu201D?
    ii)     If not, how can we adapt the tasks so they can handle u201Cstore-only figuresu201D?
    iii)     Can we trigger outbound tasks sending WPUUMS and WPUTAB using outbound dispatcher automatically, or must we run this as a manual task of an employee, after checking that all stores have delivered their totals?
    iv)     The u201Cstore-only figuresu201D does not include cashier statistics. Do we need the u201Ccashier statisticsu201D as total figures, or can we just populate the BAPI for each POS transaction with data, in order to populate BW infocubes for cashier statistics?
    Thanks for any advice !
    Best regards,
    Oeystein Emhjellen

    Hi Kees ...
    Your profile indicates you are running Leopard v10.5.8
    You need to upgrade to Snow Leopard V10.6 in order to use the App Store. This is an "upgrade", not an "update".
    Make sure your Mac meets Snow Leopard's requirements here.
    You must have the minimum of v10.6.6 installed in order to access the App Store.
    You can purchase Snow Leopard here > Mac OS X 10.6 Snow Leopard - Apple Store

  • Any method to create a SUM Total for a column whose values based on LAG?

    I have a question here, and the challenge is to explain my situation well. I am trying to develop a workbook that shows by project and month, the cost this period and the change in cost from the prior period. I want a SUM total on the Cost This Period and Cost Change From Prior Mth columns. So what I want to do looks something like this -
    Project Month Cost This Period Cost Chg from Prior Mth
    ABCDE Jan $50,000 NULL (since no preceeding row)
    ABCDE Feb $75,000 $25,000
    ABCDE Mar $60,000 -15,000
    Total $185,000 $10,000
    I do the Cost Chg from Prior Mth as a new calculation, and use the Insert Formula from Template process to use the F(x) Difference template to create my calculation. That is working just great. If you look at the underlying code for this new column, you can see the LAG function being utilized in calculating this value. I am lagging one row, as you can see from the example above.
    I can create a new total and do a SUM for the Cost This Period column and get the correct answer (the $185,000).
    The problem I am running into is that I am not getting anything when I try to sum my Cost Chg from Prior Mth column. The result is just blank (does print the total's text, but no amount).
    My thought is that the NULL row in this column was messing up the SUM from working. So I created a new calculation and said CASE WHEN Cost Chg from Prior Mth IS NULL THEN 0.00 ELSE Cost Chg from Prior Mth. So I get a new column with the same numbers except for the first row, where I now have a 0 instead of NULL. I then created a new total (SUM function) on this brand new column. Darn. Same result as for the other column. I do not get an amount.
    Has anyone else run into an issue with trying to sum up a column of numbers that are being calculated from a LAG function in Discoverer? Any suggestions on how I could get a SUM to properly calculate for this Cost Chg from Prior Mth column? Or have I run across one of those irritating "cannot handle in Discoverer" issues?
    Of course I can export the workbook run results to Excel and create the calculation in there, and that works just fine.
    John Dickey

    Hi John
    Thanks for the question and the great information. That really helped. I love these kinds of questions. They make me think :-)
    Just a thought but have you tried altering the SUM to be a CELL SUM?
    The SUM will try to evaluate the LAG over the total which would be invalid whereas, at least in theory, the CELL SUM should literally add the values.
    Best wishes
    Michael

  • T-codes to get total runnig hours for machine and lab

    Plz tell any one t-codes to get total runnig hours for machine and labour against the prodduction order or work center wise ..
    Thanks & Regards
    Punit SIngh

    Hi pjd,
    I'm sorry to hear of your problem getting help with your issue.  Have you checked this thread to see if there's any useful information in it that would help you get this resolved?? 
    If the information there does not help, please advise and I'll try to get you to the proper department to get this resolved for you.
    Regards,
    KaLin
    Verizon Forum Moderator
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

  • Device summary pane does not show capacitiy totals for each category (audio, remaining, photos, etc.)

    When viewing the summary pane for my ipod, the summary bar does not show totals for each category (audio, remaining, photos, etc.). It does not show when hovering over each category either. Seems to be some type of bug with itunes. I have tried re-installing itunes but that does not work. How do I fix this?

    Hello vetsrini.
    Thanks a lot for your kind reply. As i said, i'm new to this and sometimes i just cannot pass over some problems. Here are the fields i have inserted:
    <?for-each:LIST_G_SETUP/AS_OF_DATE?>
    <?end for-each?>
    <?for-each@section:G_CUST_INV?>
    <?for-each:G_1?>
    <?INVNUM?>
    <?INVOICE_TYPE_INV?>
    <?DUE_DATE_INV?>
    <?sum (C_INV_BALANCE)?>
    <?sum (C_INV_B0)?>
    <?sum (C_INV_B1)?>
    <?sum (C_INV_B2)?>
    <?sum (C_INV_B3)?>
    <?sum (C_INV_B4)?>
    <?sum (C_INV_B5)?>
    <?end-for-each-group?>
    <?TOTAL_INV_AMT_DSP?>
    <?TOTAL_INV_B0_DSP?>
    <?TOTAL_INV_B1_DSP?>
    <?TOTAL_INV_B2_DSP?>
    <?TOTAL_INV_B3_DSP?>
    <?TOTAL_INV_B4_DSP?>
    <?TOTAL_INV_B4_DSP?>
    <?end for-each:G_CUST_INV?>
    In the header of the template i also have <?CUST_NAME_INV?> and the report date. When i try to enter the <?AS_OF_DATE?> it is not printed and also the header is not shown any longer. Once again, thank you for any help,
    Octavio

  • Hi, my MacBook Air is not working anymore if it's not connected with the power cable. It's pretty new so I can't imagine that the battery is dead already. Why can't I use my MacBook Air without the power cable even though I charged it for hours?

    Hi, my MacBook Air is not working anymore if it's not connected with the power cable. It's pretty new so I can't imagine that the battery is dead already. Why can't I use my MacBook Air without the power cable even though I charged it for hours?

    Please take the Mac to  Apple store to have it checked out.
    Genius Bar reservation
    http://www.apple.com/retail/geniusbar/
    Best.

  • My macbook seems to be going crazy. At certain points (and for hours) I get the oh snap page on chrome, safari doesnt work, macbook wont let me create any files or for example upload music to itunes. I restored my mac so im sure its not a malware problem.

    My macbook seems to be going crazy. At certain points (and for hours) I get the oh snap page on chrome, safari doesnt work, macbook wont let me create any files or for example upload music to itunes. I restored my mac so im sure its not a malware problem. The only thing that solves it is switching off and on , but sometimes I have to do that for 6-7 times before its ok or wait for a few hours. Some help please

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Why is my iPad not able to download mail for hours at a time while the iPhone next to it has no problem?

    Why is my iPad not able to download mail when the iPhone next to it can and the iPad may be able to do it 24 hours later with no change in settings?  This happens with multiple email accounts at the same time in several locations on many occasions.  The setting is to check emails every 15 minutes.   It says it is checking but nothing comes up while it does on my Mac or iPhone

    I have exactly the same problem here.
    Can see new email appearing straight away on the iPhone and Windows pc, but very erratic on the iPad.  Sometimes the emails appear immediately on the iPad, other times they don't appear for hours. 
    One thing I have noticed if I go and change the "delete messages - remove" setting to something other than what it was set (for instance from "never" to "one month") it seems to jiggle something and the outstanding emails all suddenly appear.

  • TS4057 I did this and now my videos are not working. They show the pictures aren't there on some and on others it shows they are there, but doesn't show them in the player. When I try to Share anything it just says Waiting for Processing for hours. What d

    I did this and now my videos are not working. They show the pictures aren't there on some and on others it shows they are there, but doesn't show them in the player. When I try to Share anything it just says Waiting for Processing for hours. What do I do?
    I also got Motion and can't figure out how to use it with Final Cut Pro X. Any help woud be great. Thanks

    I have no idea what may have caused your MacBook to stop working, but from your description it kind of sounds like it may have started before you ran Software Update and installed the new Apps. Just the general slow feeling and bugginess is what tips me off. You said that you weren't sure if you had closed all open windows, that doesn't matter if the computer restarts itself. It automatically closes all other open applications when restarting.
    As to your data being retrievable, if when you take it in they do a fresh install of the OS, then no, it will not be unless you want to pay several thousand dollars to a software retrieval company.
    I am glad to hear that you have taken into the Apple Store to get it fixed, and that you have all of your purchased music backed up to your iPod. You should be able to just transfer it all back to iTunes once you get your computer back should it be necessary.
    As a side note, the proper place for this topic would probably in the MacBook forums, not iTunes since there is no evidence that iTunes started the issue.

  • Totals for CKF are not matching

    Hi All,
    We recently upgraded to BI7 and we created Aggregates in the system. We have few calculated key figures (CFK) in the system. When we execute the queries they are not hitting the aggregates in the system because of the property, calculation before aggregation.
    We changed that property calculation before aggregation to calculation after aggregation then the queries are hitting the aggregates. So we moved the aggregates to BQ and BP. There the values for the totals in the report are not matching. For ex: we have value 10 for a CKF in five rows then the total in the result row should be 50 but that is not the case now, it is showing as 45 or 55 some value. The totals are not matching in all the reports where this CKF is involved.
    But when we keep the calculation before aggregation property as it is, then the total values for this CKF are matching in the report. But now the problem is that the queries do not hit the aggregates.
    So instead of going for a CKF we tried with creating a formula in the query with the same calculation as it is in the CKF, but for that formula also the total values are not matching. When we check and compared the formula calculation with other CKFu2019s in the system, we found out that those CKFs which involved the calculations such as multiplication and division the totals are not matching but if the CKF is containing addition and subtraction then the Totals are matching. This is the same case in across all the systems except in Production.
    We have testing system (BT), which is a copy of production; the totals are matching for this CKF in one report. But if we include the same CKF in some other report then the totals for this CKF are not matching in that report.
    We are unable to figure out why the same CKF with same properties and calculations is not behaving in the same way across all the systems. If anybody comes across such issue please let us know how to proceed further.
    Thanks for your patience.
    Hope for your response...

    Hi himanshu,
    If you are using Addition, subtraction with Multiplication & Division, just maintain all in the Sequence how you required using brackets.
    If you are using formula in Row & Column also try to use formula Collision.
    http://help.sap.com/saphelp_nw04/helpdata/EN/d2/02223c5f00612be10000000a11402f/content.htm
    Regards,
    Rajdeep.

Maybe you are looking for

  • Why did Mail randomly start sending emails to junk folder?

    My mail app suddenly started sending important emails to my junk folder. I have been using mail on all of my devices for some time and have never changed any settings since I started. With the exception of some emails here and there, I have never had

  • Can you use an external hard drive (G-Tech 1 TB) as both a time machine and for storing extra files?

    I just got a new external hard drive and will be getting my macbook pro next week. I was wondering if the external hard drive could be used as both a time machine and to have extra files on it? And if so how would you do that?

  • How to call ABAP client proxy?

    Hello, I am getting confused with ABAP client proxy now. I've defined a outbound service interface (Message Interface) in PI, based on the service interface I generated the ABAP client proxy in the abap backend system. There are two possible ways to

  • Monitoring User in CRM Portal

    Hi All, Our company have finished CRM portal and this week we will doing a stress test by using portal system at a time with lot of user. How to monitoring users that have been logged into portal in one day?Not only the total number of user but also

  • Big big problems using Generics, BeanInfo and Introspector

    I'm having a big big problem with Introspector class. Let me setup the problem: public interface VO<T, V> {   public T getOid();   public void setOid(T oid);   public V getVersion();   public void setVersion(V version); public interface CarVO extends