How to pop up a system message for a specific user when She/He log on SAP

Hi Friends,
As we know SM02 setting will pop up a system message to all users in specific client in a specific period when the user log on SAP system; and we can do the same thing via using function module SM02_ADD_MESSAGE.
But now we want to pop up a message to a specific user ID when somebody log on SAP via this ID, instead of all user IDs in the client. Please do we have any similar traction / function module / class method to to do this job??
Thanks in advance.
Joe

Below code can be used to send a pop up message to all users who are logged on to the
system.
DATA: MESSAGE(128) VALUE 'Test message'.
DATA: OPCODE TYPE X VALUE 2.
DATA: BEGIN OF USR_TABL OCCURS 10.
INCLUDE STRUCTURE UINFO.
DATA: END OF USR_TABL.
CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE
ID 'TAB' FIELD USR_TABL-SYS.
LOOP AT USR_TABL.
CALL FUNCTION 'TH_POPUP'
EXPORTING
CLIENT = SY-MANDT
USER = USR_TABL-BNAME
MESSAGE = MESSAGE
EXCEPTIONS
USER_NOT_FOUND = 1.
ENDLOOP.
In the above code just pass the desired user ID instead of All user ID's
Edited by: harsh bhalla on Mar 26, 2009 2:14 PM

Similar Messages

  • Draft Documents View is empty for a specific user

    Hi,
    For a specific user, when he goes on the Document Draft Reports, the Sales Document sub-form is empty. Meaning that when he ticks the "Sales Documents" option, the boxes to choose specific Sales Document does not exist (e.g. Sales Quotation, Sales Orders etc.). This happens no matter what are the other options (e.g Open Only or User Option).
    The other lists (Purchasing and Stock) are working properly. Again, all the other users do not experience the same issue as the form is working properly
    The installation is on 2007A SP01
    Any ideas?
    Thanks in advance
    Gerasimos

    Hi Gerasimos.......
    I'm sure this is a Bug in your system. If you have any of the adons then please Disconnect it and also try to create new Super User and give him license and then check with this new user for the same output.......
    Else I'm afraid you need to raise a support ticket to SAP.......
    Regards,
    Rahul

  • Systems messages for park vendor invoice

    Dear Friends:
    We have systems messages for checking vendor reference document no in vendor invoice in development server and quality server. They are working fine.The error messages are display when the user tries to enter reference document no twice.
    However the same settings are not working in production client?
    Please advise how to reslove the issue?
    Regards
    MSReddy

    just move transport(s) to prod

  • How can I delete a system message?

    Hi,
    how can I delete a system message which I have created in the Integration Builder Configuration in the menue bar "tools--> send system message?
    Thanls for your help.
    Regards
    Stefan

    Hi,
    I'm not sure in which XI SP version
    but when I tested it only the whole XI restart could help
    but this was rather a long time ago
    and since then I try not to use this system message:)
    Regards,
    michal

  • SMP3 - AppDevelopment (Agentry):how to use GCM (Google cloud Messaging) for Agentry Application.

    Hi, I have a question on SMP3 and AppDevelopment (Agentry): how to use GCM (Google cloud Messaging) for Agentry Application for PUSH notification

    Pratik,
    Let me walk you through the flow with the assumption that the user is on an Android device and "connected" to the Agentry server.
    An emergency workorder is created in SAP and assigned to the technician. 
    The SAP backend system will notify the Agentry server via an XML message that there is a workorder to send.
    Agentry will get the details and if the user is connected attempt to send the workorder to the device via the Push mechanism
    If the push fails to reach the Agentry client, the Agentry server will send a GCM message to the user
    When the user returns to the Agentry client, the normal push processing / fetch will occur to receive the workorder from the server assuming the push retrys are in effect.
    So, essentially you should not have to do anything to get the GCM to work as a secondary notification mechanism.
    If you are looking to do something else with GCM that would be outside of Agentry.
    --Bill

  • How to show a single error message for all fields

    Hi
    I have a JSF from containing around 10 controls(input, select etc.) .
    Now I need to display an error message in case any of the mandatory control has validation error.
    Message format would be like
    "*Please,Complete the fields marked with yellow!"* The message I need to show in a div tag with Yelow background.
    Currently, I am getting individual default error message in case validation fails and related field is bordered with Yellow.
    My code is below.
    *<h:panelGrid columns="3">*
    *<h:outputText value="#{msgProv.bi_firstname}" />*
    *<h:outputText>*
    *<rich:spacer width="100px"></rich:spacer>*
    *</h:outputText>*
    *<h:panelGroup>*
    *<h:inputText*
    *value="#{brokerInformationFields.firstName}"*
    *label="#{msgProv.bi_firstname}" id="firstName" required="true">*
    *<f:validateLength maximum="10" minimum="2" />*
    *<rich:ajaxValidator event="onblur" />*
    *</h:inputText>*
    *</h:panelGroup>*
    *<h:outputText value="#{msgProv.bi_lastname}" />*
    *<h:outputText>*
    *<rich:spacer width="100px"></rich:spacer>*
    *</h:outputText>*
    *<h:panelGroup>*
    *<h:inputText label="#{msgProv.bi_lastname}" id="lastName"*
    *value="#{brokerInformationFields.lastName}" required="true">*
    *<f:validateLength maximum="20" minimum="1"/>*
    *<rich:ajaxValidator event="onblur" />*
    *</h:inputText>*
    *</h:panelGroup>*
    *<h:commandLink action="#{brokerInformationActions.submit}">*
    *<h:graphicImage value="/images/axa/btn_submit_from.png" style="border:0px;"/>*
    *</h:commandLink>*
    I am using (JSF1.2,Rich Faces 3.3.0,Facelets.)
    And a Phase Listener from
    http://balusc.blogspot.com/2007/12/set-focus-in-jsf.html
    This Phase listener is to border the control with Yellow in case validation fail.
    Now my Query
    *1) How can I show a single message for all fields as I marked above in case of validation failure?*
    *2) Now, the control is becoming yellow borderd when user clicks the submit button and validation fails.*
    *User can move from one control to other using tab. That time proper validation message is appearing.*
    *but the border of the control is not changing to yellow.*
    *What's the correcion can be made to meet that requirement too.*
    regards
    Roy

    Hi Nabheet,
    Thanks for your response.
    The FM returns the error messages if they are standard ones. For example, if the posting period is closed - the FM will not allow the Workflow to proceed further.
    But in this case, I have a custom error - for a particular Profit center, Cost center and I/O fields are mandatory(not at time of parking, but should be filled before posting).
    Since this is not a standard error, this FM will not stop workflow from proceeding further. How can I have the custom error captured in this FM?
    Thanks.

  • System Message For "On Hold Items

    Is it possible to change the system message for on hold items?.
    Thanks,

    All system message are hard coded in the application.  There is no option to change them.
    Thanks,
    Gordon

  • System messages for BOM

    where can i find the system messages for BOM creation/changing (CS01/2)?

    Hi raf,
    SPRO ( Production > Basic Data> BOM > General Data > Change Message Type .
    Or
    Goto SE91; press F4; select SAP Applications as PP and find all messages under it
    And
    Please cherck with OPJB.
    SPRO-> Shop floor control->Sytem modfications-> Define sytem message attributes.
    Regards,
    R.Brahmankar

  • HT3529 I no longer have my iPhone 4s so how can i turn off i-messages for my number?

    I no longer have my iPhone 4s so how can i turn off i-messages for my number?

    Hey there fwhitson,
    It sounds like you no longer have your phone but need to unlink your phone number from the iMessages service. According to this article, this is what you do:
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Note: If you no longer have access to the iPhone that is using the number you want to remove, reset your Apple ID password.
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

  • System messages for billing

    Hi,
    I would like to know where I can find system messages for the billing area V3.This is because I want to change sysem message 200 from warning to error.
    Thanks in advance.

    hi,
    To change a message from warning to error you do
    From
    Message W<msg no.>(msg class)
    To
    Message E<msg no.>(msg class)
    You will have to debug and change the message type for message number 200
    Sameena
    Message was edited by: sameena attarwala

  • 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

  • Pop-up is displayed requesting for a WAS user id and password

    Hi SDN,
    I created a BEx iView based on Template-id. I am using single sign-on with user mapping. When i logged on to portal everything is working fine but initially a  pop-up is displayed requesting for a WAS user id and password of the BW system.
    I have mapped the Portal user with the BW user-id and password.
    Can any one suggest me how suppress initial pop-up.
    Thanks in Advance.
    Regards
    Basha

    Hi Basha,
    When you run the report from SICF you will definitely get the popup for authentication, as you are sending request directly on BW WAS.
    The reason behind you are getting popup in portal is that you have not used FQDN for BW server in WAS properties of System Object. Try to maintain same domain name for Portal and BW server.This you can easily achieve by modifying host file.
    e.g. <EP server IP>                 EPserver.abc.com
           <BW server IP>                BWserver.abc.com
    Use "BWserver.abc.com" in WAS hostname under system properties.
    Do let me know the result.
    Thanks,
    Amol.

  • How to change the UWL refresh rate for all portal users.

    Hi Portal Experts,
    How to change the UWL refresh rate for all portal users?
    Users can individually change the refresh rate through "Personalise View" in UWL.But we want this to set it for all users(we have 10k portal users).
    It was defaultically set to 5 mins for all users.How to change this to 20 mins.
    Thanks
    Sony.

    1.      Launch the UWL iView configuration page.
    You can access the iView from the UWL administration pages (System Administration ® System Configuration). Navigate to the property editor as follows:
          From the Universal Worklist Systems, choose the system for which you want to edit the properties.
        Choose Edit.
    may be you can get clear help from below help file
    http://help.sap.com/saphelp_nw04s/helpdata/en/eb/101fa0a53244deb955f6f91929e400/frameset.htm
    regards
    nagaraju

  • Welcome message for new-registred users

    Hi!
    I'm not sure if this is already been suggested or if it's implemented already, but here I go:
    When a new user register at the forum or NI, I would presume that the user is new to LabVIEW. How about a welcome message for the new user? This could be a private message and contain useful information. Like links to the biggest and mostly used community groups, links to different basic tutorials, links to popular boards etc.
    I see that there are many new users that ask questions which would be answered by doing the basic tutorials. We provide them some links and they appreciate it alot. When I registred a year ago, for me, the NI site and forum where quite unfamiliar and I spent alot of time, just to get to known where to look for stuff. I didn't discover the basic tutorials until I posted a "newbie" question and got some links in reply. The tutorials helped me alot!
    The tutorials are not so hard to find, but I think many people, like myself, don't know they exists when they register to the forum.
    Please correct me if I'm wrong, since my memory is like "10 second Tom" in the movie "Fifty first dates" with Adam Sandler 
    Regards,
    Even
    Certified LabVIEW Associate Developer
    Automated Test Developer
    Topro AS
    Norway

    Hi Laura,
    I found the 3 and 6 hour courses very useful. Also the learning LV 101 found here.
    I believe I just searched the forums for answers and posted questions if I could not find anything. Many of my questions would not have been nessesary if I had taken the courses first. 
    For providing the user with the links I can think of two ways:
    1. Since there can be users for other products thatn LabVIEW, maybe the links should be general for everyone.
    2. When a user registers, he/she should be able to choose products/interests and the private message could be built based on that. The register page should contain checkboxes and the user just select what he/she wants.
    Regards,
    Even
    Certified LabVIEW Associate Developer
    Automated Test Developer
    Topro AS
    Norway

  • How do I set a BG Image for a specific Table Cell?

    Hello...
    How do I set a Background Image for a specific table cell
    without it affecting the main page background image?
    thanks
    J

    Use CSS -
    td.special { background-image:url(foo.gif); }
    will style this table cell only -
    <td class="special">
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "JSloanSDRE" <[email protected]> wrote in
    message
    news:g2dl7n$pf5$[email protected]..
    > Hello...
    >
    > How do I set a Background Image for a specific table
    cell without it
    > affecting the main page background image?
    >
    > thanks
    > J

Maybe you are looking for

  • How do i move my itunes acount from one computer to the next

    i had my itunes a one computer but then i decided to use itunes on a differrent computer in my house. how can i get all my app,playlists, and my librarie over to the new computer.

  • Error while refreshing aw object from a job

    Hello, I'm trying to make the refresh of the objects (dimensions + measures) in an analytic workspace, programmed in time using jobs. If I execute the statements of the job manually in a Sql*Plus session, everything is right. But if I execute the sam

  • Taking a stab at live help from a pro - disk volume structures

    I'm taking a stab at getting some live help on an a 1-month old iMac 24". I'm using my Mac mini right now because the imac is undergoing a TechTool Deluxe Surface Scan at the moment. Specs: 1 month old Intel iMac 24 2 GB RAM 500GB Seagate HD... Every

  • Audio via ethernet from MacBook

    I'm a newbie--just switching to Mac from Windows. I can't claim to be a true audiophile, but I have tendencies in that direction. I'm in the process of storing a thousand CDs in Apple LossLess, and have a pretty good stereo. My new MacBook will be in

  • Need solution for "HEAVY" overload.

    This is not the classic case of most of the system overload problems that I've been reading about, where a few settings might do the tricks, although if that's the case, then great! But I doubted... Here's my gear: -QUAD 6.5 GB 2 drives, 250GB + 500G