Can you define constants in Report Painter?

Hi, I'm new to Report Painter and SAP in general. I was just wondering if it's possible to define constants that are visible across reports. e.g. In the header text for all our reports, we want our company name to be displayed. But instead of hardcoding it, we want to retrieve it from a constant or variable.
Does anyone know if this is possible?

Hi Andrew,
Thanks for the response but this isn't exactly what I was looking for. From my understanding, the "Sel. Parameters" button allows you to access and display values that were entered by the user in the selection screen of the report (correct me if I'm wrong). What I'm aiming for is something like a global variable defined on the backend that all reports can access.
I've looked at the other buttons that you pointed out, but it seems like I'm only able to use some pre-defined tables and fields. Does this mean that there isn't any way for me to define and use my own customized variables for reports?
Thanks,
Carlo
Edited by: CarloInting on Jul 21, 2009 5:45 AM

Similar Messages

  • Can you filter a custom report by postcode?  I want to send an email marketing campaign to customers

    Can you filter a custom report by postcode?  I want to send an email marketing campaign to customers within a postcode range.  How do you do this? Thanks.

    Hey RP in Oz,
    You can run a contacts report and select 'Default Address Type' as an 'Address Details Field' which will include the zip code a customer has inputted. You can then export the report, open it up in Excel (or similar) and filter based on the postcode. Once you have modified the list in excel, formatted it correctly and are satisfied, you can then import the report as a mailing list via E-Mail Marketing > Mailing Lists.

  • Can you define motion paths in Captivate 8 responsive projects?

    I haven't purchased Captivate 8 yet. Just wondering, can you define motion paths in responsive projects?

    Motion effects are not supported for responsive projects, motion paths have no sense.

  • Can you define "single quote" character as a constant

    Hello all,
    I want to do something like this:
    CONSTANTS: q type c value ' .   " << thats a single quote character
    DATA: final_string type string,
              VAL1(12) type c,
              VAL2(12) type c.
    concatenate q val1 '-' val2 q into final_string. .
    How can I define the single quote character as a constant?
    Thanks

    Hello Ed,
    FAQ.
    You can declare single quote as constant
    If you are aware for single quote (') SAP uses an escape character which is the single quote itself('). Hence for every single quote you have to add an additional single quote.
    CONSTANTS: q type c value ''''.
    Suhas

  • Use of Constants in Report Painter

    Dear All,
    I am designing a report in Report Painter. For this, I need to introduce a line with constant value in every column. I need this value to be subsequently used in formulae.
    Is this possible. What is the use of a 'Constant'. I created a Constant, but am not able to bring it in the report.
    Please help. Full points would be awarded..
    Thanks

    Hi Kash,
    Thanks for your reply..
    Can you elaborate bit further. You mean to say I should create a Constant with some value.
    Thereafter how should I bring that in the form. But, How do I enter the Constant in the Formula... There is no key for entering any text in the formula.. there are only ID (the values which we bring in the form and which can be selected for the formula) and numbers which can be entered.
    So how do I enter the name of the Constant?
    I tried just keying in the name of the Constant, and I could check the formula also, However, while saving the form, I am getting an error,
    Element WCaplimit Bis letztem ATag bis &$BISD is not defined correctly -> check definition
    Message no. KH206
    Diagnosis
    In element WCaplimit Bis letztem ATag bis &$BISD the system adds quantities and values or different currencies.
    Can you please revert back with step by step solution?
    Appreciate your prompt reply.... Thanks

  • How can you define a different homepage for a user?

    Hi
    I am fairly new to Application express, I have created an application but I would like to define a different homepage for a user when they login. Of course I can modifiy the PLSQL code:
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':1'
    With a different page, however I would like to setup a different home page depending on the user that logs in - I tried setting up a conditional process specifying P_101_USERNAME but this did not work...any ideas on how this can be achieved?

    Hi
    Thank you for your response, I have created the function:
    create or replace function "GETDEFPAGE"
    (auser in VARCHAR2)
    return VARCHAR2
    is
    Defpage number;
    begin
    select DefaultPageNumber into Defpage from users_table where username='aUser';
    return Defpage;
    end;
    Can you please assist me on how I can call the function in the login process within the block:
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':1'
    );

  • Can you define custom regions?

    I'd like to be able to create a region chart in Power Map but rather than using regions that are recognized such as postcodes or counties, I'd like to be able to define my own, in my case the areas that my sales branches cover.
    I have a file which has all the coordinates for each branch to map the outlines.
    Is this possible at the moment / is it in the September update?
    Regards,
    Alexis

    Alexis, can you submit this feature suggestion via the Smile and Frown button in the UI?
    This goes directly to the product team.
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Can you define an event programmatically?

    Does anyone know how to define an event programmatically for a form object using JavaScript? My example is this:
    I am passing form fields to a validation function in a JavaScript object by calling scriptObj.addToValidation(this); from the field initialize event.
    The field object is added to a JavaScript array so I can check for null values of potentially hundreds of fields with one block of code. What I also want to do is define the click and enter events for each object programmatically from the addToValidation(obj) function while iterating through the array. This way I wont need to add code in each field in the design view, my goal is to take as much code out of the form fields as possible and put it into a script object using an object-oriented approach.
    A path I was looking down was trying to access the event by: fieldObject[i].event__change = ... If you print the event__change or event__enter to the javascript console you can see it is an XFAObject but I cant find any doco about these objects and dont know if Im on the right track.
    Hopefully this makes sense, please talk to me LC gurus!!

    Hi Thom,
    Thanks for your insights. Adding 2500 scripts through field duplication would be a solution, in which each field call a generic function according to:
    scriptObject.DoStuff(this, xfa.event);
    It's doable, although it's against my religion. :>
    I found out I can still propagate events down the object chain (or "up" according to Adobe's documention, a metaphor I find counter-intuitive) by manually adding the tag
    listen="refAndDescendents"
    to an event tag of the parent subform. To my relief, even though subforms don't listen to Change activities, the event does get propagated to children who do.
    On add-ins to Designer - are you referring to the experimental macro feature introduced in ES2?
    http://blogs.adobe.com/formfeed/2010/01/designer_es2_macros.html

  • How can you create a pdf report to attach to an email?

    I have a need to create a PDF report with graphics and signature and somehow attached the PDF document to and email to send out. This is all hopefully done in my APEX application. Has anyone done anything similar?

    I have several projects that use PL/PDF - with the pdf form filling API's - to populate pdf form and then attach the output to a BLOB variable in PL/SQL - which can then be attached to e-mail, displayed to user's browser, and saved into a BLOB column in a table. If you are comfotable with coding PL/SQL packages, this is not difficult to do at all.
    The goodness of PL/PDF is that it is composed of PL/SQL packages with some wrapped Java programs - the output is generated directly from the database. You don't need to deal with the complexity and security concerns of calling an external Java middle tier to return the document. However, if you are not comfortable with PL/SQL coding, this may be a lot of work because the software does not have a report designer like Oracle BI Publisher, which costs more than $90K to run on a 2-CPU Server.
    Thanks.
    Andy

  • Can you force through a report to display Scaling Factor

    If the person who has built a query has not selected to show the Scaling Factor (within the properties of the query) Is there any way (through table interfaces or through the web template) to change this on a temporary basis.
    Basically we have hundreds of reports and some have SF set to show and some don't we have built a button to set the scaling factor to various levels but the level of the scaling factor will only show on those querys which have the correct property setting.
    Cheers
    Shep.

    Hi Neal,
    yes you can. Either add it via URL or change the DP-Tag in your template:
      <param name="SHOW_SCALING_FACTORS" value="X"/>
             DATA_PROVIDER:             DATAPROVIDER_1
    </object>
    http://help.sap.com/saphelp_nw04/helpdata/en/b7/25813b731fd60ee10000000a114084/frameset.htm
    Heike

  • Predictable pattern of kernel panics - can you interpret a panic report?

    Hi. Long time listener, first time caller.
    I installed 10.5 on my PB as soon as it became available and have had an issue with kernel panics ever since. The panics arrive in waves of ~12-15 at a time over the two to three days (~36-48 hours of uptime) immediately subsequent to my having booted from a volume other than the 10.5.2 system on my PB's internal HD. When the panics have run their course, everything returns to normal, and no problems of any kind arise until after I've temporarily booted into another volume.
    I have experienced these waves of kps after booting from a 10.5.2 volume on an external drive; two different 10.4.11 volumes on two different external drives; the 10.5 retail install disc; a brand new DiskWarrior 4.1 CD, and the AHT volume on the (replacement) Install and Restore disc that came with my computer. (None of the utilities I've used to attempt diagnose my issue have returned any errors or warnings about the state of my hardware \[incl. RAM and AEBS] or my main boot volume.)
    I've attached the latest panic report below. It is identical to all of my PanicReporter entries for the past 6 months. I can see that this may be AirPort (driver) related, but if you can offer a more incisive reading of the report than that, I'm definitely interested in what you have to say.
    Thu May 22 12:32:18 2008
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x000000000000000C PC=0x00000000002A9684
    Latest crash info for cpu 0:
    Exception state (sv=0x249d8c80)
    PC=0x002A9684; MSR=0x00009030; DAR=0x0000000C; DSISR=0x40000000; LR=0x3014576C; R1=0x1E573C00; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x301456A0 0x30155BB0 0x300F5EC4 0x00356AC8 0x00355D2C 0x00355DE0
    0x000B05D4
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.driver.AirPortBrcm43xx(312.46.51)@0x300ec000->0x30218fff
    dependency: com.apple.iokit.IO80211Family(211.1)@0x2498b000
    dependency: com.apple.iokit.IOPCIFamily(2.4.1)@0x1e5f8000
    dependency: com.apple.iokit.IONetworkingFamily(1.6.0)@0x24482000
    Proceeding back via exception chain:
    Exception state (sv=0x249d8c80)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2469a780)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9C7010
    Kernel version:
    Darwin Kernel Version 9.2.2: Tue Mar 4 21:23:43 PST 2008; root:xnu-1228.4.31~1/RELEASE_PPC
    System model name: PowerBook5,1
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x0009B478 0x0009BE1C 0x00029DD4 0x000AF210 0x000B2A78
    Proceeding back via exception chain:
    Exception state (sv=0x249d8c80)
    PC=0x002A9684; MSR=0x00009030; DAR=0x0000000C; DSISR=0x40000000; LR=0x3014576C; R1=0x1E573C00; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x301456A0 0x30155BB0 0x300F5EC4 0x00356AC8 0x00355D2C 0x00355DE0
    0x000B05D4
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.driver.AirPortBrcm43xx(312.46.51)@0x300ec000->0x30218fff
    dependency: com.apple.iokit.IO80211Family(211.1)@0x2498b000
    dependency: com.apple.iokit.IOPCIFamily(2.4.1)@0x1e5f8000
    dependency: com.apple.iokit.IONetworkingFamily(1.6.0)@0x24482000
    Exception state (sv=0x2469a780)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current threa`
    Thank you.

    Because this post contains information that may be useful to others later on, I will not ask that it be removed as I have some of your previous posts in this topic.
    Notes:
    Panics do indeed occur in various situations, but as you suggest, I cannot at every moment account for the status of background processes. As I've said, however, the data in the panic reports I have amassed over the past six months are (virtually) identical. And as I pointed out more than once, these spates of panics occur in predictable, repeatable cycles.
    AHT in Extended, loop mode over 24 hours has not detected a RAM issue, though I am aware that this does not necessarily rule a RAM issue out.
    As mentioned above, neither DU's Disk Repair nor DiskWarrior have solved this issue.
    No data was transferred to this present installation via TDM or Migration Assistant. It was an E&I onto a freshly formatted volume. There is very little third-party software installed (BBEdit; CSSEdit; an FTP client and various browsers). Other major third-party software exists on 10.4.11 volumes because I am too cheap to upgrade many of these products when older versions still work well in the previous OS.
    There is no third-party hardware attached to this machine beyond a variety of HDs (all OWC; Hitachi), and there is no firmware to update for any other peripherals being used, however sporadically.
    This problem has presented itself through a variety of installation options, including a simple upgrade from 10.4.10; an A&I over a 10.4.10 volume; E&Is both using and not using Migration Assistant (with A&Is following both), and cloning an E&I on an external volume back to a newly formatted volume on my PB.
    Could be the RAM, but the symptoms (and the log files) tell me that more likely it's an I/O issue having something to do with AirPort, which brings you and I full circle, I guess.
    Thanks again!

  • Can you define key commands / shortcuts in PSE6?

    Hello,
    working in PSE 6  in mac OSX Leopard, I often wonder why some commands and menus have shortcuts while others do not.
    Wouldn't it be rather practical to have the possibility to write your own shortcuts to practically any function / action of the app?
    One I really miss is for the contrast / lightness menu for example, and some more.
    as fas as I know, there is no such function in PSE6 as of now, or is there?
    Any plans to implement it in future releases?
    Thanks!

    Well in OS X, you can define a Shortcut for any function in the  menu bar.
    Go to OSX Systemprefs -> Keyboard and mouse and select "Keyboardshortcuts". Here you can add shortcuts for any function in the menu of any App.
    However if you want to create some shortcuts for something that is not in the menu (brushes adjustments etc.) you will fail, and I dont think that there is any way to define/adjust shortcuts like in PS CS4.

  • Can you define a specific size of a Drawing Markup rectangle?

    Hi all,
    I am using Acrobat X and have been asked to find an answer to a 'problem' someone is having.
    If you have a site plan of one's property and they submit it to me for comment (as a pdf file) can I draw a box to a specific size? Say I set the 'scale ratio' to what the drawing scale is, I go to 'comments' and from the 'Drawing Markups' pane I choose 'draw rectangle; square', I then draw a rectangle to represent a shed of a specific size. I can dimension how far the rectangle/shed is to be from the property lines and I can dimension the rectangle/shed but I have to play with stretching it to get it to my desired size based on the scale I set.
    My question; is there anyway, when I am drawing the box, to either specify an x by y size or see the lenghts of their sides once I pick a corner and start to drag the box to the other corner?
    If not, would there be a java script that could accomplish this task?
    Any help would be appreciated.
    Thanks in advance.
    Paul

    Thanks Sabian, I understand that Acrobat is not a vector drawing application and I have been using all those programs (illustrator, AutoCAD, CorelDRAW etc.) for the past 20+ years. It wouldn't seem too much to ask considering that I can set a scale to my page (in Acrobat) and I can get Acrobat to give me a dimension from point A to point B based on that said scale, so why couldn't I expect to put a rectangle markup based on that same scale?
    As for the right tool? We are a municipality that is trying to make it easier for the public to submit applications online. Those submissions are in the format of a PDF because it is unrealistic to assume the everyone in the public has access to or can afford a program like AutoCAD or illustrator. Likewise it is too COSTLY to have everyone in the city have say 'AutoCAD' or even 'illustrator' to view the application documents to markup and send back.
    I believe  In 1991, Adobe Systems co-founder John Warnock outlined a system called "Camelot"[3] that evolved into PDF (from Wikipedia) and it was a way to have an independent viewing format regardless of what software application created it. I truly believe that Acrobat for what it's initial intent was that it should incorporate some of these features as it only makes sense in an evolutionary sense. Not to be a 'drawing package' but in it's markup/comments palette to expand on them.
    So keep your comments to 'no at this time acrobat does not allow this type of functionality but who knows in the future' and don't treat me as though I don't know anything about anything. In my decades of using these applications I have seen them evolve to include more functions and do more then when the product was originally released.
    I will now go on and recommend that they seriously look at Bluebeam Revu as it is not only cheaper but it has a ton more functionality specifically designed for the needs as listed above working with PDF's (and bitmap images to boot). I was just wanting to cover all bases and give all programs a fair look.
    Thanks again for your intuitive insight.
    Paul

  • Mail quits unexpectedly 10.5.8-can you decipher my Crash report, Please!

    Date/Time: 2009-09-06 14:51:24.446 -0600
    OS Version: Mac OS X 10.5.8 (9L30)
    Report Version: 6
    Anonymous UUID: A6FB73EF-EED9-43EA-A095-4E72628C5FB4
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 8
    Thread 0:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x907152ac RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x907150c5 ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x90714f39 BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x913f76d5 _DPSNextEvent + 657
    8 com.apple.AppKit 0x913f6f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x913eff9f -[NSApplication run] + 795
    10 com.apple.AppKit 0x913bd1d8 NSApplicationMain + 574
    11 com.apple.mail 0x000fc0b2 0x1000 + 1028274
    Thread 1:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x96f683d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x96f744f4 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x003d8dc5 -[RSSInterchange _runManager] + 2140
    7 com.apple.Foundation 0x96f33dfd -[NSThread main] + 45
    8 com.apple.Foundation 0x96f339a4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    10 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x93d1a292 _workqops + 10
    1 libSystem.B.dylib 0x93d1a2c2 start_wqthread + 30
    Thread 3:
    0 ??? 0000000000 0 + 0
    Thread 4:
    0 libSystem.B.dylib 0x93cb846e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93ce2dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x92b85a09 fefragmentthread + 54
    3 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    4 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x96f683d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x96f744f4 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x002fc9fd +[_NSSocket _runIOThread] + 98
    7 com.apple.Foundation 0x96f33dfd -[NSThread main] + 45
    8 com.apple.Foundation 0x96f339a4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    10 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x93d006fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    2 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x93cb12e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93ce32af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93ce4b33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x96f79dbc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x96f79bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x96f79b35 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x9145d6e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x96f33dfd -[NSThread main] + 45
    8 com.apple.Foundation 0x96f339a4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    10 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 8 Crashed:
    0 libicucore.A.dylib 0x969516ea icu::TimeZone::TimeZone(icu::TimeZone const&) + 18
    1 libicucore.A.dylib 0x969517c1 icu::SimpleTimeZone::SimpleTimeZone(icu::SimpleTimeZone const&) + 39
    2 libicucore.A.dylib 0x96951792 icu::SimpleTimeZone::clone() const + 36
    3 libicucore.A.dylib 0x96951762 icu::OlsonTimeZone::operator=(icu::OlsonTimeZone const&) + 96
    4 libicucore.A.dylib 0x96951684 icu::OlsonTimeZone::clone() const + 36
    5 libicucore.A.dylib 0x969500e5 icu::TimeZone::createDefault() + 95
    6 libicucore.A.dylib 0x9695000c icu::GregorianCalendar::GregorianCalendar(icu::Locale const&, UErrorCode&) + 32
    7 libicucore.A.dylib 0x9694f9d6 icu::Calendar::createInstance(icu::TimeZone*, icu::Locale const&, UErrorCode&) + 330
    8 libicucore.A.dylib 0x9694d2fe ucal_open + 130
    9 com.apple.CoreFoundation 0x9584733b __CFCalendarCreateUCalendar + 315
    10 com.apple.CoreFoundation 0x958473e2 __CFCalendarSetupCal + 34
    11 com.apple.CoreFoundation 0x958480ab _CFCalendarDecomposeAbsoluteTimeV + 251
    12 com.apple.CoreFoundation 0x9584a7a9 CFCalendarDecomposeAbsoluteTime + 185
    13 com.apple.CoreFoundation 0x958ed69e __CFLogCString + 862
    14 com.apple.CoreFoundation 0x958ed92b _CFLogvEx + 299
    15 com.apple.Foundation 0x96f51c5e NSLogv + 174
    16 com.apple.Foundation 0x96fb11db NSLog + 27
    17 com.apple.syncservices 0x9570dd68 blowOut + 128
    18 com.apple.syncservices 0x9568aa49 -[ISDDatabase(SqliteHelpers) executeWithCallback:context:rollbackOnError:sql:arguments:] + 723
    19 com.apple.syncservices 0x9568a770 -[ISDDatabase(SqliteHelpers) execute:] + 75
    20 com.apple.syncservices 0x9569cee9 -[ISDDataDatabase initWithDatabaseInDirectory:delegate:] + 849
    21 com.apple.syncservices 0x9569cb68 -[ISDRecordStore initWithDatabaseInDirectory:delegate:] + 223
    22 com.apple.syncservices 0x9569ca20 -[ISDClientState recordStore] + 281
    23 com.apple.syncservices 0x9569f623 -[ISyncConcreteSession _prepareRecordStoreForTruthPullingEntityNames:] + 192
    24 com.apple.syncservices 0x9569c419 -[ISyncConcreteSession _prepareRecordStoreForSyncing] + 1548
    25 com.apple.syncservices 0x95699e03 -[ISyncConcreteSession _enterPushing] + 2356
    26 com.apple.syncservices 0x95696229 -[ISyncConcreteSession _transitionStateMachine:] + 3660
    27 com.apple.syncservices 0x956a38bd -[ISyncConcreteSession _prepareToPullChangesForEntityNames:inBackground:target:selector:] + 78
    28 com.apple.syncservices 0x956a383d -[ISyncConcreteSession prepareToPullChangesForEntityNames:beforeDate:] + 66
    29 com.apple.syncservices 0x956a2cce -[ISyncConcreteSessionDriver _pullPhaseOfSession] + 1755
    30 com.apple.syncservices 0x9568f23d -[ISyncConcreteSessionDriver _sync:] + 223
    31 com.apple.syncservices 0x957292cb -[ISyncConcreteSessionDriver _startAsynchronousSyncWorker] + 454
    32 com.apple.Foundation 0x96f33dfd -[NSThread main] + 45
    33 com.apple.Foundation 0x96f339a4 _NSThread__main_ + 308
    34 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    35 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x932fb5f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x932fb480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    7 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x9241b264 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    6 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 8 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x969517a8 ecx: 0x969516dd edx: 0xa07f9b08
    edi: 0x007e9e80 esi: 0x00000000 ebp: 0xb0a654e8 esp: 0xb0a654e8
    ss: 0x0000001f efl: 0x00010286 eip: 0x969516ea cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000000

    Date/Time: 2009-09-06 14:51:24.446 -0600
    OS Version: Mac OS X 10.5.8 (9L30)
    Report Version: 6
    Anonymous UUID: A6FB73EF-EED9-43EA-A095-4E72628C5FB4
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 8
    Thread 0:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.HIToolbox 0x907152ac RunCurrentEventLoopInMode + 283
    5 com.apple.HIToolbox 0x907150c5 ReceiveNextEventCommon + 374
    6 com.apple.HIToolbox 0x90714f39 BlockUntilNextEventMatchingListInMode + 106
    7 com.apple.AppKit 0x913f76d5 _DPSNextEvent + 657
    8 com.apple.AppKit 0x913f6f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9 com.apple.AppKit 0x913eff9f -[NSApplication run] + 795
    10 com.apple.AppKit 0x913bd1d8 NSApplicationMain + 574
    11 com.apple.mail 0x000fc0b2 0x1000 + 1028274
    Thread 1:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x96f683d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x96f744f4 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x003d8dc5 -[RSSInterchange _runManager] + 2140
    7 com.apple.Foundation 0x96f33dfd -[NSThread main] + 45
    8 com.apple.Foundation 0x96f339a4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    10 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x93d1a292 _workqops + 10
    1 libSystem.B.dylib 0x93d1a2c2 start_wqthread + 30
    Thread 3:
    0 ??? 0000000000 0 + 0
    Thread 4:
    0 libSystem.B.dylib 0x93cb846e _semwaitsignal + 10
    1 libSystem.B.dylib 0x93ce2dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x92b85a09 fefragmentthread + 54
    3 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    4 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x96f683d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x96f744f4 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x002fc9fd +[_NSSocket _runIOThread] + 98
    7 com.apple.Foundation 0x96f33dfd -[NSThread main] + 45
    8 com.apple.Foundation 0x96f339a4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    10 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x93d006fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    2 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x93cb12e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x93ce32af pthread_condwait + 1244
    2 libSystem.B.dylib 0x93ce4b33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x96f79dbc -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x96f79bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x96f79b35 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x9145d6e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x96f33dfd -[NSThread main] + 45
    8 com.apple.Foundation 0x96f339a4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    10 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 8 Crashed:
    0 libicucore.A.dylib 0x969516ea icu::TimeZone::TimeZone(icu::TimeZone const&) + 18
    1 libicucore.A.dylib 0x969517c1 icu::SimpleTimeZone::SimpleTimeZone(icu::SimpleTimeZone const&) + 39
    2 libicucore.A.dylib 0x96951792 icu::SimpleTimeZone::clone() const + 36
    3 libicucore.A.dylib 0x96951762 icu::OlsonTimeZone::operator=(icu::OlsonTimeZone const&) + 96
    4 libicucore.A.dylib 0x96951684 icu::OlsonTimeZone::clone() const + 36
    5 libicucore.A.dylib 0x969500e5 icu::TimeZone::createDefault() + 95
    6 libicucore.A.dylib 0x9695000c icu::GregorianCalendar::GregorianCalendar(icu::Locale const&, UErrorCode&) + 32
    7 libicucore.A.dylib 0x9694f9d6 icu::Calendar::createInstance(icu::TimeZone*, icu::Locale const&, UErrorCode&) + 330
    8 libicucore.A.dylib 0x9694d2fe ucal_open + 130
    9 com.apple.CoreFoundation 0x9584733b __CFCalendarCreateUCalendar + 315
    10 com.apple.CoreFoundation 0x958473e2 __CFCalendarSetupCal + 34
    11 com.apple.CoreFoundation 0x958480ab _CFCalendarDecomposeAbsoluteTimeV + 251
    12 com.apple.CoreFoundation 0x9584a7a9 CFCalendarDecomposeAbsoluteTime + 185
    13 com.apple.CoreFoundation 0x958ed69e __CFLogCString + 862
    14 com.apple.CoreFoundation 0x958ed92b _CFLogvEx + 299
    15 com.apple.Foundation 0x96f51c5e NSLogv + 174
    16 com.apple.Foundation 0x96fb11db NSLog + 27
    17 com.apple.syncservices 0x9570dd68 blowOut + 128
    18 com.apple.syncservices 0x9568aa49 -[ISDDatabase(SqliteHelpers) executeWithCallback:context:rollbackOnError:sql:arguments:] + 723
    19 com.apple.syncservices 0x9568a770 -[ISDDatabase(SqliteHelpers) execute:] + 75
    20 com.apple.syncservices 0x9569cee9 -[ISDDataDatabase initWithDatabaseInDirectory:delegate:] + 849
    21 com.apple.syncservices 0x9569cb68 -[ISDRecordStore initWithDatabaseInDirectory:delegate:] + 223
    22 com.apple.syncservices 0x9569ca20 -[ISDClientState recordStore] + 281
    23 com.apple.syncservices 0x9569f623 -[ISyncConcreteSession _prepareRecordStoreForTruthPullingEntityNames:] + 192
    24 com.apple.syncservices 0x9569c419 -[ISyncConcreteSession _prepareRecordStoreForSyncing] + 1548
    25 com.apple.syncservices 0x95699e03 -[ISyncConcreteSession _enterPushing] + 2356
    26 com.apple.syncservices 0x95696229 -[ISyncConcreteSession _transitionStateMachine:] + 3660
    27 com.apple.syncservices 0x956a38bd -[ISyncConcreteSession _prepareToPullChangesForEntityNames:inBackground:target:selector:] + 78
    28 com.apple.syncservices 0x956a383d -[ISyncConcreteSession prepareToPullChangesForEntityNames:beforeDate:] + 66
    29 com.apple.syncservices 0x956a2cce -[ISyncConcreteSessionDriver _pullPhaseOfSession] + 1755
    30 com.apple.syncservices 0x9568f23d -[ISyncConcreteSessionDriver _sync:] + 223
    31 com.apple.syncservices 0x957292cb -[ISyncConcreteSessionDriver _startAsynchronousSyncWorker] + 454
    32 com.apple.Foundation 0x96f33dfd -[NSThread main] + 45
    33 com.apple.Foundation 0x96f339a4 _NSThread__main_ + 308
    34 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    35 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x932fb5f8 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x932fb480 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    7 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x93cb1286 machmsgtrap + 10
    1 libSystem.B.dylib 0x93cb8a7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9588fe7e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x95890aa8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x9241b264 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x93ce2155 pthreadstart + 321
    6 libSystem.B.dylib 0x93ce2012 thread_start + 34
    Thread 8 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x969517a8 ecx: 0x969516dd edx: 0xa07f9b08
    edi: 0x007e9e80 esi: 0x00000000 ebp: 0xb0a654e8 esp: 0xb0a654e8
    ss: 0x0000001f efl: 0x00010286 eip: 0x969516ea cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000000

  • Can you create a product report with attributes?

    I have tried create a customer and orders report in order to show a list of people who have purchased classes..
    My product is setup as : SATURDAY CLASSES, with product attributes eg: JAZZ, BALLET, DRAMA etc
    When I run the report, it only shows the initial product, SATURDAY CLASSES, and no attributes.
    Report goes like this:
    Custom Reports > Add a Customer Report
    > Customers and Orders > Then I choose my fields required..  and Generate Report.
    I realise to fix this problem I could change the products to individual products and group them together, but that means the product discounts I have set up wouldn't work....
    Which makes it hard to see who has booked into which class..
    Is there any way to run a report that will show attributes?

    Our reports currently do not include product attributes. I believe that this item is on the wishlist so I would encourage you to go there and vote for it.
    Cheers,
    Mario

Maybe you are looking for

  • Sequence unrendering when external drive is moved

    Hey there, I'm having difficulty moving a project from one edit suite to another. All of the media and render files are on an external HD. When opened on the originating system, the sequence is fully rendered. When I take the external over to another

  • Storing large file in Oracle

    Hi, We have a requirement where we need to persist file (upto 100MB or more) into the database. We are using Hibernate as the ORM. The approaches that we are considering are: 1. use a BLOB field to upload the file. What I am doing here is SessionFact

  • How can i buy iphone if iam not a canadian but i am in toronto on visit visa  and i want to buy an iphone 5 ! please help me

    how can i buy iphone if iam not a canadian but i am in toronto on visit visa  and i want to buy an iphone 5 today coz i am going back to Pakistan tomorrow ! please help me fast !!!!

  • Switch recommendation, to add more wired ports to network

    I have a home network that goes from a broad band modem to an Apple AirPort Extreme.  I use the wireless for our iPhones and iPads.  However, ive wired the house so that my computers, NAS, and Apple TV are all wired.  It works great -Time machine is

  • Adobe 14  keeps crashing

    is there someone who can help out with what seems to be a common problem, that adobe flash 14 keeps crashing?  is there a straightforward thing I can do to stop this from interfereing with my work? thanks