IR_DATA initial in  UJD_RETRACT Badi

Hi,
I am getting initial value in IR_DATA while running the data manager package for retracting costcenter planning data from bpc to ecc.
Please help
Thank you

IR_DATA is a importing parameter where you have to pass the table for transaction data and the method RETRACT will retract it to the ECC system.
So, IR_DATA will not fetch you data rather it will import a set of BPC data to be retracted.
Regards,
Bishwajit

Similar Messages

  • How to Debug UJD_Retract BADI

    Hi,
    How can i debug UJD_RETRACT BADI created for retracting the data from BW to ECC?
    any t-code in BW?
    I am executing the BADI through DM package.
    Inputs appreciated.

    Which part do you want to debug: BPC or ECC?
    To debug it in BPC I'd recommend running program UJD_TEST_PACKAGE. Debugging in ECC could be more tricky.
    Regards,
    Gersh

  • Initial load of material classification

    Hi,
    We want to start using GTS to maintain tariff codes and to assign materials to tariff codes. We will start off with loading tariff codes in GTS from a dataprovider. However, we do not want to start from scratch with assigning materials to tariff codes. This information is already available in our SAP system. Does GTS provide a way to import the existing SAP material master data and load it into the material classification in GTS? If not, what is the best way to start this effort?
    Regards,
    Ed

    Hi,
    There is standard transaction where you can do mass classifications in GTS but i think there is a limitation to 3000 products at a time and in my view, it is not very effective if you have hundreds of codes to be assigned to products and it is very time consuming..
    Alternatively, you will have to build a customised program and get all classifications saved in text file and load them up which is what i have done.
    In my view, after implementation of GTS, tariff and commodity codes ( Include Classifications ) are supposed to be maintained in GTS by ITC and transferred over to Feeder system ( Commodity code is the only master data to be transferred over from GTS to Feeder and there is a standard transaction for doing initial transfer ).
    Bad point about this standard is you will need to ask your Basis to activite the change log file in system to keep track when the commodity code is transferred.
    Thereafter, you must have batch jobs running regularly at GTS and Feeder to do the transfer.
    Im new in GTS so what i have said might not be entirely correct. Im still learning..
    Thank you.

  • Agentry Work Manager 6.0: BADI to enhance assignment type

    Hi,
    I have the requirement to more or less combine the work order assignment types 1 and 2. I have to fetch the operations based on its assigned personal number, but at the same time I have to fetch a work order and all the operations if the Agentry user is the work order header responsible.
    Unfortunately this is a single value parameter so I set the assignment type to 2. Now I thought it would be really easy to fetch the work orders based on the assignment type 1 since there is a BADI available after each assignment call method:
    WHEN '2'.                                           "Operation level
               me->get_assignment2(
                 EXPORTING
                    iref_rfc_oo_data = iref_rfc_oo_data
                 IMPORTING
                    et_return        = lt_return
                    et_wo_object     = lt_wo_object ).
               IF NOT gref_badi_wo IS INITIAL.
                 CALL BADI gref_badi_wo->get_assignment_type2
                   EXPORTING
                     iref_mdo_data = me->oref_mdo_data
                   CHANGING
                     ct_wo_object  = lt_wo_object.
               ENDIF.
    So inside the BADI gref_badi_wo->get_assignment_type2, I wanted to call the me->get_assignment1 method, and then join the 2 internal tables values.
    But the problem is once the BADI is called it is not possible to call this method since we only have the OREF_MDO_DATA object which has the original class as a inaccessible private attribute. I could try to copy and adapt the me->get_assignment1 code but there are some attributes that are not accessible inside the BADI. Do you see a simple and elegant solution to this requirement?
    I would like to avoid creating a new Z handler class inheriting from the standard one...
    Thank you.
    Tags edited by: Michael Appleby

    Hi,
    I just wanted to close this old thread since what I did long ago to solve the issue is to replicate the me->get_assignment1 inside the me->get_assignment2 BADI method code. It is not just a copy paste since from the BADI you don't have access to some MDO handler private data.
    But it is possible to replicate all the fetch process except when doing a delta with exchange since I couldn't easily get the necessary data from the main MDO. But even if you get all the work orders ID's, after the BADI the standard code checks the exchange table again and rules out the unnecessary WO ID's.

  • [BADI] parameter ACT_IMP_EXISTING dummy in 4.6C ?

    Using a specific BADI to alter the standard I'm surprised to discover that the
    parameter ACT_IMP_EXISTING that should normally signify the existance of an implementation (as far as I understand it) is not filled. 
    I'm in 4.6c, does anybody else can confirm that it's a dummy parameter only here for forward compatibility ? Or is there a problem in my code ?
    Here is the code (nothing exceptionnal anyway), just the classical call.
    if ro_badi_pmlisteordre is initial.
    * Factory à BADI
      CALL METHOD cl_exithandler=>get_instance
        IMPORTING
          ACT_IMP_EXISTING              = wv_badi_pmlisteordre_act
        CHANGING
          instance                      = ro_badi_pmlisteordre
        EXCEPTIONS
          NO_REFERENCE                  = 1
          NO_INTERFACE_REFERENCE        = 2
          NO_EXIT_INTERFACE             = 3
          CLASS_NOT_IMPLEMENT_INTERFACE = 4
          SINGLE_EXIT_MULTIPLY_ACTIVE   = 5
          CAST_ERROR                    = 6
          EXIT_NOT_EXISTING             = 7
          DATA_INCONS_IN_EXIT_MANAGEM   = 8
          others                        = 9.
      IF sy-subrc <> 0.
       MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endif.

    Hi,
    I can't compare with 4.6C (any longer), but here some calls in 4.7 (620)
    FM WV_KOMK_FILL_V
          call method cl_exithandler=>get_instance
                      exporting exit_name = 'WV_KOMK_V'
                      changing instance = l_badi_wv_komk_v.
        call method cl_exithandler=>get_instance
                    exporting
                      exit_name = 'SMOD_LWVK1001'
                      null_instance_accepted = yes
                    changing
                      instance = l_badi_smod_lwvk1001.
      if not l_badi_smod_lwvk1001 is initial.
    FM WV_KOMP_FILL_V
          call method cl_exithandler=>get_instance
                      exporting exit_name = 'WV_KOMP_V'
                      changing instance = l_badi_wv_komp_v.
    The parameter ACT_IMP_EXISTING isn't used, but (sometimes) instance is checked for 'not initial'.
    Currently I don't see your problem with ACT_IMP_EXISTING parameter, but I can't imagine how correct implementation can be found without an EXIT_NAME -> and only afterwards ACT_IMP_EXISTING might come into relevance.
    So my patterns in 4.7 don't differ in ACT_IMP_EXISTING, but in parameter EXIT_NAME.
    Which is the situation in 4.6C for this parameter?
    Regards,
    Christian

  • BADI Activation

    Hi,
    In function module K_PCA_FILL_PROFIT_CENTER , one BADI is called as below :
    IF badi_exit_1 IS INITIAL.
        CALL METHOD CL_EXITHANDLER=>GET_INSTANCE
          IMPORTING
            ACT_IMP_EXISTING              = badi_1_active
          CHANGING
            INSTANCE                            = badi_exit_1.
      ENDIF.
    badi_1_active should be 'X'. However it is initial.
    The BADI is implemented and activated , even though badi_1_active is initial.
    Please let us know is there any other way for BADI activation.
    Thanks!

    Did you use SE19 to implement and activate the BADI.  If you have, I would say search OSS notes to see if there is a fix.
    hith
    Sunil Achyut

  • BADI enhancement spot

    hi,
    I can see in a standard program the below code:
        IF NOT badi_vlc_db_check IS INITIAL.
          CALL BADI badi_vlc_db_check->read_before_write
            CHANGING
              disable_read_cv = disable_read_lv.
        ENDIF.
    Please help me understand how do i implement this BADI and make the flag 'disable_read_lv' eq 'X' t runtime.
    This vlc_db_check is an enhncement spot.
    thanks,
    ags

    write an implecit enhancement in FM VELO09_READ_BEFORE_WRITE at the beginning of this FM. just check if you need any conditions and write-  'EXIT'.
    so any ways VELO09_READ_BEFORE_WRITE will have no effect.

  • Bad graphic performance

    Hi all
    I've been working on an animation project (using Carrara), and initially thought that bad colour banding in shade areas was due to the program.
    Now I have tried a simple grey scale in Photoshop, and find that if I adjust the brightness, the same horrible banding occurs. It has a posterised/insufficient colour depth look to it.
    I don't recall this occurring before I changed to Snow Leopard; the change in gamma makes me wonder, but I really don't know what might be occurring.
    Does anyone have any observations? Apologies if this has been covered elsewhere - I did search.
    Thanks
    Peter

    I'm experencing the same issues as well. The update specifically referenced "graphics performance," so it's safe to assume Apple made some driver changes here. Thus, this will likley require a further update from either Apple or Blizzard.
    I don't have a solution but I have issued a ticket with Blizzard. I would suggest you do the same as well. If enough WoW players are experiencing this problem then Blizzard will be more likely to fix it, or file bugs with Apple.

  • BADI  CACL_CHECK_CHANGENO

    HI,
    My purpose is to set mandatory the parameter change number (RMCLM-AENNR) in CL02/03 transactions ....
    I have implemented the badi CACL_CHANGENO_NEEDED with e_changeno_needed = 'X' but the blocking message "You can only maintain classes and characteristics with a change number" appears only at the first time. If the user press entry key several times, he can maintain classes without the change number.
    I think that badi CACL_CHECK_CHANGENO have to be implemented so to check if change number is initial.
    This badi is strange because it appears in se80 when selecting the CL Package, but is not created (System SAP ECC6)
    I have been looking for a Sap note and I found nothing about it.
    Have Someone used this Badi?
    How can I set the change number as mandatory even though it is initial?
    Thanks a lot.

    Hi,
    See BAdI CACL_VALUE_CHANGE.
    Thanks,
    Chandra

  • BADI REAL TIME EXAMPLE

    PLEASE CAN ANY BODY WILL  BADI EXAMPLE
    I AM LEARNING BADI
    PLLEASE IF U WORKED ON BADI PLEASE SEND ME WITH DETAILS AND CODING ALSO
    PLEASE
    WITH REGARDS
    VENUMADHAV

    Hi,
    To define a BADI, you need to use SE18 transaction. There you can specify the interface methods that will be called by the program.
    To provide the BADI implementation, you wil have to use SE19 transaction and select the BADI for which you are providing the implementation.
    To invoke BADI from the code, you can refer to the following piece of code.
    Here badi_handle is a variable TYPE REF TO <badi_name>.
    In the example <decompress> is the interface method which is being called.
            TRY.
              GET BADI badi_handle.
              IF badi_handle IS NOT INITIAL.
                " Call BADI method for decompressing the data.
                CALL BADI badi_handle->decompress
                  CHANGING
                    data = lv_data.
              ENDIF.
            CATCH cx_root INTO l_obj_excep.
                "Exception occurred during Decompression. Problems in BADI implementation.
              RAISE ERR_OTHERS.
            ENDTRY.
    Hope this will help you.
    ~ Ramanath.

  • FS - Error code 3006 from SQL-Query

    Hello world!
    Can someone inform me which possible errors in a query cause the following error message after the query is activated?
    Internal Error (3006) Message [131-183]
    Until now I had only error code 1003, which signals syntax errors etc. in the query.
    By the way: Does anywhere exists a list of error codes/messages occuring in SAP B1?
    Thank you!
    Frank Romeni

    Error codes and their description can be found in SDK help files
    I have pasted them below for your ref
    -39
    End of File
    -43
    File not Found
    -47
    File is Busy
    -50
    File Cannot Open
    -51
    File Corrupted
    -99
    Division by Zero
    -100
    Out of Memory
    -101
    Print Error
    -103
    Print Canceled
    -104
    Money Overflow
    -111
    Invalid Memory Access
    -199
    General Error
    -213
    Bad Directory
    -214
    File Already Exists
    -216
    Invalid File Permission
    -217
    Invalid Path
    -1001
    Data Source - Bad Column Type
    -1003
    Data Source - Alias Not Found
    -1004
    Data Source - Value Not Found
    -1005
    Data Source - Bad Date
    -1012
    Data Source - No Default Column
    -1013
    Data Source - Zero/Blank Value
    -1015
    Data Source - Integer Overflow
    -1016
    Data Source - Bad Value
    -1022
    Data Source - Other File Not Related
    -1023
    Data Source - Other Key Not In Main Key
    -1025
    Data Source - Array Record Not Found
    -1027
    Data Source - Value Must Be Positive
    -1028
    Data Source - Value Must Be Negative
    -1029
    Data Source - Column Cannot be updated
    -1100
    Data Source - Cannot Allocate Environment
    -1101
    Data Source - Bad Connection
    -1102
    Data Source - Connection Not Opened
    -1103
    Data Source - DB Already Exists
    -1104
    Data Source - Cannot Create Database
    -1200
    Data Source - Data Bind General Error
    -2001
    Data Source - Bad Parameters
    -2003
    Data Source - Too Many Tables
    -2004
    Data Source - Table Not Found
    -2006
    Data Source - Bad Table Definition
    -2007
    Data Source - Bad Data Source
    -2010
    Data Source - Bad Data Source Offset
    -2013
    Data Source - No Fields In Table
    -2014
    Data Source - Bad Field Index
    -2015
    Data Source - Bad Index Number
    -2017
    Data Source - Bad Alias
    -2020
    Data Source - Bad Alias
    -2022
    Data Source - Bad Field Level
    -2024
    Data Source - Not Matching Data Source
    -2025
    Data Source - No Keys In Table
    -2027
    Data Source - Partial Data Found
    -2028
    Data Source - No Data Found
    -2029
    Data Source - No Matching Field
    -2035
    Data Source - Duplicate Keys
    -2038
    Data Source - Record Lock
    -2039
    Data Source - Data Was Changed
    -2045
    Data Source - End of Sort
    -2049
    Data Source - Not Opened for Write
    -2056
    Data Source - No Matching With Current Data Source
    -2062
    Data Source - Bad Container Offset
    -3001
    Query - Field Not Found
    -3003
    Query - Bad Data Source
    -3004
    Query - Bad Token
    -3005
    Query - Token After End
    -3006
    Query - Unexpected End
    -3008
    Query - Too Long Query
    -3009
    Query - Extra Right Parenthesis
    -3010
    Query - Missing Right Parenthesis
    -3012
    Query - No Operation Code
    -3013
    Query - No Field In Comparison
    -3014
    Query - Bad Condition
    -3015
    Query - Bad Sort List
    -3017
    Query - No String
    -3018
    Query - Too Many Fields
    -3019
    Query - Too Many Indexes
    -3020
    Query - Too Many Tables
    -3021
    Query - Reference Not Found
    -3022
    Query - Bad Range Set
    -3023
    Query - Bad Parsing
    -3025
    Query - Data Bind is Missing
    -3026
    Query - Bad Input
    -3027
    Query - Progress Aborted
    -3028
    Query - Bad Table Index
    -3032
    Query - General Failure
    -3033
    Query - Empty Record
    -3036
    Query - Bad Parameter
    -3037
    Query - Missing Table in List
    -3040
    Query - Bad Operation
    -3041
    Query - Bad Expression
    -3042
    Query - Name Already Exists
    -3044
    Query - Time Expired
    3001
    Form - Is Not Initialized
    3002
    Form - Bad Data Source
    3003
    Form - Exceeded Data Sources Limit
    3006
    Form - Invalid Form Item
    3007
    Form - Exceeded Forms Limit
    3009
    Form - Too Many Saved Data
    3012
    Form - Invalid Form
    3015
    Form - Cannot Get Multi-Line Edit
    3016
    Form - Bad Item Type
    3017
    Form - Bad Parameter
    3023
    Form - No Message Callback
    3029
    Form - Item Is Not Selectable
    3031
    Form - Bad Value
    3033
    Form - Item Not Found
    4007
    Grid - Invalid
    4008
    Grid - Bad Size
    4009
    Grid - No Data
    4011
    Grid - Invalid Parameters
    4013
    Grid - Not Super Title
    4014
    Grid - Super Title 2 Exits
    4015
    Bad Item Unique ID
    4016
    Grid - Bad Data
    4017
    Grid - Column is Already Folded
    4018
    Grid - Column is Already Expanded
    4019
    Grid - Line Exists
    4020
    Grid - Not Enough Data
    4022
    Grid - Super Title Exists
    4027
    Grid - Row Is Not Collapsible
    8004
    Status Bar - No Such Info
    8005
    Status Bar - Info Occupied
    8006
    Status Bar - No Message Bar
    8007
    Status Bar - Progress Stopped
    8008
    Status Bar - Too Many Progress
    5001
    Graph - Invalid
    5002
    Graph - Bad Form Item
    5005
    Graph - Bad Parameters
    -7008
    Form not found
    -7000
    Invalid Form
    -7031
    Form - Reserved /Illegal form Unique ID
    -7032
    Form - Invalid Mode
    -7006
    The item is not a user defined item and cannot be manipulated in such manner
    -7005
    Invalid table name
    -7004
    XML batch load failed
    -7003
    Menu operation Add failed
    -7002
    Function not supported
    -7001
    Invalid Item
    -7034
    Could not clear item in group
    -7033
    Out of boundaries
    -7020
    This method cannot be invoked by a Cell object
    -7019
    Invalid form unique ID. Should not begin with an F_ prefix
    -7018
    Invalid Field Value
    -7017
    Invalid Field Name
    -7016
    This datasource object is not a user-defined object
    -7015
    Invalid Column
    -7014
    A Column object with the specified unique ID already exists in the system.
    -7013
    The string value entered should be less then 10 characters.
    -7012
    An Item object with the specified unique ID already exists in the system.
    -7011
    The string value entered should be less then 11 characters.
    -7010
    A form with the requested unique ID already exists in the system.
    -7009
    The string value entered should be less the 32 characters.
    -7040
    Cannot Load XML File
    -7051
    Unexpected usage of the specified XML TAG.
    -7050
    This action type is not valid or not implemented yet.
    -7043
    Cannot load the Menu resource from the specified XML file.
    -7042
    Cannot load the Item resource from the specified XML file.
    -7041
    Cannot load the Form resource from the specified XML file.
    -7071
    Failed to create the items group.
    -7070
    UID
    -7069
    Failed to change the form current pane level.
    -7068
    Failed to change the form color.
    -7067
    Failed to change the Form mode.
    -7066
    Failed to fix the form default button.
    -7065
    Failed to change the form Visible state.
    -7064
    Could not change the form title.
    -7063
    The change of form dimensions has failed
    -7062
    Unknown Form attribute
    -7061
    XML batch resource update is not supported yet.
    -7060
    Reached Max Number of user data sources.
    -7094
    Failed to add the items child objects.
    -7093
    Failed to batch add the items
    -7092
    Failed to bind the item to the data source
    -7091
    Wrong Item Attribute
    -7090
    Unknown Field Type
    -7114
    Type of Column is Not Supported.
    -7113
    Failed to add the column child objects.
    -7112
    Failed to add the new columns.
    -7111
    Failed to bind the column to a data source
    -7110
    Invalid column attributes
    -7133
    The specified menu position is not valid
    -7132
    Invalid menu type
    -7131
    Failed to add the menu object
    -7130
    The specified menu already exists.
    -7030
    Invalid Row Number
    -7029
    Operation not supported on system form.
    -7028
    Out of boundary of DB data source offset.
    -7027
    The menu item is not a user defined menu item and cannot be manipulated in such manner.
    -7026
    Menu item was not found
    -7025
    Unknown Form State
    -7024
    Failed setting form bounds
    -7023
    Invalid Target
    -7022
    Could not commit action because the item is currently in focus.
    -7021
    Operation could not be set on extended edit text item.
    -7200
    Your connection string doesn't much UI development work mode.
    -7201
    The specified connection string is not valid.

  • Automatic transfer posting after Purchase order creation

    I tried searching a solution for my pbm in this forum, but could not find any and hence posting a new thread. Hope to find an answer.
    I have a requirement of doing the automatic MB1B transfer posting of the PO when the PO is created and saved using ME21n.
    I initially used the BADI ME_PURCHDOC_POSTED for this purpose, in which i am calling BAPI_GOODSMVT_CREATE.
    But when i debug and see this BAPI returns an error saying that the PO doesnot exist.
    Which means, The PO is not yet created when it reaches this BADI.
    Is there any other BADI/user exit/ehancement spots? where the PO is already created and i can do the transfer posting?

    Hello K ,
    better to have a custom program to create PO & GR at the same time, u cannt create GR at the time of PO creation or change,u may get same kind of errors , ie. PO doent exists or PO locked by USER XXXX.
    regards
    Prabhu

  • What's wrong with this mask?

    Hi,
    Since one cannot upload a PSD or TIF layered file with masks and all the Photoshops goodies here, I have found a way around. Please visit the following site:
    http://juandentphotoshopproblems.businesscatalyst.com     and press the button "Click to Download" to download the PSD
    you will find a portrait where my intention is to replace the background. I have been using a mask and refine mask but I don't like any of the results so either my initial mask is bad or my use of refine mask is inadequate.
    Please help!! Also if there is a simpler way to share a PSD, it woudn't hurt to know it
    Best

    The way you uploaded the PSD file is the perfect way to share a large file.  We all do it like this, by uploading to our favorite FTP site and providing the link here.
    Your mask is sloppily painted, but you know that already.  
    There are some very good masking tutorials on Adobe TV ( http://tv.adobe.com/# )  plus this one on YouTube:
    http://www.youtube.com/watch?v=ssJRkbkHAa4
    and many others you can find by Googling.

  • Upgraded LR1 - LR3 Catalog: blank Grid, non functioning app

    I've been dealing with support on this, but they're utterly useless, taking days to get back to me and spinning me over troubleshooting 101 stuff.
    Problem:
    Upgraded a perfectly working LR1 catalog to LR3.  No issues during upgrade.
    Upon trying to use the LR3, the first thousand or so of my photos show up in Grid, but everything after that is blank. By that I mean, a grid cell is drawn, but LR3 doesn't display a thumbnail, or any cell extras or metadata.
    Clicking on one of these empty cells gives me a thumbnail frame and some metadata (slowwwwly).
    Going to Loupe View on a non-empty cell gives me a "Loading..." spinner and an unrendered thumbnail preview (CPU is not ramping up at all)
    Going to Loupe View on an empty cell just gives me a blank screen (CPU is not ramping up at all)
    Develop module does load the picture, but slowly.
    When I quit, the app freezes up completely, with beachball.  Must force-quit (after giving it 20 minutes in case it was actually trying to do something)
    Initially, when I load LR3, my CPU runs high, 75%, like it's working on something.  Then it just cuts out as if it's given up.
    Console output when this happens is the following:
    6/17/10 7:27:38 PM Adobe Lightroom 3[518] ServerProcess [AsyncDataServer( Lightroom 3 Catalog.lrcat )] ERRORSERVER<AsyncDataServer( Lightroom 3 Catalog.lrcat )>: A command threw an exception.
    6/17/10 7:27:38 PM Adobe Lightroom 3[518] ServerProcess [AsyncDataServer( Lightroom 3 Catalog.lrcat )] ERROR Error: ?:0: attempt to perform arithmetic on field '?' (a nil value)
    6/17/10 7:27:38 PM Adobe Lightroom 3[518] Error initializing alternate universe. bad argument #1 to 'pairs' (table expected, got nil)
    System:
    MacBook Pro Core2Duo 2.1Ghz 3GB RAM, 500GB Drive.
    Initially Mac OS 10.5.8, but I tried upgrading to 10.6.3 and 10.6.4 (no luck).
    Library: 21,000 photos
    Other things I've tried:
    Trashing all LR3 prefs, caches (running YASU), LR preview caches, plists, extensions, reinstalling, restarting -- no luck
    Noticed it was copying the LR1 prefs plist, so I archived that.  LR3 generated a new pref, but no help
    Downloaded LR2 Demo, upgraded LR1 Catalog to LR2 Catalog (which works perfectly, no issues), and then LR2 Cat -> LR3 -- no luck
    Checking integrity of Catalog in LR1 and LR2 (no problems) and LR3 when upgrading (no problems)
    LR3 runs fine on an empty catalog and if I point it at my photo folder and import everything, it's ok (with none of my 3 years of modifications of course).
    Is my only option to write out LR1 data to sidecar files and then setup a new Catalog in LR3?

    Well, on top of having full access to the photo files, LR obviously has proper permissions to affect the files it generates in the AppSupport>Adobe>Lightroom folder, the Caches>Lightroom folder, the Pictures>Lightroom folder and the Preferences> folder, otherwise it wouldn't be able to build a new catalog, new prefs, new caches and so forth when I generate a new empty catalog.
    I really doubt this is a permissions voodoo issue or a monitor profile issue.
    LR3 works fine with a brand new catalog (and all the same Photo files).
    LR1 and LR2 have absolutely no problem with my catalog and photo files. 
    LR2 upgrades my LR1 Catalog without issue.
    LR3 fails with my upgraded catalog (and all the same photo files)
    Unless I'm missing something in my logic tree here, it seems to me this is obviously a problem with LR3 upgrading my Catalog. 
    Other people's catalogs upgrade fine, and that's dandy, but my catalog doesn't upgrade AND it fails with exactly the same error message every time in the Console (See original post), which seem to be related to some internal db issue, dividing by zero, nil values. 
    Something ain't being handled right by LR3 that previous versions of LR had no problem with. 

  • Connecting battery = MacBook goes dark and to sleep

    I have a black Macbook 2.4 GHz. It was purchased refurb from the Apple store site and has recently exhibitted some strange behavior surrounding the battery. Sometimes the screen just goes dark and the MacBook goes to sleep. Usually a restart corrects the issue.
    Tonight, it's doing it all the time. I came home and opened the MacBook (it had been sleeping) and within a minute the screen went dark as if the brightness was turned all the way off and then it went to sleep. I finally got it shut down and the long and short of it is that it works fine with just the power adapter plugged in, but as soon as I connect a battery the screen goes dark and the MacBook sleeps. My initial thought was bad battery but I tried another known working battery from the same model MacBook and the same thing happened. As soon as the contacts touch, dark screen and sleep.
    I've reset the SMC twice, zapped the PRAM and even repaired the disk permissions just for fun.
    Luckily, I'm under AppleCare but can't really get to an Apple Store (or even find the time to spend on the phone) until Monday so I thought I'd post here to get some guesses. My thought is logic board, because, well, what else could it be!
    Thanks in advance for any help or even wild speculation!

    Same behavior continues once battery has been removed and macbook is running off the power adapter.
    See KB Articles:  http://support.apple.com/kb/HT2332 MacBook and MacBook Pro: Mac reduces processor speed when battery is removed while operating from an A/C adaptor
    http://support.apple.com/kb/HT1411 Apple Portables: Resetting the System Management Controller (SMC)

Maybe you are looking for

  • Embedding Video in In Design

    I understand that you cannot embed a video within In Design and export as a SWF. I'm wondering if anyone knows how to embed a URL from Vimeo or YouTube that includes the video and have it play normally within the SWF when exported. Or any other ways

  • Viewer crashes a lot

    I've been having this problem for a while, I'm getting a LOT of crashing from the remote management viewer when certain applications are running on the remote computer. #1 cause is usually MS Excel and we have a uniface based program that also causes

  • WebApp not running of using DeployTool

    When I deploy an EAR with a Web project from the Eclipse IDE, the deployment is going fine and the website is available immediately. But when I use the deployment tool - with a deploy-manager-config.xml - the website is NOT running after deployment..

  • How to delete the rows after file uploded by LSMW

    Hi, I want to delete the the first three rows after file uploaded by lsmw.and i need to send the rest of the rows to custom table.

  • Dropped frames (tearing me apart)

    I recently began to use FC 5.0 on my MAC BOOK PRO. I'm new to the program. During playback, I'm getting the dropped frames warning when I try to insert a transition such as fade in, etc, or even music...everytime. I messed w/ the RT settings, but tha