Working off 3 junction tables...

Greetings:
My 3 dimensional skills are taxed with this query.
I have 3 junction M2M tables-
Bid to Code:
junction_ID bid_ID cccode_ID
Vendor to Code:
ccjunction_ID cccategory_ID vendor_ID
Vendor to bid (not used in this query)
and one contact table, which contains vendor_new_ID (FK) and
the email address I need to send a notification to.
new_contact_ID vendor_new_ID contact_email
I need to send out a notification email to all vendor
contacts who have the corresponding code.
I came up with:
<cfquery name="list_sentto"
datasource="#Request.BaseDSN#">
SELECT new_contact_ID, vendor_new_ID, contact_email, bid_ID,
cccode_ID, cccategory_ID, vendor_ID
FROM lookup_contact, junction_bid_ccc, junction_vendor_ccc
WHERE cccode_ID = cccategory_ID
AND vendor_new_ID = vendor_ID
AND ? (getting Cartesian product)
</cfquery>
which then does:
<cfmail
to="contact_email"
from="systememail"
subject="Bid Notification"
server ="ourserver">
= = = = = = = = = = = = = = = = = = = = = = = = = = =
You are receiving this message because you are listed as a
Vendor in our System.
The following Bid Package has been posted:
#link to PDF Document#
Please Log-In to the Vendor Bidding Notification System to
Access this Bid Package
= = = = = = = = = = = = = = = = = = = = = = = = = = =
</cfmail>
Thanks for any help-
rinorman

If you have any control at all over your database design,
re-do your many to many tables and get rid of the junctionid
fields. They enable you to have records that are effectively
duplicates of each other.
For your current design, you need to do a "select distinct"
to handle that part.
For your specific question, does the contact_new_id refer to
anything in either of the other tables you mentioned?

Similar Messages

  • Text Index works fine consistently with Table, but not on underlying View

    Hi,
    We are facing weird issue relating to Oracle Text Indexes. Search using Oracle Text Index
    works fine on a Table, but when running query on View it gives sometimes (not consistently)
    ORA-20000: Oracle Text error:
    DRG-10849: catsearch does not support functional invocation
    DRG-10599: column is not indexed
    Sometimes it works.
    All of the below steps are run using User IR2OWNER:
    STEP 1: Table CPF_CUSTOMER created as follows (3 Non Text Indexes defined at time of creation )
    **Please note no Public Synonym is created for this Table**
    ** There is already another Table by same name CPF_CUSTOMER under different Owner (CDROWNER)
    and that Table has Public Synonym CPF_CUSTOMER created. Other Table CPF_CUSTOMER does not
    have any Views **
    create table CPF_CUSTOMER
    CPF_CUSTOMER_UUID NUMBER(20) not null,
    SAP_ID VARCHAR2(10 CHAR) not null,
    IRIS2_ID VARCHAR2(7 CHAR),
    NAME VARCHAR2(70 CHAR) not null,
    DRAFT_IND NUMBER(1) not null,
    ACTIVE_IND NUMBER(1) not null,
    REPLACED_BY_CUST VARCHAR2(10 CHAR),
    CRE_DT_GMT DATE,
    CRE_DT_LOC DATE,
    TIME_ZONE VARCHAR2(3 CHAR),
    CRE_USR VARCHAR2(8 CHAR),
    CHG_DT_GMT DATE,
    CHG_DT_LOC DATE,
    CHG_TIME_ZONE VARCHAR2(3 CHAR),
    CHG_USR VARCHAR2(8 CHAR),
    VFY_DT_GMT DATE,
    VFY_DT_LOC DATE,
    VFY_USR VARCHAR2(8 CHAR),
    DIVISION VARCHAR2(20 CHAR),
    SALES_ADMIN VARCHAR2(3 CHAR),
    MF_CUST_CDE VARCHAR2(14 CHAR),
    CR_CTRL_OFCE VARCHAR2(3 CHAR),
    DEFAULT_INV_CCY VARCHAR2(3 CHAR),
    AUTOBILL_OVRRD_IND NUMBER(1) not null,
    AUTOBILL NUMBER(1) not null,
    AUTOPRT_OVRRD_IND NUMBER(1) not null,
    AUTOPRT NUMBER(1) not null,
    AVE_PYMT_DAY NUMBER(3),
    TTL_INV_VAL NUMBER(12,2),
    INHERIT_CR_TERM_ASSGMT NUMBER(1) not null,
    NORMALIZED_NME VARCHAR2(70 CHAR),
    OB_PYMT_OFCE VARCHAR2(3 CHAR),
    IB_PYMT_OFCE VARCHAR2(3 CHAR),
    CGO_SMART_ID VARCHAR2(20 CHAR),
    REC_UPD_DT TIMESTAMP(6),
    NCPF_CUST_ID VARCHAR2(7) not null,
    CPF_CUST_LEVEL_UUID NUMBER(20) not null
    tablespace DBCPFP1_LG_DATA LOGGING;
    CREATE UNIQUE INDEX CPF_CUSTOMERI1 ON CPF_CUSTOMER
    (SAP_ID ASC) TABLESPACE DBCPFP1_LG_INDX;
    ALTER TABLE CPF_CUSTOMER
    ADD CONSTRAINT CPF_CUSTOMERI1 UNIQUE (SAP_ID);
    CREATE UNIQUE INDEX CPF_CUSTOMERI2 ON CPF_CUSTOMER
    (CPF_CUSTOMER_UUID ASC) TABLESPACE DBCPFP1_LG_INDX;
    ALTER TABLE CPF_CUSTOMER
    ADD CONSTRAINT CPF_CUSTOMERI2 UNIQUE (CPF_CUSTOMER_UUID);
    CREATE INDEX CPF_CUSTOMER_IDX2 ON CPF_CUSTOMER (UPPER(NAME))
    TABLESPACE DBCPFP1_LG_INDX;
    STEP 2: Create View CPF_CUSTOMER_RVW on above Table (and Public Synonym on View)
    This View is created under same OWNER as Table created in STEP 1 (IR2OWNER)
    create or replace view cpf_customer_rvw as
    select
    CPF_CUSTOMER_UUID,
    SAP_ID,
    IRIS2_ID,
    NAME,
    DRAFT_IND,
    ACTIVE_IND,
    REPLACED_BY_CUST,
    CRE_DT_GMT,
    CRE_DT_LOC,
    TIME_ZONE,
    CRE_USR,
    CHG_DT_GMT,
    CHG_DT_LOC,
    CHG_TIME_ZONE,
    CHG_USR,
    VFY_DT_GMT,
    VFY_DT_LOC,
    VFY_USR,
    DIVISION,
    SALES_ADMIN,
    MF_CUST_CDE,
    CR_CTRL_OFCE,
    DEFAULT_INV_CCY,
    AUTOBILL_OVRRD_IND,
    AUTOBILL,
    AUTOPRT_OVRRD_IND,
    AUTOPRT,
    AVE_PYMT_DAY,
    TTL_INV_VAL,
    INHERIT_CR_TERM_ASSGMT,
    NORMALIZED_NME,
    OB_PYMT_OFCE,
    IB_PYMT_OFCE,
    CGO_SMART_ID,
    NCPF_CUST_ID,
    CPF_CUST_LEVEL_UUID,
    REC_UPD_DT
    from CPF_CUSTOMER;
    CREATE OR REPLACE PUBLIC SYNONYM CPF_CUSTOMER_RVW FOR CPF_CUSTOMER_RVW;
    STEP 3: Insert Test row
    insert into cpf_customer (CPF_CUSTOMER_UUID, SAP_ID, IRIS2_ID, NAME, DRAFT_IND, ACTIVE_IND, REPLACED_BY_CUST, CRE_DT_GMT, CRE_DT_LOC, TIME_ZONE, CRE_USR, CHG_DT_GMT, CHG_DT_LOC, CHG_TIME_ZONE, CHG_USR, VFY_DT_GMT, VFY_DT_LOC, VFY_USR, DIVISION, SALES_ADMIN, MF_CUST_CDE, CR_CTRL_OFCE, DEFAULT_INV_CCY, AUTOBILL_OVRRD_IND, AUTOBILL, AUTOPRT_OVRRD_IND, AUTOPRT, AVE_PYMT_DAY, TTL_INV_VAL, INHERIT_CR_TERM_ASSGMT, NORMALIZED_NME, OB_PYMT_OFCE, IB_PYMT_OFCE, CGO_SMART_ID, NCPF_CUST_ID, CPF_CUST_LEVEL_UUID, REC_UPD_DT)
    values (2.26283572796028E15, '6588125000', '6588125', 'S M Mooseen And Sons(PVT) Limited', 0, 1, '', to_date('15-03-2005 08:55:00', 'dd-mm-yyyy hh24:mi:ss'), to_date('15-03-2005 14:25:00', 'dd-mm-yyyy hh24:mi:ss'), 'IST', 'licr2', to_date('19-02-2007 00:33:00', 'dd-mm-yyyy hh24:mi:ss'), to_date('19-02-2007 06:03:00', 'dd-mm-yyyy hh24:mi:ss'), 'IST', 'BaseAdmi', to_date('15-03-2005 09:03:00', 'dd-mm-yyyy hh24:mi:ss'), to_date('15-03-2005 14:33:00', 'dd-mm-yyyy hh24:mi:ss'), 'ninwasa', '', '', 'SRI06588125000', '463', '', 0, 0, 0, 0, null, null, 0, 'SMMOOSEENANDSONSPVTLIMITED', '', '', '', '6588125', 109966195050333, '14-JAN-09 02.49.28.325774 PM');
    commit;
    STEP 4: Create Oracle Text Index on Table CPF_CUSTOMER
    EXEC CTX_DDL.DROP_PREFERENCE('CTXCAT_IR2_STORAGE');
    EXEC CTX_DDL.CREATE_PREFERENCE('CTXCAT_IR2_STORAGE', 'BASIC_STORAGE');
    EXEC CTX_DDL.SET_ATTRIBUTE('CTXCAT_IR2_STORAGE', 'I_INDEX_CLAUSE', 'TABLESPACE COMMON_SM_INDX COMPRESS 2');
    EXEC CTX_DDL.SET_ATTRIBUTE('CTXCAT_IR2_STORAGE', 'I_INDEX_CLAUSE', 'TABLESPACE COMMON_SM_INDX COMPRESS 2');
    EXEC CTX_DDL.SET_ATTRIBUTE('CTXCAT_IR2_STORAGE', 'K_TABLE_CLAUSE', 'TABLESPACE COMMON_SM_INDX COMPRESS 2');
    EXEC CTX_DDL.SET_ATTRIBUTE('CTXCAT_IR2_STORAGE', 'R_TABLE_CLAUSE', 'TABLESPACE COMMON_SM_INDX COMPRESS 2');
    EXEC CTX_DDL.SET_ATTRIBUTE('CTXCAT_IR2_STORAGE', 'I_ROWID_INDEX_CLAUSE', 'TABLESPACE COMMON_SM_INDX storage (INITIAL 5M)');
    -- Define IR2_AB_LEXER to handle Special Characters.
    EXEC ctx_ddl.drop_preference('IR2_AB_LEXER');
    EXEC ctx_ddl.create_preference('IR2_AB_LEXER', 'BASIC_LEXER');
    EXEC ctx_ddl.set_attribute ('IR2_AB_LEXER', 'printjoins', ',_!$~%?=({;|&+-:/)}.@`^');
    --Drop Indexes
    drop index CPF_CUSTOMER_DIDX1;
    -- CATSEARCH INDEX on CPF_CUSTOMER.NAME     
    CREATE INDEX CPF_CUSTOMER_DIDX1 ON CPF_CUSTOMER(NAME) INDEXTYPE IS CTXSYS.CTXCAT PARAMETERS ('STORAGE CTXCAT_IR2_STORAGE STOPLIST CTXSYS.EMPTY_STOPLIST LEXER IR2_AB_LEXER');
    commit;
    STEP 5: Run Query to use Oracle Text Index on Base Table (works fine always. No issues seen so far)
    SELECT a.sap_id||'|'||a.name||'|' CUSTOMER_STR
    FROM cpf_customer a
    WHERE (catsearch(a.name, 'Mooseen'||'*', '')>0);
    CUSTOMER_STR
    6588125000|S M Mooseen And Sons(PVT) Limited|
    STEP 6: Run Query to use Oracle Text Index on View created under Table (get below error periodically)
    ORA-20000: Oracle Text error:
    DRG-10849: catsearch does not support functional invocation
    DRG-10599: column is not indexed
    But it works sometimes as in STEP 5 and returns 1 row. It is never consistent. We would like to
    provide access to this Table using View only. That is why we would like to get this query working consistently
    using View.
    Any help or tips would be greatly appreciated
    Thanks
    Auro

    This is a known issue with CTXCAT indexes. Sometimes the optimizer will "drive" the query off another index, and request results from the CTXCAT index on a row-by-row basis ("does the row with rowid NNNN satisfy this CATSEARCH condition?"). That's known as a functional lookup, and is not supported by the CTXCAT indextype.
    The only solution is to try to persuade the optimizer to use a different plan which does not use a functional lookup. This can be achieved by the use of hints, or sometimes by collecting or deleting statistics on the table.

  • I can't get some song on my iphone they work off of the computer but they wont show up on my phone they are in the "on my iphone" section but they gray and have a gray dotted circle next to them i have tried every thing I just want them on my phone HELP!

    I can't get some song on my iphone they work off of the computer but they wont show up on my phone they are in the "on my iphone" section but they gray and have a gray dotted circle next to them i have tried every thing I just want them on my phone HELP!!!

    You have posted to the iTunes Match forum, which your question does not seem to be related to. Is your question concerning iTunes Match or syncing with iTunes via USB?

  • When I open a PDF and try to use the Ctrl F (Find feature), the colorful spin wheel pops up and it spins for a while. When it finishes I get an error box that's titled 'Adobe Reader Quit Unexpectantly'. I work off of a MACBOOK Pro, version 10.9.2. I have

    Hello:
              When I open a PDF and try to use the Ctrl F (Find feature), the colorful spin wheel pops up and it spins for a while. When it finishes I get an error box that’s titled ‘Adobe Reader Quit Unexpectantly’. The following is all of the information in that box. I work off of a MACBOOK Pro, version 10.9.2. I have the latest version of Adobe Reader downloaded. Please help, as I need to use the Adobe Reader for my class. I have an assignment due by 11:59pm Monday 3/10.
    Error Message Below:
    Problem Details and System Configuration
    Process:         AdobeReader [1423] 
    Path:            /Applications/Adobe Reader.app/Contents/MacOS/AdobeReader
    Identifier:      com.adobe.Reader
    Version:         11.0.06 (11.0.06)
    Code Type:       X86 (Native)
    Parent Process:  launchd [157]
    Responsible:     AdobeReader [1423]
    User ID:         501
    Date/Time:       2014-03-09 23:34:16.983 -0400
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  8617A4DB-F5EF-60C5-CADF-243F00035FD6
    Sleep/Wake UUID: 72F58578-8A21-4473-8D1D-0802EE6BEAE8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000bf7d602c
    VM Regions Near 0xbf7d602c:
        __LINKEDIT             00000000bab23000-00000000bab25000 [    8K] r--/rwx SM=COW  /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    --> Stack                  00000000bbfd7000-00000000bf7d7000 [ 56.0M] ---/rwx SM=NUL 
        Stack                  00000000bf7d7000-00000000bffd7000 [ 8192K] rw-/rwx SM=COW 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.ColorSync                     0x96b63cd2 ConversionManager::ApplySequenceToBitmap(CMMConvNode*, CMMEncoDec&, CMMRuntimeInfo*, unsigned long, CMMProgressNotifier*) + 12
    1   com.apple.ColorSync                     0x96b4d64d CMMProcessBitmap(CMMConversionParams*) + 626
    2   com.apple.ColorSync                     0x96b4d176 DoApplyTransform + 690
    3   com.apple.ColorSync                     0x96b4ea70 AppleCMMApplyTransform + 235
    4   com.apple.ColorSync                     0x96b8bfb8 ColorSyncCMMApplyTransform + 118
    5   com.apple.ColorSync                     0x96b3a1ad ColorSyncTransformConvert + 200
    6   libCGCMS.A.dylib                        0x9492ac04 ConvertImageGeneric + 690
    7   libCGCMS.A.dylib                        0x9492a944 CMSColorWorldConvertData + 33
    8   libCGCMS.A.dylib                        0x9492aef5 CMSTransformConvertData + 47
    9   com.apple.CoreGraphics                  0x9b6b9c91 CGCMSTransformConvertData + 56
    10  com.apple.CoreGraphics                  0x9b6b9c36 CGColorTransformConvertData + 201
    11  libRIP.A.dylib                          0x91c8acb5 ripc_AcquireFunction + 2033
    12  libRIP.A.dylib                          0x91c89fa8 ripc_DrawShading + 9462
    13  com.apple.CoreGraphics                  0x9b6bc711 CGContextDrawShading + 66
    14  com.adobe.Acrobat.framework             0x0014656c 0x33000 + 1127788
    15  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    16  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    17  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    18  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    19  com.adobe.Acrobat.framework             0x0014b961 0x33000 + 1149281
    20  com.adobe.Acrobat.framework             0x0040bd6d 0x33000 + 4033901
    21  com.adobe.Acrobat.framework             0x0053f04e 0x33000 + 5292110
    22  com.adobe.Acrobat.framework             0x004aa9d5 0x33000 + 4684245
    23  com.adobe.Acrobat.framework             0x004ac0c3 0x33000 + 4690115
    24  com.adobe.Acrobat.framework             0x004ace91 0x33000 + 4693649
    25  com.adobe.Acrobat.framework             0x004acf98 0x33000 + 4693912
    26  com.adobe.Acrobat.framework             0x004abfaf 0x33000 + 4689839
    27  com.adobe.Acrobat.framework             0x0053e786 0x33000 + 5289862
    28  com.adobe.Acrobat.framework             0x0053dad5 0x33000 + 5286613
    29  com.adobe.Acrobat.framework             0x0014539a 0x33000 + 1123226
    30  com.adobe.Acrobat.framework             0x00144ec3 0x33000 + 1121987
    31  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    32  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    33  com.adobe.Acrobat.framework             0x0014567b 0x33000 + 1123963
    34  com.adobe.Acrobat.framework             0x00144f62 0x33000 + 1122146
    35  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    36  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    37  com.adobe.Acrobat.framework             0x0014567b 0x33000 + 1123963
    38  com.adobe.Acrobat.framework             0x00144f62 0x33000 + 1122146
    39  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    40  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    41  com.adobe.Acrobat.framework             0x0014567b 0x33000 + 1123963
    42  com.adobe.Acrobat.framework             0x00144f62 0x33000 + 1122146
    43  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    44  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    45  com.adobe.Acrobat.framework             0x0014567b 0x33000 + 1123963
    46  com.adobe.Acrobat.framework             0x00144f62 0x33000 + 1122146
    47  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    48  com.adobe.Acrobat.framework             0x00145833 0x33000 + 1124403
    49  com.adobe.Acrobat.framework             0x004b6aa7 0x33000 + 4733607
    50  com.adobe.Acrobat.framework             0x00119590 0x33000 + 943504
    51  com.adobe.Acrobat.framework             0x00145dbd 0x33000 + 1125821
    52  com.adobe.Acrobat.framework             0x00144f9e 0x33000 + 1122206
    53  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    54  com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    55  com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    56  com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    57  com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    58  com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    59  com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    60  com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    61  com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    62  com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    63  com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    64  com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    65  com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    66  com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    67  com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    68  com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    69  com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    70  com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    71  com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    72  com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    73  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    74  com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    75  com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    76  com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    77  com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    78  com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    79  com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    80  com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    81  com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    82  com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    83  com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    84  com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    85  com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    86  com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    87  com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    88  com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    89  com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    90  com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    91  com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    92  com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    93  com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    94  com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    95  com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    96  com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    97  com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    98  com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    99  com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    100 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    101 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    102 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    103 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    104 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    105 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    106 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    107 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    108 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    109 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    110 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    111 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    112 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    113 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    114 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    115 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    116 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    117 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    118 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    119 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    120 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    121 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    122 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    123 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    124 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    125 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    126 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    127 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    128 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    129 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    130 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    131 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    132 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    133 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    134 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    135 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    136 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    137 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    138 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    139 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    140 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    141 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    142 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    143 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    144 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    145 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    146 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    147 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    148 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    149 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    150 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    151 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    152 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    153 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    154 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    155 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    156 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    157 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    158 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    159 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    160 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    161 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    162 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    163 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    164 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    165 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    166 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    167 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    168 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    169 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    170 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    171 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    172 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    173 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    174 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    175 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    176 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    177 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    178 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    179 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    180 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    181 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    182 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    183 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    184 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    185 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    186 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    187 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    188 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    189 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    190 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    191 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    192 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    193 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    194 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    195 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    196 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    197 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    198 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    199 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    200 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    201 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    202 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    203 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    204 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    205 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    206 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    207 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    208 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    209 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    210 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    211 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    212 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    213 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    214 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    215 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    216 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    217 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    218 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    219 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    220 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    221 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    222 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    223 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    224 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    225 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    226 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    227 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    228 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    229 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    230 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    231 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    232 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    233 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    234 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    235 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    236 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    237 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    238 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    239 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    240 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    241 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    242 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    243 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    244 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    245 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    246 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    247 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    248 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    249 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    250 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    251 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    252 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    253 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    254 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    255 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    256 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    257 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    258 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    259 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    260 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    261 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    262 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    263 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    264 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    265 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    266 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    267 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    268 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    269 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    270 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    271 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    272 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    273 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    274 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    275 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    276 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    277 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    278 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    279 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    280 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    281 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    282 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    283 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    284 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    285 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    286 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    287 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    288 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    289 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    290 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    291 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    292 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    293 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    294 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    295 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    296 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    297 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    298 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    299 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    300 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    301 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    302 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    303 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    304 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    305 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    306 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    307 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    308 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    309 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    310 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    311 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    312 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    313 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    314 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    315 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    316 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    317 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    318 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    319 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    320 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    321 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    322 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    323 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    324 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    325 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    326 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    327 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    328 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    329 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    330 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    331 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    332 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    333 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    334 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    335 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    336 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    337 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    338 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    339 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    340 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    341 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    342 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    343 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    344 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    345 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    346 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    347 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    348 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    349 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    350 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    351 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    352 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    353 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    354 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    355 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    356 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    357 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    358 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    359 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    360 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    361 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    362 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    363 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    364 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    365 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    366 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    367 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    368 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    369 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    370 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    371 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    372 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    373 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    374 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    375 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    376 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    377 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    378 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    379 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    380 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    381 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    382 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    383 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    384 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    385 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    386 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    387 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    388 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    389 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    390 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    391 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    392 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    393 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    394 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    395 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    396 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    397 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    398 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    399 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    400 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    401 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    402 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    403 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    404 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    405 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    406 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    407 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    408 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    409 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    410 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    411 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    412 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    413 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    414 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    415 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    416 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    417 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    418 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    419 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    420 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    421 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    422 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    423 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    424 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    425 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    426 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    427 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    428 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    429 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    430 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    431 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    432 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    433 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    434 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    435 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    436 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    437 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    438 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    439 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    440 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    441 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    442 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    443 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    444 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    445 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    446 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    447 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    448 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    449 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    450 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    451 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    452 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    453 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    454 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    455 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    456 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    457 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    458 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    459 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    460 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    461 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    462 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    463 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    464 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    465 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    466 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    467 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    468 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    469 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    470 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    471 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    472 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    473 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    474 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    475 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    476 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    477 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    478 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    479 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    480 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    481 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    482 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    483 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    484 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    485 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    486 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    487 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    488 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    489 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    490 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    491 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    492 com.adobe.Acrobat.framework             0x00144d2f 0x33000 + 1121583
    493 com.adobe.Acrobat.framework             0x001449ca 0x33000 + 1120714
    494 com.adobe.Acrobat.framework             0x00144814 0x33000 + 1120276
    495 com.adobe.Acrobat.framework             0x001440a0 0x33000 + 1118368
    496 com.adobe.Acrobat.framework             0x00143d03 0x33000 + 1117443
    497 com.apple.AppKit                        0x95fea2a8 -[NSView _drawRect:clip:] + 3816
    498 com.apple.AppKit                        0x95fe8cdf -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1829
    499 com.apple.AppKit                        0x95fe7288 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1264
    500 com.apple.AppKit                        0x95fe3c67 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3645
    501 com.apple.AppKit                        0x95fc175c -[NSView displayIfNeeded] + 1414
    502 com.adobe.Acrobat.framework             0x00622a6d 0x33000 + 6224493
    503 com.adobe.Acrobat.framework             0x0051cd4c 0x33000 + 5152076
    504 com.adobe.Acrobat.framework             0x006a6ada 0x33000 + 6765274
    505 com.adobe.Acrobat.framework             0x001540e7 0x33000 + 1183975
    506 com.adobe.Acrobat.framework             0x0013e1e2 0x33000 + 1094114
    507 com.adobe.Acrobat.framework             0x0050c6d3 0x33000 + 5084883
    508 com.adobe.Acrobat.framework             0x00d9e22f 0x33000 + 14070319
    509 com.adobe.Acrobat.framework             0x009d838e 0x33000 + 10113934
    510 com.adobe.Acrobat.framework             0x001b869e 0x33000 + 1595038
    511 com.adobe.Acrobat.framework             0x00145e92 0x33000 + 1126034
    Thread 1:: Dispatch queue: NSOperationQueue 0x7a62c400
    0   libsystem_kernel.dylib                  0x906efb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9be20fb7 nanosleep$UNIX2003 + 219
    2   com.apple.Foundation                    0x94b54621 +[NSThread sleepForTimeInterval:] + 170
    3   com.adobe.Acrobat.framework             0x00a4c569 0x33000 + 10589545
    4   com.apple.Foundation                    0x94ac234c -[__NSOperationInternal _start:] + 702
    5   com.apple.Foundation                    0x94ac2081 -[NSOperation start] + 71
    6   com.apple.Foundation                    0x94ac1fa8 __NSOQSchedule_f + 50
    7   libdispatch.dylib                       0x93021e11 _dispatch_async_redirect_invoke + 158
    8   libdispatch.dylib                       0x9301d396 _dispatch_client_callout + 50
    9   libdispatch.dylib                       0x9301f457 _dispatch_root_queue_drain + 257
    10  libdispatch.dylib                       0x93020722 _dispatch_worker_thread2 + 39
    11  libsystem_pthread.dylib                 0x936eadab _pthread_wqthread + 336
    12  libsystem_pthread.dylib                 0x936eecce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x906f0992 kevent64 + 10
    1   libdispatch.dylib                       0x9301f8ad _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x9301f546 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x906ef7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x936ebd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x936edbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x913f1682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x913f18a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x913bdcf2 MPWaitOnQueue + 199
    6   com.adobe.ACE                           0x019f94dc 0x19f7000 + 9436
    7   com.adobe.ACE                           0x019f9441 0x19f7000 + 9281
    8   com.apple.CoreServices.CarbonCore          0x913be2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x906ef7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x936ebd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x936edbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AGM                           0x01b61f67 0x1b56000 + 48999
    4   com.adobe.AGM                           0x01b61ea6 0x1b56000 + 48806
    5   com.adobe.AGM                           0x01b61e44 0x1b56000 + 48708
    6   com.adobe.AGM                           0x01b61ae4 0x1b56000 + 47844
    7   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x906eaf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x906ea16c mach_msg + 68
    2   com.apple.CoreFoundation                0x996f0d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x996f0301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x996efb1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x996ef97b CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x9602cb68 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x906f0976 kevent + 10
    1   com.adobe.Acrobat.framework             0x00f6d771 0x33000 + 15968113
    2   com.adobe.Acrobat.framework             0x00ede593 0x33000 + 15381907
    3   com.adobe.Acrobat.framework             0x00edb04b 0x33000 + 15368267
    4   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x906eaf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x906ea16c mach_msg + 68
    2   com.apple.CoreFoundation                0x996f0d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x996f0301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x996efb1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x996ef97b CFRunLoopRunInMode + 123
    6   com.adobe.AcrobatPlugin.EFS             0x055e6876 0x55cf000 + 96374
    7   com.apple.Foundation                    0x94b26f0e -[NSThread main] + 45
    8   com.apple.Foundation                    0x94b26e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 8:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x906eaf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x906ea16c mach_msg + 68
    2   com.apple.CoreFoundation                0x996f0d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x996f0301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x996efb1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x996ef97b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x94b27095 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation                    0x94b26f0e -[NSThread main] + 45
    8   com.apple.Foundation                    0x94b26e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib                 0x936e95fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x936e9485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x936eecf2 thread_start + 34
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        

    Acrobat Support

  • Can get the AirPlay to work off my computer, but not my iPhone or iPad. I have the latest software.  Airplay logo never appears on iPhone or iPad.

    Can get the AirPlay to work off my computer, but not my iPhone or iPad. I have the latest software.  Airplay logo never appears on iPhone or iPad.

    Try here  >  http://support.apple.com/kb/TS1538

  • Found 0 results for My browser is missing important items, the whole tool bar...., drop down menu to print, copy, work off line, file, save, book mark, history. I just installed latest foxfire on windows xp. Found some instructions but they called for usi

    Found 0 results for My browser is missing important items, the whole tool bar...., drop down menu to print, copy, work off line, file, save, book mark, history. I just installed latest foxfire on windows xp. Found some instructions but they called for using keys my computer doesn't have ( key in OSX There is no file, edit , history, help, tools, navigation, all the things your directions say to use. Also I always get hung up and the message a scrip is running. I don't know what thises scrips are but I sure don't need them.
    == This happened ==
    Every time Firefox opened
    == I just noticed it. It probably happened when I upgraded foxfire.

    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(Linux & OSX see: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M
    <u>''Windows'' Method 2.</u> Press and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar.
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See: http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''

  • How to have Dynamic Columns based on Work centers in CRHD table?

    i need to create dynamic internal table......based on the number of entries(work centers ) in CRHD table....this is number of work centers...like how many manufac unit....How to have the work center names at heading and how to fill values at rows...as the number of workcenters may differ dynamic.....how to fill the values...for a dynamic internal table

    Hi Meena,
    For Dynamic display  ,go through it
    REPORT  yusmm_text1  NO STANDARD PAGE HEADING
                         LINE-SIZE 199.
    T A B L E S
    TABLES: MARA,
            MAKT,
            THEAD.
    GLOBAL TYPE-POOLS
    TYPE-POOLS : SLIS.
       GLOBAL TYPES
    TYPES : BEGIN OF TP_FINAL,
           MATNR TYPE MARA-MATNR,
           BEGRU TYPE MARA-BEGRU,
           MTART TYPE MARA-MTART,
           MAKTX TYPE MAKT-MAKTX,
           SPRAS TYPE MAKT-SPRAS,
           LTXT(2000)  TYPE C ,
           SRNO TYPE N ,
          END OF TP_FINAL.
    TYPES : BEGIN OF TP_T002,
            SPRAS TYPE T002-SPRAS,
            LAISO TYPE T002-LAISO,
            SRNO TYPE N ,
            END OF TP_T002.
    TYPES : BEGIN OF TP_MARA_MAKT,
            MATNR TYPE MARA-MATNR,
            BEGRU TYPE MARA-BEGRU,
            MTART TYPE MARA-MTART,
            SPRAS TYPE MAKT-SPRAS,
            MAKTX TYPE MAKT-MAKTX,
           END OF TP_MARA_MAKT.
    Types: BEGIN OF tp_matnr,
           matnr TYPE mara-matnr,
           END OF tp_matnr.
       GLOBAL ELEMENTARY VARIABLES
    DATA : gv_date TYPE sy-datum.
    DATA : gv_repid TYPE sy-repid.
    DATA : g_var1(10) TYPE C.
    DATA : gv_index TYPE sy-tabix.
    DATA: gv_strg TYPE string,
          gv_strg1(2000) TYPE C.
    DATA : gv_lang TYPE sy-langu.
    DATA : g_v(3) TYPE N .
    DATA : gv_lines(3) TYPE N .
    DATA : gv_var(3) TYPE N .
    DATA : gv_var1(3) TYPE N.
    DATA: gv_str TYPE STRING.
    DATA: gv_str1 TYPE STRING.
    DATA : gv_li TYPE I,
           gv_lit TYPE I,
           gv_lin TYPE I.
    DATA: g_var11(3) TYPE N,
          gv_li1(3) TYPE N,
          g_var2(3) TYPE N.
    DATA : gv_i1 TYPE I.
    DATA : gv_i TYPE I.
    DATA: gl_lenght TYPE I.
       GLOBAL STRUCTURES
    DATA:   T_NEWTABLE TYPE REF TO DATA,
            T_NEWLINE  TYPE REF TO DATA,
            T_FLDCAT1   TYPE SLIS_T_FIELDCAT_ALV,
            T_FLDCAT   TYPE LVC_T_FCAT,
            WA_IT_FLDCAT TYPE LVC_S_FCAT,
            WA_IT_FLDCAT1 TYPE SLIS_FIELDCAT_ALV,
            WA_COLNO(2) TYPE N,
            WA_FLNAME(5) TYPE C,
            L_LT TYPE SLIS_LAYOUT_ALV.
       GLOBAL INTERNAL TABLES (WITH INCLUDE STRUCTURE)
    DATA : IG_MARA_MAKT TYPE STANDARD TABLE OF TP_MARA_MAKT,
           WG_MARA_MAKT TYPE TP_MARA_MAKT.
    DATA : IG_T002 TYPE STANDARD TABLE OF TP_T002,
           WG_T002 TYPE TP_T002.
    DATA : IG_FINAL TYPE STANDARD TABLE OF TP_FINAL,
           WG_FINAL TYPE TP_FINAL.
    data : IG_MATNR TYPE STANDARD TABLE OF TP_MATNR WITH HEADER  LINE,
           WG_MATNR TYPE TP_MATNR.
    DATA:BEGIN OF IG_THEAD OCCURS 0.
            INCLUDE STRUCTURE THEAD .
    DATA: END OF IG_THEAD.
    DATA:BEGIN OF IG_TLINE OCCURS 0.
            INCLUDE STRUCTURE TLINE  .
    DATA:END OF IG_TLINE.
    FIELD-SYMBOLS
    FIELD-SYMBOLS: <T_DYNTABLE> TYPE STANDARD TABLE,"Dynamic internal
                                                            "tablename
                   <FS_DYNTABLE>,  "Field symbol to create work area
                  <FS_FLDVAL> TYPE ANY.   " Field symbol to assign values
    COMPULSORY
    FIELD-SYMBOLS: <FS_DATA> TYPE REF TO DATA,
                   <FS_DATA1> TYPE REF TO DATA,
                   <FS_2>    TYPE STANDARD TABLE,
                   <FS_22>   TYPE STANDARD TABLE,
                   <FS_1>,
                   <FS_11>,
                   <F>,
                   <FA>,
                   <LWA_LINE_WA>,
                   <LWA_LINE_WA1>.
    ------- Create Dyn Table From FC
    DATA: LT_DATA        TYPE   REF TO DATA,
          LT_DATA1        TYPE   REF TO DATA,
          LWA_LINE       TYPE   REF TO  DATA,
          LWA_LINE1       TYPE   REF TO  DATA,
          LI_FIELD_CAT   TYPE   LVC_T_FCAT,
          LWA_FIELD_CAT  TYPE   LVC_S_FCAT.
       PARAMETERS & SELECT-OPTIONS
    SELECTION-SCREEN : BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : S_SPRAS FOR MAKT-SPRAS NO INTERVALS  DEFAULT 'EN'
                                                            OBLIGATORY ,
                     S_MATNR FOR MARA-MATNR,
                     S_MTART FOR MARA-MTART.
    PARAMETERS: GP_SIZE TYPE I DEFAULT '200'.
    SELECTION-SCREEN : END OF BLOCK B1.
       INITIALIZATION
    INITIALIZATION.
      gv_repid = sy-repid.
      gv_date = sy-datum.
    AT SELECTION-SCREEN
    AT SELECTION-SCREEN.
      IF GP_SIZE < 0.
       MESSAGE E002(00).
      ENDIF.
      IF GP_SIZE > 50000.
       MESSAGE W130(26) WITH TEXT-004.
        SET CURSOR FIELD 'gp_size'.
      ENDIF.
    START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM FIELDCAT.
      PERFORM LAYOUT.
      PERFORM DATA_FETCH.
      PERFORM READ_DATA_TO_FINAL.
      SORT ig_final BY matnr spras.
      gv_lin = gv_li.
      gv_li = gv_li - 2.
      LOOP AT ig_final INTO wg_final.
        ASSIGN COMPONENT 1 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
        <FA> = 'Material Number'.
        ASSIGN COMPONENT 2 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
        <FA> = 'Authorization Group'.
        g_VAR11 = wg_final-srno + 2.
        gv_li1 = gv_li1 + 2.
        MOVE : g_var11 TO gv_i1.
        ASSIGN COMPONENT g_var11 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
        <FA> = 'MatDesc'.
        g_var2 = g_var11 + gv_lines.
        ASSIGN COMPONENT g_var2 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
        <FA> = 'BasicData'.
        APPEND <LWA_LINE_WA1> TO <FS_22>.
        EXIT.
       ENDLOOP.
      LOOP AT ig_final INTO wg_final.
        AT NEW matnr.
          gv_index = sy-tabix.
          ASSIGN COMPONENT 1 OF STRUCTURE <LWA_LINE_WA> TO <F>.
          <F> = wg_final-matnr.
          ENDAT.
        AT NEW MATNR.
        GV_INDEX = SY-TABIX.
        ASSIGN COMPONENT 1 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
        <FA> = wg_final-matnr.
         ENDAT.
        ASSIGN COMPONENT 2 OF STRUCTURE <LWA_LINE_WA> TO <F>.
        <F> = wg_final-begru.
        ASSIGN COMPONENT 2 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
        <FA> = wg_final-begru.
        gv_var = wg_final-srno + 2.
        gv_li = gv_li + 2.
        MOVE : gv_var TO gv_i.
        ASSIGN COMPONENT gv_var OF STRUCTURE <LWA_LINE_WA> TO <F>.
        <F> = wg_final-maktx.
        ASSIGN COMPONENT gv_var OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
        <FA> = wg_final-maktx.
        gv_var1 = gv_var + gv_lines  .
        ASSIGN COMPONENT gv_var1 OF STRUCTURE <LWA_LINE_WA> TO <F>.
       <F> = wg_final-ltxt.
        ASSIGN COMPONENT gv_var1 OF STRUCTURE <LWA_LINE_WA1> TO <FA>.
        <FA> = wg_final-ltxt.
        AT END OF matnr.
          APPEND <LWA_LINE_WA> TO <FS_2>.
          CLEAR <LWA_LINE_WA>.
        ENDAT.
        AT END OF matnr.
         APPEND <LWA_LINE_WA1> TO <FS_22>.
         CLEAR <LWA_LINE_WA1>.
        ENDAT.
      ENDLOOP.
      PERFORM display..
    *&      Form  data_fetch
          text
    -->  p1        text
    <--  p2        text
    FORM DATA_FETCH .
      SELECT matnr
              from mara up to gp_size rows
             appending corresponding fields of table ig_matnr
             where matnr in s_matnr
             and mtart in s_mtart.
    loop at ig_matnr.
      SELECT  MARA~MATNR
              MARA~BEGRU
              MARA~MTART
              MAKT~SPRAS
              MAKT~MAKTX FROM MARA INNER JOIN MAKT
        ON MARAMATNR = MAKTMATNR
       appending corresponding fields of TABLE ig_mara_makt  UP TO GP_SIZE
    ROWS
        WHERE makt~spras IN s_spras
        AND   mara~matnr IN s_matnr
        AND   mara~mtart IN s_mtart
        AND   mara~matnr EQ ig_matnr-matnr.
        endloop.
      IF sy-subrc = 0.
        SORT ig_mara_makt.
      ENDIF.
    ENDFORM.                    " data_fetch
    *&      Form  read_data_to_final
          text
    -->  p1        text
    <--  p2        text
    FORM READ_DATA_TO_FINAL .
      LOOP AT ig_mara_makt INTO wg_mara_makt .
        wg_final-MATNR = wg_mara_makt-MATNR.
        wg_final-BEGRU = wg_mara_makt-BEGRU.
        wg_final-MTART = wg_mara_makt-MTART.
        wg_final-SPRAS = wg_mara_makt-SPRAS.
        wg_final-MAKTX = wg_mara_makt-MAKTX.
        READ TABLE ig_t002 INTO wg_t002 WITH KEY spras = wg_final-spras.
        IF sy-subrc = 0.
          wg_final-srno = wg_t002-srno.
        ENDIF.
        CLEAR ig_thead[].
        ig_thead-TDOBJECT = 'MATERIAL'.
        ig_thead-TDNAME   = wg_final-matnr.
        ig_thead-TDID     = 'GRUN'.
        ig_thead-TDSPRAS  = wg_final-spras.
        CALL FUNCTION 'TEXT_READ'
          EXPORTING
            I_HEADER   = IG_THEAD
            I_READONLY = 'X'
          IMPORTING
            E_HEADER   = IG_THEAD
          TABLES
            T_LINES    = IG_TLINE[]
          EXCEPTIONS
            NOTFOUND   = 1.
        IF sy-subrc  EQ 0.
          LOOP AT  ig_tline.
            gv_strg = ig_tline-tdline.
            IF gv_strg1 <> ' '.
              CONCATENATE gv_strg1 ';' gv_strg INTO gv_strg1.
            ELSE.
              gv_strg1 = gv_strg.
            ENDIF.
          ENDLOOP.
          wg_final-ltxt = gv_strg1.
          APPEND wg_final TO ig_final.
          CLEAR wg_final.
          gv_strg1 = ' '.
        ELSE.
          APPEND wg_final TO  ig_final.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    " read_data_to_final
    " read_data_to_final
    *&      Form  layout
          text
    -->  p1        text
    <--  p2        text
    FORM LAYOUT .
      CLEAR L_LT.
      L_LT-ZEBRA = 'X'.
      L_LT-COLWIDTH_OPTIMIZE = 'X'.
      L_LT-WINDOW_TITLEBAR = 'MATERIAL DETAILS'.
    ENDFORM.                    " layout
    *&      Form  fieldcat
          text
    -->  p1        text
    <--  p2        text
    FORM FIELDCAT .
      SELECT SPRAS
               LAISO FROM t002 INTO  CORRESPONDING FIELDS OF TABLE ig_t002
          WHERE spras IN s_spras.
      DESCRIBE TABLE ig_t002 LINES gv_lines.
      LOOP AT ig_t002 INTO wg_t002.
        g_v = g_v + 1.
        Wg_t002-srno = g_v.
        MODIFY ig_t002 FROM wg_t002 TRANSPORTING SRNO.
      ENDLOOP.
      LOOP AT ig_t002 INTO wg_t002.
        CLEAR WA_IT_FLDCAT.
        MOVE SY-INDEX TO WA_COLNO.
        CONCATENATE 'MD-' wg_t002-LAISO
                          WA_COLNO
                         INTO WA_FLNAME.
        WA_IT_FLDCAT-FIELDNAME = WA_FLNAME.
        WA_IT_FLDCAT-DATATYPE = 'CHAR'.
        WA_IT_FLDCAT-SELTEXT = WA_FLNAME.
        WA_IT_FLDCAT-INTLEN = 250.
        WA_IT_FLDCAT-TABNAME = '<FS_2>'.
        APPEND WA_IT_FLDCAT TO T_FLDCAT.
        CLEAR wg_t002.
        ENDLOOP.
      LOOP AT ig_t002 INTO wg_t002.
        CLEAR WA_IT_FLDCAT.
        MOVE SY-INDEX TO WA_COLNO.
        CONCATENATE 'BD-' wg_t002-LAISO
                           WA_COLNO
                        INTO WA_FLNAME.
        WA_IT_FLDCAT-FIELDNAME = WA_FLNAME.
        WA_IT_FLDCAT-DATATYPE = 'CHAR'.
        WA_IT_FLDCAT-SELTEXT = WA_FLNAME.
        WA_IT_FLDCAT-INTLEN = 250.
        WA_IT_FLDCAT-TABNAME = '<FS_2>'.
        APPEND WA_IT_FLDCAT TO T_FLDCAT.
        CLEAR wg_t002.
        ENDLOOP.
      MOVE 'MATNR' TO WA_FLNAME.
      WA_IT_FLDCAT-FIELDNAME = WA_FLNAME.
      WA_IT_FLDCAT-DATATYPE = 'CHAR'.
      WA_IT_FLDCAT-SELTEXT = 'Material No'.
      WA_IT_FLDCAT-INTLEN = 18.
      WA_IT_FLDCAT-TABNAME = '<FS_2>'.
      INSERT WA_IT_FLDCAT INTO T_FLDCAT INDEX 1.
      MOVE 'BEGRU' TO WA_FLNAME.
      WA_IT_FLDCAT-FIELDNAME = WA_FLNAME.
      WA_IT_FLDCAT-DATATYPE = 'CHAR'.
      WA_IT_FLDCAT-SELTEXT = 'Authorization Group'.
      WA_IT_FLDCAT-INTLEN = 4.
      WA_IT_FLDCAT-TABNAME = '<FS_2>'.
      INSERT WA_IT_FLDCAT INTO T_FLDCAT INDEX 2.
      DESCRIBE TABLE T_FLDCAT LINES gv_li.
      ASSIGN LT_DATA TO <FS_DATA>.
    Creating the Dynamic Internal Table
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG           = T_FLDCAT         " Fieldcatalogue
        IMPORTING
          EP_TABLE                  = <FS_DATA>   " Dynamic Internal Table
        EXCEPTIONS
          GENERATE_SUBPOOL_DIR_FULL = 1
          OTHERS                    = 2.
    Assign Dyn Table To Field Sumbol
      ASSIGN <FS_DATA>->* TO <FS_1>.
    Assigning the Internal Table TYPE ANY to Standard internal Table
      ASSIGN <FS_1> TO <FS_2>.
    Creating a Workarea
      CREATE DATA LWA_LINE LIKE LINE OF <FS_2> .
    Assigning the Content to the workares as a Pointer
      ASSIGN LWA_LINE->* TO <LWA_LINE_WA>.
      LOOP AT T_FLDCAT INTO WA_IT_FLDCAT.
        WA_IT_FLDCAT1-FIELDNAME = WA_IT_FLDCAT-FIELDNAME.
        WA_IT_FLDCAT1-TABNAME =  WA_IT_FLDCAT-TABNAME.
        WA_IT_FLDCAT1-SELTEXT_L = WA_IT_FLDCAT-SELTEXT.
       WA_IT_FLDCAT1-REF_TABNAME = 'MARC'.
        APPEND WA_IT_FLDCAT1 TO T_FLDCAT1.
        CLEAR : WA_IT_FLDCAT,WA_IT_FLDCAT1.
      ENDLOOP.
      ASSIGN LT_DATA1 TO <FS_DATA1>.
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG           = T_FLDCAT         " Fieldcatalogue
        IMPORTING
          EP_TABLE                  = <FS_DATA1>  " Dynamic Internal table
        EXCEPTIONS
          GENERATE_SUBPOOL_DIR_FULL = 1
          OTHERS                    = 2.
    Assign Dyn Table To Field Sumbol
      ASSIGN <FS_DATA1>->* TO <FS_11>.
    Assigning the Internal Table TYPE ANY to Standard internal Table
      ASSIGN <FS_11> TO <FS_22>.
    Creating a Workarea
      CREATE DATA LWA_LINE1 LIKE LINE OF <FS_22> .
    Assigning the Content to the workares as a Pointer
      ASSIGN LWA_LINE1->* TO <LWA_LINE_WA1>.
    ENDFORM.                    " fieldcat
    *&      Form  show
          text
    -->  p1        text
    <--  p2        text
    FORM Display .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
       I_INTERFACE_CHECK                 = ' '
       I_BYPASSING_BUFFER                = ' '
       I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                = GV_REPID
        I_CALLBACK_PF_STATUS_SET          = 'PF_STATUS_SET'
        I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
       I_CALLBACK_TOP_OF_PAGE            = ' '
       I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
       I_CALLBACK_HTML_END_OF_LIST       = ' '
       I_STRUCTURE_NAME                  =
       I_BACKGROUND_ID                   = ' '
       I_GRID_TITLE                      =
       I_GRID_SETTINGS                   =
        IS_LAYOUT                         = L_LT
         IT_FIELDCAT                       = T_FLDCAT1[]
       IT_EXCLUDING                      =
       IT_SPECIAL_GROUPS                 =
       IT_SORT                           =
       IT_FILTER                         =
       IS_SEL_HIDE                       =
       I_DEFAULT                         = 'X'
       I_SAVE                            = ' '
       IS_VARIANT                        =
       IT_EVENTS                         =
       IT_EVENT_EXIT                     =
       IS_PRINT                          =
       IS_REPREP_ID                      =
       I_SCREEN_START_COLUMN             = 0
       I_SCREEN_START_LINE               = 0
       I_SCREEN_END_COLUMN               = 0
       I_SCREEN_END_LINE                 = 0
       I_HTML_HEIGHT_TOP                 = 0
       I_HTML_HEIGHT_END                 = 0
       IT_ALV_GRAPHICS                   =
       IT_HYPERLINK                      =
       IT_ADD_FIELDCAT                   =
       IT_EXCEPT_QINFO                   =
       IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
       E_EXIT_CAUSED_BY_CALLER           =
       ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = <FS_2>
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " display
    FORM PF_STATUS_SET USING RS_EXTAB TYPE SLIS_T_EXTAB.
      SET PF-STATUS 'DISPLAY' .
    ENDFORM. "PF_STATUS_SET
    *& Form Name: user_command *
    *& Form Desc: For Handling USER_COMMAND *
    FORM USER_COMMAND USING IF_UCOMM TYPE SY-UCOMM
                         IS_SELFIELD TYPE SLIS_SELFIELD.
      CASE IF_UCOMM.
        WHEN 'DOWNLOAD'.
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
      TITLEBAR                    = ' '
      DIAGNOSE_OBJECT             = ' '
              TEXT_QUESTION               = 'Data download to excel'
      TEXT_BUTTON_1               = 'Ja'(001)
      ICON_BUTTON_1               = ' '
      TEXT_BUTTON_2               = 'Nein'(002)
      ICON_BUTTON_2               = ' '
      DEFAULT_BUTTON              = '1'
      DISPLAY_CANCEL_BUTTON       = 'X'
      USERDEFINED_F1_HELP         = ' '
      START_COLUMN                = 25
      START_ROW                   = 6
      POPUP_TYPE                  =
    IMPORTING
      ANSWER                      =
    TABLES
      PARAMETER                   =
    EXCEPTIONS
      TEXT_NOT_FOUND              = 1
      OTHERS                      = 2
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
        BIN_FILESIZE                  =
              FILENAME                     = 'C:\Material-Text.xls'
             FILETYPE                      = 'ASC'
        APPEND                        = ' '
         WRITE_FIELD_SEPARATOR         = 'X'
        HEADER                        = '00'
         TRUNC_TRAILING_BLANKS         = 'X'
        WRITE_LF                      = 'X'
        COL_SELECT                    = ' '
        COL_SELECT_MASK               = ' '
         DAT_MODE                      = 'X'
       IMPORTING
         FILELENGTH                    = GL_LENGHT
            TABLES
              DATA_TAB                      = <FS_22>
      EXCEPTIONS
        FILE_WRITE_ERROR              = 1
        NO_BATCH                      = 2
        GUI_REFUSE_FILETRANSFER       = 3
        INVALID_TYPE                  = 4
        NO_AUTHORITY                  = 5
        UNKNOWN_ERROR                 = 6
        HEADER_NOT_ALLOWED            = 7
        SEPARATOR_NOT_ALLOWED         = 8
        FILESIZE_NOT_ALLOWED          = 9
        HEADER_TOO_LONG               = 10
        DP_ERROR_CREATE               = 11
        DP_ERROR_SEND                 = 12
        DP_ERROR_WRITE                = 13
        UNKNOWN_DP_ERROR              = 14
        ACCESS_DENIED                 = 15
        DP_OUT_OF_MEMORY              = 16
        DISK_FULL                     = 17
        DP_TIMEOUT                    = 18
        FILE_NOT_FOUND                = 19
        DATAPROVIDER_EXCEPTION        = 20
        CONTROL_FLUSH_ERROR           = 21
        OTHERS                        = 22
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          IF GL_LENGHT NE 0.
            MESSAGE S398(00) WITH 'DATA downloaded to EXCEL'.
          ENDIF.
      ENDCASE.
    ENDFORM.                    "user_command
    Thanks
    Ankur SHarma

  • ADF business component wizard with tables referencing junction table

    I have a three tables, user, devices and a link/junction table to map the user's assigned devices.
    <<user>>
    user_id
    user_name
    <<device>>
    device_id
    device_name
    <<userdevice>>
    user_id
    device_id
    I wanted to create a view page where I can search a user then display the list of devices assigned to this user. The association between these two tables is the userdevice table.
    Using the wizard alone couldn't satisfy my objective. Have you encountered the same issue? Thanks.

    Hi Cyrus
    I'm not sure which Wizard are you referring to; can you clarify?
    Which area of WebCenter Portal are you using where you're seeing this issue?
    ~Sripathy

  • The type of the database table and work area (or internal table)...

    Hello
    I am trying to use a database and select all records from it and store them into an internal table.
    My code:
    Select * from xixi_dbcurrency into table gt_currency.
    The error:
    "The type of the database table and work area (or internal table) "GT_CURRENCY" are not Unicode-convertible . . . . . . . . . .     "
    Any suggestions?
    Thank you

    Hi Thomas,
    Thank you for your inputs above.
    But as you suggested is we use INTO CORRESPONDING FIELDS OF TABLE then it resolve the error.
    But I have below piece of code:
    DATA:    it_new_source TYPE STANDARD TABLE OF _ty_s_sc_1,
                  wa_source TYPE _ty_s_sc_1,
                  wa_new_source TYPE _ty_s_sc_1,
                  ls_target_key TYPE t_target_key.
    SELECT * INTO CORRESPONDING FIELDS OF TABLE it_new_source
           FROM /bic/afao06pa100
           FOR ALL ENTRIES IN SOURCE_PACKAGE
           where /bic/fcckjobno = SOURCE_PACKAGE-/bic/fcckjobno
           and /bic/fcckjitid = SOURCE_PACKAGE-/bic/fcckjitid.
    But since this is reading into corresponding fields of table the data load from one DSO to other DOS is running for long more that 15 hours and still not getting completed and giving dump.
    So if I switch the search to below:
    SELECT * FROM /bic/afao06pa100
       INTO TABLE it_new_source
           FOR ALL ENTRIES IN SOURCE_PACKAGE
           where /bic/fcckjobno = SOURCE_PACKAGE-/bic/fcckjobno
           and /bic/fcckjitid = SOURCE_PACKAGE-/bic/fcckjitid.
    Then I am getting below error:E:The type of the database table and work area (or internal table) "IT_NEW_SOURCE" are not Unicode convertible.
    Can you please advice on this, as performance need to improve in start routine code.
    Thank You.

  • Working off a remote harddrive

    Please could someone tell me is it possible to keep all my photos on a remote harddrive and then organise, edit etc them using photoshop elements 4.0 on windows vista?
    Ideally i would like to work off my remote hard drive (with all the photos on) and then use two computers to update, organise, tag and edit etc my photos is this possible...if so how do i do this?
    How would i then back my photos up?

    >change edit them via two computers....maybe with two different forms of photoshop!
    There is no way to have two different versions of elements update the same catalog, for one thing. When you upgrade to a new version of elements your catalog converts, yes, but the old catalog is not aware of changes made to the new catalog, and the new catalog is not aware of subsequent changes to the old version.

  • How do i get my screen replaced on my iphone 4? it fell off my bedside table and the screen has completely shattered?!

    The screen on my iphone 4 has completely shattered after it fell off my bedside table? i am very careful with my phone and have rarely dropped it, never onto concrete or such and never from very high. thanks x

    Take it to Apple and pay the Out of Warranty replacement price.  In the US that is $149 for the iPhone 4.

  • Junction table question

    I have 3 Northwind tables, Employees, EmployeeTerritories, and Territories. I have a cross join table between Employees and Territories. I want to add a column to the cross join table. Each row will contain a 1 if the row employee has the row territory
    and will contain a 0 otherwise. How do I do it?
    Bill Swartz

    >> I have 3 Northwind tables, Employees, Employee_Territories, and Territories. <<
    Northwind is one of the worst sample schema in use. It has to show all of the features in T-SQL, so it is improperly written and it is full of ISO-11179 violations. Do not use it to learn RDBMS! For example, does that table model the set “Personnel” or the
    single “Employee”, as you named it? 
    >> I have a cross join table between Employees and Territories. <<
    The term “junction table” is not RDBMS; it belong to one of the old Network Databases (I cannot remember which one). Even the use of the absurd “Employee_Territories” is the old Network convention of building the pointer structure from the names of the files
    involved. 
    There is no such thing as a “CROSS JOIN” table in RDBMS or Network Database. This is a relational join operator, not a table type! I think you mean a relationship table (that is where the R in RDBMS comes from).  
    Look up 1:m (one to many), 1:1 (one to one) and n:m (many to many), cardinality, membership and the other terms that apply to relationships in RDBMS. You lack of DDL was doubly rude; we have no specs. I will guess each territory has one and only one employee
    assigned to it (why not?). I will enforce this with DRI constraints. 
    >> I want to add a column to the cross join [sic] table. Each row will contain a 1 if the row employee has the row territory and will contain a 0 otherwise. How do I do it? <<
    BIT flags in RDBMS?? No, that was assembly language. This is worse than the network mindset. 
    CREATE TABLE Territory_Assignments
    (emp_id CHAR(10) NOT NULL UNIQUE  -- enforce 1:m
      REFERENCES Personnel(emp_id)
      ON UPDATE CASCADE
      ON DELETE CASCADE,
     territory_id CHAR(10) NOT NULL 
      REFERENCES Personnel(territory_id)
      ON UPDATE CASCADE
      ON DELETE CASCADE,
     PRIMARY KEY (emp_id, territory_id));
    You lack basics and need to un-learn a lot. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Sorry, we are having some temporary server issues. You can work off line if you plan to insert pictures from your computer

    We have about 200 users that connect to three terminal servers. On the servers we have Office 2013 installed. Several users are stating that when they attempt to search for templates or insert Online Pictures, they are getting error messages of "Sorry,
    we are having some temporary server issues. You can work off line if you plan to insert pictures from your computer"
    Remember, they are connecting to a terminal server, all have roaming profiles, and for some users this works fine.
    We've Googled the error message and found no help. A lot of responses was to reset the IE settings, which we've tried to no avail.
    Also as a test, we took one of the users that was having the issue and deleted their profile. When they logged back on the server, the same problem occurred again.
    We're currently at a loss as to why it works for some users and not others?
    Any ideas out there?

    You can refer to this link and find the possible solution which is to delete the offending registry key:
    HKCU\Software\Microsoft\Office\15.0\Common\Internet\WebServiceCache\AllUsers\office15client.microsoft.com
    http://angrytechnician.wordpress.com/2013/05/15/office-2013-error-sorry-we-are-having-some-temporary-server-issues/
    There we can also find information about deploying logon script to all roaming profile users to resolve this issue.

  • Asynch Change Data Capture with AutoLog - can it work off a logical standby

    Hi,
    I'm looking at using asynchronous CDC in AutoLog mode for DW extraction tasks.
    Could this work off a logical standby database, which is itself updated via logs from the real production OLTP database (as far as I know, I'm not the DBA)?
    The architecture would include:
    - OLTP database
    - logical standby for the OLTP database, as a CDC publisher
    - staging database for DW, subscriber to CDC in the logical standby
    Thanks in advance for any suggestions.
    Gabriel

    Hi,
    I'm looking at using asynchronous CDC in AutoLog mode for DW extraction tasks.
    Could this work off a logical standby database, which is itself updated via logs from the real production OLTP database (as far as I know, I'm not the DBA)?
    The architecture would include:
    - OLTP database
    - logical standby for the OLTP database, as a CDC publisher
    - staging database for DW, subscriber to CDC in the logical standby
    Thanks in advance for any suggestions.
    Gabriel

  • Working off-hook

    What are the requirements for allowing agents to work off-hook. The documentation says,
    Oracle Contact On Demand users can choose to set their MSI extensions
    to work off-hook. With the off-hook option, there is no ringing, and a
    beep is played when a call is delivered to the agent. When users are
    working off-hook, they can also have calls auto-accepted without having
    to manually answer each call.
    Does this mean that the on premise phone system needs special hardware?

    Jim,
    No special equipment is required. Simply enable the checkbox and after your 1st phone call don't hang up the phone. Subsquent calls will not require the system to dial your line again. If you are set to accept the call automatically, you will hear a beep (or a whisper prompt if created and provisioned). Otherewise, the agent must click accept.
    Dave

Maybe you are looking for

  • How to run RWRUN.exe and RWCLIENT.exe in Linux

    Our reports (11G R2) output desformat is PDF. We howerver, need to embed some fonts in the PDF when it is generated. So, we need to add the parameter PDFEMBED in the command line of RWRUN, RWCLIENT or RWSERVLET. However, the application server is Lin

  • Change "Date Created" on File Folders

    What is the easiest way to change or alter the "Date Created" on file folders - To a date that is 6 months older? (OS 9.1) I need to store my photos in a single large chronologically ordered file. Some of them are sourced from scanned photos and some

  • JDeveloper3/RMI

    I'm working with JDeveloper3, JDK1.2.2 under Windows NT Workstation. When I try to invoke a method of a service registered at the rmiregistry, either the rmiregistry process throws an IllegalThreadStateException or the Client throws: java.rmi.ServerE

  • Strange behaviour of air desktop app

    Hi friends, I writting this in order to find an answer to my issue. 1- First i have a desktop air app. I have installed on windows and macosx and work great. 2- My app has several object and each one open a website (swf base) throughout a native wind

  • What is Dreamwaver made of....? How was it programmed...?

    Hi guys Happy new year! Just wondering how Dreamweaver was developed..? What language was used? I know nothing of software programming but was wondering does dw actually contain any css or javascript etc to work, not what it can do if that makes sens