Count the varieties of transactions in a day for 15mins interval

Hi All,
I have transaction data for the whole day for multiple transactions like saleID1, saleID2 etc. I need to club them separately in 15 minutes interval and put as a file format. e.g,
col1 col2 col3
1 count of transaction A between 2.00-2.15 count of transaction B between 2.00-2.15
2 count of transaction A between 2.15-2.30 count of transaction B between 2.15-2.30
3 count of transaction A between 2.30-2.45 count of transaction B between 2.30-2.45
4 count of transaction A between 2.45-3.00 count of transaction B between 2.45-3.00
1 count of transaction A between 3.00-3.30 count of transaction B between 3.00-3.15
2 count of transaction A between 3.15-3.30 count of transaction B between 3.15-3.30
3 count of transaction A between 3.30-3.45 count of transaction B between 3.30-3.45
And so on..
I am using count (cloumn1) from table X . I belive it won't be optimal to add a time of 15 mins timing everytime.
Please do revert if I can reach my target optimally.
Cheers,

Assuming you have a structure similar to this:
SQL> SELECT * FROM t ORDER BY trans_date, item_cd;
TRANS_DATE           I   ITEM_QTY
05-jun-2005 21:50:38 A          9
05-jun-2005 21:50:38 B          8
06-jun-2005 02:45:51 A          6
06-jun-2005 02:45:51 B          6
06-jun-2005 03:34:23 A          9
06-jun-2005 03:34:23 B          9
07-jun-2005 10:36:17 A          6
07-jun-2005 10:36:17 B          9
08-jun-2005 03:24:50 A          7
08-jun-2005 03:24:50 B          6
08-jun-2005 17:43:15 A          6
08-jun-2005 17:43:15 B          6
09-jun-2005 06:20:35 A          9
09-jun-2005 06:20:35 B          7
09-jun-2005 08:44:44 A          8
09-jun-2005 08:44:44 B          9
11-jun-2005 04:58:01 A          9
11-jun-2005 04:58:01 B          7
11-jun-2005 08:47:48 A          9
11-jun-2005 08:47:48 B          7Then to get counts by day by 15 minute interval, you could use something like:
SQL> SELECT 'Between '||TO_CHAR(trans_15, 'dd-mon hh24:mi')||
  2         ' and '||TO_CHAR(trans_15 + (900/24/60/60), 'dd-mon hh24:mi')||
  3         ' Item A: '||itema||' Item B: '||itemb outp
  4  FROM (SELECT trunc(trans_date) +
  5                  (TO_NUMBER(TO_CHAR(trans_date,'sssss')) -
  6                   MOD(TO_NUMBER(TO_CHAR(trans_date,'sssss')), 900))/24/60/60 trans_15,
  7               SUM(DECODE(item_cd, 'A', 1, 0)) itema,
  8               SUM(DECODE(item_cd, 'B', 1, 0)) itemb
  9        FROM t
10        GROUP BY trunc(trans_date) + (TO_NUMBER(TO_CHAR(trans_date,'sssss')) -
11                 MOD(TO_NUMBER(TO_CHAR(trans_date,'sssss')), 900))/24/60/60)
12  ORDER BY trans_15;
OUTP
Between 05-jun 21:45 and 05-jun 22:00 Item A: 1 Item B: 1
Between 06-jun 02:45 and 06-jun 03:00 Item A: 1 Item B: 1
Between 06-jun 03:30 and 06-jun 03:45 Item A: 1 Item B: 1
Between 07-jun 10:30 and 07-jun 10:45 Item A: 1 Item B: 1
Between 08-jun 03:15 and 08-jun 03:30 Item A: 1 Item B: 1
Between 08-jun 17:30 and 08-jun 17:45 Item A: 1 Item B: 1
Between 09-jun 06:15 and 09-jun 06:30 Item A: 1 Item B: 1
Between 09-jun 08:30 and 09-jun 08:45 Item A: 1 Item B: 1
Between 11-jun 04:45 and 11-jun 05:00 Item A: 1 Item B: 1
Between 11-jun 08:45 and 11-jun 09:00 Item A: 1 Item B: 1If you do not care about the day, only the interval, then you could do:
SQL> SELECT 'Between '||TO_CHAR(trans_15, 'hh24:mi')||
  2         ' and '||TO_CHAR(trans_15 + (900/24/60/60), 'hh24:mi')||
  3         ' Item A: '||itema||' Item B: '||itemb outp
  4  FROM (SELECT TO_DATE(TO_NUMBER(TO_CHAR(trans_date,'sssss')) -
  5                   MOD(TO_NUMBER(TO_CHAR(trans_date,'sssss')), 900),
  6                       'sssss') trans_15,
  7               SUM(DECODE(item_cd, 'A', 1, 0)) itema,
  8               SUM(DECODE(item_cd, 'B', 1, 0)) itemb
  9        FROM t
10        GROUP BY TO_DATE(TO_NUMBER(TO_CHAR(trans_date,'sssss')) -
11                   MOD(TO_NUMBER(TO_CHAR(trans_date,'sssss')), 900),'sssss'))
12  ORDER BY trans_15;
OUTP
Between 02:45 and 03:00 Item A: 1 Item B: 1
Between 03:15 and 03:30 Item A: 1 Item B: 1
Between 03:30 and 03:45 Item A: 1 Item B: 1
Between 04:45 and 05:00 Item A: 1 Item B: 1
Between 06:15 and 06:30 Item A: 1 Item B: 1
Between 08:30 and 08:45 Item A: 1 Item B: 1
Between 08:45 and 09:00 Item A: 1 Item B: 1
Between 10:30 and 10:45 Item A: 1 Item B: 1
Between 17:30 and 17:45 Item A: 1 Item B: 1
Between 21:45 and 22:00 Item A: 1 Item B: 1HTH
John

Similar Messages

  • Days for inspetion interval.

    Hello ,
    If i maintain 'Inspection interval ' in number of days in QM view as 2 days it is not taken in scheduling  of planned orders.
    What are the settings i need to do so that this 'insp interval' is considered in basic / lead time schedulin ?
    Regards
    ShankarR

    'Inspection interval ' in number of days in QM view as 2 days
    This will not consider for the planning in the MRP.
    THIS FIELD IS USEFUL IF you are using the inspection type 09 - 09 (recurring inspection)
    For this inspection type 09 (recurring inspection) is active in the material master, then a periodically executed program can identify all batches that qualify for the creation of an inspection lot, a status change or a transfer posting.
    'Inspection interval
    If the interval for the recurring inspection is defined in the material master, the date of the next recurring inspection is recorded when a batch is created.
    Edited by: raj on Jun 8, 2009 12:40 PM

  • Does it create a problem if I only connect the backup external drive every few days for use with Time Machine?  Should I have purchased Time Capsule instead?

    After a near miss with my 4-year old MacBook, I finally wised up and purchased a WD My Passport for Mac to back up my hard drive. I connected the Passport today and have performed the first full backup.  However, I do not wish to keep it permanently connected to the laptop.  Does this create a problem if I only connect the drive every few days?  Should I have purchased Time Capsule instead?

    Hello,
    I don't think it'll cause a problem, but I'd disable/turn off Time Machine before disconnecting, then turn it back on after you connect it again.

  • I upgraded to Firefox 7 and lost all my Bookmarks and the Toolbar which I use every day for all the important things I do on my Mac.. PLEASE HELP ME... Is there some way to restore my previous settings, go back to the older version or something?

    PLEASE HELP!... I am seriously freaking out... I use my Toolbar all the time!... and ALL OF MY BOOKMARKS ARE GONE ALSO!

    I am not an expert or even close, and I offer this only because this is how I figured out how to do it. I used a similar approach to importing all email accounts, email content and the address book into a new version of Thunder bird, but I assume this is common knowledge.
    My system:
    Windows 7 64 bit, recently upgraded from XP64. Installed Mozilla Aurora but seems the same as recent Firefox versions with respect to these features.
    Limitation:
    This solution depends on whether or not automatic backups were done of the bookmarks when you used your old installation. They were on my system and I don't remember doing it, but maybe I did. Others might know if this is periodically done by default. Assuming you have some backup (*.json) files,
    Locate your the bookmark backup files from the old version of your browser. On XP it was located in
    E:\Documents and Settings\Administrator.<your computer name>\Application Data\Mozilla\Firefox\Profiles\bookmarkbackups
    Each of the bookmark backup files look like this example:
    bookmarks-1010-09-22.json
    They might also be located one folder deeper, in my case:
    E:\Documents and Settings\Administrator.<your computer name>\Application Data\Mozilla\Firefox\Profiles\x72qybcl.default\bookmarkbackups
    Again, they will look like this:
    bookmarks-1010-09-22.json
    Copy all of these .json files to the backup folder on your new installation. On my new Windows 7 file system system I found their new home at:
    C:\Users\Art\AppData\Roaming\Mozilla\Firefox\Profiles\0ptl24i3.default\bookmarkbackups
    On an XP system I'm sure they would be found along a path, possibly on a differed drive, similar to where your got them from as above.
    I fired up Aurora. Drop down "Bookmarks" tab, Select "Show All Bookmarks" (found near the bottom). This brings up the "Library" window. At the top of the window is a tab "Import and Backup". Click this and select "Restore". All of the prior backup files will be available indexed by the date of backup. Select one and all of your prior bookmarks will be repopulated, including the bookmarks Toolbar.
    Hope this helps.

  • Want to print the whole month with or without overtime for each employee

    Hi,
    I have Oracle forms/reports10g R2, Below query returns employee overtime correctly but I want to add the whole month with it in simple words if one employee have overtime for five days in a month I want the query to return the whole month including five overtime days for each employee and let say if we have ten employees query return whole month for each employee either he have or overtime or not how can I implement this in report it becomes agony for me, anyone please suggest a solution.
    Thanks and regards, Khawar.
    ---Query---
    select o.ot_date , o.start_dt_time as start_time, o.end_dt_time as end_time, o.ot_details, et.holiday, et.staff_id, e.staff_name, e.desig
    from overtime o, emp_ot et, employee e
    where o.complain_no = et.complain_no
    and o.inc_type_code = et.inc_type_code
    and et.staff_id = e.staff_id
    order by 1, 2, 3, e.staff_id

    Hi Michael,
    Thanks for reply, I think I didn't explain as I should, I want to print Overtime report for each employee let say employee A123 did overtime for five days in DEC than what I want is to print report for employee A123 for the whole month means when I print report blank cell should come where A123 don't have data (I mean other 25/26 days).
    The structure of tables are as
    SQL> desc overtime
    Name Null? Type
    COMPLAIN_NO NOT NULL NUMBER(5)
    OT_DATE NOT NULL DATE
    START_DT_TIME NOT NULL DATE
    INC_REF_NO NUMBER(5)
    END_DT_TIME NOT NULL DATE
    INC_TYPE_CODE NOT NULL VARCHAR2(10)
    DISTRICT_CODE VARCHAR2(6)
    BUSBAR_VOL VARCHAR2(5)
    OT_DETAILS VARCHAR2(2000)
    SQL> desc EMP_OT
    Name Null? Type
    STAFF_ID NOT NULL VARCHAR2(8)
    COMPLAIN_NO NOT NULL NUMBER(5)
    INC_TYPE_CODE NOT NULL VARCHAR2(10)
    HOLIDAY NUMBER
    Each employee associated with primary key i.e COMPLAIN_NO and INC_TYPE_CODE
    in each OVERTIME table record we may have more than one employee in EMP_OT table.
    above detail may clear my query.
    Thanks and Regards,
    Khawar.

  • How to count transactions by mutiple days (group by two days)

    Hi,
    I am looking for a SQL solution which provides count of transactions by two days / three days etc. (e.g. GROUP BY two days).
    I tried the following approach
    select
    id
    , counT(*) OVER (PARTITION BY trunc(date_field) + INTERVAL '1' DAY)
    from tablename
    However this would give me count for each row in the table. I am looking for a solution, which provides me one row for each two days interval
    Appreciate your help..

    Hi,
    If you want to collapse the results down to one row per unique value of day_breaker (and, depending on your requirements, id) then use the aggregate SUM function; it's simpler than the analytic SUM.
    MIN (day_breaker) may not be the first day of the period. For example, if you add this row to your sample data:
    insert into TEST_X (id, trans_id, date_field)
         values     (1,  6,        TO_DATE('01/06/2012','mm/dd/yyyy'))
    /then the output will contain these day_breakers:
    1/1/2012
    1/3/2012
    1/6/2012          (not 1/5/2012)Try this:
    WITH     got_day_breaker     AS
         SELECT     id, trans_id
         ,     date_field          -- For debugging only
         ,     DATE '2012-01-01' + ( 2 * FLOOR ( (date_field - DATE '2012-01-01')
                                  / 2
                            )     AS day_breaker
         FROM     test_x
    SELECT       id
    ,       day_breaker
    ,       COUNT (*)     AS cnt
    FROM       got_day_breaker
    GROUP BY  id
    ,       day_breaker
    ORDER BY  id
    ,       day_breaker
    ;

  • Count the number of days in the selected range using Customer exit

    Hi Experts,
    we have requirment where user is asking to add a column to report, which will have 'count of days for which key figure is having values' for each of the months and the Header would be 'Day Count'
    Please let me know if its possible using Customer exit?

    Hi,
    In our report we have two characteristics site no. and product and we have 6 key figures of type quantity and Input for the report is Fiscal year/period
    So in the report Key figures are populated with values for respective site no. and product combination
    Now the user wants new column in report which will have header u2018Day countu2019 and it should Simply count the number of days in the selected range that have a volume different than 0 for key figure
    Please let me know if more details are required

  • How to count the days between Date Range using OO ABAP?

    hi experts,
            i want to count the days between Date Range using OO ABAP for that  which class and method  can i use?.
    Thanks,
    Mahesh.

    Not sure I understand the requirement for it to be OO, but you could always write your own (i.e. use this):
    REPORT zz_date_diff.
    CLASS date_diff DEFINITION.
      PUBLIC SECTION.
        METHODS diff IMPORTING     i_date_fm TYPE d
                                   i_date_to TYPE d
                     EXPORTING     e_days    TYPE i.
    ENDCLASS."
    CLASS date_diff IMPLEMENTATION.
      METHOD diff.
        e_days = i_date_to - i_date_fm.
      ENDMETHOD."
    ENDCLASS."
    DATA: g_ref TYPE REF TO date_diff,
          g_days  TYPE i,
          g_date_fm  TYPE d VALUE '20080101',
          g_date_to  TYPE d VALUE '20090101'.
    START-OF-SELECTION.
      CREATE OBJECT g_ref.
      CALL METHOD g_ref->diff
        EXPORTING
          i_date_fm = g_date_fm
          i_date_to = g_date_to
        IMPORTING
          e_days    = g_days.
      WRITE g_days.

  • Be careful of "Prompt user to change password before expiration" policy -- it's counting the days wrong!!

    After several tests, I'm pretty sure that the policy "Interactive logon: Prompt user to change password before expiration" is counting the wrong days. (Note: this policy is in Windows Settings > Security Settings > Local Policies > Security
    Options)  So I think I should post this in the forum in the hope that it could be helpful to others in the same case as me, esp if the policy is pushed out as a domain-wide policy.
    First, the context of the test, ie domain-wide policy settings:
    1. Password minimum age = 2 days
    2. Password maximum age = 4 days
    3. Prompt user to change password before expiration = 2 days
    If everything is going fine, users will be asked to change password when it is changeable (ie it has reached the minimum age).  However, it turns out that users are prompted BEFORE they can change password.  Look at the image below that I got in
    Win7:
    (In WinXP, we have similar prompt when user has just logged in)
    Look at the clock: it's 13:16 (04/12/2013).  Then look at the DOS window in which I ran the "net user /domain" command and read the line "Password expires": it's shown
    06/12/2013 18:09:04.
    A little math would tell me that if users are prompted to change password *2 days* before expiration, the dialog will appear
    ONLY AFTER 04/12/2013 18:09:04.  But since the prompt is shown at 13:16 (ie well before 18:09), that mean the "prompt user...." policy makes mistakes in calculating the moment to show the prompt.
    In other words, if we have the policy set like this:
         Prompt user to change password before expiration =
    N days
    The prompt will actually appear from N+1 days before expiration.
    I would consider this as a bug, but I also suppose it's hard to make Microsoft fix it.  So that's why I make this post to warn others.  In my case, I have received several calls from users complaining that they were prompted to change password
    but their new passwords were always refused and they had no idea what went wrong.  And it took me a lot of effort to sort out what really went wrong.  And in order to work around this stupid bug, I have to change the "Prompt user...." policy
    to N-1 days (before expiration) instead of N days previously.
    Hope this help

    Hi,
    Based on my research, you are right that the prompt policy is implemented by date, which is by design.
    “Set
    Interactive logon: Prompt user to change password before expiration to 5 days. When their password expiration
    date is 5 or fewer days away, users will see a dialog box each time they log on to the domain”, I quoted this sentence from the article below:
    Interactive logon: Prompt user to change password before expiration
    http://technet.microsoft.com/en-us/library/jj852243.aspx
    The problem is consistency!  For Minimum/Maximum password age properties, they are also defined for
    days as well.  But for them, days are exact days, ie a
    multiple of exactly 24 hours.  There is an "Explain" tab for every parameter, but even if you read them through, you can't tell if day means strict multiple of 24 hours or loose definition of days.  I'll leave the exercise to you to read
    them if you like and spare me the article from your KB library.
    As for the password minimum age part, what I mean is that is why users can’t not change their password within 2 days when the prompt appears before the changeable time.
    Anyway, I agree with you that we need to be careful when we configure the password policy because the Prompt policy is not doing calculation by hours.
    Miss, the 2 days is just a TEST EXAMPLE.  Let's say it's
    N days if you was unable to understand.  I wouldn't change N days to N-1 days because of this stupid GUI bug.  As I said earlier and let me repeat it once more,
    Minimum password age = N days is a security policy and it is more important than the user prompt and no security officer with sane mind will change this.

  • How to count the Transaction Commits in esb

    Hi guys,
    I want to count the total number of "Transaction Commits" in performance of esb runtimes oc4j. Where can I check the history records?
    Thanks,
    Jowvid.

    HI.
    Do you mean refresh the client ? if that is the case, i think you are posting in wrong forum since this one is for People Centric User Interface. Try in   Customer "Relationship Management (CRM) - General & Framework".
    Best Regards.
    Armando Rodriguez.

  • Count the days Crystal!!

    Afternoon all,
    I have found a strange thing here, I am using datediff to find out the number of days a job has taken to be shipped.
    I found out that Crystal report does not include the date (day of order) and counts from the next following day.
    Example
    Order placed = 25/06/2008
    Order Shipped = 27/06/2008
    Days took = 2 (According to Crystal)
    However,
    According to our old system the same job took 3 days
    Order placed = 25/06/2008
    Order Shipped = 27/06/2008
    Days took = 3 (According to our old system)
    How can I make the Crystal count the order day as well!??
    many thanks
    Kind Regards
    Jehanzeb

    Thanks guys!!
    I do not regert joining this forum! There are sooo many hands to help!
    Yes! even though the order is placed at 6pm it takes it as 1 day (the old system because our ordering system runs 24 hours (online).)
    Oki now come to a stupid question.
    How can I add 1 day into my formula?
    I have a formula:
    //weekday({order_progress.date_created},crMonday)- day({bank_hol.holiday_date});
    //weekday({order_header.date_entered},crMonday)- day({bank_hol.holiday_date});
    if {order_progress.order_status}= 77 then
    if datediff('d',{order_header.date_entered},{order_header.act_despatch}) < 9 then
    1
    else
    2;
    if datediff('d',{order_header.date_entered},{order_header.act_despatch}) <= 8 then
    totext(datediff('d',{order_header.date_entered},{order_header.act_despatch}),0,'')
    else
    "9+";
    In the above coding, Date Entered is the date when order is placed and Despatched date is the date when the order is shipped. How can I add 1 day to into this formula?
    Many thanks
    Regards
    Jehanzeb
    Edited by: Jehanzeb Navid on Jul 22, 2008 3:11 PM
    Edit: I tried this method but didn't work
    if datediff('d',{order_header.date_entered}+1,{order_header.act_despatch}+1) < 9 then
    1
    else
    2;
    if datediff('d',{order_header.date_entered}+1,{order_header.act_despatch}+1) <= 8 then
    totext(datediff('d',{order_header.date_entered}+1,{order_header.act_despatch}+1),0,'')
    else
    "9+";

  • Any FM to get count of each week day for the given date range

    Hi guys,
    Any FM to get count of each week day for the given date range?
    eg: If i give 14/07/2008 to 14/08/2008
    I need to find how many Mondays, tuesdays...sundays in this given date range.
    If not single FM is available, any logic that gives above result is also appreciated.
    Thanks,
    Vinod.

    hi Vinod,
    this is not a full solution, I just give you a basic idea:
    DATA : lv_start TYPE sy-datum VALUE '20080714',
           lv_end   TYPE sy-datum VALUE '20080814'.
    WHILE lv_start LE lv_end.
      CALL FUNCTION 'FTR_DAY_GET_TEXT'
        EXPORTING
          pi_date = lv_start.
    * IMPORTING
    *   PE_DAY_TEXT1       =
    *   PE_DAY_TEXT2       =
    *   PE_DAY             =
    * you have to summarize the output here somehow...
      lv_start = lv_start + 1.
    ENDWHILE.
    hope this helps
    ec

  • SQL to count the number of days between two dates

    Does any one have or know how to count the number of days/weeks between 2 dates.
    I have thought about using MONTHS_BETWEEN, but do not know how to make it accurate down to one day?
    Any suggestions would be appreciated.

    here are the different queries I came up with to do this, you may want to check it for perticular cases involving Sun and Sat as start and end dates.
    select to_number(to_char(to_date('21-JUL-00','dd-mon-yy'), 'ww'))
    - to_number(to_char(to_date('10-JUL-00','dd-mon-yy'), 'ww')) from dual;
    select (Next_Day(to_date('21-JUL-00','dd-mon-yy')-1, 'Sunday')
    - Next_Day(to_date('10-JUL-00','dd-mon-yy')-1, 'Sunday'))/7 from dual;
    select (Next_Day(to_date('21-JUL-00','dd-mon-yy')-6, 'Sunday')
    - Next_Day(to_date('10-JUL-00','dd-mon-yy')-6, 'Sunday'))/7 from dual;
    null

  • What are the transactions we use day to day in the bw before go live

    what are the transactions we use most in the bw before go live?
    Tcodes for backend objects like creating infocube and so on.
    Tcodes for front end objects like creating queries and so on.
    Thank you.
    York

    Hi Les,
    check previous posting
    Transaction Codes for BW Developers
    SAP BW n R/3 transactions.
    table TSTCT contains all the transaction codes
    RSA6 Maintain DataSources
    RSA7 BW Delta Queue Monitor
    RSA8 DataSource Repository
    RSA9 Transfer Application Components
    RSD1 Characteristic maintenance
    RSD2 Maintenance of key figures
    RSD3 Maintenance of units
    RSD4 Maintenance of time characteristics
    RSDBC DB connect
    RSDDV Maintaining Aggregates
    RSIMPCUR Load Exchange Rates from File
    RSISET Maintain InfoSets
    RSKC Maintaining the Permittd Extra Chars
    RSLGMP Maintain RSLOGSYSMAP
    RSMO Data Load Monitor Start
    RSMON BW Administrator Workbench
    RSOR BW Metadata Repository
    RSORBCT BI Business Content Transfer
    RSORMDR BW Metadata Repository
    RSPC Process Chain Maintenance
    RSPC1 Process Chain Display
    RSPCM Monitor daily process chains
    RSRCACHE OLAP: Cache Monitor
    RSRT Start of the report monitor
    RSRT1 Start of the Report Monitor
    RSRT2 Start of the Report Monitor
    RSRTRACE Set trace configuration
    RSRTRACETEST Trace tool configuration
    RSRV Analysis and Repair of BW Objects
    SE03 Transport Organizer Tools
    SE06 Set Up Transport Organizer
    SE07 CTS Status Display
    SE09 Transport Organizer
    SE10 Transport Organizer
    SE11 ABAP Dictionary
    SE24 Class Builder
    SE80 Object Navigator
    RSCUSTA Maintain BW Settings
    RSCUSTA2 ODS Settings
    RSCUSTV*
    RSSM Authorizations for Reporting
    SM04 User List
    SM12 Display and Delete Locks
    SM21 Online System Log Analysis
    SM37 Overview of job selection
    SM50 Work Process Overview
    SM51 List of SAP Systems
    SM58 Asynchronous RFC Error Log
    SM59 RFC Destinations (Display/Maintain)
    LISTCUBE List viewer for InfoCubes
    LISTSCHEMA Show InfoCube schema
    DB02 Tables and Indexes Monitor
    DB14 Display DBA Operation Logs
    DB16 Display DB Check Results
    DB20 Update DB Statistics
    r/3 (bw related)
    SBIW BIW in IMG for OLTP
    BD61 Activate Change Pointers - Generally
    BDLS Convert Logical System Names
    BF11 Application Areas
    RSA2 OLTP Metadata Repository
    RSA3 Extractor Checker
    RSA5 Install Business Content
    RSA6 Maintain DataSources
    RSA7 BW Delta Queue Monitor
    RSA8 DataSource Repository
    RSA9 Transfer Application Components
    RSO2 Oltp Metadata Repository
    RSO3 Set Up Deltas for Master Data
    LO setup table
    OLI1BW INVCO Stat. Setup: Material Movemts
    OLI2BW INVCO Stat. Setup: Stor. Loc. Stocks
    OLI3BW Reorg.PURCHIS BW Extract Structures
    OLI4BW Reorg. PPIS Extract Structures
    OLI7BW Reorg. of VIS Extr. Struct.: Order
    OLI8BW Reorg. VIS Extr. Str.: Delivery
    OLI9BW Reorg. VIS Extr. Str.: Invoices
    OLIABW Setup: BW agency business
    OLIFBW Reorg. Rep. Manuf. Extr. Structs
    OLIIBW Reorg. of PM Info System for BW
    OLIQBW QM Infosystem Reorganization for BW
    OLISBW Reorg. of CS Info System for BW
    OLIZBW INVCO Setup: Invoice Verification
    Check out AHP's reply specifically in the link:
    urgent
    Assign Points if Helpful *****
    Regards,
    Ravikanth

  • My software applications were unexpectedly quitting (i tunes, pages, skype) so I upgraded to Lion OS 7. It took 2 days to download, 14 hours and counting to install so  I switched it off and on. The only result is a screen asking for my password. I key in

    My software applications were unexpectedly quitting ( I Tunes, page, skype) so I downloaded Lion OS 7. It took 48 hours to download and 18 hours to install (and counting) so i turned it off and on several times. All i get now is a screen with the Apple Icon asking for my password with option to switch off or restart. tried both but it just brings me back to the same screen
    what do i do?
    thanks

    When you decided to upgrade because you were having serious problems, you jumped from the frying pan into the fire. If the problem was the system, then reinstalling the current system is the way to go. But you had several application quiting, some from Apple and some not. so the quitting was something affecting all of them, and of course the system could be the culprit, but the system is not the only possible culprit. Replacing the system when it was not the problem only buries the problem under a whole new pile of problems.
    Before reinstalling a system you need to make your Mac as trouble free as possible and back up as much as you can. There is a wide variety of problems that can affect many applications. Here is a short list:
    Font problems. Use Font Book to verify your fonts. Delete or disable bad fonts.
    Disk, permission, or cache corruption.
    Incompatible Startup Items, Login Items, interface modifications or menu extras.
    Corrupted preferences other than those of the affected applications. Check preferences system-wide using the freeware applications Preferential Treatment or AppleJack
    Insufficient RAM or lack of free disk space.
    Programming errors. Bugs in application code are not uncommon. For third-party applications, check the vendor's Web site for updates to the application, reports of known bugs, or for information on how to contact the vendor for support. A bad program might be grabbing up too much RAM and causing the other applications to fail as well.
    Corrupted application. Check the logs to see where the crash occurred.
    Other software problems or conflicts.
    Corrupted Mac OS X installation. Perform an Archive and Install of your current Mac OS X.
    Hardware problems. Run the Apple Hardware Test that came with your Mac.
    Try to discover the culprit:
    Open Console, located in the Macintosh HD > Applications > Utilities folder.
    Check the Console and System logs for messages that may be related to the problem.
    To open these logs, in Console choose File > Open, then choose:
    Open Console Log and Open System Log
    Messages in these logs are time stamped when the message was logged.
    Scroll the log windows to the approximate time when the problem occurred.
    Details of the messages may provide additional clues you use in troubleshooting.
    Do not post an entire log to a forum. Post only the messages referring to the function or application causing a problem.
    AppleJack is a free program you run in 'Single User Mode.' Install it. When you want to run it, press Command s until you get a black screen with text. Type 'applejack' and run the repairs.

Maybe you are looking for

  • Itunes wont open after update

    iTunes crashes immediately after i double click it. It happend after the last update to the newest itunes. Now i cant sync anything. I tried repairing and reinstalling itunes but still no luck. This is the error report windows 7 gave! Please help ! P

  • Error message when creating Goods receipt

    We're getting an error message, No commitment item entered in item 00010 1000. when we try to do a goods receipt. The commitment item shows in the PO with the correct G/L and in the GR with the correct G/L, but the system is telling us it's not there

  • Validity date

    Dear Experts   My problem is i need to change the Validity to date in inspection task list which is defaulted as 31.12.9999 and which cannot be edited. Surender

  • Watch video without flash.

    how do I get html5 video instead of flash on safari for mac? I don't have flash installed, but when I go to website page with with video which has flash or html5 video, it shows flash only...unlike if I used mobile safari it would use the html5 video

  • E61 Open Link from Mail launches wrong browser

    Hi, I've just noticed that, when following a web link from within an email received on my POP3 account, the phone lauches the basic web browser (i.e. the 'Services' application) rather than the more advanced 'Web' application - surely the page should