Help with Upgrade report in FI

Hey All Gurus,
Im in a thick soup here. I am trying to do something like this -
if you see the selection screen i have rep and super rep, when a user enters a rep value --- it should use the same value to pull all open items for the super rep as well, since they are essentially the same. please help! this one needs to be done fast. i am pasting the code so that it will be easier ...
thanks a million!
*& Report  ZFDOFW04_NEW
REPORT ZFDOFW04_NEW MESSAGE-ID FR
                     LINE-SIZE 132
                     LINE-COUNT 60.
*==================================================================
Program: ZFDOFW03 -      Aged Trial Balance Report
         This produces an Accounts Receivable Past Due Aging Report
         in a more simplified/condensed format than the
         SAP supplied aging report program - RFDOPR10.
         This program is a modified copy of RFDOFW00, - a SAP
         Future-Due Report.
         This was a 'rush' job - program probably should be
         rewritten someday not using logical databases as that
         maybe why this runs so slowly!
Original:  Feb 1997.
MAINTENANCE HISTORY:
NES071797   Copied from ZFDOFW03.  Adding parameter for saeles rep.
JDEDERER - changed header text so it is differnet from ZFDORW03. 9/23
*TEXT SYMBOLS :
001 Open items per
002 O p e n
003 D u e  o n
004    cc   ba     in total
005  until
006 Days until
007 Days over
008 Days
009 over
011 valid until........
012 Insurance limit.....
016 F u t u r e
017 + days
018 D u e
020 Last dunn.notice...
021 Dunning level....
030   S U M M A R Y  S H E E T
031  =====================
050 Name           Page
051 Burton Snowboard
SELECTION TEXTS:
SUMMEN   Output totals only
TAGE1    Due date I until
TAGE2    Due date II until
TAGE3    Due date III until
TAGE4    Due date IV until
TABLES: T001, KNA1, KNB1, KNB5, BSID, BSEGA, RFPDO1, KNVP,
         T014,                     "credit control areas              JAM
         KNVK,                     "cust master - contact partner     JAM
         T014T,  "Credit control areas names
         BKPF,   "TONY ISSUE 4743
         TVKO,   "TONY ISSUE 4743
         KNKK.                     "cust master - credit mgmt         JAM
TYPES: BEGIN OF TOT_TYPE,                                  "DEVK939546
          BUKRS LIKE LFB1-BUKRS,                            "DEVK939546
          GSBER LIKE BSIK-GSBER,                            "DEVK939546
          KKBER LIKE BSID-KKBER,
          RAST1 TYPE P,                                     "DEVK939546
          RAST2 TYPE P,                                     "DEVK939546
          RAST3 TYPE P,                                     "DEVK939546
          RAST4 TYPE P,                                     "DEVK939546
          RAST5 TYPE P,                                     "DEVK939546
          RAST6 TYPE P,                                     "DEVK939546
          RAST7 TYPE P,                                     "DEVK939546
        END OF TOT_TYPE,                                    "DEVK939546
        TOT_TAB TYPE TOT_TYPE OCCURS 0.                     "DEVK939546
CONSTANTS:
         C_FALSE    TYPE I VALUE 0,                                  "JAM
         C_TRUE     TYPE I VALUE 1.
DATA: BEGIN OF GTAB OCCURS 1000,
          SUPER(10) TYPE C,                                         "TONYC
          REP(10) TYPE C,                                           "TONYC
          FILKD(10),        "tonyc show buying groups
          LAND1 LIKE KNA1-LAND1,
          GSBER LIKE BSIK-GSBER,
          REGIO LIKE KNA1-REGIO,
          NAME1 LIKE KNA1-NAME1,
          NAME2 LIKE KNA1-NAME2,
          ORT01  LIKE KNA1-ORT01,
          TELF1      LIKE KNVK-TELF1,       "telephone number         JAM
          CONT_NAME1 LIKE KNVK-NAME1,       "contact name             JAM
          NAMEV      LIKE KNVK-NAMEV,       "contact name             JAM
          KUNNR LIKE KNA1-KUNNR,                                   "TONYC
          BUKRS LIKE LFB1-BUKRS,                                   "TONYC
          KKBER LIKE BSID-KKBER,     "tonyc issue #2500
          ZTERM LIKE KNB1-ZTERM,     "tonyc issue #2500
          KLIMK_TXT(22)   TYPE C,           "credit limit             JAM
          WAERS      LIKE T014-WAERS,       "currency                 JAM
          SORT_GSB,                                               "TONYC
          RAST1 TYPE P,
          RAST2 TYPE P,
          RAST3 TYPE P,
          RAST4 TYPE P,
          RAST5 TYPE P,
          RAST6 TYPE P,
          RAST7 TYPE P,
          T_IND,
       END OF GTAB.
DATA HOLD_NAME(40).
DATA  HOLD_BUKRS LIKE T001-BUKRS.                                 "tonyc
DATA  GOOD_SUPER_REP.                                             "tonyc
DATA: HOLD_REP LIKE KNA1-KUNNR,                                   "tonyc
       SUPER_NAME LIKE KNA1-NAME1,                                 "tonyc
       REP_NAME LIKE KNA1-NAME1.                                   "tonyc
DATA  NAME_LENGTH(2) TYPE C.                                      "tonyc
DATA  BACKSLASH(3) VALUE ' / '.                                   "tonyc
DATA  REPS_INFO(70) TYPE C.                                       "tonyc
DATA  REPORT_TYPE(12) TYPE C.
DATA:   C_CREDIT_ABTNR LIKE KNVK-ABTNR.    "dept 003 = credit
DATA  Z_HOLD_LIMIT(22) TYPE N.  "tonyc issue#2216
DATA  Z_DESCRIPTION(18).   "tonyc issue#2216
DATA  WRITE_TOTAL.
DATA  HOLD_KLIMK LIKE KNKK-KLIMK.
DATA  HOLD_KLIMK2(22) TYPE C.
DATA  HOLD-CTLPC LIKE KNKK-CTLPC.
DATA  HOLD-CTLPC-TEXT LIKE T691T-RTEXT.
DATA  HOLD_ZTERM LIKE KNVV-ZTERM.
DATA  TOTAL_RAST7 TYPE P.
DATA  TOTAL_RAST2 TYPE P.
DATA  TOTAL_RAST3 TYPE P.
DATA  TOTAL_RAST4 TYPE P.
DATA  TOTAL_RAST5 TYPE P.
DATA  TOTAL_RAST6 TYPE P.
DATA  TOTAL_RAST1 TYPE P.
DATA  HOLD_BUKRS2 LIKE T001-BUKRS.
DATA  HOLD_KKBER LIKE BSID-KKBER.
DATA  HOLD_KKBER_DESC LIKE T014T-KKBTX.
DATA  HOLD_KKBER_DESC2 LIKE T014T-KKBTX.
DATA  HOLD_KUNNR2 LIKE KNA1-KUNNR.
DATA  L_FIRST_DAY_OF_FISCAL LIKE SY-DATUM. "tonyc issue #3047
DATA: STAB TYPE TOT_TAB WITH HEADER LINE,                  "DEVK939546
       RTOT TYPE TOT_TAB WITH HEADER LINE,                  "DEVK939546
       STOT TYPE TOT_TAB WITH HEADER LINE,                  "DEVK939546
       OP,
       MAXMANDT LIKE DD_STIDA,
       MAXMANST TYPE P,
    SUMKLIMB TYPE P,
       SUMVLIBB TYPE P,
       VERZUG TYPE P,
       OBAD TYPE P,
       BLOCK_CNT TYPE P,
       INTENS,
       ONEBYTE(1) TYPE C,
       TAGE1A LIKE RFPDO1-ALLGFAEL,
       TAGE2A LIKE RFPDO1-ALLGFAEL,
       TAGE3A LIKE RFPDO1-ALLGFAEL,
        HOLD_KUNNR  LIKE KNA1-KUNNR,                          "tonyc
        HOLD_SUPER  LIKE KNA1-KUNNR,                          "tonyc
        HOLD_REP2  LIKE KNA1-KUNNR,                          "tonyc
        SUPER_REP   LIKE KNA1-KUNNR,                          "tonyc
       TEMP_TELF1      LIKE KNA1-TELF1,                              "JAM
       IT_T014         LIKE T014 OCCURS 0 WITH HEADER LINE,          "JAM
       G_KLIMK_TXT     LIKE GTAB-KLIMK_TXT,                          "JAM
       G_WAERS         LIKE GTAB-WAERS,                              "JAM
       G_CONT_NAME(50) TYPE C.                                       "JA
DATA  FILL_REP_INFO.
   BC     SUNILP      05/14/2007
DATA: BEGIN OF ITAB_VBRP OCCURS 0.
         INCLUDE STRUCTURE VBRP.
DATA:  END OF ITAB_VBRP.
DATA: T_PERC TYPE F,
       SUM_NETWR LIKE VBRP-NETWR.
*DATA: GTAB_LINES LIKE GTAB OCCURS 0 WITH HEADER LINE.
DATA: BEGIN OF GTAB_LINES OCCURS 0.
         INCLUDE STRUCTURE GTAB.
DATA:  IND(1),
        OBAD TYPE P.
DATA:  END OF GTAB_LINES.
DATA: BEGIN OF ITAB_VBRP1 OCCURS 0,
       VBELN LIKE VBRP-VBELN,
       NETWR LIKE VBRP-NETWR,
       ZZMREP LIKE VBRP-ZZMREP,       "Super Rep
       ZZLREP LIKE VBRP-ZZLREP,       "Rep
       PERC TYPE F,
       END OF ITAB_VBRP1.
   EC     SUNILP      05/14/2007
BEGIN_OF_BLOCK 2.
PARAMETERS: REGIO  LIKE KNA1-REGIO.
PARAMETERS: CONSOL AS CHECKBOX.                      "TONYC
PARAMETERS: P_KKBER AS CHECKBOX,                      "TONYC
             P_CONV AS CHECKBOX.  "tonyc issue #3047
PARAMETERS: SUMMEN LIKE RFPDO1-ALLGSUMM,
             TAGE1 LIKE RFPDO1-ALLGFAEL DEFAULT '30',
             TAGE2 LIKE RFPDO1-ALLGFAEL DEFAULT '60',
             TAGE3 LIKE RFPDO1-ALLGFAEL DEFAULT '90',
             TAGE4 LIKE RFPDO1-ALLGFAEL DEFAULT '120'.
END_OF_BLOCK 2.
BEGIN_OF_BLOCK 3.
SELECT-OPTIONS:   P_SUPREP FOR KNVP-KUNNR,   "Super REP      "DEVK939546
                   P_REP FOR KNVP-KUNNR,   "SALES REP         "DEVK939546
                   P_VKORG FOR TVKO-VKORG,  "TONYC ISSUE 4743
                   P_LOTKZ FOR BKPF-LOTKZ.  "TONYC ISSUE 4743
END_OF_BLOCK 3.
INITIALIZATION.                                                     "JAM
   PERFORM LOAD_T014.                                                "JAM
     refresh dd_augdt.
     clear dd_augdt.
     dd_augdt-option = 'EQ'.
     dd_augdt-sign   = 'I'.
     dd_augdt-low    = ' '.
    append dd_augdt.
AT SELECTION-SCREEN.
   IF CONSOL = 'X'.
     IF NOT P_SUPREP[] IS INITIAL.                          "DEVK939546
       MESSAGE E999 WITH 'Consolidated report not allowed w/ Super Rep'.
     ENDIF.
   ENDIF.
CHECK IF THE REP INFO IS ADDED OR NOT - VS
   IF NOT P_SUPREP IS INITIAL OR"TONY ISSUE 4743
      NOT P_REP IS INITIAL."TONY ISSUE 4743
     FILL_REP_INFO = 'X'."TONY ISSUE 4743
   ENDIF."TONY ISSUE 4743
START-OF-SELECTION.
get_frame_title 2.
add function module to track usage   JD  10/13/98 *****
   CALL FUNCTION 'Z_RUN_LOG'
     EXCEPTIONS
       OTHERS = 1.
*IF NOT P_SUPREP IS INITIAL AND NOT P_REP IS INITIAL.
   P_SUPREP = ' '.
*ENDIF.
GET KNA1 FIELDS LAND1 REGIO KUNNR NAME1 NAME2 ORT01 TELF1.          "JAM
new-page.
skip.
   TEMP_TELF1 = KNA1-TELF1.
   MAXMANDT = '19000101'.
   MAXMANST = 0.
   SUMVLIBB = 0.
   PERFORM GET_CUST_CONTACT.                                         "JAM
Check sales rep-                           NES071797
Get any valid record and exit.
IF NOT p_suprep[] IS INITIAL. "DEVK939546  "TONY ISSUE 4743 start
   good_super_rep = ' '.
   SELECT kunn2 INTO super_rep FROM knvp UP TO 1 ROWS
     WHERE
       kunnr = kna1-kunnr AND
       parvw = 'ZS' AND
       kunn2 IN p_suprep.
     EXIT.
   ENDSELECT.
   IF sy-subrc = 0.
     good_super_rep = 'X'.
     gtab-super = super_rep.
     super_rep = ' '.
   ENDIF.
   CHECK good_super_rep = 'X'.
   SELECT kunn2 INTO gtab-rep FROM knvp UP TO 1 ROWS
   WHERE
     kunnr = kna1-kunnr AND
     parvw = 'ZR' AND
     kunn2 IN p_rep.
     EXIT.
   ENDSELECT.
   CHECK sy-subrc = 0.
ELSEIF NOT p_rep[] IS INITIAL.  "DEVK939546
   SELECT kunn2 INTO gtab-rep FROM knvp UP TO 1 ROWS
     WHERE
       kunnr = kna1-kunnr AND
       parvw = 'ZR' AND
       kunn2 IN p_rep.
     EXIT.
   ENDSELECT.
   CHECK sy-subrc = 0.
ENDIF.                      "TONY ISSUE 4743 end
GET KNB1 FIELDS BUKRS VLIBB ZTERM.  "tonyc #2500
   GTAB-BUKRS = KNB1-BUKRS.
GTAB-ZTERM = KNB1-ZTERM.
   SUMVLIBB = SUMVLIBB + KNB1-VLIBB.
GET KNB5.
   IF KNB5-MADAT > MAXMANDT.
     MAXMANDT = KNB5-MADAT.
   ENDIF.
   IF KNB5-MAHNS > MAXMANST.
     MAXMANST = KNB5-MAHNS.
   ENDIF.
SUMKLIMB = SUMKLIMB + KLIMB.
GET BSID.
   CHECK BSID-BSTAT = SPACE.
field was intended for Business Area, changed to use Currency
   GTAB-GSBER = BSID-WAERS.
   IF P_KKBER = 'X'.                 "TONYC ISSUE #2500
     IF BSID-KKBER = ' '.
       GTAB-KKBER = BSID-BUKRS.
     ELSE.
       GTAB-KKBER       = BSID-KKBER.  "TONYC ISSUE #2500
     ENDIF.
   ENDIF.                            "TONYC ISSUE #2500
   SELECT SINGLE * FROM BKPF  "TONY ISSUE 4743
      WHERE BUKRS =  BSID-BUKRS "TONY ISSUE 4743
        AND BELNR = BSID-BELNR "TONY ISSUE 4743
        AND GJAHR = BSID-GJAHR. "TONY ISSUE 4743
  BC      SUNILP      05/14/2007
   IF BKPF-XREF2_HD IS NOT INITIAL.
     CHECK BKPF-XREF2_HD IN P_SUPREP. "TONY ISSUE 4743
   ELSE.
     IF P_REP[] IS INITIAL.
       REFRESH: ITAB_VBRP, ITAB_VBRP1.
       IF NOT BKPF-XBLNR IS INITIAL.
         SELECT * FROM VBRP INTO ITAB_VBRP WHERE VBELN = BKPF-XBLNR.
           APPEND ITAB_VBRP. CLEAR ITAB_VBRP.
         ENDSELECT.
        CHECK ITAB_VBRP[] IS NOT INITIAL.
         CLEAR: SUM_NETWR.
         LOOP AT ITAB_VBRP.
           CHECK ITAB_VBRP-ZZMREP IN P_SUPREP.
           CHECK ITAB_VBRP-ZZLREP IN P_REP.
           MOVE-CORRESPONDING ITAB_VBRP TO ITAB_VBRP1.
           COLLECT: ITAB_VBRP1.
           SUM_NETWR = SUM_NETWR + ITAB_VBRP-NETWR.
           CLEAR ITAB_VBRP.
         ENDLOOP.
        CHECK ITAB_VBRP1[] IS NOT INITIAL.
         LOOP AT ITAB_VBRP1.
           CLEAR: T_PERC.
           T_PERC = ( ITAB_VBRP1-NETWR / SUM_NETWR ).
           ITAB_VBRP1-PERC = T_PERC.
           MODIFY ITAB_VBRP1 INDEX SY-TABIX TRANSPORTING PERC.
         ENDLOOP.
       ENDIF.
     ENDIF.
   ENDIF.
  EC      SUNILP      05/14/2007
   IF FILL_REP_INFO = 'X'.
     GTAB-SUPER = BKPF-XREF2_HD. "TONY ISSUE 4743   "MOVE THE CONTENTS OF XREF2_HD TO GTAB INTERNAL TABLE - VS
   ENDIF.
  BC      SUNILP      05/14/2007
   IF BKPF-XREF1_HD IS NOT INITIAL.
     CHECK BKPF-XREF1_HD IN P_REP. "TONY ISSUE 4743  " ELSE MOVE THE CONTENTS OF - VS
   ELSE.
     REFRESH: ITAB_VBRP, ITAB_VBRP1.
     IF NOT BKPF-XBLNR IS INITIAL.
       SELECT * FROM VBRP INTO ITAB_VBRP WHERE VBELN = BKPF-XBLNR.
         APPEND ITAB_VBRP. CLEAR ITAB_VBRP.
       ENDSELECT.
        CHECK ITAB_VBRP[] IS NOT INITIAL.
       CLEAR: SUM_NETWR.
       LOOP AT ITAB_VBRP.
         CHECK ITAB_VBRP-ZZMREP IN P_SUPREP.
         CHECK ITAB_VBRP-ZZLREP IN P_REP.
         MOVE-CORRESPONDING ITAB_VBRP TO ITAB_VBRP1.
         COLLECT: ITAB_VBRP1.
         SUM_NETWR = SUM_NETWR + ITAB_VBRP-NETWR.
         CLEAR ITAB_VBRP.
       ENDLOOP.
        CHECK ITAB_VBRP1[] IS NOT INITIAL.
       LOOP AT ITAB_VBRP1.
         CLEAR: T_PERC.
         T_PERC = ( ITAB_VBRP1-NETWR / SUM_NETWR ).
         ITAB_VBRP1-PERC = T_PERC.
         MODIFY ITAB_VBRP1 INDEX SY-TABIX TRANSPORTING PERC.
       ENDLOOP.
     ENDIF.
   ENDIF.
  EC      SUNILP      05/14/2007
   IF FILL_REP_INFO = 'X'.
     GTAB-REP = BKPF-XREF1_HD. "TONY ISSUE 4743
   ENDIF.
   CHECK BKPF-LOTKZ    IN P_LOTKZ. "TONY ISSUE 4743
   CHECK BKPF-BRNCH    IN P_VKORG. "TONY ISSUE 4743
   SELECT SINGLE FILKD INTO GTAB-FILKD FROM BSEG
      WHERE BUKRS =  BSID-BUKRS
        AND BELNR = BSID-BELNR
        AND GJAHR = BSID-GJAHR
        AND BUZEI = BSID-BUZEI.
gtab-gsber = bsid-gsber.
get rep info for each bsid record
IF NOT P_SUPREP IS INITIAL.                                  "tonyc
    SELECT KUNNR FROM VBPA INTO HOLD_REP UP TO 1 ROWS         "tonyc
          WHERE VBELN = BSID-VBELN                            "tonyc
          AND PARVW = 'ZR'.                                   "tonyc
    ENDSELECT.                                                "tonyc
    IF NOT P_REP IS INITIAL.                                  "tonyc
      CHECK HOLD_REP = P_REP.                                 "tonyc
    ENDIF.                                                    "tonyc
    GTAB-REP = HOLD_REP.                                      "tonyc
    HOLD_REP = ' '.                                           "tonyc
ENDIF.                                                       "tonyc
   PERFORM GET_KNKK_INFO.                                            "JAM
   GTAB-KLIMK_TXT = G_KLIMK_TXT.
   GTAB-WAERS     = G_WAERS.
   GTAB-LAND1 = KNA1-LAND1.
   GTAB-REGIO = KNA1-REGIO.
   GTAB-KUNNR = KNA1-KUNNR.
   GTAB-NAME1 = KNA1-NAME1.
   GTAB-NAME2 = KNA1-NAME2.
   GTAB-ORT01 = KNA1-ORT01.
*if there is no phone number for the contact, pull the phone
*number from the sold-to
   IF KNVK-TELF1 = ' '.
     GTAB-TELF1      = TEMP_TELF1.
   ELSE.
     GTAB-TELF1      = KNVK-TELF1.                                 "JAM
   ENDIF.
   GTAB-CONT_NAME1 = KNVK-NAME1.
   GTAB-NAMEV      = KNVK-NAMEV.
verzug = bsega-netdt - dd_stida.
   VERZUG = DD_STIDA - BSEGA-NETDT.     "days past due calculation
   OP = 'X'.
   GTAB-RAST2 = GTAB-RAST3 = GTAB-RAST4 = 0.
   GTAB-RAST5 = GTAB-RAST6 = OBAD = GTAB-RAST7 = 0.
   IF VERZUG LE 0.                      "future due
     GTAB-RAST1 = BSEGA-WRSHB.
   ELSE.
     IF VERZUG LE TAGE1.                "past due 1 to tage1 days
       GTAB-RAST1 = BSEGA-WRSHB.
       GTAB-RAST2 = BSEGA-WRSHB.
       OBAD       = BSEGA-WRSHB.
     ELSE.
       IF VERZUG LE TAGE2.              "past due tage1 to tage2 days
         GTAB-RAST1 = BSEGA-WRSHB.
         GTAB-RAST3 = BSEGA-WRSHB.
         OBAD       = BSEGA-WRSHB.
       ELSE.
         IF VERZUG LE TAGE3.            "past due tage2 to tage3 days
           GTAB-RAST1 = BSEGA-WRSHB.
           GTAB-RAST4 = BSEGA-WRSHB.
           OBAD       = BSEGA-WRSHB.
         ELSE.
           IF VERZUG LE TAGE4.          "past due tage3 to tage4 days
             GTAB-RAST1 = BSEGA-WRSHB.
             GTAB-RAST5 = BSEGA-WRSHB.
             OBAD       = BSEGA-WRSHB.
           ELSE.
             IF VERZUG GT TAGE4.        "past due > tage4 days
               GTAB-RAST1 = BSEGA-WRSHB.
               GTAB-RAST6 = BSEGA-WRSHB.
               OBAD       = BSEGA-WRSHB.
             ENDIF.
           ENDIF.
         ENDIF.
       ENDIF.
     ENDIF.
   ENDIF.
   GTAB-RAST7 = GTAB-RAST1 - OBAD.
stab = gtab.
   MOVE-CORRESPONDING GTAB TO STAB.
  BC     SUNILP       05/15/2007
   IF ITAB_VBRP1[] IS NOT INITIAL.
     GTAB-T_IND = 'X'.
     LOOP AT ITAB_VBRP1.
       MOVE-CORRESPONDING GTAB TO GTAB_LINES.
       GTAB_LINES-SORT_GSB =  '1'.
       GTAB_LINES-SUPER = ITAB_VBRP1-ZZMREP.
       GTAB_LINES-REP = ITAB_VBRP1-ZZLREP.
       GTAB_LINES-RAST1 = GTAB_LINES-RAST1 * ITAB_VBRP1-PERC.
       GTAB_LINES-RAST2 = GTAB_LINES-RAST2 * ITAB_VBRP1-PERC.
       GTAB_LINES-RAST3 = GTAB_LINES-RAST3 * ITAB_VBRP1-PERC.
       GTAB_LINES-RAST4 = GTAB_LINES-RAST4 * ITAB_VBRP1-PERC.
       GTAB_LINES-RAST5 = GTAB_LINES-RAST5 * ITAB_VBRP1-PERC.
       GTAB_LINES-RAST6 = GTAB_LINES-RAST6 * ITAB_VBRP1-PERC.
       GTAB_LINES-RAST7 = GTAB_LINES-RAST7 * ITAB_VBRP1-PERC.
  GTAB_LINES-OBAD  = GTAB_LINES-OBAD  * ITAB_VBRP1-PERC.
       COLLECT: GTAB_LINES.
     ENDLOOP.
   ELSE.
     MOVE-CORRESPONDING GTAB TO GTAB_LINES.
     GTAB_LINES-T_IND =  'X'.
     GTAB_LINES-SORT_GSB =  '1'.
     IF GTAB_LINES-SUPER IN P_SUPREP OR GTAB_LINES-REP IN P_REP.
       COLLECT: GTAB_LINES.
     ENDIF.
   ENDIF.
  EC     SUNILP       05/15/2007
gtab-sort_gsb = stab-sort_gsb = '0'.
collect: gtab, stab.
gtab-gsber = stab-gsber = '****'.
   GTAB-SORT_GSB =  '1'.
   IF REGIO = SPACE OR REGIO = GTAB-REGIO.
     IF GTAB_LINES-SUPER IN P_SUPREP OR GTAB_LINES-REP IN P_REP.
       COLLECT: GTAB, STAB.
     ENDIF.
   ENDIF.
END-OF-SELECTION.
   TAGE1A = TAGE1 + 1.
   TAGE2A = TAGE2 + 1.
   TAGE3A = TAGE3 + 1.
   IF  SUMMEN = ' '.
   sort gtab by bukrs land1 regio kunnr gsber sort_gsb.
  sort gtab by bukrs land1 regio name1 kunnr gsber sort_gsb.      "JAM
     IF CONSOL = 'X'.
       SORT GTAB BY LAND1 REGIO NAME1 KUNNR BUKRS KKBER GSBER SORT_GSB.
       "TONYC
       REPORT_TYPE = 'consolidated'.
     ELSEIF NOT P_SUPREP[] IS INITIAL.                      "DEVK939546
       SORT GTAB
         BY SUPER REP NAME1 BUKRS KKBER LAND1 REGIO NAME1 GSBER SORT_GSB.
  BC   SUNILP   05/15/2007
       SORT GTAB_LINES
         BY SUPER REP NAME1 BUKRS KKBER LAND1 REGIO NAME1 GSBER SORT_GSB.
  EC   SUNILP   05/15/2007
       REPORT_TYPE = 'super rep'.
       CLEAR STAB.   "tonyc 03/06/2004
       REFRESH STAB. "tonyc 03/06/2004
     ELSEIF NOT P_REP[] IS INITIAL.                         "DEVK939546
       SORT GTAB                                            "DEVK939546
         BY REP NAME1 BUKRS KKBER LAND1 REGIO NAME1 GSBER SORT_GSB.
                                                            "DEVK939546
  BC   SUNILP   05/15/2007
       SORT GTAB_LINES
         BY REP NAME1 BUKRS KKBER LAND1 REGIO NAME1 GSBER SORT_GSB.
  EC   SUNILP   05/15/2007
       REPORT_TYPE = 'rep'.                                 "DEVK939546
       CLEAR STAB.   "tonyc 03/06/2004
       REFRESH STAB. "tonyc 03/06/2004
     ELSE.
       SORT GTAB BY BUKRS KKBER LAND1 REGIO NAME1 KUNNR GSBER SORT_GSB.
  BC   SUNILP   05/15/2007
       SORT GTAB_LINES BY BUKRS KKBER LAND1 REGIO NAME1 KUNNR GSBER SORT_GSB.
  EC   SUNILP   05/15/2007
       REPORT_TYPE = 'regular'.
     ENDIF.
  BC   SUNILP   05/15/2007
     DELETE ADJACENT DUPLICATES FROM GTAB COMPARING BUKRS NAME1.
     LOOP AT GTAB_LINES.
       IF P_REP[] IS INITIAL.
         IF GTAB_LINES-SUPER NOT IN P_SUPREP.
           DELETE GTAB_LINES.
         ENDIF.
       ELSE.
         IF GTAB_LINES-SUPER NOT IN P_SUPREP OR GTAB_LINES-REP NOT IN P_REP.
           DELETE GTAB_LINES.
         ENDIF.
       ENDIF.
     ENDLOOP.
     LOOP AT GTAB.
       READ TABLE GTAB_LINES WITH KEY BUKRS = GTAB-BUKRS
                                      NAME1 = GTAB-NAME1.
       IF SY-SUBRC NE '0'.
         DELETE GTAB.
       ENDIF.
     ENDLOOP.
  EC   SUNILP   05/15/2007
     LOOP AT GTAB.
       MOVE GTAB-BUKRS TO T001-BUKRS. READ TABLE T001.
       RESERVE 5 LINES.
       CASE REPORT_TYPE.
         WHEN 'regular'.
           IF HOLD_BUKRS <> GTAB-BUKRS.
             IF SY-TABIX > 1.                                   "TONYC
               NEW-PAGE. SKIP.                                 "TONYC
             ENDIF.                                             "TONYC
           ENDIF.
           PERFORM WRITE_CUST_INFO.                               "TONYC
           PERFORM WRITE_DETAIL.
         hold_bukrs = gtab-bukrs.                               "tonyc
         WHEN 'consolidated'.
           IF HOLD_KUNNR <> GTAB-KUNNR.                           "TONYC
             PERFORM WRITE_CUST_INFO.                           "TONYC
           ENDIF.                                                 "TONYC
           HOLD_KUNNR = GTAB-KUNNR.                               "TONYC
           PERFORM WRITE_DETAIL.
         WHEN 'super rep'.
          IF GTAB-T_IND NE 'X'.
   BC     SUNILP     05/22/2007
            READ TABLE GTAB_LINES WITH KEY BUKRS = GTAB-BUKRS
                                           NAME1 = GTAB-NAME1.
   EC     SUNILP     05/22/2007
            IF ( HOLD_SUPER <> GTAB_LINES-SUPER ) OR
               ( HOLD_REP2 <> GTAB_LINES-REP ).
              NEW-PAGE.
              PERFORM GET_AND_WRITE_SUPERINFO.
            ENDIF.
            HOLD_REP2 = GTAB_LINES-REP.
            HOLD_SUPER = GTAB_LINES-SUPER.
            IF HOLD_KUNNR <> GTAB-KUNNR.                           "TONYC
              WRITE :/.                                           "TONYC
              ULINE.                                              "TONYC
              PERFORM WRITE_CUST_INFO.                            "TONYC
            ENDIF.                                                 "TONYC
            HOLD_KUNNR = GTAB-KUNNR.                               "TONYC
            PERFORM WRITE_DETAIL.                                  "TONYC
            AT END OF REP.                                 "DEVK939546
              SKIP.                                        "DEVK939546
              RESERVE 7 LINES.                             "DEVK939546
              FORMAT COLOR COL_TOTAL INTENSIFIED.          "DEVK939546
              WRITE: / 'Summary for Rep:',                 "DEVK939546
                        GTAB-REP, '/', REP_NAME, 132 ONEBYTE."DEVK939546
              PERFORM WRITE_TOTS TABLES RTOT.              "DEVK939546
              REFRESH RTOT.                                "DEVK939546
            ENDAT.                                         "DEVK939546
            AT END OF SUPER.                               "DEVK939546
              CLEAR STAB.   "tonyc 03/06/2004
              REFRESH STAB. "tonyc 03/06/2004
              NEW-PAGE. SKIP.                              "DEVK939546
              FORMAT COLOR COL_TOTAL INTENSIFIED.          "DEVK939546
              WRITE: / 'Summary for Super Rep:',           "DEVK939546
                     GTAB-SUPER, '/', SUPER_NAME, 132 ONEBYTE."DEVK939546
              PERFORM WRITE_TOTS TABLES STOT.              "DEVK939546
              REFRESH STOT.                                "DEVK939546
            ENDAT.                                         "DEVK939546
          ELSE.
           LOOP AT GTAB_LINES WHERE BUKRS = GTAB-BUKRS
                                AND NAME1 = GTAB-NAME1.
             IF ( HOLD_SUPER <> GTAB_LINES-SUPER ) OR
                ( HOLD_REP2 <> GTAB_LINES-REP ).
               NEW-PAGE.
               PERFORM GET_AND_WRITE_SUPERINFO.
             ENDIF.
             HOLD_REP2 = GTAB_LINES-REP.
             HOLD_SUPER = GTAB_LINES-SUPER.
             IF HOLD_KUNNR <> GTAB_LINES-KUNNR.
               WRITE :/.
               ULINE.
               PERFORM WRITE_CUST_INFO.
             ENDIF.
             HOLD_KUNNR = GTAB_LINES-KUNNR.
             PERFORM WRITE_DETAIL.
             AT END OF REP.
               SKIP.
               RESERVE 7 LINES.
               FORMAT COLOR COL_TOTAL INTENSIFIED.
               WRITE: / 'Summary for Rep:',
                         GTAB_LINES-REP, '/', REP_NAME, 132 ONEBYTE.
               PERFORM WRITE_TOTS TABLES RTOT.
               REFRESH RTOT.
             ENDAT.
             AT END OF SUPER.
               CLEAR STAB.   "tonyc 03/06/2004
               REFRESH STAB. "tonyc 03/06/2004
               NEW-PAGE. SKIP.
               FORMAT COLOR COL_TOTAL INTENSIFIED.
               WRITE: / 'Summary for Super Rep:',
                      GTAB_LINES-SUPER, '/', SUPER_NAME, 132 ONEBYTE.
               PERFORM WRITE_TOTS TABLES STOT.
               REFRESH STOT.
             ENDAT.
           ENDLOOP.
          ENDIF.
         WHEN 'rep'.                                        "DEVK939546
           LOOP AT GTAB_LINES WHERE BUKRS = GTAB-BUKRS
                                AND NAME1 = GTAB-NAME1.
             IF HOLD_REP2 <> GTAB_LINES-REP.                "DEVK939546
               NEW-PAGE.                                    "DEVK939546
               PERFORM GET_AND_WRITE_REPINFO.               "DEVK939546
             ENDIF.                                         "DEVK939546
             HOLD_REP2 = GTAB_LINES-REP.                    "DEVK939546
             IF HOLD_KUNNR <> GTAB_LINES-KUNNR.             "DEVK939546
               WRITE :/.                                    "DEVK939546
               ULINE.                                       "DEVK939546
               PERFORM WRITE_CUST_INFO.                     "DEVK939546
             ENDIF.                                         "DEVK939546
             HOLD_KUNNR = GTAB_LINES-KUNNR.                 "DEVK939546
             PERFORM WRITE_DETAIL.                          "DEVK939546
             AT END OF REP.                                 "DEVK939546
               SKIP.                                        "DEVK939546
               RESERVE 7 LINES.                             "DEVK939546
               FORMAT COLOR COL_TOTAL INTENSIFIED.          "DEVK939546
               WRITE: / 'Summary for Rep:',                 "DEVK939546
                         GTAB_LINES-REP, '/', REP_NAME, 132 ONEBYTE."DEVK939546
               PERFORM WRITE_TOTS TABLES RTOT.              "DEVK939546
               REFRESH RTOT.                                "DEVK939546
             ENDAT.                                         "DEVK939546
           ENDLOOP.
       ENDCASE.
     ENDLOOP.
   ENDIF.
   OP = ' '.
   REFRESH GTAB.
   IF NOT REPORT_TYPE = 'super rep'.
     ULINE.
   ENDIF.
   SKIP 1.
   IF  SUMMEN = ' '.  "if 'output totals only' bypass new-page
     NEW-PAGE. SKIP.
   ENDIF.
   WRITE: /25 TEXT-030, 132 ONEBYTE, /25 TEXT-031, 132 ONEBYTE.
   PERFORM WRITE_TOTS TABLES STAB.                          "DEVK939546
TOP-OF-PAGE.
   INTENS = SPACE.
   FORMAT COLOR COL_HEADING INTENSIFIED ON.
   WRITE: / SY-VLINE, 1 TEXT-001, DD_STIDA, 75 TEXT-051, 132 SY-VLINE.
   ULINE.
   WRITE: / SY-VLINE, 13 SY-VLINE, 30 SY-VLINE,
                47 SY-VLINE, 58 TEXT-003, 81 SY-VLINE,
          92 TEXT-003, 115 SY-VLINE, 118  TEXT-003, 132 SY-VLINE,
          / SY-VLINE, 02 TEXT-004, 13 SY-VLINE, TEXT-002,
                30 SY-VLINE, 32 TEXT-018, 47 SY-VLINE,
              50 '1', 54 TEXT-040, 57 TAGE1, 64 SY-VLINE,   " 65 tage2,
              67 TAGE1A, 72 TEXT-040, 75 TAGE2,
            81 SY-VLINE, 83 TAGE2A, 89 TEXT-040, 91 TAGE3, 98 SY-VLINE,
           101 TAGE3A, 107 TEXT-040, 110 TAGE4, 115 SY-VLINE,
                               117 TAGE4, 123  TEXT-017, 132 SY-VLINE.
   ULINE.
   SKIP 1.
   SUMMARY.
   FORMAT COLOR COL_HEADING INTENSIFIED OFF.
      FORM write_tots                                               *
-->  PTAB                                                          *
FORM WRITE_TOTS TABLES PTAB TYPE TOT_TAB.                  "DEVK939546
   CLEAR INTENS.                                            "DEVK939546
   FORMAT COLOR COL_HEADING INTENSIFIED OFF.                "DEVK939546
   IF P_CONV = 'X'. "tonyc issue #3047 begin
     WRITE /4 TEXT-101.
     WRITE: /4 TEXT-102,
            50 TEXT-100.
   ENDIF.           "tonyc issue #3047 end
   ULINE.                                                   "DEVK939546
   SORT PTAB BY BUKRS GSBER.                                "DEVK939546
   LOOP AT PTAB.                                            "DEVK939546
     IF SY-TABIX > 1.
       WRITE_TOTAL = 'X'.
     ENDIF.
     MOVE PTAB-BUKRS TO T001-BUKRS. READ TABLE T001.        "DEVK939546
     MOVE PTAB-GSBER TO T001-WAERS.                         "DEVK939546
     IF P_CONV = 'X'. "tonyc issue #3047 begin
       PERFORM CONVERT_VALUES USING STAB-RAST1
                                    STAB-GSBER.
       PERFORM CONVERT_VALUES USING STAB-RAST2
                                    STAB-GSBER.
       PERFORM CONVERT_VALUES USING STAB-RAST3
                                    STAB-GSBER.
       PERFORM CONVERT_VALUES USING STAB-RAST4
                                    STAB-GSBER.
       PERFORM CONVERT_VALUES USING STAB-RAST5
                                    STAB-GSBER.
       PERFORM CONVERT_VALUES USING STAB-RAST6
                                    STAB-GSBER.
       PERFORM CONVERT_VALUES USING STAB-RAST7
                                    STAB-GSBER.
     ENDIF.  "TOnyc issue #3047 end
     MOVE-CORRESPONDING PTAB TO STAB.
     COLLECT STAB.
     IF P_KKBER = 'X'.        "TONYC ISSUE #2500
       CLEAR HOLD_KKBER_DESC2.
       SELECT SINGLE KKBTX INTO HOLD_KKBER_DESC2 FROM T014T
          WHERE KKBER = STAB-KKBER AND
                SPRAS = 'E'.
       IF SY-SUBRC <> '0'.
         HOLD_KKBER_DESC2 = 'Undetermined'.
       ENDIF.
       FORMAT COLOR OFF.
       WRITE: / SY-VLINE.
       FORMAT COLOR COL_HEADING INTENSIFIED OFF.
       WRITE: 6 STAB-GSBER, HOLD_KKBER_DESC2, SY-VLINE.
       ULINE.
       FORMAT COLOR OFF.
       WRITE: / SY-VLINE.
       FORMAT COLOR COL_HEADING INTENSIFIED OFF.
       IF P_CONV = 'X'. "tonyc issue #3047 begin
         T001-WAERS = 'USD'.
       ENDIF.           "tonyc issue #3047 end
       WRITE: 13 STAB-RAST1 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) STAB-RAST7 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) STAB-RAST2 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) STAB-RAST3 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) STAB-RAST4 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) STAB-RAST5 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) STAB-RAST6 NO-ZERO CURRENCY T001-WAERS, SY-VLINE.
       HOLD_BUKRS2 = STAB-BUKRS.      "TONYC ISSUE #2500
       ULINE.
       FORMAT COLOR OFF.
       TOTAL_RAST1 = STAB-RAST1 + TOTAL_RAST1.
       TOTAL_RAST2 = STAB-RAST2 + TOTAL_RAST2.
       TOTAL_RAST3 = STAB-RAST3 + TOTAL_RAST3.
       TOTAL_RAST4 = STAB-RAST4 + TOTAL_RAST4.
       TOTAL_RAST5 = STAB-RAST5 + TOTAL_RAST5.
       TOTAL_RAST6 = STAB-RAST6 + TOTAL_RAST6.
       TOTAL_RAST7 = STAB-RAST7 + TOTAL_RAST7.
     ELSE.
       FORMAT COLOR COL_NORMAL INTENSIFIED OFF.             "DEVK939546
       IF INTENS = SPACE.                                   "DEVK939546
         FORMAT COLOR COL_NORMAL INTENSIFIED OFF.           "DEVK939546
         INTENS = 'X'.                                      "DEVK939546
       ELSE.                                                "DEVK939546
         FORMAT COLOR COL_NORMAL INTENSIFIED ON.            "DEVK939546
         INTENS = SPACE.                                    "DEVK939546
       ENDIF.                                               "DEVK939546
       WRITE: / SY-VLINE, PTAB-BUKRS, PTAB-GSBER, SY-VLINE, "DEVK939546
        (14) PTAB-RAST1 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,"DEVK939546
        (14) PTAB-RAST7 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,"DEVK939546
        (14) PTAB-RAST2 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,"DEVK939546
        (14) PTAB-RAST3 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,"DEVK939546
        (14) PTAB-RAST4 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,"DEVK939546
        (14) PTAB-RAST5 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,"DEVK939546
        (14) PTAB-RAST6 NO-ZERO CURRENCY T001-WAERS, SY-VLINE."DEVK939546
       TOTAL_RAST1 = STAB-RAST1 + TOTAL_RAST1.
       TOTAL_RAST2 = STAB-RAST2 + TOTAL_RAST2.
       TOTAL_RAST3 = STAB-RAST3 + TOTAL_RAST3.
       TOTAL_RAST4 = STAB-RAST4 + TOTAL_RAST4.
       TOTAL_RAST5 = STAB-RAST5 + TOTAL_RAST5.
       TOTAL_RAST6 = STAB-RAST6 + TOTAL_RAST6.
       TOTAL_RAST7 = STAB-RAST7 + TOTAL_RAST7.
     ENDIF.
   ENDLOOP.                                                 "DEVK939546
   ULINE.                                                   "DEVK939546
   IF P_KKBER = 'X'.        "TONYC ISSUE #2500
     IF P_CONV = 'X'.  "tonyc issue #3047 begin
       FORMAT COLOR OFF.
       FORMAT COLOR COL_HEADING INTENSIFIED OFF.
       WRITE: SY-VLINE,
            6 'TOTAL                                   ', SY-VLINE.
       ULINE.
       FORMAT COLOR OFF.
       WRITE: / SY-VLINE.
       FORMAT COLOR COL_HEADING INTENSIFIED OFF.
       WRITE: 13 TOTAL_RAST1 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST7 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST2 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST3 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST4 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST5 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST6 NO-ZERO CURRENCY T001-WAERS, SY-VLINE.
       ULINE.
     ENDIF. "tonyc issue #3047 end
   ELSE.
     IF P_CONV = 'X'.
       FORMAT COLOR OFF.
       FORMAT COLOR COL_HEADING INTENSIFIED OFF.
       WRITE: SY-VLINE,
            6 'TOTAL                                   ', SY-VLINE.
       ULINE.
       FORMAT COLOR OFF.
       WRITE: / SY-VLINE.
       FORMAT COLOR COL_HEADING INTENSIFIED OFF.
       WRITE: 13 TOTAL_RAST1 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST7 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST2 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST3 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST4 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST5 NO-ZERO CURRENCY T001-WAERS, SY-VLINE,
       (14) TOTAL_RAST6 NO-ZERO CURRENCY T001-WAERS, SY-VLINE.
       ULINE.
     ENDIF.
   ENDIF.
   SKIP 1.                                                  "DEVK939546
ENDFORM.                                                   "DEVK939546
*&      Form  GET_KNKK_INFO
      text
-->  p1        text
<--  p2        text
FORM GET_KNKK_INFO.
   CLEAR: G_WAERS,
          G_KLIMK_TXT,
          KNKK-KLIMK.
get credit control area (KKBER) for comp code (BUKRS)
   SELECT SINGLE KLIMK
          INTO   KNKK-KLIMK
          FROM   KNKK
          WHERE  KUNNR = KNA1-KUNNR  AND
                 KKBER = T001-KKBER.
   IF SY-SUBRC = 0.
  get currency for cred ctrl area
     CLEAR IT_T014.
     READ TABLE IT_T014 WITH KEY KKBER = T001-KKBER BINARY SEARCH.
     G_WAERS = IT_T014-WAERS.
     WRITE KNKK-KLIMK TO G_KLIMK_TXT CURRENCY G_WAERS.
   ENDIF.
ENDFORM.                    " GET_KNKK_INFO
*&      Form  SELECT_KNKK
      text
     -->P_KKBER       Credit Limit Controlling Area

This is a FI Aging report.

Similar Messages

  • Need help with upgrading my OS from 10.5.8

    Need help with upgrading my OS. I havent upgraded the OS since I bought it and have version 10.5.8. Now I cant download Mountain Lion- or even Snow Leopard. When i downloaded the first version of SL- 10.6.1 it says i have to have 10.6 first and I cant find that.

    Start by checking if you can run Snow Leopard:
    Requirements for OS X 10.6 'Snow Leopard'
    http://support.apple.com/kb/SP575
    Whilst Apple withdrew Snow Leopard from their stores, you can still get it from Apple by calling 1-800-MY-APPLE (if you are in the USA) and they will supply the SL DVD for $20 for a single user, or $30 for a family pack that covers up to 5 Macs.  You can also purchase the code to use to download Lion from the same number (Lion requires an Intel-based Mac with a Core 2 Duo, i3, i5, i7 or Xeon processor and 2GB of RAM, running the latest version of Snow Leopard), or you can purchase Mountain Lion from the App Store - if you can run that:
    http://www.apple.com/osx/specs/
    If you are outside the US call your national Apple Helpline:
    http://support.apple.com/kb/HE57
    If you're in the UK, use this number: 0871 508 4400
    When you have installed it, run Software Update to download and install the latest updates for Snow Leopard.
    UPDATE:
    OS 10.6 Snow Leopard is once again available from the Apple Store:
    http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    and in the UK:
    http://store.apple.com/uk/product/MC573/mac-os-x-106-snow-leopard
    but nobody knows for how long it will be available.
    To use iCloud you have to upgrade all the way to Mountain Lion:
    http://support.apple.com/kb/HT4759

  • Help with creating reports - Report Builder 6.0.8.11.3

    Helllo!
    I’m using report builder 6.0.8.11.3 and the operating system is Unix, and the result is a character text file.
    Now imagine the following situation, I need to send to a letter to several companies. That letter has some lines of introduction, in the first page, as well as the company address. Below this introduction I pretend to put a list of employees and each one info. Each employee info has four lines of size. And the list can grow from one person to hundreds, which makes the letter grow from one page to more.
    This is simple to do it. The problem is that I need to know and to use in the letter, the number of current page and the total number of pages for each company.
    This letter has two kinds of pages (one with the introduction text and some employees and other with employees only), and I need to know the number of employees for each page, to calculate the total number of pages. I have the propriety “max register number per page” but is useful for a page. Assuming that I get the total number pages using some PL/SQL.
    Can you have any other solution? Or give me some help with this one?
    Thanks.

    Hi
    I have problem in RTF output.How can I get this patch3 file.I am
    not able to log on to "ftp.oracle".
    Please help.
    Vijay

  • Help with CF Reports and Dates

    Can anyone here help me with
    This
    post ? I have been waiting for 3 days and after 4 posts no one
    has been able to answer, please help!! I'm stuck on my project only
    because of this. Thank you very, very much.
    Nelson.

    Sorry, I don't use cfreport so I would not be any help with
    what may be inside the total_sales_report_by_date.cfr template.
    However, shouldn't you be executin your query inside of your .cfm
    emplate, then passing the query result to your report as a query
    parameter within your cfreport tag, rather than passing the date
    parameters in cfreportparam tags?
    Phil

  • Need help with upgrading my browser

    I need help to upgrade my window browser, which I use msn 9. I have java 1.5.02 or higher but won't be able to work with.

    Start by checking if you can run Snow Leopard:
    Requirements for OS X 10.6 'Snow Leopard'
    http://support.apple.com/kb/SP575
    Whilst Apple withdrew Snow Leopard from their stores, you can still get it from Apple by calling 1-800-MY-APPLE (if you are in the USA) and they will supply the SL DVD for $20 for a single user, or $30 for a family pack that covers up to 5 Macs.  You can also purchase the code to use to download Lion from the same number (Lion requires an Intel-based Mac with a Core 2 Duo, i3, i5, i7 or Xeon processor and 2GB of RAM, running the latest version of Snow Leopard), or you can purchase Mountain Lion from the App Store - if you can run that:
    http://www.apple.com/osx/specs/
    If you are outside the US call your national Apple Helpline:
    http://support.apple.com/kb/HE57
    If you're in the UK, use this number: 0871 508 4400
    When you have installed it, run Software Update to download and install the latest updates for Snow Leopard.
    UPDATE:
    OS 10.6 Snow Leopard is once again available from the Apple Store:
    http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    and in the UK:
    http://store.apple.com/uk/product/MC573/mac-os-x-106-snow-leopard
    but nobody knows for how long it will be available.
    To use iCloud you have to upgrade all the way to Mountain Lion:
    http://support.apple.com/kb/HT4759

  • Need advice/help with Derogatory reporting from Wells Fargo Bank (Wells Fargo is the DEVIL)

    Hello Everyone! I am new to the forum & at the ripe (old) age of 36 have finally decided to take control of my credit and financial future. Thank you in advance to those of you who contribute on here. It’s a great site.. I wish I had found it earlier in life. In any event, I am trying to increase credit scores and have two *recent* derogatoriness reported by Wells Fargo Bank for past due STUDENT LOANS. The story goes like this … my monthly payment amount due suddenly changed from $150.00 (even) per month to $150.80. Because I obtain online only statements and was busy with life (taking care of mom with dementia etc) I didn’t realize the change and logged in for a few months and only paid $150.00. Wells Fargo subsequently reported me as “30 days past due" for the months of June & July 2014 for the $1.60 balance. Really Wells Fargo???? When I realized the derogatory reporting, I of course called Wells Fargo and protested. I then followed up with a “good faith request to remove letter” or whatever it's called. I sent it to: ATTENTION: Credit Bureau Dispute Resolution Department (CBDRU)301 East 58th Street NorthSioux Falls, SD 57117-5185 However, Wells Fargo responded with “the reporting is accurate and will remain as reported.” ***HOLES! All over $1.60??!? Before the incident I was frequently late (not a very good customer) but since Jan 2015 I have paid like clockwork and ON TIME every month. So, I am planning another course of action. I am wondering if anyone knows someone at Wells Fargo that I can address another letter to or call. I refuse to believe some human with a heart will let this stand. Any (backdoor info) or suggestions are GREATLY appreciated. Oh. It may be important to note that I was also 30 days past due back in Oct 2010.  This was "valid" and I never contested that. Blessings to everyone!

    LeeRivers wrote:
    The story goes like this … my monthly payment amount due suddenly changed from $150.00 (even) per month to $150.80. Because I obtain online only statements and was busy with life (taking care of mom with dementia etc) I didn’t realize the change and logged in for a few months and only paid $150.00. Wells Fargo subsequently reported me as “30 days past due" for the months of June & July 2014 for the $1.60 balance. Really Wells Fargo????It is unfortunate but it is accurate and they're under no obligation to remove.  All you can do is to try to escalate but that may not even lead to a removal. LeeRivers wrote:
    Before the incident I was frequently late (not a very good customer) but since Jan 2015 I have paid like clockwork and ON TIME every month.That's not going to help your case.  A few months on being on time is a plus but it's not going to overcome a track record of requently being late.  Derogs tend to have a major impact in general but a creditor is probably less likely to consider goodwill in a case like this versus a customer that has always paid on time and just happened to misread the amount due a couple of times.  Good luck with it.

  • Logic Pro 8 unexpectedly quits. Help with Problem Report

    I've recently been unable to launch Logic Pro for no apparent reason. During Logic Pro's startup, it unexpectedly quits. I've tried reinstalling Logic Pro, ran Hardware Tests and ran disc utility; all have failed to solve the problem. I'm not sure what else I can do besides reinstalling the entire OS. I've included the Crash Log below. Does anyone understand what the problem might be?
    Thanks
    Process: Logic Pro [444]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 8.0.2 (1502.22)
    Build Info: Logic-15022200~9
    Code Type: PPC (Native)
    Parent Process: launchd [95]
    Date/Time: 2009-04-22 04:37:52.903 +0100
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 11
    Thread 0:
    0 libSystem.B.dylib 0x93e8d1b8 semaphorewait_signaltrap + 8
    1 ...opellerheads.rewire.library 0x1595e9a4 RWPUnregisterDeviceImp + 4364
    2 com.apple.logic.pro 0x001224b0 0x1000 + 1184944
    3 com.apple.logic.pro 0x0051b23c 0x1000 + 5349948
    4 com.apple.Foundation 0x91d40114 nsnotecallback + 372
    5 com.apple.CoreFoundation 0x948417c8 _CFXNotificationPostNotification + 920
    6 com.apple.Foundation 0x91d3d7bc -[NSNotificationCenter postNotificationName:object:userInfo:] + 88
    7 com.apple.AppKit 0x956d7d34 -[NSApplication _postDidFinishNotification] + 108
    8 com.apple.AppKit 0x956d7c4c -[NSApplication _sendFinishLaunchingNotification] + 80
    9 com.apple.AppKit 0x9565f5f0 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 260
    10 com.apple.AppKit 0x9565ee28 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 88
    11 com.apple.Foundation 0x91d60988 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 480
    12 com.apple.Foundation 0x91d6075c _NSAppleEventManagerGenericHandler + 236
    13 com.apple.AE 0x9237cce0 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 164
    14 com.apple.AE 0x9237cbe8 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 40
    15 com.apple.AE 0x9237c9ec aeProcessAppleEvent + 212
    16 com.apple.HIToolbox 0x927844ac AEProcessAppleEvent + 52
    17 com.apple.AppKit 0x9565c954 _DPSNextEvent + 1156
    18 com.apple.AppKit 0x9565c0dc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 112
    19 com.apple.AppKit 0x95655d98 -[NSApplication run] + 736
    20 com.apple.prokit 0x0227db7c NSProApplicationMain + 292
    21 com.apple.logic.pro 0x00003f18 0x1000 + 12056
    22 com.apple.logic.pro 0x00003c1c 0x1000 + 11292
    Thread 1:
    0 libSystem.B.dylib 0x93e8d158 machmsgtrap + 8
    1 libSystem.B.dylib 0x93e9407c mach_msg + 56
    2 com.apple.CoreFoundation 0x9485f554 CFRunLoopRunSpecific + 1812
    3 com.apple.CoreFoundation 0x9485fddc CFRunLoopRun + 60
    4 com.apple.DVCPROHDMuxer 0x0a0d6e3c AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 428
    5 libSystem.B.dylib 0x93ecf024 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x93e8d158 machmsgtrap + 8
    1 libSystem.B.dylib 0x93e9407c mach_msg + 56
    2 com.apple.CoreFoundation 0x9485f554 CFRunLoopRunSpecific + 1812
    3 com.apple.audio.CoreAudio 0x96b68f84 HALRunLoop::OwnThread(void*) + 212
    4 com.apple.audio.CoreAudio 0x96b68dc0 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x93ecf024 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x93e93b6c _semwaitsignal + 12
    1 libSystem.B.dylib 0x93ed03cc pthread_condwait + 1580
    2 libGLProgrammability.dylib 0x900f4bc8 glvmDoWork + 120
    3 libSystem.B.dylib 0x93ecf024 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x93ef0d20 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x9486a9c8 __CFSocketManager + 764
    Thread 5:
    0 libSystem.B.dylib 0x93e8d1b8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x93ed02d8 pthread_condwait + 1336
    2 com.apple.logic.pro 0x006a55c4 0x1000 + 6964676
    Thread 6:
    0 libSystem.B.dylib 0x93e8d1b8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x93ed02d8 pthread_condwait + 1336
    2 com.apple.logic.pro 0x006a55c4 0x1000 + 6964676
    Thread 7:
    0 libSystem.B.dylib 0x93e8d1d8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x93ed02c8 pthread_condwait + 1320
    2 com.apple.audio.CoreAudio 0x96b7a9cc HP_IOThread::WorkLoop() + 488
    3 com.apple.audio.CoreAudio 0x96b7a7cc HPIOThread::ThreadEntry(HPIOThread*) + 12
    4 com.apple.audio.CoreAudio 0x96b68dc0 CAPThread::Entry(CAPThread*) + 104
    5 libSystem.B.dylib 0x93ecf024 pthreadstart + 316
    Thread 8:
    0 libSystem.B.dylib 0x93e8d1d8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x93ed02c8 pthread_condwait + 1320
    2 com.apple.logic.pro 0x00417724 0x1000 + 4286244
    3 libSystem.B.dylib 0x93ecf024 pthreadstart + 316
    Thread 9:
    0 libSystem.B.dylib 0x93e8d1b8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x93e94414 pthreadmutexlock + 648
    2 ...opellerheads.rewire.library 0x1598f518 RWPUnregisterDeviceImp + 203904
    3 ...opellerheads.rewire.library 0x1595e2b0 RWPUnregisterDeviceImp + 2584
    4 ...opellerheads.rewire.library 0x1595e4a0 RWPUnregisterDeviceImp + 3080
    5 ...opellerheads.rewire.library 0x15996a04 RWPUnregisterDeviceImp + 233836
    6 libSystem.B.dylib 0x93ecf024 pthreadstart + 316
    Thread 10:
    0 libSystem.B.dylib 0x93e8d1a8 semaphorewaittrap + 8
    1 com.ableton.live-engine 0x15fee1d8 RWDEFGetDeviceNameAndVersion + 11564
    2 com.ableton.live-engine 0x15ff5928 RWDEFGetDeviceNameAndVersion + 42108
    3 com.ableton.live-engine 0x16198b58 0x15fe9000 + 1768280
    4 com.ableton.live-engine 0x15feedb8 RWDEFGetDeviceNameAndVersion + 14604
    5 libSystem.B.dylib 0x93ecf024 pthreadstart + 316
    Thread 11 Crashed:
    0 ??? 0000000000 0 + 0
    1 ??? 0x16bb8cb0 0 + 381390000
    2 libSystem.B.dylib 0x93ecf028 pthreadstart + 320
    3 ??? 0000000000 0 + 0
    Thread 11 crashed with PPC Thread State 32:
    srr0: 0x00000000 srr1: 0x4000d930 dar: 0xe0021000 dsisr: 0x40000000
    r0: 0x00000000 r1: 0xf0523de0 r2: 0x10084b20 r3: 0x10084910
    r4: 0x10084b20 r5: 0x00000000 r6: 0x00000003 r7: 0x00000001
    r8: 0x00000008 r9: 0x00000004 r10: 0x00000006 r11: 0x00000010
    r12: 0x10084b20 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x10084910
    r24: 0x00000000 r25: 0x10084ac0 r26: 0x10084ac0 r27: 0x10084ad4
    r28: 0x10084a90 r29: 0x10084b20 r30: 0xf0524000 r31: 0x10084400
    cr: 0x48000024 xer: 0x20000000 lr: 0x16bf24ac ctr: 0x00000000
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x10a5feb com.apple.logic.pro 8.0.2 (1502.22) <e633de9463c24ceabd7e00ec1fd4f48c> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x1812000 - 0x183043b com.apple.XSKey 1.0.0 (52.4) /Applications/Logic Pro.app/Contents/Frameworks/XSKey.framework/Versions/A/XSKey
    0x183e000 - 0x1854123 com.apple.XAudioUnits 1.0.0 (91.7) /Applications/Logic Pro.app/Contents/Frameworks/XAudioUnits.framework/Versions/A/XAudioUnits
    0x1862000 - 0x1930ff5 com.apple.DiscRecording 4.0.3 (4030.4.3) <f11866245eaf217396740b401ddc2861> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x1997000 - 0x1999fff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x199f000 - 0x19cafff +MusicAudioDataServices ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MusicAudioDataServices.framework/Versions/A/MusicAu dioDataServices
    0x19e0000 - 0x1a85f4d com.apple.eloop 3.1.0 (100.4) /Applications/Logic Pro.app/Contents/Frameworks/ELoop.framework/Versions/A/ELoop
    0x1b22000 - 0x1b875df com.apple.LogicLoopBrowser 7.2 (117.4) /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x1bb6000 - 0x1bc3fef +libaafintp.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafintp.dylib
    0x1bd2000 - 0x1c31feb +libaafpgapi.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafpgapi.dylib
    0x1c68000 - 0x1ef1fff +libcom-api.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libcom-api.dylib
    0x225d000 - 0x23d6fff com.apple.prokit 4.5 (722) <0a569e9a281a8a321ad499df65fd3370> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x24ac000 - 0x2530c45 com.apple.ecore 1.1.0 (291.7) /Applications/Logic Pro.app/Contents/Frameworks/ECore.framework/Versions/A/ECore
    0x258b000 - 0x25a7ffb com.apple.audio.midi.CoreMIDI 1.6.1 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x25bd000 - 0x2640ff3 com.apple.DotMacKit 21 (3.0.1L) /Applications/Logic Pro.app/Contents/Frameworks/DotMacKit.framework/Versions/A/DotMacKit
    0x269e000 - 0x26b3fdf com.apple.EHardwareSupport 1.0.0 (163.5) /Applications/Logic Pro.app/Contents/Frameworks/EHardwareSupport.framework/Versions/A/EHardwareSupp ort
    0x26bd000 - 0x26d6fd7 com.apple.LogicFileBrowser 1.0.0 (126.7) /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x26e6000 - 0x26e8fd7 com.apple.XLogicImages 1.0.0 (117.4) /Applications/Logic Pro.app/Contents/Frameworks/XLogicImages.framework/Versions/A/XLogicImages
    0x26ec000 - 0x2707ff9 com.apple.audio.CoreAudioKit 1.5 (1.5) <b7e5287b5d5cdda58e147a6ffa19667e> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2718000 - 0x2728fdf com.apple.AERegistration 1.2 (72) /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x273a000 - 0x2742fd7 com.apple.AEProfiling 1.2 (18) /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x274a000 - 0x276bff1 libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x2773000 - 0x2794fff libexpat.1.dylib ??? (???) <e955fbf7296287c4d40694cf7dffd64f> /usr/lib/libexpat.1.dylib
    0x2b43000 - 0x2b63fff com.apple.prokit.LeopardPanels 4.5 (722) <e2688a64c32121db509c6af941d17b8d> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/Leopard Panels.bundle/Contents/MacOS/LeopardPanels
    0x2b76000 - 0x2bdeffb com.apple.iLifeMediaBrowser 2.0.2 (321) <d4936fd59c1e7ca0a9e0cc79dd5b78a8> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9ad4000 - 0x9ad8fff com.apple.audio.AudioIPCPlugIn 1.0.5 (1.0.5) <6d30b26789325677bbd205ccdbe755e7> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x9add000 - 0x9b09073 com.motu.driver.FWA.HALPlugin ??? (1.2) /System/Library/Extensions/MOTUFireWireAudio.kext/Contents/PlugIns/HALPlugin.bu ndle/Contents/MacOS/HALPlugin
    0x9b31000 - 0x9b32ffd com.apple.aoa.halplugin 2.5.7 (2.5.7f1) <7f1a60978b668db2fc7b7ee642120335> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x9b36000 - 0x9bb203f com.apple.DVCPROHDAudio 1.3 (1.3) /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x9bef000 - 0x9bf6ff7 com.apple.proapps.mrcheckpro 1.4 (202) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x9ced000 - 0x9cf2fd3 com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x9cf7000 - 0x9d5cfd7 com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x9d7e000 - 0x9de6fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x9df3000 - 0x9e48ff3 +com.DivXInc.DivXDecoder 6.0.0 (6.0.0) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x9e56000 - 0x9fa3feb +com.elgato.mpegsupport EyeTV MPEG Support 1.1.0 (build 48) (1.0.9) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0xa0bf000 - 0xa124fdb com.apple.DVCPROHDMuxer 1.3 (1.3) /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0xb092000 - 0xb0aefff GLRendererFloat ??? (???) <3e5d8f34d61deb0515b3162ab86eec5e> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xb54b000 - 0xb724ff7 com.apple.RawCamera.bundle 2.0.13 (435) <d978d604ec61876ef471d74dd4ea7417> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xb7b5000 - 0xb92cffb GLEngine ??? (???) <842f38857bb67e7ddebce958369dbb55> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xb95e000 - 0xbae7ff6 com.apple.GeForceFXGLDriverPPC 1.5.36 (5.3.6) <945a8f3837c174ada803282cc6234a08> /System/Library/Extensions/GeForceFXGLDriverPPC.bundle/Contents/MacOS/GeForceFX GLDriverPPC
    0xccc4000 - 0xccc7fdf com.apple.gal_common 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0xcccd000 - 0xccd0fcf com.apple.gal_ebp 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0xd6cb000 - 0xd6d1fc7 com.apple.gal_anvil 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0xd7c8000 - 0xd7d1fc7 com.apple.gal_efx 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0xd9ec000 - 0xd9f3fd7 com.apple.gal_efx2 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/efx2.res/Contents/MacOS/efx2
    0xdbe3000 - 0xdbe6fcf com.apple.gal_egt 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0xdc16000 - 0xdc1afdf com.apple.gal_emx 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0xdce3000 - 0xdce6fd7 com.apple.gal_es1 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0xdd47000 - 0xdd4bfcf com.apple.gal_es2 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0xdde6000 - 0xddeafd7 com.apple.gal_esp 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0xde66000 - 0xde69fc7 com.apple.gal_esu 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/esu.res/Contents/MacOS/esu
    0xdebb000 - 0xdebefcf com.apple.gal_evb3 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0xdf4c000 - 0xdf4ffdf com.apple.gal_evd6 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0xdfb6000 - 0xdfbafcf com.apple.gal_evoc 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0xe0ac000 - 0xe0affcf com.apple.gal_evp88 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0xe1ff000 - 0xe202fdf com.apple.gal_exs24 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0xe279000 - 0xe27dfc7 com.apple.gal_mutapdel 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0xe2be000 - 0xe2c4fdf com.apple.gal_revolver 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0xe499000 - 0xe49dfdf com.apple.gal_sphere 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x15956000 - 0x159c2fff +se.propellerheads.rewire.library 1.7 (1.7) /Users/waiwan/Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x159df000 - 0x159fefff com.apple.OpenTransport 3.0 (3.0) /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x15a0e000 - 0x15c89fd1 +se.propellerheads.reason.engine 4.0 (4.0) <ff191c4fc48d4c799c977755fb503a85> /Applications/Reason/Reason.app/Contents/PlugIns/Reason Engine.plugin/Contents/MacOS/Reason Engine
    0x15f60000 - 0x15fccfff +se.propellerheads.rewire.library 1.7 (1.7) /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x15fe9000 - 0x161baff7 +com.ableton.live-engine 6.0.10 (6.0.10) /Applications/Music Applications/Live 6.0.10 OS X/Live.app/Contents/Resources/Ableton Live Engine.bundle/Contents/MacOS/Ableton Live Engine
    0x1642d000 - 0x16439ffb +com.novation.automapserverengine 1.0 (1.0) /Applications/AutomapServer.app/Contents/Resources/AutomapServerEngine.bundle/C ontents/MacOS/AutomapServerEngine
    0x16444000 - 0x16455ffc +com.novation.automapclientbundle 1.0 (1.0) /Applications/AutomapServer.app/Contents/Resources/AutomapClient.bundle/Content s/MacOS/AutomapClient
    0x8fe00000 - 0x8fe30c23 dyld 97.1 (???) <8dc1fc6c74fe1f055be16980dd45001e> /usr/lib/dyld
    0x90065000 - 0x9008fff7 libssl.0.9.7.dylib ??? (???) <1c571a24294df1af3428e31d464029fc> /usr/lib/libssl.0.9.7.dylib
    0x900cf000 - 0x904fdffa libGLProgrammability.dylib ??? (???) <2c52a11697da6ede976b56d54e3815ef> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x904fe000 - 0x90505fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90506000 - 0x90521ffb libPng.dylib ??? (???) <248297ff5b022c274d5dcfa0de3b37b2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90569000 - 0x90619fff edu.mit.Kerberos 6.0.12 (6.0.12) <17b514ffed29c890fc8ba8eac9dce56e> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90620000 - 0x906aafff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x906ab000 - 0x906fafff libGLImage.dylib ??? (???) <1df480344fb6e09ff32ac97bfdda7e50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x906fb000 - 0x9079cff7 com.apple.QuickTimeImporters.component 7.6 (1290) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90803000 - 0x90899fff com.apple.LaunchServices 290.3 (290.3) <a8a738aede278909ff721ce9a754142f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9089a000 - 0x908a8ff3 com.apple.opengl 1.5.9 (1.5.9) <c3d74d9bd2fa60d9c346db5658e52815> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x908a9000 - 0x908bcffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <dc8dac074f4d19175c5613b35aa529b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x908bd000 - 0x908c5fff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x908c6000 - 0x908d3fff libbz2.1.0.dylib ??? (???) <ff3050272228dbda09852641458eaaa4> /usr/lib/libbz2.1.0.dylib
    0x908d4000 - 0x908d5ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90a23000 - 0x90a29fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <8b5a3065a2f06a46b4dde23faff6a20e> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90a30000 - 0x90a73fff com.apple.CoreMediaIOServicesPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90a74000 - 0x90acafff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90ad1000 - 0x90b8bfff libcrypto.0.9.7.dylib ??? (???) <335916b82e302fec637432caf7c9e8e5> /usr/lib/libcrypto.0.9.7.dylib
    0x90b8c000 - 0x90c5ffff com.apple.CoreServices.OSServices 226.5 (226.5) <e50f547a3d8d316885b424e282bd80fe> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90c60000 - 0x90e46ffb com.apple.security 5.0.4 (34102) <93e74504c60b38418e708caf47342cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90e47000 - 0x90e5effb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90e5f000 - 0x90ef9ff7 com.apple.ApplicationServices.ATS 3.4 (???) <06af1441f632e171a7f61dca809462ba> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90efa000 - 0x90effff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x90f00000 - 0x90f1affb com.apple.CoreVideo 1.6.0 (20.0) <578a8abd9e0f7b3a9c36ae9bc5fd753a> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90f1b000 - 0x90f24fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90f25000 - 0x90faafff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x90fab000 - 0x9107affb com.apple.syncservices 3.1 (389.12) <6fa8d98524d97718e093b8f57d539883> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x9107b000 - 0x91d2afef com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91d37000 - 0x91f7cffb com.apple.Foundation 6.5.7 (677.22) <dab423bf20d5c2d78c4536e4e3da9300> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91f7d000 - 0x91f7dffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91f7e000 - 0x92280ffb com.apple.CoreServices.CarbonCore 786.11 (786.11) <9efd94b7dd1700ade0246885ca2218d2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92281000 - 0x92281ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92282000 - 0x922d1fff com.apple.Metadata 10.5.2 (398.25) <fdad4bda89efd0e2e9ca37493e10ca4c> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x922d2000 - 0x92333fff com.apple.CoreText 2.0.4 (???) <1985172321f7b3ee34d5bbc848079af0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92334000 - 0x9234fff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <afaae07f311885fb3d88c1d4e723d3d6> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92350000 - 0x92379fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x9237a000 - 0x923affff com.apple.AE 402.3 (402.3) <4d318022a7d964436d62c2b9c82a40b0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x923b0000 - 0x923bffff com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <651e2b4d7e19d43f520829f76216f2c2> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x923c0000 - 0x923f5ffb com.apple.LDAPFramework 1.4.5 (110) <d0de37a2c23c1ab7dfd4af1882db9893> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x923f6000 - 0x923f9fff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x923fa000 - 0x923fafff com.apple.Carbon 136 (136) <6a6a209ec9179368db7ead8382b8ee63> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x923fb000 - 0x9240bfff libsasl2.2.dylib ??? (???) <b83efbe4f0008d4632efc47e1f87dde6> /usr/lib/libsasl2.2.dylib
    0x9240c000 - 0x9242bfff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9242c000 - 0x92551ffb com.apple.imageKit 1.0.2 (1.0) <139eccda7bd9529a258fdb6f092b11b0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92552000 - 0x925afffb com.apple.HIServices 1.7.0 (???) <5f468086ca01158e12cd07f829132edf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x925b0000 - 0x925bbffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x92624000 - 0x92624ffc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92625000 - 0x926adfff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x926ae000 - 0x9272ffff com.apple.print.framework.PrintCore 5.5.3 (245.3) <032f772f8169945c1d1b524d96edcef6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x92730000 - 0x92750ff7 libJPEG.dylib ??? (???) <f92878fdf02ffb1474b8bc60c47bb72d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92751000 - 0x92a8affb com.apple.HIToolbox 1.5.4 (???) <9624d2ffaf16019b6301517339df88c9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92a8b000 - 0x92a8bff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92a8c000 - 0x92b74fff com.apple.JavaScriptCore 5525.26 (5525.26.2) <3a03d36ac807322bc73ed78c515e32be> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92b75000 - 0x92b7bffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x92b7c000 - 0x92c41ffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92c42000 - 0x92ca4ffb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92ca5000 - 0x92d88fff libobjc.A.dylib ??? (???) <39035ba996e55c617e20595dcd89c063> /usr/lib/libobjc.A.dylib
    0x92d89000 - 0x92d8bffd libRadiance.dylib ??? (???) <34cc3c24f4be3a4372275400b6e05b85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92d8c000 - 0x92d97ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92d98000 - 0x92e4ffff com.apple.QTKit 7.6 (1290) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92e50000 - 0x9340afff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9340b000 - 0x934a4fc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x934a5000 - 0x934a9ffe libGIF.dylib ??? (???) <491b205a6b8bb0c0c6ee6aaeea19a671> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93b8d000 - 0x93c76fff libxml2.2.dylib ??? (???) <dedfda117e78db04f0b86c59923b3794> /usr/lib/libxml2.2.dylib
    0x93c77000 - 0x93d46fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93d47000 - 0x93d66fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93d67000 - 0x93d86fff libresolv.9.dylib ??? (???) <d4538f370cadea5d74d3ac86c610e570> /usr/lib/libresolv.9.dylib
    0x93d87000 - 0x93d93ff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93d94000 - 0x93dbcfff libxslt.1.dylib ??? (???) <a628a1484428ce3c87c56cf663faeb54> /usr/lib/libxslt.1.dylib
    0x93e8c000 - 0x9402cfe3 libSystem.B.dylib ??? (???) <3260ab8c558e938c8180b3ba1036aec1> /usr/lib/libSystem.B.dylib
    0x9402d000 - 0x94040fff com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94091000 - 0x940fbfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x940fc000 - 0x94146fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x94289000 - 0x942bafff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x942bb000 - 0x942f8fff libRIP.A.dylib ??? (???) <662becbd3173fd67eec7ad523d2d9c56> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x942f9000 - 0x9433bfff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9433c000 - 0x9435afff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9438c000 - 0x94399fff libCSync.A.dylib ??? (???) <bc19f19cfa6c23f9ca4e4419ea18f43e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9439a000 - 0x94443ffc com.apple.CFNetwork 422.15.2 (422.15.2) <8e0eb315fa1c47227c42410ee695390e> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94444000 - 0x944abffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x944c0000 - 0x947f1ffb com.apple.QuickTime 7.6.0 (1290) <664814f4b8b62408c24a74b8a7a51297> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x947f6000 - 0x9491bffb com.apple.CoreFoundation 6.5.5 (476.17) <d13dc71c870a82b7d2f721731e584287> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9491c000 - 0x949ccfff com.apple.QD 3.11.54 (???) <cd7bef6f156b82851cfb164ccd9f3986> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x949cd000 - 0x94a0effb libTIFF.dylib ??? (???) <4c1422124af245485d6ceee207f4d735> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94a0f000 - 0x94aa3ff7 com.apple.framework.IOKit 1.5.1 (???) <498f2ba1b47432ee4deebca2655ff932> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94aa4000 - 0x94ab2fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x94ab6000 - 0x94adfffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94ae0000 - 0x94c92ff4 com.apple.CoreAUC 3.02.0 (3.02.0) <805ca5d2a7bdf7f5450778560f0c711d> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x94c93000 - 0x94ddaffb com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94eea000 - 0x94eebfff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x94eec000 - 0x94f19fff libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x94f1a000 - 0x94f1affa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94f1b000 - 0x94f1bfff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94f1c000 - 0x94f1cfff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94f1d000 - 0x94f24ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x94ffe000 - 0x95037fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95038000 - 0x95180ffb libicucore.A.dylib ??? (???) <f49319412f5ee8b5f06fef2baa72916b> /usr/lib/libicucore.A.dylib
    0x95181000 - 0x95191ffb com.apple.agl 3.0.9 (AGL-3.0.9) <056d952943aac260426645ce6a24eb9e> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95192000 - 0x951d9fff com.apple.NavigationServices 3.5.2 (163) <cb063c95a55ba12994a64c7e47f5706a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x951da000 - 0x951e5fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x951e6000 - 0x95275ffb com.apple.DesktopServices 1.4.7 (1.4.7) <5792e9dc03f76544c71dedd802a1fa36> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95276000 - 0x9538affa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9538b000 - 0x953a3ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95621000 - 0x95d96fff com.apple.AppKit 6.5.6 (949.43) <3afcaa243535d0817efeb978448ef3dc> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95dfd000 - 0x95e19ffb com.apple.openscripting 1.2.8 (???) <eb961ce3c1b1e564c2eefe3682ee0555> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95e30000 - 0x96195ffe com.apple.QuartzCore 1.5.7 (1.5.7) <75a8ef92c54d1ce016dfe662a6626f04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x96196000 - 0x96199ffb com.apple.securityhi 3.0 (30817) <e50c0cac9048f8923b95797753d50b5c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x961d8000 - 0x96754ff7 com.apple.CoreGraphics 1.407.2 (???) <6a101d8218dc8d12ca0b901c57aa44b7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96755000 - 0x9689fffb com.apple.ImageIO.framework 2.0.4 (2.0.4) <cbe744146e1f0e77cca0edce92bea0f7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x968a0000 - 0x96a40ff7 com.apple.QuartzComposer 2.1 (106.13) <729b5ad0c523a74307cd23a7c3282e0d> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96a41000 - 0x96abcfff com.apple.SearchKit 1.2.1 (1.2.1) <23c2c93a7ec832505d5c7b67fee89a6d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96b0c000 - 0x96b14ffb libCGATS.A.dylib ??? (???) <0c83819d2d428a8df27c8cc0f13ba1dc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x96b47000 - 0x96bcfffb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f88caa828a4b54ed1932e1578bf9236a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96bd0000 - 0x96ef9fe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96efa000 - 0x97066ff9 com.apple.AddressBook.framework 4.1.1 (699) <3334680563e5e0238454a586032b401b> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9706d000 - 0x97098ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x97099000 - 0x970bffff libcups.2.dylib ??? (???) <109498e92341ab4899ffd3d5acaddac3> /usr/lib/libcups.2.dylib
    0x970c0000 - 0x970f2fff com.apple.bom 9.0.1 (136.1.1) <baadd442078846eb8d064212074c7eb8> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    chungking2046 wrote:
    I've recently been unable to launch Logic Pro for no apparent reason. During Logic Pro's startup, it unexpectedly quits.
    I see that "rewire" is mentioned 14 times in your crash log.
    Did you install any new software that might use Rewire?
    Perhaps Melodyne or some other application that installs rewire, if so, you will probably have to upgrade rewire to the newest version, anything older will cause Logic/Leopard to crash.
    The other option is to remove all instances/references to Propellerhead's Rewire.
    pancenter-

  • Re-try: Partitioned '08 iMac, Win7, Radeon X1600, help with upgrading driver?

    I've been trying to use information found on other threads to update my driver but have had no success; my software and cpu are somewhat older than what I've been reading about. So.... I'm going to try this again before taking the thing to the local fixit shop (I don't want to do that...) And hopefully if there's someone in the same jam out there a search will bring them to this thread.
    Is there anyone out there that can give me a simple 'do this, do this, do this, and do this' for my particular setup? I've used DriverSweeper prior to attempting installs, and Mobility Modder to get around AMD's Catalyst installer problems re:bootcamp.
    I just wanna play my stupid GAMES, wah!
    Here's part of my latest dxdiag:
    Time of this report: 4/16/2012, 15:57:44
            Machine name: IMAC
        Operating System: Windows 7 Ultimate 32-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.111025-1505)
                Language: English (Regional Setting: English)
    System Manufacturer: Apple Computer, Inc.
            System Model: iMac5,1
                    BIOS: Default System BIOS
               Processor: Intel(R) Core(TM)2 CPU         T7600  @ 2.33GHz (2 CPUs), ~2.3GHz
                  Memory: 4096MB RAM
    Available OS Memory: 3056MB RAM
               Page File: 744MB used, 5366MB available
             Windows Dir: C:\Windows
         DirectX Version: DirectX 11
    DX Setup Parameters: Not found
        User DPI Setting: 96 DPI (100 percent)
      System DPI Setting: 96 DPI (100 percent)
         DWM DPI Scaling: Disabled
          DxDiag Version: 6.01.7601.17514 32bit Unicode
    Here is the current display info, FOLLOWED by the info if I restore the original driver (8.561.0.0):
    Display Devices
               Card name:
            Manufacturer:
               Chip type:
                DAC type:
              Device Key: Enum\
          Display Memory: n/a
        Dedicated Memory: n/a
           Shared Memory: n/a
            Current Mode: 800 x 600 (32 bit) (1Hz)
             Driver Name:
    Driver File Version:  ()
          Driver Version:
             DDI Version: unknown
            Driver Model: unknown
       Driver Attributes: Final Retail
        Driver Date/Size: , 0 bytes
             WHQL Logo'd: n/a
         WHQL Date Stamp: n/a
       Device Identifier: {D7B70EE0-4340-11CF-B123-B03DAEC2CB35}
               Vendor ID: 0x0000
               Device ID: 0x0000
               SubSys ID: 0x00000000
             Revision ID: 0x0000
      Driver Strong Name: Unknown
          Rank Of Driver: Unknown
             Video Accel:
           Deinterlace Caps: n/a
            D3D9 Overlay: n/a
                 DXVA-HD: n/a
            DDraw Status: Not Available
              D3D Status: Not Available
              AGP Status: Not Available
    Here is the ORIGINAL display info:
    Display Devices
               Card name: ATI Mobility Radeon X1600
            Manufacturer: ATI Technologies Inc.
               Chip type: ATI Radeon Graphics Processor (0x71C5)
                DAC type: Internal DAC(400MHz)
              Device Key: Enum\PCI\VEN_1002&DEV_71C5&SUBSYS_0080106B&REV_00
          Display Memory: 1398 MB
        Dedicated Memory: 126 MB
           Shared Memory: 1272 MB
            Current Mode: 1440 x 900 (32 bit) (60Hz)
            Monitor Name: Generic PnP Monitor
           Monitor Model: Color LCD
              Monitor Id: APP9C59
             Native Mode: 1680 x 1050(p) (59.883Hz)
             Output Type: Internal
             Driver Name: atiumdag.dll,atiumdva.cap,atitmmxx.dll
    Driver File Version: 7.14.0010.0630 (English)
          Driver Version: 8.561.0.0
             DDI Version: 9Ex
            Driver Model: WDDM 1.0
       Driver Attributes: Final Retail
        Driver Date/Size: 12/1/2008 20:29:34, 4033536 bytes
             WHQL Logo'd: Yes
         WHQL Date Stamp:
       Device Identifier: {D7B71EE2-3285-11CF-AD71-8A20A1C2CA35}
               Vendor ID: 0x1002
               Device ID: 0x71C5
               SubSys ID: 0x0080106B
             Revision ID: 0x0000
      Driver Strong Name: oem39.inf:ATI.Mfg:ati2mtag_M56:8.561.0.0:pci\ven_1002&dev_71c5
          Rank Of Driver: 00F62001
             Video Accel: ModeMPEG2_A ModeMPEG2_C
        Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                          {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                          {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                          {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                          {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                          {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                          {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                          {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                          {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                          {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                          {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
            D3D9 Overlay: Not Supported
                 DXVA-HD: Not Supported
            DDraw Status: Enabled
              D3D Status: Enabled
              AGP Status: Enabled
    I love my Mac. But I love my Windows-only games.

    The first part of your mcelog (the bit about " failed to prefill DIMM database from DMI data") strongly suggest one of the new RAM chips is defective. Start by simply putting the old one back in place and seeing if that helps. If it does, exchange the new faulty one with the seller for one that works. However, since you say yourself you aren't very tech savvy, it may be the case that you've simply purchased a RAM chip that is not compatible with your motherboard (although if both of the new chips are identical and the first one works, that may not be so).
    When deciding to upgrade all the most vital hardware components of a machine, it's best to do it one piece at a time, and reconfigure the operating system to account for the new hardware. Uninstall old drivers, install new ones, change any personal settings related to the old hardware, reboot, make sure everything's fine and then repeat the process for every other new piece of hardware. Replacing everything at once without ensuring it will all work together increases the chances problems like this immensely---the problem itself may be very simple, but you've undertaken so many changes in such a short time that finding out what the problem is in the first place can be very complicated.

  • Help with Oracle Report Builder and SQL Server2000

    Hey guys,
    I just installed it Oracle Developer Suite10g with Report Builder and I am trying to use Report builder and wants to connect with SQL Server 2000. The problem that I am running in to is SQL Server 2000 i have is Window Authentication so Does not required to enter user name and password. So how can i connect my report builder to SQL server or is it possible to connect Report builder to SQL server?
    Also, I want to create small practice version of database in Oracle how do i do it? what i mean by that is I installed trial version or Oracle developer 10g from www.oracle.com and now trying to get some knowledge with oracle. Could any one can give me some direction in this matter please.
    Thank You
    Key

    Have a look at the reports help for the purpose header and trailer sections. Here is an exert:
    "Report sectioning enables you to define multiple layouts in the same report, each with a different target audience, output format, page layout, page size, or orientation. You can define up to three report sections, each with a body area and a margin area: the names of the sections are Header, Main, and Trailer. By default, a report is defined in the Main section. In the other sections, you can define different layouts, rather than creating multiple separate reports. If you wish, you can use the margin and body of the Header and Trailer sections to create a Header and Trailer page for your reports."

  • Help with BI Report iView integration!

    Hello,
    I have been provided with a BI 7.0 Report URL (http://<BI FQDN>:8000/sap/bw/BEx?cmd=ldoc&infocube=<SUPPLIED INFOCUBE>&query=<SUPPLIED QUERY>&sap-language=EN) that i need to integrate into Portal as an iView. I have created BI System in the Portal System Landscape by entering following Parameters:
    Connector Properties:
    Logical System Name: <BI LS Name>
    SAP Client: 100
    SAP System ID (SID): B01
    SAP System Number: 00
    System Type: SAP_BW
    User Management Properties:
    Logon Method: UIDPW
    User Mapping Type: admin, user
    Web Application Server (Web AS) Properties:
    Web AS Description: BI Web AS
    Web AS Host Name: <BI FQDN>:8000
    Web AS Path: /sap/bw/Bex
    Web AS Protocol: http
    After this i gave an alias SAP_BW for this system and then did the User Mapping for this system with my user account. Now i from PCD i am creating a New iView of type "SAP BW Report iView" and entered following parameters:
    Application Verison: 7.x
    Application Parameter: SAP_BW
    BEx Web Application Query String: infocube=<SUPPLIED INFOCUBE>&query=<SUPPLIED QUERY>
    Then when i do a PREVIEW test i get following message:
    Service cannot be reached
    What has happened?
    URL http://<BI FQDN>:8000/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system B01 with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:sapb01_B01_00-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    If i execute the same query from Query Designer then also i get a error screen with an invalid URL in the address bar and a message in the body saying "The Page Cannot be Displayed". The URL that is pointed from Query Designer is:
    http:///irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=<SUPPLIED QUERY>&VARIABLE_SCREEN=X&DUMMY=7
    The same report gets perfectly executed from BI System. Can anyone please tell me why am i getting these error messages and how do i resolve? Please advice. Thanks.

    Hi Vasu ,
    I think you have a problem is due to BI-JAVA . Please check the  links in below.
    BI Java
    Displaying BW3.x Objects on Portal 6.0 SP9 after upgrade to NW2004s BI
    what exactly is in "BI java" ?
    Regards,

  • Word issues with upgradeing reports built in 10 to crystal 2008

    We have a bunch of reports that were built and running with 10. We are trying to upgrade our servers to run with crystal 2008. The reports built in 10 have been working when run with the crystal 2008 runtime. With the exception of a problem when opening a report in word. I have figured out if I change the page set up in word to be landscape the report will now show fine. Also if i edit the actual rpt to be much narrower than the original, it will execute correctly in word. Has anyone else had this problem? Word will run very slow and there will be blank pages in between a multi page document.

    Hi Bill,
    Not sure what version you are using, get SP1. In the report designer if you got the Page Setup options try checking on Dissociate Formatting Page....
    If you are using RAS and SP1 you can do this in code something like this:
    System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();               
    PrintReportOptions rasPROpts = new CrystalDecisions.ReportAppServer.Controllers.PrintReportOptionsClass();
    CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions MYPRTOpts = new PrintOptionsClass();
    if (rdoCurrent.Checked)
                    pDoc.PrinterSettings.PrinterName = cboCurrentPrinters.Text;
                    MYPRTOpts.PrinterName = cboCurrentPrinters.Text;
                    MYPRTOpts.PaperSize = (CrPaperSizeEnum)
                             pDoc.PrinterSettings.PaperSizes[cboCurrentPaperSizes.SelectedIndex].Kind;
                    MYPRTOpts.PaperSource = (CrPaperSourceEnum)
                             pDoc.PrinterSettings.PaperSources[cboCurrentPaperTrays.SelectedIndex].Kind;
         // added the below line to verify the changes work.
                    MYPRTOpts.PaperOrientation = CrPaperOrientationEnum.crPaperOrientationLandscape;
                    // new API added to allow changing printing options
                    MYPRTOpts.DissociatePageSizeAndPrinterPaperSize = true;
                    MYPRTOpts.PageMargins.Left = 1;
                    MYPRTOpts.PageMargins.Right = 1;
                    MYPRTOpts.PageMargins.Top = 1;
                    MYPRTOpts.PageMargins.Bottom = 1;
    Thank you
    Don

  • Need help with upgrade from Adobe Creative Suite to PS CS4

    My old laptop with Photoshop on it crashed and I ended up purchasing a new laptop.
    I'm trying to reload my PS CS4.  I am using an upgrade from an educational Adobe Creative Suite Premium to the CS4 and when I loaded it on my old laptop I had to get installation help through customer service, but now customer service will not help me since it is CS4.
    When installing the upgrade, it tell me to select the product I already own.  I own the educational full creative suite, but am only upgrading the Photoshop.  I chose Photoshop CS and tried entering the serial number for the suite.  It tells me that the serial number doesn't match the product chosen.  Of course the only products I'm allowed to choose from is Photoshop CS, CS2, or CS3 and not Creative Suite Premium.
    The other serial numbers on this CS is Golive CO and Pagemaker Plug-in.
    I was told there are Adobe customer service reps here on the forum, please tell me what it was I need to do to get my Photoshop installed.
    Thanks

    i wasn't aware that you could get a ps4 at an upgrade price using an older creative suite produect.  i searched online and found this thread (http://forums.adobe.com/thread/476009) which makes it appear that was not a valid upgrade path.
    but, if you're confident that was a valid upgrade path, i'm pretty sure something will need to be done on adobe's end and no amount of manipulation, on your end only, will work.
    your best bet would be to get help in this forum from an adobe staff member like jeff wright who is very knowledgeable and goes out of his way to help adobe customers.  to that end, if i were you, i would start a new thread mentioning his name in your title and in your initial post explaining:
    you have the educational Adobe Creative Suite Premium and purchased a photoshop cs4 upgrade years ago that required adobe support help to install years ago. 
    that worked well until a recent computer problem forced you buy a new laptop and you are now trying to reinstall that ps cs4 and again need support help but have been refused help because cs4 is not current.

  • Help with OBIEE reports on Oracle 11g Cube

    Hi,
    We have created a 4-Dimensional Oracle 11g cube using AWM 11g and have integrated that with the OBIEE repository using the Dimension Hierarchy views as created by AWM.
    Now, when we create a “table” type of report with this cube in OBIEE Answers, all goes fine – we can see all the expected data in the report. However, if we create a “pivot table” type of report using the same selection (query) criteria as in the “table” type of report, then all the cells corresponding to the measure columns show up as blank (empty) – no data is populated in the measure cells. This happens regardless of the positioning of the 4 dimensions in the pivot table - columns, sections, and pages.
    Are we missing something in the repository/report setup here? Any help is much appreciated.
    Thanks and Regards,
    Piyush
    Our Environment:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    AWM v11.1.0.6.0A
    Cube Type: OLAP 11g
    Oracle Business Intelligence Enterprise Edition 10.1.3.3.2
    Any help on this thread is much appreciated.
    Thanks,
    Piyush
    Message was edited by:
    P_S

    Hi Marcus,
    I have now been able to resolve this issue. Here's a summary of what happened in my case:
    Cause of Problem –
    The default aggregation method for the measures is set to "None" in the OBIEE repository.
    Resolution -
    In OBIEE answers pivot table report, click on the "More Options..." icon next to the measure name in the measures column. Then select "Aggregation Rule > Sum" and this should do the trick !!
    (Please note that in the as-is situation, you will see that the Aggregation Rule is set to Default - you have to change this to SUM).
    This is how it worked for me.
    Hope this helps. Please do let me know how you get on with this.
    Best Regards,
    Piyush

  • Need help with upgrade from WXP MCE to Vista Ultimate on Qosmio G30 - 175

    Hi all, I tried searching for the following issue to no avail so I would be most grateful if someone could help and point me in the right direction:
    Tried to upgrade the XP to Ultimate and it got to unpacking stage and BSOD "Session3_initialization_failed (xxx STOP: 0x0000006F (0xC000009D, 0x00000000, 0x00000000, 0x00000000) appeared repeatedly. I tried again and the same happened.
    I have already updated the BIOS and stripped the conflicts out of the Toshiba suite of programmes and the update advisor gave the OK on several ocassions before attempting this exercise.
    Help.........Dave

    Forgot to mention too that I am currently running with 2 x 2GB Ram and no additional hardware or software has been added prior to attempting the upgrade. The medium I am using to upgrade is a recently purchased full retail version of 32 bit Vista Ultimate (which also includes a 64 bit version too in the box).
    I have been in touch with Microsoft Support in recent days and they told me that my hard drive appears to be defective being the reason for the failed upgrade. Infact last week together with Microsoft on the phone we did attempt a clean install but that just lead to me having to abort the clean install and rescue my laptop back to original XP MCE.....flipping heck!!!!!

  • Headless Mac Pro getting stuck - need help with Crash Report

    I have a headless Mac Pro being used as a server. It has recently begun to have problems such as slowing down for a few minutes with apps being slow or non-reponsive. It may serve pages, but the database or FTP may not respond. When logging with VNC (screen sharing) we may get a blank screeen or a screeen with lots of black squares and artifacts. If often clears up, but if fully black will usually require that I log on via SSH and reboot. It may be fine for a day and other days may slow down a few times.
    The only apps are Abyss Web Server, Panorama database, CrushFTP (uses JAVA), and Backuplist+. Temperatures seem to be okay with the highest being the Nortbridge Heat Sink (167 degrees) and a memory module (163 degrees). The primary disks are a few months old and have over 200 GB of free space. I have done maintenance with Applejack, Onyx, and Disk Warrior.
    It finally crashed altogether and I am not experienced at interpreting the reports so here is the crash report in the hopes that someone can help determine the problem:
    Interval Since Last Panic Report:  101039853 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    8DD159F4-CE66-4B72-9F40-E4800A0F5E65
    Sat Sep  7 18:15:27 2013
    panic(cpu 1 caller 0x006376A4): NVRM[0]: Read Error 0x0008804c: BAR0 0xf1000000 0x6fd0b000 0x04b300a2 D0 P0/1
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5c356158 : 0x12b4c6 (0x45f91c 0x5c35618c 0x13355c 0x0)
    0x5c3561a8 : 0x6376a4 (0x867e80 0x867e80 0x82c6d4 0x0)
    0x5c356208 : 0x67a18c (0x6f91404 0x796f804 0x8804c 0x909def)
    0x5c356248 : 0x8ebf91 (0x796f804 0x8804c 0x4c 0x713455c0)
    0x5c3562a8 : 0x9006da (0x796f804 0x7532004 0x1 0xa)
    0x5c356308 : 0x7390a3 (0x796f804 0x74a0004 0x0 0x0)
    0x5c356348 : 0x67950b (0x74a0004 0x1388 0x0 0x0)
    0x5c356398 : 0x90fa88 (0x796f804 0x5c356488 0x5c356488 0x8)
    0x5c3564c8 : 0x910086 (0x796f804 0x7869604 0x0 0x0)
    0x5c356528 : 0x683736 (0x796f804 0x7869604 0x7a2cb04 0x0)
    0x5c3565a8 : 0x644c49 (0xc1d00041 0xbeef0003 0xbeef0202 0x6b0a100)
    0x5c3565e8 : 0x635804 (0x5c356778 0x6 0x0 0x0)
    0x5c356748 : 0x62736c (0x0 0x600d600d 0x7058 0x5c356778)
    0x5c356808 : 0xe8f917 (0xc1d00041 0xbeef0003 0xbeef0202 0x6b0a100)
    0x5c356848 : 0xe8f9ee (0x46873000 0x6b0a100 0xcac000 0x0)
    0x5c356878 : 0xe4ff9f (0x46873000 0x6b0a100 0xcac000 0x0)
              Backtrace continues...
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.GeForce(5.4.8)@0xe3c000->0xed3fff
                dependency: com.apple.NVDAResman(5.4.8)@0x61e000
                dependency: com.apple.iokit.IONDRVSupport(1.7.3)@0x610000
                dependency: com.apple.iokit.IOPCIFamily(2.6)@0x5e2000
                dependency: com.apple.iokit.IOGraphicsFamily(1.7.3)@0x5f3000
             com.apple.nvidia.nv40hal(5.4.8)@0x87d000->0xa47fff
                dependency: com.apple.NVDAResman(5.4.8)@0x61e000
             com.apple.NVDAResman(5.4.8)@0x61e000->0x87cfff
                dependency: com.apple.iokit.IONDRVSupport(1.7.3)@0x610000
                dependency: com.apple.iokit.IOPCIFamily(2.6)@0x5e2000
                dependency: com.apple.iokit.IOGraphicsFamily(1.7.3)@0x5f3000
    BSD process name corresponding to current thread: AppleVNCServer
    Mac OS version:
    9L31a
    Kernel version:
    Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386
    System model name: MacPro1,1 (Mac-F4208DC8)
    System uptime in nanoseconds: 65137051142183
    unloaded kexts:
    com.apple.driver.AppleHDAPlatformDriver          1.7.1a2 - last unloaded 131738816746
    loaded kexts:
    com.bresink.driver.BRESINKx86Monitoring          9.0 - last loaded 71732761724
    com.apple.driver.AppleHWSensor          1.9d0
    com.apple.filesystems.autofs          2.0.2
    com.apple.driver.AppleHDAPlatformDriver          1.7.1a2
    com.apple.driver.AppleUpstreamUserClient          2.7.5
    com.apple.driver.AppleHDAHardwareConfigDriver          1.7.1a2
    com.apple.driver.AppleHDA          1.7.1a2
    com.apple.GeForce          5.4.8
    com.apple.driver.AppleHDAController          1.7.1a2
    com.apple.Dont_Steal_Mac_OS_X          6.0.3
    com.apple.iokit.IOFireWireIP          1.7.7
    com.apple.driver.AudioIPCDriver          1.0.6
    com.apple.nvidia.nv40hal          5.4.8
    com.apple.driver.AppleMCEDriver          1.1.7
    com.apple.driver.ACPI_SMC_PlatformPlugin          3.4.0a17
    com.apple.driver.AppleLPC          1.3.1
    com.apple.driver.AppleTyMCEDriver          1.0.0d28
    com.apple.driver.MaxTranserSizeOverrideDriver          2.0.9
    com.apple.driver.iTunesPhoneDriver          1.0
    com.apple.iokit.IOUSBMassStorageClass          2.0.8
    com.apple.driver.AppleUSBComposite          3.2.0
    com.apple.driver.PioneerSuperDrive          2.0.9
    com.apple.iokit.SCSITaskUserClient          2.1.1
    com.apple.driver.AppleRAID          3.0.19
    com.apple.driver.XsanFilter          2.7.91
    com.apple.iokit.IOATAPIProtocolTransport          1.5.3
    com.apple.iokit.IOAHCIBlockStorage          1.2.2
    com.apple.driver.AppleFileSystemDriver          1.1.0
    com.apple.driver.AppleUSBHub          3.4.9
    com.apple.iokit.IOUSBUserClient          3.5.2
    com.apple.driver.AppleAHCIPort          1.7.0
    com.apple.driver.AppleFWOHCI          3.9.7
    com.apple.driver.AppleIntelPIIXATA          2.0.1
    com.apple.driver.AppleIntel8254XEthernet          2.1.2b1
    com.apple.driver.AppleUSBEHCI          3.4.6
    com.apple.driver.AppleUSBUHCI          3.5.2
    com.apple.driver.AppleEFINVRAM          1.2.0
    com.apple.driver.AppleACPIButtons          1.2.5
    com.apple.driver.AppleRTC          1.2.3
    com.apple.driver.AppleHPET          1.4
    com.apple.driver.AppleACPIPCI          1.2.5
    com.apple.driver.AppleSMBIOS          1.4
    com.apple.driver.AppleACPIEC          1.2.5
    com.apple.driver.AppleAPIC          1.4
    com.apple.security.seatbelt          107.12
    com.apple.nke.applicationfirewall          1.8.77
    com.apple.security.TMSafetyNet          3
    com.apple.driver.AppleIntelCPUPowerManagement          76.2.0
    com.apple.driver.DiskImages          199
    com.apple.BootCache          30.4
    com.apple.driver.DspFuncLib          1.7.1a2
    com.apple.iokit.IOHDAFamily          1.7.1a2
    com.apple.iokit.IOAudioFamily          1.6.9fc5
    com.apple.kext.OSvKernDSPLib          1.1
    com.apple.NVDAResman          5.4.8
    com.apple.iokit.IONDRVSupport          1.7.3
    com.apple.iokit.IOGraphicsFamily          1.7.3
    com.apple.driver.IOPlatformPluginFamily          3.4.0a17
    com.apple.driver.AppleSMC          2.3.1d1
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.1.1
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.1.1
    com.apple.iokit.IOBDStorageFamily          1.5
    com.apple.iokit.IODVDStorageFamily          1.5
    com.apple.iokit.IOCDStorageFamily          1.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.1.1
    com.apple.iokit.IOAHCIFamily          1.5.0
    com.apple.iokit.IOFireWireFamily          3.4.9
    com.apple.iokit.IOATAFamily          2.0.1
    com.apple.iokit.IONetworkingFamily          1.6.1
    com.apple.iokit.IOUSBFamily          3.5.2
    com.apple.driver.AppleEFIRuntime          1.2.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.iokit.IOHIDFamily          1.5.5
    com.apple.iokit.IOStorageFamily          1.5.6
    com.apple.driver.AppleACPIPlatform          1.2.5
    com.apple.iokit.IOPCIFamily          2.6
    com.apple.iokit.IOACPIFamily          1.2.0

    THIS:
    panic(cpu 1 caller 0x006376A4): NVRM[0]: Read Error
    ... Correlates with NVIDIA graphics card failure OR the use of two NVIDIA cards simultaneously in the same Mac Pro in 10.8 and later.
    The Apple-firmware 5770, about US$250,  works in every model Mac Pro, and drivers are in 10.6.5 and later.
    If you decide to do a Conversion of your Server from 10.5 to 10.6, it is not too bad. Just plan on a brief downtime -- I tried to keep it all running 24/7 by creating a new Servername for the new one, and that serious mistake still haunts me.
    You should plan on such a conversion to get closer to current security updates -- 10.5 is not getting those updates, and you should really disconnect your 10.5 Server from the Internet.

Maybe you are looking for

  • How to Build Custom JSP Page to bypass Oracle Apps Login

    Hi All, Can some one guide me how to develop a custom jsp page to bypass Oracle Apps R12 Login. Actually Our requirement is some external user will enter the login details in some third party login page with the third party generated username and pas

  • Installing Windows 7 from USB flash (Macbook Air mid 2012)

    Hello, I read some famous instructions, but they are not for Macbook air mid 2012 as there are some missing options in their Bootcamp Assistant and this on macbook air 2012. Btw, they suggested some rEFIt program which supports installing windows fro

  • Get System.map for linux-lts?

    I am trying to use volatility on a Arch linux (lts) memory dump and for that I need to create a profile for Arch linux. The problem is that arch linux does not come with a System.map file and the vmlinuz files seem stripped (? cannot run nm on it). I

  • [SOLVED] synaptics touch pad

    so i got an EeePC 900A last night for my bday, aside from the problems i had getting started, trying out the factory install that didn't work at all, i'm loving. anyway, i got arch installed on it last night. and used the Xorg -config to generate a x

  • HP Storagewor​ks Ultrium 448 g2 - Autoloader

    Hi all, I have a HP Storageworks Ultrium 448 g2 - Autoloader off since long time ago. Now when I turn it on an error appears: Robotic Failure  code: 9E 09 description: Error Elevetor Init   firmware version 27.7 I really don't know how to solve it. C