Projects and Enhancements

Hi All ,
  When we implement user exits what is the purpose of creating enhancements and projects , becuase even without it the exist is triggred.
Is the purpose of creating them only to have this exit when we are upgrade our system to a newer version of SAP.
Regadrs
Arun

That is what i thought but here is an example i tried .
<b>Transaction : VA03
Exit : EXIT_SAPLV09A_002.</b>
I do not create a project or an enhancement , just click on the include and in the resulting FM type in <b>'BREAK-POINT'</b> and activate the FM .
Now when i execute VA03 , it stops at the breakpoint.
Could you please also test this out and tell your observation.
Reagdrs
Arun

Similar Messages

  • In which table can I find a project (CMOD)and enhancement (SMOD)??

    In which table can I find a project (CMOD)and enhancement (SMOD)??
    or else please suggest to me how I can find the project assigned to a enhancement?
    Regards,
    Shashank.

    Shashank,
    It looks like table MODACT makes the link between the project and the contained enhancements.
    Regards,
    Gary

  • I want to propose an idea to Apple.has Apple  an email to present new projects and products.

    has Apple  an email to present new projects and products? Microsoft for example has
    https://members.microsoft.com/omc/Welcome.aspx

    Apple doesn't seem to accept product 'idea' submissions as much....you can use the bug reporter, however to make feature/enhancement requests tho.
    Report a Bug

  • CJ20N: handle Z table's related to project and wbs element

    Hi there,
    The requirement is to handle Z table for project and wbs element.
    Example:
    ZTAB1 has fields: pspnr | field1 | field2 (for projects)
    ZTAB2 has fields: pspnr | field3 | field4 (for wbs element)
    I found an enhancement that can read z table into internal table, i read it into screen and no problem.
    I use it for wbs element too.
    The problem is when the project has several wbs element's in tree, and the user navigate and change them.
    I can't control the data in internal tables, since the user is swithcing.
    How does the standard sap control the memory from each wbs element and project?
    How can i read and save it separatelly?
    Thanks in advance,
    Edited by: orgasmics on Nov 22, 2010 9:37 PM

    Hi,
    try table <b>jest</b> with key = prps-objnr
    Andreas

  • Customization and Enhancment of ICSS B2B 5.0 (Java )

    Hi,
    I have to customize and enhance the functionality of CRM 5.0 ICSS B2B web front end.
    i studied the ISA50DevExtGuideConcepts21.pdf document,according to the document i am using NWDS for development.
    I am following the below mentioned methodology.
    1 > Downloaded NWDS 7.0
    2> Configured the NWDS to point to remote j2ee engine
          (WindowPreferencesSAP J2ee Engine 
            Message server host
            Message Server Port )
    3> Got the latest source code i.e sap.comcrmicsswebicss_b2b.war
         extracted the source code.
    4> created An Enterprise Application Project
    5> Created Web Module Project
    6> Added the created Web Module Project into the Enterprise Application Project
    7> Followed the 1017761 note to deploy the standard application with different   name
    8> Generated the custom_app.ear file.(J2EE Explorer Perspective)
    9> Deployed the application using NWDS deploy option.(J2EE Explorer Perspective custom_app.earright click u will have option for deploy onto j2ee engine--asks SDM password)
    when i try to access the deployed custom application using
    http://host:port/custom_app/init.do
    i am getting the following error
      Application error occurred during request processing.
      Details:   Error [javax.servlet.ServletException: Initialization of Extended Configuration Management failed.].
    Exception id: [0014C265B0070079000006E900006B000004310E29004C31]
    when i access the http://host:port/custom_appt/admin/index.jsp
    i am getting an empty Menu page .no links for XCM admin
    SAP support suggested me to apply the patch.my java stack is at SP11 and
    in sync with  979884 note patch also.
    but still getting the error.
    here my question is am i following proper methodology or u find any gaps in the procedure.
    i studied in the ISA50DevExtGuideConcepts21.pdf some where they said
    about the enabling the debugging and about DTR ,if find any details do let me know asap.
    thanks
    Suresh

    Hi Pranay
    If you are checking this mail.
    I have the same problem, and I also have SAP-CRMDIC  5.0 SP6 (1000.5.0.6.0.20060914084317) deployed. Could you please advise why am I not able to see XCM config? or the whole of the admin.
    I am using my custom application and deployed the ear through NWDS.
    Points Gurenteed.
    Thanks
    Gaurav Sahai

  • What are forms, interfaces, conversions and enhancements?

    Hello Experts,
    Please enlighten me on what are those terms. Any examples would be highly appreciated. Thanks guys and take care!

    hi ,
    Forms :
    1. They r Client Independent.
    2. It contains more than one main window.
    3. Multiple layout is possible in smart form.
    4. Colors can be given in script form.
    5. Function modules can be generated automatically.
    6. background is possible.
    coming up to an Interface:
    Interface is a system or a device that is used to connect two unrelated or non-understanding entities.
    This definition to an interface could be the key to your answer.
    As you might already know, Interface does not provide any implementation but just defines a set of protocols that can be implemented by any class.
    Let us consider a few examples...
    You and the bicycle. Both of you are not related in anyway. But you want to ride the bicycle. How do you interact with the bicycle? You do it via the pedal which is an interface between you and the bicycle.
    You could extend this concept to 'You' and the 'Television' where the interface is a remote control.
    conversions :
    SAP provides a conversion for SAPscript documents to SMARTforms.
    This is basically a function module, called FB_MIGRATE_FORM. You can  start this function module by hand (via SE37), or create a small ABAP which migrates all SAPscript forms automatically.
    You can also do this one-by-one in transaction SMARTFORMS, under 
    Utilities -> Migrate SAPscript form.
    You could also write a small batch program calling transaction SMARTFORMS and running the migration tool.
    Enhancements :
    CMOD is the Project Management of SAP Enhancements (i.e., SMOD Enhancements). SMOD contains the actual enhancements and CMOD is the grouping of those SMOD enhancements. 
    User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a function module. The code for the function module is written by the developer. You are not writing the code directly in the function module, but in the include that is implemented in the function module. 
    The naming standard of function modules for function module exits is: 
    EXIT_<program name><3 digit suffix> 
    The call to a functionmodule exit is implemented as: 
    CALL CUSTOMER.-FUNCTION <3 digit suffix> 
    For Example: 
    The program for transaction VA01 Create salesorder is SAPMV45A
    1. If you search for CALL CUSTOMER-FUNCTION program SAPMV45A you will find ( Among other user exits): 
    CALL CUSTOMER-FUNCTION '003'
      exporting
        xvbak   = vbak
        xvbuk   = vbuk
        xkomk   = tkomk
      importing
        lvf_subrc = lvf_subrc
      tables
        xvbfa = xvbfa
        xvbap = xvbap
        xvbup = xvbup. 
    The exit calls function module EXIT_SAPMV45A_003 
    2. How to find user exits 
    Display the program where you are searching for and exit and search for CALL CUSTOMER-EXIT 
    If you know the Exit name, go to transaction CMOD. Choose menu Utillities->SAP Enhancements. 
    Enter the exit name and press enter. 
    You will now come to a screen that shows the function module exits for the exit. 
    or use this ABAP program to search for user exits :-
    Finding the user-exits of a SAP transaction code
    3. Using Project management of SAP Enhancements 
    You want to create a project to enhance transaction VA01
    - Go to transaction CMOD
    - Create a project called ZVA01
    - Choose the Enhancement assign radio button and press the Change button
    In the first column enter V45A0002 Predefine sold-to party in sales document . Note that an enhancement can only be used for 1 project. If the enhancement is allready in use, and error message will be displayed
    - Press Save
    - Press Components. You can now see that enhancement uses user exit EXIT_SAPMV45A_002. 
    - Double Click on the exit.
    Now the function module is displayed. Double click on include ZXVVAU04 in the function module
    Insert the following code into the include: E_KUNNR = '2155'. 
    Activate the include program. Go back to CMOD and activate the project. 
    Goto transaction VA01 and create a salesorder. Note that Sold-to-party now automatically is "2155"
    if u find tht its an helpful answer dont forget to reward points for it.
    with regards,
    madhuri

  • Linking Clips to Projects and Keeping them linked when re-arranging events.

    I have uploaded all of my videos in I movie and created several projects in rough form as I plan to work with those projects over the upcoming weeks. The video's I uploaded as events were 25 years old and of my events spanned a few years. When I created my projects--I used pieces and parts of events (clips) from several different events. In short, my events don't align at all with my projects. Now I'm wanting to maybe rearrange my events to better align with my projects (i.e. I've put all birthday parties into one projects and I want to move birthday clips into one event.)
    I'm concerned that if I move the clips and arrange new events--I movie will not know where to find the clips that align with my current projects. Will this be a problem.
    A related but different question is as follows--I've backed up my events onto a portable hard drive. If I decide to delete these events altogether from my hard drive---and plug in my portable drive---will I movie find the clips making up my projects--even though they are not on the drive they were originally on when they were selected and placed into the project.

    What I am asking is if anyone knows how to link these together in a less cumbersome fashion.
    Yes and no. Basically, you were caught in an changeover enhancement. iMovie '08 only had the option of movie Events whereas iMovie '09 can move or copy either or both. In my case, the Projects were still on my number one internal drive but my Events had been previously moved to my number two internal drive. I simply opted to "move" both the a single external drive which worked successfully without have to first "restore" the Events to the number one drive first which seems to imply there was sufficient pointers available to restore/update locations by simply "moving" your Projects to join your Events on the external drive. But I tend to agree that having a "re-link" option would be a nice enhancement request for iMovie '09.

  • Scanning and enhancing an X-ray?

    I am working on a creative project and am trying to scan an old X-ray of my ankle and enhance it in Photoshop CS3 to extract the image detail (the bone) from the background. The X-ray is, of course, very dark - when you hold it up to the light you see lots of detail but when you scan it the resulting image is extremely dark and there's very little contrast between the bone imagery and the background. I tried to adjust the image to bring out the detail, but am pretty new to Photoshop so did not have much luck.
    Are there any special steps I can take to improve the scan and/or any Photoshop operations that can be used to separate the detail from the background?
    Thanks,
    Steve C.

    Scanning an x-ray is exactly like scanning a negative except I think the densities are greater in the x-ray making it a bigger challenge for typical flatbed transparency scanners. If you're having problems with "shadow" detail, you may be revealing the weaknesses of your scanner. It may be necessary to have someone scan your ankle with a higher end scanner.
    I worked on a project several years ago where I scanned about thirty x-rays which were then hand colored. Perhaps a different project than yours but the mid range flatbed scans I did at the time worked quite well. Today I'd probably try the drum scanner.

  • Re: Difference between user-exits and enhancements

    Hi ,
    Can any one explain the difference between user-exits and enhancements with an exmpale.
    I will give u full points.
    thanks&regards,
    Bhushan-karra.

    Hi,
    User exit - A user exit is a three character code that instructs the system to access a program during system processing.
    SXX: S is for standard exits that are delivered by SAP. XX represents the 2-digit exit number.
    UXX: U is for user exits that are defined by the user. XX represents the 2-digit exit number
    Customer exit - The R/3 enhancement concept allows you to add your own functionality to SAP’s standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks. *-- Mani
    The following document is about exits in SAP :-
    The R/3 enhancement concept allows you to add your own functionality to SAP’s standard business applications without having to modify the original applications.
    SAP creates user exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.
    Types of Exits
    There are several different types of user exits. Each of these exits acts as hooks where you can attach or "hang" your own add-ons.
    Menu Exits
    Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
    SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    Screen Exits
    Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s flow logic.
    Function Module Exits
    Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits.
    When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated.
    Function module exits also control the data flow between standard programs and screen exit fields. SAP application developers create function module exits by writing calls to customer functions into the source code of standard R/3 programs.
    These calls have the following syntax:
    CALL CUSTOMER-FUNCTION ‘001’.
    Field Exits
    Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field. Example: The data element BBBNR identifies a company’s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100.
    The field exit concept lets you create a special function module that contains this logic.
    You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number.
    Check these links for more details -
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1978b543b111d1896f0000e8322d00/frameset.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://sap.niraj.tripod.com/id21.html
    If this answers your question, please close the thread.
    Check this link also,
    https://forums.sdn.sap.com/click.jspa?searchID=5924777&messageID=3801056
    Thanks,
    Reward If Helpful.

  • My imovie seems to have completely crashed... and I'm hoping someone can help me. I have moved all my projects and events to a folder on my desktop. I've deleted all the plist files I can find and I still cannot get it to open.

    Please help... it seems all is lost as all I kind find on this subject seem to lead to nowhere. My engagement was on imovie, a school project, several videos of our son. You will have to hold my hand through this process... as I am not very good at this type of thing. I believe I have deleted all the necessary plist files and moved my projects and events to a folder on my desktop. imovie has been upgraded to version 9.0.9... Whenever I open it I just get the beachball and then I have to force quit and I get the following report:
    Date/Time:  
    2013-08-02 23:48:24 -0500
    OS Version: 
    10.7.5 (Build 11G63b)
    Architecture:
    x86_64
    Report Version:  9
    Command:    
    iMovie
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Version:    
    9.0.9 (1795)
    Build Version:   2
    Project Name:
    iMovieApp
    Source Version:  1795000000000000
    App Item ID:
    408981434
    App External ID: 15340117
    Parent:     
    launchd [120]
    PID:        
    1184
    Event:      
    hang
    Duration:   
    2.60s
    Steps:      
    27 (100ms sampling interval)
    Pageins:    
    0
    Pageouts:   
    0
    Process:    
    iMovie [1184]
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Architecture:
    i386
    UID:        
    504
      Thread 0x3dd6 
      User stack:
    27 ??? (in iMovie) [0xf9c95]
    27 ??? (in iMovie) [0xfa12a]
    27 NSApplicationMain + 1054 (in AppKit) [0x92d8fac5]
    27 -[NSApplication run] + 911 (in AppKit) [0x92afeac1]
    27 ??? (in iMovie) [0x1485be]
    27 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113 (in AppKit) [0x92b02752]
    27 _DPSNextEvent + 678 (in AppKit) [0x92b02ee8]
    27 BlockUntilNextEventMatchingListInMode + 88 (in HIToolbox) [0x9c85671a]
    27 ReceiveNextEventCommon + 381 (in HIToolbox) [0x9c8568ab]
    27 RunCurrentEventLoopInMode + 318 (in HIToolbox) [0x9c84f543]
    27 CFRunLoopRunInMode + 120 (in CoreFoundation) [0x9ad10088]
    27 CFRunLoopRunSpecific + 332 (in CoreFoundation) [0x9ad101dc]
    27 __CFRunLoopRun + 1112 (in CoreFoundation) [0x9ad109c8]
    27 __CFRunLoopDoSources0 + 246 (in CoreFoundation) [0x9ace6af6]
    27 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15 (in CoreFoundation) [0x9ace713f]
    27 __NSThreadPerformPerform + 503 (in Foundation) [0x95e5fe0c]
    27 -[NSObject performSelector:withObject:] + 65 (in CoreFoundation) [0x9ad6fd11]
    27 -[ILMediaGroupsTreeController _reloadFinished:] + 715 (in iLifeMediaBrowser) [0x94ff72a0]
    27 -[ILMediaGroupsTreeController setAllGroups:] + 180 (in iLifeMediaBrowser) [0x94ff8dee]
    27 -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 131 (in Foundation) [0x95e2316d]
    27 NSKeyValueDidChange + 279 (in Foundation) [0x95e7bbf1]
    27 NSKeyValueNotifyObserver + 387 (in Foundation) [0x95e59194]
    27 -[ILMediaObjectsViewController observeValueForKeyPath:ofObject:change:context:] + 1217 (in iLifeMediaBrowser) [0x9500538b]
    27 -[ILMediaObjectsViewController syncTreeNodeSelections] + 419 (in iLifeMediaBrowser) [0x9501179d]
    27 -[ILMediaObjectsViewController groupSelectionChanged:] + 233 (in iLifeMediaBrowser) [0x95007225]
    27 -[ILMediaObjectsViewController updateMediaObjectsViewToSelectedGroups:] + 2002 (in iLifeMediaBrowser) [0x9501035f]
    27 -[NSArrayController setContent:] + 858 (in AppKit) [0x92d97f3f]
    27 -[NSArrayController _arrangeObjectsWithSelectedObjects:avoidsEmptySelection:operationsMask:useBasis :] + 856 (in AppKit) [0x92d95aa0]
    27 -[NSArrayController didChangeValuesForArrangedKeys:objectKeys:indexKeys:] + 53 (in AppKit) [0x92d96231]
    27 -[NSController didChangeValueForKey:] + 48 (in AppKit) [0x92b18430]
    27 -[NSController _notifyObserversForKeyPath:change:] + 238 (in AppKit) [0x92b18526]
    27 -[NSObject(NSKeyValueObservingPrivate) _notifyObserversForKeyPath:change:] + 1026 (in Foundation) [0x95e52f44]
    27 NSKeyValueNotifyObserver + 387 (in Foundation) [0x95e59194]
    27 -[ILMediaObjectsViewController observeValueForKeyPath:ofObject:change:context:] + 299 (in iLifeMediaBrowser) [0x95004ff5]
    27 -[IKImageBrowserView(ImageBrowserDatasource) reloadData] + 368 (in ImageKit) [0x9b96ba12]
    27 -[IKImageBrowserView(ImageBrowserLayout) updateLayoutOfCells] + 100 (in ImageKit) [0x9b978e18]
    27 -[IKImageBrowserView(ImageBrowserLayout) updateLayoutOfCellsAtIndexes:] + 174 (in ImageKit) [0x9b978d52]
    27 -[IKImageBrowserView(ImageBrowserScrolling) adjustDocumentSize] + 49 (in ImageKit) [0x9b98170c]
    27 -[IKImageBrowserLayoutManager contentSize] + 100 (in ImageKit) [0x9b9d6fbc]
    27 -[IKImageBrowserLayoutManager updateIfNeeded] + 44 (in ImageKit) [0x9b9d4a9d]
    27 -[IKImageBrowserLayoutManager update] + 213 (in ImageKit) [0x9b9d4a46]
    27 -[IKImageBrowserSubsetLayoutManager updateLayout] + 60 (in ImageKit) [0x9ba0451a]
    27 -[IKImageBrowserGrid computeContentSize] + 399 (in ImageKit) [0x9b941329]
    27 -[IKImageBrowserGrid translationRatioAtRow:] + 63 (in ImageKit) [0x9b94095e]
    27 -[IKImageBrowserGrid validateRowsTranslationsToRowIndex:] + 621 (in ImageKit) [0x9b941015]
    27 -[IKImageBrowserCell aspectRatio] + 44 (in ImageKit) [0x9b94950e]
    27 -[IKImageBrowserCell _computeAspectRatio] + 36 (in ImageKit) [0x9b949585]
    27 -[IKImageCell validateDatasource] + 1118 (in ImageKit) [0x9ba2af82]
    27 -[NSObject(IKImageBrowserItemOptional) IKImageRepresentationWithType:] + 33 (in ImageKit) [0x9ba26f8f]
    27 -[ILMediaObject imageRepresentation] + 533 (in iLifeMediaBrowser) [0x94feffd4]
    27 -[ILMediaObject thumbnailPath] + 86 (in iLifeMediaBrowser) [0x94ff43b5]
    27 -[ILMediaObject _internal_thumbnailPath] + 52 (in iLifeMediaBrowser) [0x94ff4453]
    27 -[ILMediaObject refreshThumbnailCacheInfo] + 62 (in iLifeMediaBrowser) [0x94ff0199]
    27 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:] + 48 (in iLifeMediaBrowser) [0x94ffa93d]
    22 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:updateIfNotFound:] + 466 (in iLifeMediaBrowser) [0x94ffab14]
    22 -[ILMediaBrowserImageManager updateThumbnailDataXmlForPath:info:] + 116 (in iLifeMediaBrowser) [0x94ffa906]
    15 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 236 (in Foundation) [0x95e2a2fe]
    15 CFPropertyListCreateXMLData + 32 (in CoreFoundation) [0x9ad44640]
    15 _CFPropertyListCreateXMLData + 203 (in CoreFoundation) [0x9ad4471b]
    7 _CFAppendXML0 + 3261 (in CoreFoundation) [0x9ad4561d]
    2 _CFAppendXML0 + 3261 (in CoreFoundation) [0x9ad4561d]
    1 _CFAppendXML0 + 290 (in CoreFoundation) [0x9ad44a82]
    1 _appendEscapedString + 602 (in CoreFoundation) [0x9ad461ea]
    1 _plistAppendCharacters + 80 (in CoreFoundation) [0x9ad44850]
    1 _CFAppendXML0 + 5210 (in CoreFoundation) [0x9ad45dba]
    1 __CFNumberCreateFormattingDescriptionAsFloat64 + 181 (in CoreFoundation) [0x9ad61df5]
    1 CFStringCreateWithFormat + 110 (in CoreFoundation) [0x9ace102e]
    1 __CFStringAppendFormatCore + 6588 (in CoreFoundation) [0x9acdad9c]
    1 _CFAppendXML0 + 2847 (in CoreFoundation) [0x9ad4547f]
    1 CFRelease + 169 (in CoreFoundation) [0x9acde039]
    1 _objc_rootRelease + 47 (in libobjc.A.dylib) [0x99b0854e]
    1 -[__NSArrayM dealloc] + 394 (in CoreFoundation) [0x9ad084da]
    1 -[NSObject dealloc] + 107 (in CoreFoundation) [0x9ad0855b]
    1 _object_dispose + 78 (in libobjc.A.dylib) [0x99b11dc0]
    1 szone_size + 0 (in libsystem_c.dylib) [0x98b64cd1]
    1 _CFAppendXML0 + 2616 (in CoreFoundation) [0x9ad45398]
    1 CFDictionaryGetKeysAndValues + 455 (in CoreFoundation) [0x9aceb567]
    1 CFBasicHashGetElements + 207 (in CoreFoundation) [0x9aceb63f]
    1 _CFAppendXML0 + 3128 (in CoreFoundation) [0x9ad45598]
    1 _appendEscapedString + 653 (in CoreFoundation) [0x9ad4621d]
    1 _plistAppendCharacters + 80 (in CoreFoundation) [0x9ad44850]
    1 _CFAppendXML0 + 2778 (in CoreFoundation) [0x9ad4543a]
    1 CFArraySortValues + 1183 (in CoreFoundation) [0x9ace86ef]
    1 CFQSortArray + 231 (in CoreFoundation) [0x9ace8927]
    1 CFSortIndexes + 1494 (in CoreFoundation) [0x9ad18466]
    1 __CFSimpleMergeSort + 124 (in CoreFoundation) [0x9ad1850c]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 CFStringCompareWithOptionsAndLocale + 35 (in CoreFoundation) [0x9acf4cc3]
    1 CFStringGetLength + 108 (in CoreFoundation) [0x9acdc97c]
    1 _CFAppendXML0 + 2722 (in CoreFoundation) [0x9ad45402]
    1 CFArrayReplaceValues + 135 (in CoreFoundation) [0x9ace8ac7]
    1 -[NSMutableArray replaceObjectsInRange:withObjects:count:] + 979 (in CoreFoundation) [0x9ad27e93]
    4 _CFAppendXML0 + 3128 (in CoreFoundation) [0x9ad45598]
    2 _appendEscapedString + 340 (in CoreFoundation) [0x9ad460e4]
    1 CFStringGetCharacters + 143 (in CoreFoundation) [0x9aced27f]
    1 CFStringGetCharacters + 20 (in CoreFoundation) [0x9aced204]
    2 _appendEscapedString + 602 (in CoreFoundation) [0x9ad461ea]
    2 _plistAppendCharacters + 150 (in CoreFoundation) [0x9ad44896]
    2 CFDataAppendBytes + 163 (in CoreFoundation) [0x9aceb793]
    1 CFDataReplaceBytes + 487 (in CoreFoundation) [0x9ace9857]
    1 __CFDataGrow + 354 (in CoreFoundation) [0x9acec362]
    1 realloc + 175 (in libsystem_c.dylib) [0x98ba56f6]
    1 malloc_zone_realloc + 84 (in libsystem_c.dylib) [0x98ba47c0]
    1 szone_realloc + 2552 (in libsystem_c.dylib) [0x98b6f6f4]
    1 vm_copy + 167 (in libsystem_kernel.dylib) [0x9a73fa6c]
    1 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x9a741c22]
    1 CFDataReplaceBytes + 727 (in CoreFoundation) [0x9ace9947]
    1 memmove$VARIANT$sse42 + 39 (in libsystem_c.dylib) [0x98b279e4]
    2 _CFAppendXML0 + 3239 (in CoreFoundation) [0x9ad45607]
    2 CFDictionaryGetValue + 135 (in CoreFoundation) [0x9acd6a87]
    1 CFBasicHashFindBucket + 1844 (in CoreFoundation) [0x9acd71d4]
    1 __CFDictionaryStandardEquateKeys + 46 (in CoreFoundation) [0x9ace422e]
    1 CFEqual + 91 (in CoreFoundation) [0x9ace429b]
    1 CFBasicHashFindBucket + 1679 (in CoreFoundation) [0x9acd712f]
    1 __CFDictionaryStandardHashKey + 32 (in CoreFoundation) [0x9acd7700]
    1 __CFStringHash + 125 (in CoreFoundation) [0x9ace0a4d]
    2 _CFAppendXML0 + 2778 (in CoreFoundation) [0x9ad4543a]
    2 CFArraySortValues + 1183 (in CoreFoundation) [0x9ace86ef]
    2 CFQSortArray + 231 (in CoreFoundation) [0x9ace8927]
    2 CFSortIndexes + 1494 (in CoreFoundation) [0x9ad18466]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 400 (in CoreFoundation) [0x9ad18620]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 bcmp + 153 (in libsystem_c.dylib) [0x98b9f1b9]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 289 (in CoreFoundation) [0x9ad185b1]
    1 __CFSimpleMergeSort + 259 (in CoreFoundation) [0x9ad18593]
    1 __CFSimpleMergeSort + 400 (in CoreFoundation) [0x9ad18620]
    1 __CFQSortArray_block_invoke_1 + 47 (in CoreFoundation) [0x9ad186ef]
    1 __CFArrayCompareValues + 36 (in CoreFoundation) [0x9ad18724]
    1 CFStringCompare + 60 (in CoreFoundation) [0x9acf4c8c]
    1 bcmp + 132 (in libsystem_c.dylib) [0x98b9f1a4]
    5 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 287 (in Foundation) [0x95e2a331]
    5 -[NSData(NSData) writeToFile:atomically:] + 103 (in Foundation) [0x95e2a51e]
    5 _NSWriteBytesToFile + 60 (in Foundation) [0x95e2a565]
    4 __fsync + 10 (in libsystem_kernel.dylib) [0x9a7445fa]
    1 _NSWriteBytesToFileWithExtendedAttributes + 1253 (in Foundation) [0x95e2aa52]
    1 __rename + 10 (in libsystem_kernel.dylib) [0x9a743b0a]
    2 -[NSDictionary(NSDictionary) writeToFile:atomically:] + 61 (in Foundation) [0x95e2a24f]
    1 _NSIsPList + 793 (in Foundation) [0x95e28608]
    1 _NSIsPList + 659 (in Foundation) [0x95e28582]
    1 -[__NSCFDictionary keyEnumerator] + 97 (in CoreFoundation) [0x9ad5e271]
    1 -[__NSCFDictionary retain] + 25 (in CoreFoundation) [0x9ad3bec9]
    1 _NSIsPList + 770 (in Foundation) [0x95e285f1]
    1 -[__NSCFDictionary objectForKey:] + 28 (in CoreFoundation) [0x9ad3897c]
    1 CFDictionaryGetValue + 135 (in CoreFoundation) [0x9acd6a87]
    1 CFBasicHashFindBucket + 1844 (in CoreFoundation) [0x9acd71d4]
    1 __CFDictionaryStandardEquateKeys + 46 (in CoreFoundation) [0x9ace422e]
    1 CFEqual + 261 (in CoreFoundation) [0x9ace4345]
    1 bcmp + 128 (in libsystem_c.dylib) [0x98b9f1a0]
    5 -[ILMediaBrowserImageManager loadCachedAttributesForMediaObject:updateIfNotFound:] + 411 (in iLifeMediaBrowser) [0x94ffaadd]
    5 -[ILMediaBrowserImageManager loadAttributes:forMediaObject:atPath:] + 79 (in iLifeMediaBrowser) [0x94ffab80]
    5 -[ILMediaBrowserImageManager loadAttributes:forImageMediaObject:atPath:] + 720 (in iLifeMediaBrowser) [0x94ffd6ca]
    3 -[IKImageWrapper saveAsTIFFAtPath:] + 69 (in ImageKit) [0x9b91df81]
    3 -[NSData(NSData) writeToFile:atomically:] + 103 (in Foundation) [0x95e2a51e]
    3 _NSWriteBytesToFile + 60 (in Foundation) [0x95e2a565]
    3 __fsync + 10 (in libsystem_kernel.dylib) [0x9a7445fa]
    2 -[IKImageWrapper saveAsTIFFAtPath:] + 36 (in ImageKit) [0x9b91df60]
    1 -[IKImageWrapper TIFFRepresentation] + 82 (in ImageKit) [0x9b91eb1c]
    1 -[NSImage TIFFRepresentation] + 49 (in AppKit) [0x92d505e3]
    1 -[NSImage TIFFRepresentationUsingCompression:factor:] + 806 (in AppKit) [0x92d50911]
    1 +[NSBitmapImageRep TIFFRepresentationOfImageRepsInArray:] + 56 (in AppKit) [0x92d50dd9]
    1 +[NSBitmapImageRep(NSBitmapImageFileTypeExtensions) representationOfImageRepsInArray:usingType:properties:] + 2439 (in AppKit) [0x92d51768]
    1 CGImageDestinationFinalize + 158 (in ImageIO) [0x961dc693]
    1 _CGImagePluginWriteTIFF + 3885 (in ImageIO) [0x961dd5e9]
    1 CGAccessSessionGetBytes + 164 (in CoreGraphics) [0x99202dbc]
    1 memmove$VARIANT$sse42 + 136 (in libsystem_c.dylib) [0x98b27a45]
    1 -[IKImageWrapper TIFFRepresentation] + 64 (in ImageKit) [0x9b91eb0a]
    1 -[IKImageWrapper nsImage:] + 53 (in ImageKit) [0x9b92139b]
    1 -[IKImageWrapper _nsImage] + 261 (in ImageKit) [0x9b921519]
    1 IKCGImageFromIconRef + 309 (in ImageKit) [0x9b924834]
    1 PlotIconRefInContext + 403 (in HIServices) [0x93b65a15]
    1 PlotISImageRefInContext + 2063 (in HIServices) [0x93b63375]
    1 CGContextDrawImage + 457 (in CoreGraphics) [0x992b0855]
    1 ripc_DrawImage + 951 (in libRIP.A.dylib) [0x9ce94e6f]
    1 ripc_AcquireImage + 1901 (in libRIP.A.dylib) [0x9ce9661d]
    1 CGSImageDataLock + 165 (in CoreGraphics) [0x992b0c5c]
    1 img_data_lock + 8151 (in CoreGraphics) [0x9922867d]
                                                          

    Hi
    Yes this can be many things - and I can only guess/suggest.
    A. a very common origin to make the Mac un-happy is to - PANIC-HALT - when the round multicolored thing appear.
    So much can go wrong by doing this - and if done often problem builds up that can result in a real disaster.
    B. NEVER - move or alter any folder named - iMovie Event's resp. iMovie Project's - as iMovie has no search function - moving them results in that iMovie get's 100% lost.
    One can move them - but this HAS TO BE done within the iMovie application (as it is up and running)
    C. preference files - there are TWO or more Libraries on Your Mac. First and easy to find is the one You see when opening Your Start-Up Hard Disk window = Root Library == the WRONG ONE
    What we need to find is the one in Your User-Account folder (icon as a house) - and this is in Mac OS X.7, X.8 and X.9 HIDDEN. To see it do:
    ( It can be done like this: Open Terminal, then enter:
    chflags nohidden ~/Library
    Press return, then restart, and it will always be visible until the next major update, when you do the same thing again. )
    or - do like this. 
    On the Finder window at the top left of the screen,
    Hold down the Option key and clicked on Go. 
    This allowed You to see the Library folder and select it. 
    Then keep the Option button pressed down in order to see and select the Library folder. 
    Once found it, You are able to navigate to the iMovie preferences file and move it to the trash.  iMovie then start’s up fine! 
    Now here in Your User Library - find Preferences and trash
    com.apple.iMovie.plist
    com.apple.iMovie3.plist
    com.apple.iMovie7.plist
    com.apple.iMovie8.plist
    com.apple.iMovie9.plist
    com.apple.iMovieApp.plist
    and find
    com.apple.iApps.plist
    While iMovie is NOT RUNNING - move this/these file/s out on to desk-top.
    Now restart iMovie.
    I Prefere another way to find out if this is the problem.
    (after all folders (iMovie Event/Projects are moved into original place)
    • go up to Apple Menu
    • Down to System Pref's
    • Select Accounts - Create a new User
    • Go down the Apple menu - Log OUT
    • Log into as the new User
    Now try iMovie
    Does it work at all ? (Yes You don't see Events or Projects in Your original Account just now)
    If so - Then we know that there is a corrupted pref file to be trashed.
    Else - the problem are much more severe.
    D. After Panic Halt / Forced Quit - I always do -. to keep disasters on arms length.
    • Repair Permissions (Apple Disk Util tool)
    • Start from other HD or DVD - then run Repair Hard Disk (Apple Disk Util tool)
    Yours trying to be of help - Bengt W

  • Have a new Macbook Pro. While in IMovie, having completed a project and attempting to send to IDVD, am unable because the IDVD choice does not appear on the drop down under Share.  How do I find or add IDVD to my new Mac.

    While in IMovie, having completed a new project and wanting to send to IDVD, I choose the Share icon but the IDVD is not in the choices of the dropdown. I can't find or locate IDVD on my new Macbook pro    Please help, anyone

    Buy and install an iLife 09 or 11 DVD from a source such as Amazon or eBay.
    (99166)

  • I finished adding my transtions to my timeline.  I was having crashing issues so I shut down everything before I rendered the project and now it tells me that the project is unreadable or the file is too new for this version of final cut. What Happened?

    I finished adding my transtions to my timeline.  I was having crashing issues so I shut down everything before I rendered the project and now it tells me that the project is unreadable or the file is too new for this version of final cut. What Happened?

    What Happened?
    No way for us to know.  But if your system was crashing, there definitely was a problem.  The FCE error message you got normally indicates the FCE project file has been corrupted.  This probably happened due to whatever caused your system to crash & shutting down the system.
    First, make sure your system is running correctly.  Then, use the Finder to navigate to /users/yourusername/Documents/Final Cut Express Documents/Autosave Vault and find the most recent backup copy of your FCE project file.  Copy the file to your Final Cut Express Documents folder (copy the file, don't just move it).  Then double-click the copy to open it in FCE.  It should open ok, but will probably not have your most recent edits (transitions).  You may have to rebuild the transitions, but at least you will be back in action.

  • When I convert a trailer to a project and add content, how can I get the music track to repeat longer

    Hey fellow Apple Geniuses - I just got the latest iMovie11 so excited for the new trailer feature, only to discover that these teenie weenie movie trailers are not near long enough for my taste, however I do like the cool transitions and layouts, so I discovered that I can convert the trailer to a project and then add more content, which I am doing right now. I need help though with the audio track... Does anyone know the secret to getting the 43 second music track to repeat, since this particular track (Friendship2) is not showing as an option in my iTunes/iMovie licensed audio to be able to keep dragging more into the movie? Thanks a million!

    Hey Tom - Thanks a million truly! Just did what you said and it worked so smoothly! Totally cool! This was the last piece to finish the movie. I appreciate and value your quick response! Happy camper here!

  • Payment Term changes  in Projects and AR

    Hi,
    Currently all our projects are based on single agreement. recently we had to change the payment term for a Customer. Our Receivables group made this change in AR. We were expecting all the Projects invoices would pick up this , when they are interfaced to AR. But later we realized that the Project invoices go by the payment terms within the agreements.
    Again, we created a tar and Oracle suggested that we end date the current agreement and create a new one to match the payment term. But the issue is we have 20000 projects and if we want to change the payment terms in mass, then we need to create 20000 agreements and also, in the future , when accounting changes the payment term, the proejct manager may not know, the term has been changes and to change it in the agreement.
    Is there a more practical solution for this issue.
    - Vasu -

    I will suggest another solution if you are in a version that allow you to define Forms Personnalization.
    Instead of updating the transaction in AR Interface table, you can, for instance :
    - enter a payment term for each of your customer at the header level (table hz_customer_profiles, condition site_use_id is null) ;
    - create a Form Personnalization in the Customer Window, so that the Payment Terms is mandatory at the header level ;
    - create a Form Personnalization in the Agreement Window, so that once you enter a new Agreement for a customer, the Forms Personalization retrieves automaticaly the payment terms set up for your customer accordingly
    We implemented this solution and it works fine too.
    Available for any question about it.
    Xavier

  • Is there a way to retrieve my projects and events?

    I have copied final cut projects and events to my Mac internal drive from an external drive on which they were located. I could not do this via FCPX because of a problem: FCPX being unable to open up unless [it says] some corrupt files are either restored or move. Neither FCPX nor I are able to do this [restoring or moving out of the corrupt files].
    So, after copying the events and projects onto my Mac's HD, I tried to open the currentproject in FCPX, but the application states that it has to be opened from within FCPX only.
    Is there any workaround by which I would be able to get FCPX read these projects and events [a work of nearly 5 months]?
    One idea: can I make a disk image of the projects and events folders and would they then be 'read' and accepted by fcpx?
    Eagerly waiting for solution/s.

    Try Digital rebellions tool,
    http://www.digitalrebellion.com/promaintenance/
    they have a trial version, 15 days, I think you will find that this may work for you.
    Two things that may cause this
    Corrupt render files, solution, delete the render files in your projects.
    Corrupt media files, Pro maintenance Tool
    Also, try launching the event without the projects, this will let you know which is causing the problem, event or project.
    let us know how you go.
    Tony

Maybe you are looking for

  • How to create bindings at runtime for Dynamic Tables ?

    We have lot of Dynamic tables, In ADF, we need to try out the Dynamic EO, Dynamic VO, Dynamic DataControl and Dynamic binding for UI Ex: We need to load the data to the ADF table where database table name is dynamic, the columns in the tables are als

  • HT203167 RINGTONES PURCHASED

    I purchased more than 20 ringtones since 2008. I recently changed my pc to imac and I also purchase iphone 5 at the same time. Now on my itunes account I have a proof of payment for my ringtones but when I looked at my purchased items they are not th

  • Workflow : attributes  and methods in BOR

    Hi to all,      I need to create a custom attribute in custom BOR object. I want to put some value in custom attribute by using select statement . where do i write the code for that attribute in BOR. In standard methods i have seen that ex: gw_purcha

  • Error calling WebMethod

    Hi, I built web service for the existing client (.net). Calling some WebMethod's I get this errors on the server side: com.sun.xml.ws.protocol.soap.MessageCreationException: Couldn't create SOAP message due to exception: XML reader error: com.ctc.wst

  • Node Read Issue

    Hello All, I am facing the below issue while reading the node. My Requirement is user selects no of langugaes from itemlist box means i will get selected languages in internal table. I have to generate three Text Edit elemnts for each language.If use