Identify a change in BSEG-AUGDT

Hello,
I am looking for a trigger that occurs after an invoice is cleared in a payment run (F110),
and the field BSEG-AUGDT is updated.
I tried to use the FM SAMPLE_PROCESS_00001430 , but it didn't work.
Thank you,
Dan

Hi
Try with BTE 1820 (process). See Note 912374 - Payment program: Payment method determination from contract, to check if it could help you
Regards
Eduardo

Similar Messages

  • Select on BSEG-AUGDT

    Hello all,
    I don't understand why i do this selection:
        SELECT hkont shkzg wrbtr dmbtr vbund augdt belnr
            INTO CORRESPONDING FIELDS OF TABLE lt_bseg
            FROM bseg
            WHERE belnr = lt_bkpf-belnr
            AND   gjahr = lt_bkpf-gjahr
            AND   bukrs = lt_bkpf-bukrs
            AND   hkont IN s_hkont
            AND ( vbund NE c_off AND vbund IN s_vbund )
           AND ( augdt = '' OR  augdt GT p_budat ).
    The system give no answer if i don' select the field bseg-augdt, the system gives answer. I check there are records on my table.
    Thanks for your help
    Philippe

    This is my global coding:
    * Projet : ARVATO                                                      *
    *REPORT  zarvfi_fi07c_11                        .              "JOC01(-)
    REPORT  zarvfi_fi07c_1                         .            "JOC01(+)
    * Include des forms
    INCLUDE zarvfi_fi07c_11_top. " Déclarations de données et tables
    * SELECTION-SCREEN - Paramètres
    * Paramètres fonctionnels (critère de sélection)
    SELECTION-SCREEN BEGIN OF BLOCK b_sel
                       WITH FRAME
                       TITLE text-001.
    PARAMETERS :
    * Code société sélectionnée
          p_bukrs LIKE t001-bukrs OBLIGATORY,
    * Exercice sélectionné
    *      p_gjahr LIKE bsis-gjahr OBLIGATORY,                  "JOC02(-)
          p_gjahr LIKE bsis-gjahr NO-DISPLAY,                   "JOC02(+)
    * Période "fin" sélectionnée
    *      p_monat LIKE bsis-monat OBLIGATORY,                  "JOC02(-)
          p_monat LIKE bsis-monat NO-DISPLAY,                   "JOC02(+)
    * Date de rapprochement                                     "JOC02(+)
          p_budat LIKE bsis-budat OBLIGATORY.                   "JOC02(+)
    SELECT-OPTIONS :
    * Numéros de compte sélectionnés
          s_hkont FOR bsis-hkont,
    * Code société S/L
          s_vbund FOR bsis-vbund.
    SELECTION-SCREEN END OF BLOCK b_sel.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF BLOCK main
                       WITH FRAME
                       TITLE text-002.
    * Type et chemin de fichier d'extraction
    *PARAMETERS:
    *  cb_unix AS CHECKBOX,
    *  cb_pc   AS CHECKBOX.
    PARAMETERS : f_name LIKE rlgrap-filename  OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK main.
    *=======================================================================
    *           E V E N E M E N T S
    *=======================================================================
    *======================================================================
    INITIALIZATION.
    *======================================================================
    * Begin JOC(+)
    * La zone 'Date de rapprochement' de l'écran de sélection est grisée
    * et non éditable
      LOOP AT SCREEN.
        CASE screen-name.
          WHEN 'P_MONAT'.
            screen-input = '0'.
            screen-active = '0'.
            MODIFY SCREEN.
          WHEN 'P_GJAHR'.
            screen-input = '0'.
            screen-active = '0'.
            MODIFY SCREEN.
        ENDCASE.
      ENDLOOP.
    *======================================================================
    AT SELECTION-SCREEN.
    *======================================================================
    * Sélection d'un fichier dans l'arborescence
      PERFORM f0600_afficher_exercice CHANGING p_monat p_gjahr.
    * End JOC(+)
    *======================================================================
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR f_name.
    *======================================================================
    * Sélection d'un fichier dans l'arborescence
      PERFORM f0500_chercher_fichier CHANGING f_name.
    *======================================================================
    START-OF-SELECTION.
    *======================================================================
    * Sélection des données suivant les critères de sélection-utilisateur
      PERFORM f1000_selection_data TABLES t_display.
    *======================================================================
    END-OF-SELECTION.
    *======================================================================
    *======================================================================
    *    EXTRACTION
    *======================================================================
    * Construction de la table d'extraction
      PERFORM f1100_build_data_file.
    *&  Include           ZARVFI_FI07C_11_F01                              *
    *&      Form  f1000_selection_data
    *       text
    *      -->P_T_DISPLAY  text
    FORM f1000_selection_data  TABLES   p_t_display STRUCTURE t_display.
    * Table de stockage de pièces comptables
      DATA : BEGIN OF lt_bkpf OCCURS 0.
              INCLUDE STRUCTURE bkpf.
      DATA : END OF lt_bkpf.
      DATA : BEGIN OF lt_bseg OCCURS 0.
              INCLUDE STRUCTURE bseg.
      DATA : END OF lt_bseg.
    * Initialiser les tables internes de données
      FREE    : t_data, lt_bkpf.
      CLEAR   : t_data, lt_bkpf.
      REFRESH : t_data, lt_bkpf.
    * Récupération des données comptables INTERCO *
    * Begin JOC03(+)
      SELECT  bukrs gjahr monat
              belnr budat waers
          FROM bkpf
          INTO CORRESPONDING FIELDS OF TABLE lt_bkpf
          WHERE  bukrs EQ p_bukrs
          AND    budat LT p_budat
          ORDER BY belnr gjahr.
      IF sy-subrc NE '0'.
        WRITE : 'Pas de données pour cette sélection BKPF'.
      ENDIF.
      LOOP AT lt_bkpf.
        MOVE-CORRESPONDING lt_bkpf TO t_data.
        CLEAR lt_bseg.
        REFRESH lt_bseg.
        SELECT hkont shkzg wrbtr dmbtr vbund
            INTO CORRESPONDING FIELDS OF TABLE lt_bseg
            FROM bseg
            WHERE belnr = lt_bkpf-belnr
            AND   gjahr = lt_bkpf-gjahr
            AND   bukrs = lt_bkpf-bukrs
            AND   hkont IN s_hkont
            AND ( vbund NE c_off AND vbund IN s_vbund )
            AND ( augdt = '' OR  augdt GT p_budat ).
    * Attention : pas de move-corresponding sinon bukrs, etc. écrasés
        LOOP AT lt_bseg.
          MOVE     lt_bseg-hkont TO t_data-hkont.
          MOVE     lt_bseg-shkzg TO t_data-shkzg.
          MOVE     lt_bseg-wrbtr TO t_data-wrbtr.
          MOVE     lt_bseg-dmbtr TO t_data-dmbtr.
          MOVE     lt_bseg-vbund TO t_data-vbund.
          APPEND t_data.
        ENDLOOP.
      ENDLOOP.
    * Tri de la table pour l'ALV
      SORT t_data BY hkont vbund waers.
      LOOP AT t_data.
        SELECT SINGLE gvtyp
                 INTO t_data-gvtyp
                 FROM ska1
                 WHERE saknr = t_data-hkont
                 AND ktopl = gc_pco.
        MODIFY t_data.
      ENDLOOP.
      DELETE t_data
          WHERE ( gvtyp <> c_off AND gjahr <> p_gjahr ).
    * End JOC03(+)
    ** JOC01(-) Begin
    * Requête principale : BSIS - T001 - SKAT
    *        bukrs      LIKE t001-bukrs,     " Société
    *        gjahr      LIKE bsis-gjahr,     " Exercice comptable
    *        monat      LIKE bsis-monat,     " Période "fin"
    *        hkont      LIKE bsis-hkont,     " Numéro de compte
    *        txt20      LIKE skat-txt20,     " Désignation synth cpte
    *        belnr      LIKE bsis-belnr,     " Numéro de pièce comptable
    *        budat      LIKE bsis-budat,     " Date comptable
    *        waers      LIKE bsis-waers,     " Clé de devise de la transact
    *        wrbtr      LIKE bsis-wrbtr,     " Montant en devise pièce
    *        iwaers     LIKE bsis-waers,     " Clé de devise interne
    *        dmbtr      LIKE bsis-dmbtr,     " Montant en devise interne
    *        vbund      LIKE bsis-vbund,     " code société s/l
    *  SELECT  b~bukrs
    *          b~gjahr
    *          b~monat
    *          b~hkont
    *          s~txt20
    *          b~belnr
    *          b~budat
    *          b~waers
    *          b~shkzg
    *          b~wrbtr
    *          t~waers
    *          b~dmbtr
    *          b~vbund
    *  FROM bsis AS b
    *  INNER JOIN skat AS s ON   s~saknr = b~hkont
    *  INNER JOIN t001 AS t ON   t~spras = s~spras
    *                       AND  t~ktopl = s~ktopl
    *                       AND  t~bukrs = b~bukrs
    *  INTO CORRESPONDING FIELDS OF TABLE t_data
    *  WHERE  b~bukrs EQ p_bukrs
    *  AND    b~gjahr EQ p_gjahr
    *  AND    b~hkont IN s_hkont
    *  AND    b~monat LE p_monat
    *  AND    s~spras EQ c_spras
    *  AND    s~ktopl EQ c_ktopl
    *  AND    b~vbund NE c_off
    *  ORDER BY b~hkont b~vbund b~waers.
    *  IF sy-subrc NE '0'.
    *    WRITE : 'Pas de données pour cette sélection'.
    *  ENDIF.
    ** JOC01(-) End
    * JOC01(+) Begin
    * Requête principale : BSIS
    *        bukrs      LIKE t001-bukrs,     " Société
    *        gjahr      LIKE bsis-gjahr,     " Exercice comptable
    *        monat      LIKE bsis-monat,     " Période "fin"
    *        hkont      LIKE bsis-hkont,     " Numéro de compte
    *        belnr      LIKE bsis-belnr,     " Numéro de pièce comptable
    *        budat      LIKE bsis-budat,     " Date comptable
    *        waers      LIKE bsis-waers,     " Clé de devise de la transact
    *        wrbtr      LIKE bsis-wrbtr,     " Montant en devise pièce
    *        iwaers     LIKE bsis-waers,     " Clé de devise interne
    *        dmbtr      LIKE bsis-dmbtr,     " Montant en devise interne
    *        vbund      LIKE bsis-vbund,     " code société s/l
    ** Begin JOC03(-)
    *  SELECT  b~bukrs
    *          b~gjahr
    *          b~monat
    *          b~hkont
    *          b~belnr
    *          b~budat
    *          b~waers
    *          b~shkzg
    *          b~wrbtr
    *          b~dmbtr
    *          b~vbund
    *  FROM bsis AS b
    *  INNER JOIN bkpf AS a                                 "JOC02(+)
    *              ON  a~bukrs = b~bukrs                    "JOC02(+)
    *              AND a~belnr = b~belnr                    "JOC02(+)
    *              AND a~gjahr = b~gjahr                    "JOC02(+)
    *  INTO CORRESPONDING FIELDS OF TABLE t_data
    *  WHERE  b~bukrs EQ p_bukrs
    **  AND    b~gjahr EQ p_gjahr                                " FBI01(-)
    **  AND    a~gjahr LE p_gjahr                   " FBI01(+) JOC02(-)
    *  AND    ( a~budat LE p_budat
    *           OR b~augdt = '0'
    *           OR b~augdt GE p_budat )    "JOC02(+)
    *  AND    b~hkont IN s_hkont
    *  AND    ( b~vbund NE c_off AND b~vbund IN s_vbund )
    *  ORDER BY b~hkont b~vbund b~waers.
    *  IF sy-subrc NE '0'.
    *    WRITE : 'Pas de données pour cette sélection'.
    *  ENDIF.
    ** JOC01(+) End
    ** End JOC03(-)
    ENDFORM.                    " f1000_selection_data
    *&      Form  f1100_build_data
    *       text
    *      -->P_T_DISPLAY  text
    FORM f1100_build_alv_data  TABLES   p_t_data    STRUCTURE t_data
                                        p_t_display STRUCTURE t_display.
      DATA : lv_compte   LIKE bsis-hkont,   " Var pr cumul solde
             lv_dmbtr    LIKE bsis-dmbtr,
             lv_wrbtr    LIKE bsis-wrbtr,
             lx_flag_new_hkont TYPE c,    "Flag changt de compte
             lx_flag_new_vbund TYPE c,    "Flag changt de société SL
             lx_flag_new_waers TYPE c.    "Flag changt de devise transaction
      CLEAR : lv_compte,
              lx_flag_new_hkont,
              lx_flag_new_vbund,
              lx_flag_new_waers,
              lv_dmbtr,
              lv_wrbtr.
    * Initialiser les tables internes de données
      FREE    : p_t_display.
      CLEAR   : p_t_display.
      REFRESH : p_t_display.
    * Construction des données à afficher         *
      LOOP AT p_t_data.
    * Société
    * Exercice comptable
    * Période "fin"
    * Numéro de compte
    * Numéro de pièce comptable
    * Date comptable
    * Clé de devise de la transaction
    * Clé de devise interne
    * Code société S/L
    * Désignation synthétique du compte
        SELECT SINGLE txt20 FROM skat
        INTO p_t_data-txt20
        WHERE spras EQ c_spras
        AND   ktopl EQ c_ktopl
        AND   saknr EQ p_t_data-hkont.
    * Devise interne
        SELECT SINGLE waers FROM t001
        INTO p_t_data-iwaers
        WHERE bukrs = p_t_data-bukrs
        AND   spras = c_spras.
        MOVE :
               p_t_data-bukrs  TO p_t_display-bukrs,
    *           p_t_data-gjahr TO p_t_display-gjahr,    "JOC02(-)
               p_gjahr         TO p_t_display-gjahr,            "JOC02(+)
               p_monat         TO p_t_display-monat,
               p_t_data-hkont  TO p_t_display-hkont,
               p_t_data-txt20  TO p_t_display-txt20,
               p_t_data-belnr  TO p_t_display-belnr,
               p_t_data-budat  TO p_t_display-budat,
               p_t_data-waers  TO p_t_display-waers,
               p_t_data-iwaers TO p_t_display-iwaers,
               p_t_data-vbund  TO p_t_display-vbund.
        IF p_t_data-shkzg EQ c_credit.
          p_t_display-wrbtr = 0 - p_t_data-wrbtr.
          p_t_display-dmbtr = 0 - p_t_data-dmbtr.
        ELSE.
          p_t_display-wrbtr = p_t_data-wrbtr.
          p_t_display-dmbtr = p_t_data-dmbtr.
        ENDIF.
        IF p_t_data-wrbtr EQ 0.
          CONTINUE.
        ENDIF.
        APPEND  p_t_display.
    ** JOC01(+) Begin
    *    AT NEW hkont.
    *      MOVE 'X' TO lx_flag_new_hkont.
    *      AT NEW vbund.
    *        MOVE 'X' TO lx_flag_new_vbund.
    *        AT NEW waers.
    *          MOVE 'X' TO lx_flag_new_waers.
    *        ENDAT.
    *      ENDAT.
    *    ENDAT.
    ** JOC01(+) End
    ** Montant en devise pièce
    ** & Montant en devise interne signés
    *    IF p_t_data-shkzg EQ c_credit.
    *      p_t_data-wrbtr = 0 - p_t_data-wrbtr.
    *      p_t_data-dmbtr = 0 - p_t_data-dmbtr.
    *    ENDIF.
    *    MOVE :
    *     p_t_data-bukrs TO p_t_display-bukrs,
    *     p_t_data-gjahr TO p_t_display-gjahr,
    *     p_monat        TO p_t_display-monat,
    *     p_t_data-hkont TO p_t_display-hkont,
    *     p_t_data-txt20 TO p_t_display-txt20,
    *     p_t_data-belnr TO p_t_display-belnr,
    *     p_t_data-budat TO p_t_display-budat,
    *     p_t_data-waers TO p_t_display-waers,
    *     p_t_data-iwaers TO p_t_display-iwaers,
    *     p_t_data-vbund TO p_t_display-vbund.
    **   Si on reste sur le même n° de compte
    *    IF ( lx_flag_new_hkont IS INITIAL
    *     AND lx_flag_new_vbund IS INITIAL
    *     AND lx_flag_new_waers IS INITIAL ).
    *      ADD p_t_data-dmbtr TO p_t_display-dmbtr.
    *      ADD p_t_data-wrbtr TO p_t_display-wrbtr.
    *      COLLECT p_t_display.
    *    ELSE.
    **   Si on change de n° de compte
    *      MOVE :
    *       p_t_data-wrbtr TO p_t_display-wrbtr,
    *       p_t_data-dmbtr TO p_t_display-dmbtr.
    *      APPEND  p_t_display.
    *    ENDIF.
    *    CLEAR :
    *        lx_flag_new_hkont,
    *        lx_flag_new_vbund,
    *        lx_flag_new_waers.
    ** JOC01(+) End
      ENDLOOP.
    ENDFORM.                    " f1100_build_alv_data

  • Photoshop CS2 has begun crashing. Can't identify what changes I have made may have started this. I a

    Photoshop CS2 has begun crashing. Can't identify what changes I have made may have started this. I am using a MacBook Pro (2.2 GHz Intel Core i7) running OS 10.6.8. The error message reads: Process:         Adobe Photoshop CS2 [8011] Path:            /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 Identifier:      com.adobe.Photoshop Version:         9.0 (9.0x196) (9.0) Code Type:       PPC (Translated) Parent Process:  launchd [136]  Date/Time:       2012-03-09 17:56:22.693 -0600 OS Version:      Mac OS X 10.6.8 (10K549) Report Version:  6  Interval Since Last Report:          326864 sec Crashes Since Last Report:           18 Per-App Interval Since Last Report:  6035 sec Per-App Crashes Since Last Report:   12 Anonymous UUID:                      68A4F14B-1933-472D-B2EA-3A01AA5C7653  Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffffffc Crashed Thread:  0  Dispatch queue: com.apple.main-thread  Thread 0 Crashed:  Dispatch queue: com.apple.main-thread 0   ???                         
    0x73724189 0 + 1936867721  Thread 1: 0   libSystem.B.dylib           
    0x80142afa mach_msg_trap + 10 1   libSystem.B.dylib           
    0x80143267 mach_msg + 68 2   com.adobe.Photoshop         
    0xb819440f CallPPCFunctionAtAddressInt + 206231 3   libSystem.B.dylib           
    0x80170259 _pthread_start + 345 4   libSystem.B.dylib           
    0x801700de thread_start + 34  Thread 2: 0   com.adobe.Photoshop         
    0xb815acc0 spin_lock_wrapper + 90152 1   com.adobe.Photoshop         
    0xb8179c5b CallPPCFunctionAtAddressInt + 97763 2   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 3   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 4   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 5   com.adobe.Photoshop         
    0xb8145397 spin_lock_wrapper + 1791 6   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 3: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 3   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 4   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 5   com.adobe.Photoshop         
    0xb8145397 spin_lock_wrapper + 1791 6   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 4: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 3   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 4   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 5   com.adobe.Photoshop         
    0xb8145397 spin_lock_wrapper + 1791 6   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 5: 0   com.adobe.Photoshop         
    0xb815aa8b spin_lock_wrapper + 89587 1   com.adobe.Photoshop         
    0xb818c3eb CallPPCFunctionAtAddressInt + 173427 2   com.adobe.Photoshop         
    0xb818eeec CallPPCFunctionAtAddressInt + 184436 3   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 4   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 5   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 6   com.adobe.Photoshop         
    0xb8145c1d spin_lock_wrapper + 3973 7   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 6: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 7: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 8: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 9: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 10: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 11: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 12: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 13: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 14: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 15: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8b612e5e 0 + 2338401886  Thread 16: 0   com.adobe.Photoshop         
    0xb815a8ff spin_lock_wrapper + 89191 1   com.adobe.Photoshop         
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989 2   com.adobe.Photoshop         
    0xb80c6b13 0xb8000000 + 813843 3   com.adobe.Photoshop         
    0xb80c0037 0xb8000000 + 786487 4   com.adobe.Photoshop         
    0xb80dd8e8 0xb8000000 + 907496 5   com.adobe.Photoshop         
    0xb8145397 spin_lock_wrapper + 1791 6   com.adobe.Photoshop         
    0xb801ceb7 0xb8000000 + 118455  Thread 17: 0   com.adobe.Photoshop         
    0xb815a93a spin_lock_wrapper + 89250 1   com.adobe.Photoshop         
    0xb8176f67 CallPPCFunctionAtAddressInt + 86255 2   com.adobe.Photoshop         
    0xb80e88cb 0xb8000000 + 952523 3   ???                         
    0x8badee0e 0 + 2343431694  Thread 0 crashed with X86 Thread State (32-bit):   eax: 0x00000000  ebx: 0x10beea0c  ecx: 0xbfff5c70  edx: 0xe05cffbf   edi: 0x00000045  esi: 0x00000001  ebp: 0x8a028d80  esp: 0xb7fffacc    ss: 0x00000023  efl: 0x00010283  eip: 0x73724189   cs: 0x0000001b    ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f   cr2: 0xfffffffc  Binary Images: 0x80000000 - 0x8005dff7  com.apple.framework.IOKit 2.0 (???) <482CF2CC-DF02-2B5B-2133-18F5EA0052A8> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x8007d000 - 0x800e7fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib 0x80142000 - 0x802e9ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib 0x8036b000 - 0x804e6fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x805de000 - 0x805ecfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <E1B922F4-23DC-467E-631F-7E1B9C9F51CB> /usr/lib/libz.1.dylib 0x805f1000 - 0x805fdff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib 0x80601000 - 0x80647ff7  libauto.dylib ??? (???) <7CB1AB76-50A2-8E56-66E4-CF51CA75B177> /usr/lib/libauto.dylib 0x80654000 - 0x807d6fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib 0x80838000 - 0x808e5fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib 0x808f9000 - 0x808fcfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib 0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <283EE026-C0FE-1FF9-DB81-BFB155793157> /usr/lib/dyld 0xb8000000 - 0xb81defff +com.adobe.Photoshop 9.0 (9.0x196) (9.0) <6437A74D-607F-7339-5F7E-F6B0EF81C25D> /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib  Translated Code Information: objc[8011]: garbage collection is ON Rosetta Version:  22.27 Args: 
    /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 -psn_0_1774001  Exception: EXC_BAD_ACCESS (0x0001)  Thread 0: (0xb022078c, 0xb815aa8b) 0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0  0x91d344bc: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TS_exception_listener_thread + 128  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97ca2cc4
    ctr: 0x97ca2590 r00: 0xffffffe1
    r01: 0xf0203df0
    r02: 0xa0cf6090
    r03: 0x11800000
    r04: 0x00000002
    r05: 0x00000000
    r06: 0x00000054
    r07: 0x0000782b
    r08: 0x00000000
    r09: 0x00000000
    r10: 0x00000600
    r11: 0xa0ceb194
    r12: 0x97ca2590
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x11800000
    r23: 0x00000000
    r24: 0x00000054
    r25: 0x0000782b
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000002
    r29: 0x00000002
    r30: 0x00000000
    r31: 0x91d34444
      Thread 1: (0xb02a2e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0284da0
    r02: 0x0b985980
    r03: 0x00007b07
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb80017
    r09: 0x4d555458
    r10: 0x2bb8000f
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 2: (0xb04aae34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0488da0
    r02: 0x0b98b7b0
    r03: 0x00008303
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb80c77
    r09: 0x4d555458
    r10: 0x2bb80c6f
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000010
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 3: (0xb0778e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x01abbf90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36  0x01abc1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76  0x01abbba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf070dd20
    r02: 0x146ad4b0
    r03: 0x00009903
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00002ba7
    r09: 0x4d555458
    r10: 0x000f8cdf
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 4: (0xb011cd74, 0xb815a8ff) 0x97e26aa4: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248  0x97e25190: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97e26abc
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0101dc0
    r02: 0x00000000
    r03: 0x00002a03
    r04: 0x00000040
    r05: 0x3b9ab190
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9ab190
    r09: 0x00000000
    r10: 0x3b9ab190
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0xa0cf17cc
    r22: 0xa0cf17c0
    r23: 0xa0cf17c8
    r24: 0x00005a6c
    r25: 0xb5b1300c
    r26: 0xa0cf150c
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d3190
    r30: 0xa0cf17a0
    r31: 0x97e269b4
      Thread 5: (0xb0428e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0407da0
    r02: 0x0b98a830
    r03: 0x00008103
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb8095f
    r09: 0x4d555458
    r10: 0x2bb80957
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x0000000c
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 6: (0xb06b2e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x01abbf90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36  0x01abc1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76  0x01abbba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf068cd20
    r02: 0x146ad4a0
    r03: 0x00009803
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00006ce0
    r09: 0x4d555458
    r10: 0x000d4c0b
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 7: (0xb087ce30, 0xb815a93a) 0x97d3f6a4: /usr/lib/libSystem.B.dylib : __pthread_cond_wait + 880  0x91d36984: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TSWaitOnConditionTimedRelative + 240  0x91d38a00: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TSWaitOnSemaphoreCommon + 468  0x91cc6670: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : AsyncFileThread(void*) + 92  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x97d3f6e8
    ctr: 0x97ca2610 r00: 0xffffffd9
    r01: 0xf080f8b0
    r02: 0x00000001
    r03: 0x0000a703
    r04: 0x0000a803
    r05: 0x0000003c
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00021000
    r09: 0x00000001
    r10: 0xf080fe88
    r11: 0xa0ceb6a0
    r12: 0x97ca2610
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x91da71cc
    r19: 0x91da71d0
    r20: 0xa0cf26d0
    r21: 0x91da71d4
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x0000003c
    r25: 0x00000001
    r26: 0xa0cf271c
    r27: 0xf080fe88
    r28: 0xa02e74ac
    r29: 0x00000000
    r30: 0xa02e74e0
    r31: 0x97d3f340
      Thread 8: (0xb009ad38, 0xb815acc0) 0x97e254b8: /usr/lib/libSystem.B.dylib : __dispatch_mgr_invoke + 228  0x97e24e9c: /usr/lib/libSystem.B.dylib : __dispatch_queue_invoke + 308  0x97e2502c: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread2 + 372  0x97e25168: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 76  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97e25480
    ctr: 0x97ce62d8 r00: 0x0000016b
    r01: 0xf0080bb0
    r02: 0x00000000
    r03: 0x00000004
    r04: 0x00000000
    r05: 0x00000000
    r06: 0xf0080d0c
    r07: 0x00000001
    r08: 0xf0080d28
    r09: 0x00000000
    r10: 0x00000028
    r11: 0xa0cea530
    r12: 0x97ce62d8
    r13: 0x10624dd3
    r14: 0x97e74b04
    r15: 0xf0080c0c
    r16: 0xf0080c8c
    r17: 0xa0d053dc
    r18: 0xf0080d28
    r19: 0xa0cff588
    r20: 0xa0d00588
    r21: 0xf0080d0c
    r22: 0xa0cff508
    r23: 0xa0cff488
    r24: 0xa0d053dc
    r25: 0x00000000
    r26: 0xa0cf162c
    r27: 0x00000000
    r28: 0xa0cf1604
    r29: 0xa0cf133c
    r30: 0xf0080d28
    r31: 0x97e253dc
      Thread 9: (0xb019ed74, 0xb815a8ff) 0x97e26aa4: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248  0x97e25190: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97e26abc
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0182dc0
    r02: 0x00000000
    r03: 0x00002a03
    r04: 0x00000040
    r05: 0x3b9ab41a
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9ab41a
    r09: 0x00000000
    r10: 0x3b9ab41a
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0xa0cf17cc
    r22: 0xa0cf17c0
    r23: 0xa0cf17c8
    r24: 0x00005a6c
    r25: 0xb5b303ff
    r26: 0xa0cf150c
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d341a
    r30: 0xa0cf17a0
    r31: 0x97e269b4
      Thread 10: (0xb03a6e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0386da0
    r02: 0x0b974140
    r03: 0x00007f03
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb80647
    r09: 0x4d555458
    r10: 0x2bb8063f
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000008
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 11: (0xb05aee34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf058ada0
    r02: 0x0b98cc40
    r03: 0x00008703
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb812a7
    r09: 0x4d555458
    r10: 0x2bb8129f
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000018
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 12: (0xb0630e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x01abbf90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36  0x01abc1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76  0x01abbba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf060bd20
    r02: 0x146ad590
    r03: 0x00009703
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00004fc0
    r09: 0x4d555458
    r10: 0x000e3c16
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 13: Crashed (0xb7fffacc, 0x73724189) 0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0  0x0019d464: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235840  0x0019d254: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235312  0x0019d340: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235548  0x0019d340: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235548  0x0019d340: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsTargetInView(TView*) + 235548  0x0028daec: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 324124  0x0028da3c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 323948  0x0024b570: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 52384  0x00294c7c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 353196  0x002961c8: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 358648  0x00295590: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 355520  0x0024aaf0: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 49696  0x0024a85c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 49036  0x0024ab8c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 49852  0x002ae944: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ComputeSubviewBoundingBox(TView*, VRect&) + 458868  0x0036aad4: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 140124  0x0036aa34: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 139964  0x00370efc: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 165764  0x00370e34: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 165564  0x00370674: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : StripAmpersand(CString&) + 163580  0x01103abc: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : XPEPLaunch::StartApp(unsigned short const*, unsigned short const*, unsigned short const*, void**) + 5911120  0x00633830: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : GlobalToViewPoint(TView*, CPoint const&, VPoint&) + 126828  0x007fea04: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : IsShowingAlert() + 53824  0x007ee36c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : InitUPrinting() + 381172  0x0006456c: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : LookupErrString(short, short, ZString&) + 236304  0x007e9b04: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : InitUPrinting() + 362636  0x00837ba8: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : PercentageWindowVisible(TWindow*) + 6864  0x007f0df4: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : InitUPrinting() + 392060  0x000033f8: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : dyld_stub_binding_helper + 1288  0x000030d0: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : dyld_stub_binding_helper + 480  0x00002e64: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ___code_start__ + 512  0x00002c94: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 : ___code_start__ + 48   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x0019d3b0
    ctr: 0x00f3b450 r00: 0x0550ae98
    r01: 0xbfff5c70
    r02: 0x0143e7dc
    r03: 0x06eb0e20
    r04: 0x013e2688
    r05: 0x013e4e04
    r06: 0xbfff6190
    r07: 0x00000000
    r08: 0xbfff5d90
    r09: 0x0143ea44
    r10: 0x00002028
    r11: 0xa0ceb208
    r12: 0x00f3b450
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x0ceba1f0
    r17: 0x00000001
    r18: 0x00000000
    r19: 0x0141d780
    r20: 0x005af8aa
    r21: 0xbfff5d94
    r22: 0x0ceabde0
    r23: 0x0143ea44
    r24: 0xbfff6190
    r25: 0x00000001
    r26: 0xbfff5d90
    r27: 0x0cef3ad0
    r28: 0x011ada14
    r29: 0x0143d3b0
    r30: 0x013dd3b0
    r31: 0x013dd3b0
      Thread 14: (0xb0324e34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0305da0
    r02: 0x0b984040
    r03: 0x00007d03
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb8032f
    r09: 0x4d555458
    r10: 0x2bb80327
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000004
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 15: (0xb052ce34, 0xb815a8ff) 0x91cf3a3c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40  0x0feb7428: /Applications/Adobe Photoshop CS2/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support : ThreadFunction(void*) + 64  0x91cf4988: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x91cf3a80
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf0509da0
    r02: 0x0b98c430
    r03: 0x00008503
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x2bb80f8f
    r09: 0x4d555458
    r10: 0x2bb80f87
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000014
    r27: 0x0feb73fc
    r28: 0x80000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x91cf3a20
      Thread 16: (0xb07fad74, 0xb815a8ff) 0x97e26aa4: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248  0x97e25190: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116  0x97d42f08: /usr/lib/libSystem.B.dylib : __pthread_body + 40  0x00000000: /Applications/Adobe Photoshop CS2/Adobe Photoshop CS2.app/Contents/MacOS/Adobe Photoshop CS2 :  + 0   PPC Thread State srr0: 0x00000000
    srr1: 0x00000000
                 vrsave: 0x00000000 cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x97e26abc
    ctr: 0x97ca2600 r00: 0xffffffda
    r01: 0xf078edc0
    r02: 0x00000000
    r03: 0x00002b03
    r04: 0x00000040
    r05: 0x3b9a9a5d
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a9a5d
    r09: 0x00000000
    r10: 0x3b9a9a5d
    r11: 0xa0ceb698
    r12: 0x97ca2600
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0xa0cf180c
    r22: 0xa0cf1800
    r23: 0xa0cf1808
    r24: 0x00005a6a
    r25: 0xa9088dda
    r26: 0xa0cf1588
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d1a5d
    r30: 0xa0cf17e0
    r31: 0x97e269b4
       Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 4 GB, SMC 1.69f3 Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5) Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports Network Service: AirPort, AirPort, en1 Serial ATA Device: TOSHIBA MK7559GSXF, 698.64 GB Serial ATA Device: MATSHITADVD-R   UJ-898 USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3 USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2 USB Device: Canon Digital Camera, 0x04a9  (Canon Inc.), 0x320f, 0xfa130000 / 6 USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 5 USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4 USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 9 USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2 USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    That would be one of the reasons it’s unsupported. It was never tested on anything later than Tiger and running anything under Rosetta is a crapshoot as well.
    Be aware that when CS6 ships sometime this spring (no official announcement yet, but all hints from Adobe point to a second quarter ship date) you will be completely out of the upgrade loop and will have to buy a full priced license for CS6 or move to Creative Cloud. There are some pretty good deals out there on CS5.5 upgrades.
    Here’s the CS2 to CS5.5 Design Premium package: http://amzn.to/kZOsu7
    Bob

  • Change field bseg-vbund

    Hello
    is it possible to change field bseg-vbund ( trading partner) in transaction FB02.
    I tried to add this field (BSEG-VBUND) in customizing:
    Financial Accounting --> Financial Accounting Global Settings --> Document
    --> Line Item --> -> Document Change Rules, Line Item
    but, it doesn't work.
    i´m working in 4.6C Version.
    Thanks,
    João Simões

    Hi João Simões,
    Unfortunately the content of some fields cannot be changed once the document has been posted, even if the fields are customized as changeable. BSEG-VBUND is one of these fields.
    The field VBUND is passed to other tables, where it is used as a key-field. Changing the BSEG-value would then produce inconsistencies with other tables.
    Note 499079 is only valid for changing VBUND recurring original documents and statistical documents. The field is only changeable in these two cases. It is not changeable in FI documents for consolidation reasons. Please see note 545362, too.
    The only workaround to have this corrected is to reverse the document and create a new one.
    I hope this clarifies the system behaviour.
    Please assign points if it useful
    Regards
    Ravinagh Boni

  • The unique identifier machine changes - why?

    I receive the unique identifier machine
    machineTokenSN.getMachineId().getUniqueId() or outFile.write(machineTokenSN.getMachineId().getBytes());
    But when I flush  options Flash Player after individualization process, the unique identifier machine changes - why?
    How to receive the unique identifier machine,  which doesn't change at flush of options Flash Player

    Hello,
    This thread should give you more background on your machineID, as well as how to compare it to other machineID's.
    http://forums.adobe.com/message/3423560#
    cheers,
    /Eric.

  • How to identify a change on parameters value using match code

    Hi everybody,
    I would like to know if it's possible to identify automatically a change on a parameters using match code.
    For example : In my wiew i set XXX in  my parameters, so i execute XXX treatment. Now if i change this value to YYY, i would like to treat the YYY treatment without press enter key.
    My requirement is the following : According to the values filled in this parameters, i need to display different views in my WD application. So when this value changes, it's neccesary to modify the displayed views.
    Does anybody can help me on this problem ?
    Thanks in advance.

    Hi,
    i think ,when you start a application with application parameters your first requirement is realized. However , the second requirement need more clarity.
    When you start a application with parameter XXX, the application is displaying a view-X. How and who will change the value of XXX. Without triggering a roundtrip to server you cannot check the value if it is changed and on top of it, you can not bring new view assembly  So keep this in mind and design your application..

  • With FB02 changes in BSEG-SGTXT  not transferred to COEP-SGTXT

    Hi guys
    In ECC 6.0 when you change a doc.  with FB02, BSEG-SGTXT is not transferred to COEP-SGTXT. In fact if you parked an invoice with FV60 and leave item text  "SGTXT" field blank , and afterwards you fill the item text with something and save the doc. as definitve the field bseg-sgtxt is not transferred to controlling doc and field COEP-sgtxt is not updated.
    Transactions KOB1 or KSB1 don't  show you the changes made in the finance document in line item text.
    I have searched in the sap notes but all of them relates to version up to 500.
    I Do not Know how to resolve the issue. I tried also with 1KE8  but only reverse and create a new Profit center doc and the field GLPCA-SGTXT is blank
    Does someone Know how to reflect or transfer the changes made in FB02 in Bseg-sgtxt to Coel-SGTX ?
    Kind Regards

    Hi Abhisek
    When I searched in sap help portal this note: 1003756,  I get next error message:  "The requested SAP Note is either in reworking or is released internally only"
    By the way I do not get also this note implemented in my system, but I can not find it also in https://websmp203.sap-ag.de/notes
    Do you Know Why ?
    Kind Regards

  • How to identify the change in the field of a screen

    Hello,
    In a program , i have a screen 100 with some PBO logic and PAI. sample of PAI code
    chain:
    structure-A,
    structure-*,
    module check_mandatory_fields
    module return: ( this will set screen to 0 and then leave statement)
    endchain
    in one of the subroutines we have
    if sy-batch is initial
    call screen 102.
    else
    endif.
    perform ...
    perform ...
    The issue is for some records the processing goes to the PAI of the screen and then returns to the calling program correctly, However few cases it never enters the PAI, there by goes to the main routine which calls this FM.
    Questions
    1. How do I identify there is a change in the structure-A or Structure-B values. Beacuse if check the values are the same.
    2. How do i force it to always enter the PAI irrespective of the change.
    Thanks and regards,
    Shylaja

    Hello Siva,
    Thanks for the reply.
    Currently the issue there is no change in any of the fields. I think thsi is the reason why the PAI is not called. Only in the PAI we have set screen to 0 and leave.
    Without any change in the screen elements how do i force it to enter the PAI
    or
    when i call a screen statement as Call 102, how do i ensure that it returns to the call routine back irrespective of the PAI being executed.
    thanks and regards,
    Shylaja

  • Query for Identifying column changes

    Hi Guys,
    Need help in getting a query for my scenario.
    I have 2 table Table A and Table B. Both have same columns and data type.
    Table A:
    Id  PersonId    Name      Code      Date
    1    1000           John         M         2014-07-28
    2    1001           Mary         B         2014-07-28
    3    1002           Robin        R         2014-07-28
    4    1003           Maxie        N         2014-07-28
    Table B:
    Id  PersonId    Name      Code      Date
    1    1000           John                     2014-07-28
    2    1001           Hary         S         2014-07-28
    3    1002           Justin       Q         2012-07-28
    4    1003           Maxie       P         2013-07-28
    My situation is:
    I need to compare both the tables and need to identify the rows that has a change in all columns, if all other columns are not changed and Code is changed to blank, i need to ignore that row.
    The expected outcome is:
    Id  PersonId    Name      Code      Date
    2    1001           Hary         S         2014-07-28
    3    1002           Justin       Q         2012-07-28
    4    1003           Maxie       P         2013-07-28
    Thanks Guys...

    I found the solution in a easy way i guess...
    select * from 
    SELECT ID, PERSONID,NAME,
    case when code is null then
        select a.code from tablea A where A.ID = B.ID
    else
     a.code
    end as Code,
    DATE FROM TABLE B
    MINUS
    SELECT ID,PERSONID,NAME,CODE,DATE FROM TABLE A
    What do you guys think...would it work for my scenario....
    i am testing few scenarios looks like working.......

  • Identifying a change in customer record

    Hi All
    Is there a way to Identify that a change was made (one or more) in customer record ?
    I know there are lots of different ways to change a customer record
    and probably a lot of User Exit that gets fired up.
    However I'm looking for a way to get an indication that a change has occured for all of the different possibilities.
    Thanks
    Ziv.

    >
    Ziv Katz wrote:
    I already know of the tables. They help a lot but it's not enough for my specific requirenments.
    And what are those specific requirements? BTW the answer from Hans covers all requirements (except the direct table changes, but those are another story...).

  • How to identify the changed fields on view

    Dear Colleagues,
    can you please let me know how can we identify what are all the fields are changed by user and what all the fields are not changed.
    example: i have 10 fld on my screen i changed only 3 fld we need to know which is changed and which is not.
    i tried with wd_context->is_changed_by_client( ) , buy this we can know whether any changed is done by client or not. But i need to know at UI element wise.
    Thanks,
    Mahesh.Gattu

    Hi Manas,
    this is very lengthy process i found very easy way to get it done.
    keep this code in wddoinit of component controller.
    * enable context change log
        data: context type ref to if_wd_context.
        context = wd_context->get_context( ).
        context->enable_context_change_log( ).
    then write one method in component contoller like get_changes.
    keep this code in get_changes.
    CHANGES     Returning     0     0     WDR_CONTEXT_CHANGE_LIST          
    method get_changes .
        data: context type ref to if_wd_context.
        context = wd_context->get_context( ).
        changes = context->get_context_change_log( ).
    endmethod.
    in above code what ever the chagnes are done it will come into chagne table.
    in debug mode you can find the table values.
    if you want more details you can refer to the WDC: demo_context_changes as refered by Leka.
    Thanks Leka.
    Thanks,
    Mahesh.Gattu

  • Want to change the BSEG-SGTXT while process through the transaction:FF_5

    Hi,
    I want to change the value in BSEG-SGTXT during the process through the transaction:FF_5.
    Can any one suggest any BADI or User Exit to update the SGTXT.
    Regards,
    Hema T

    Hi
    If your text is going to remain content based certain transaction types or text in the note to payee field then you can use the below functionality.
    Advantage no ABAP help required.
    Define Search String :
    Strg Name : Text
    Strng : Test (say if you want to find the word "test" in the incoming record. You refer the help doc on Search string for combinations)
    Mapping : (keep it blank)
    In Search string use :
    1)
    Company code :
    House bank id:
    Account id:
    Int algthm :  (if you are using any)
    Strg name: Check
    Target field: BDC Field name1 BSEG-SGTXT
    2)
    Company code :
    House bank id:
    Account id:
    Int algthm : (if you are using any)
    Strg name: Text
    Target field: BDC Field value1 "text that you want to enter in the Bseg- sgtxt field"
    3)
    Company code :
    House bank id:
    Account id:
    Int algthm : (if you are using any)
    Strg name: Check
    Target field: BDC Acct type1 0
    0: First line, posting area 1
    1: First line, posting area 2
    2: Second line, posting area 1
    3: Second line, posting area 2
    Regards
    Nikhil

  • Subject Key Identifier (SKI) changed after RootCA upgrade

    Hello,
    I have a RootCA running windows 2003 ENT SP2 and I made an upgrade to a new machine (newer HW) and Windows 2008 R2.  The original rootCA was configured with an HSM, so the backup CA is not an option for me since the keys can not be exported (I dont
    have a .p12 file).
    I exported the HSM settings together with the keys (HSM vendor's procedure) and during the CA setup wizard, I select the option: "Use existing private key” and then “Select an existing private key on this computer” .  Then I click on "edit"
    select the correct CSP (the one from the HSM) and click on "Search".  The private key appears immediately, I select it and i keep going with the installation.  It all goes smoothly and CA services are correctly installed.
    The problem is that the SKI of the new CA certificate does not match with the SKI of the original CA certificate, it is changed somehow during the installation. 
    I have performed the same test, but migrating to another windows 2003 server, and the SKI is kept exactly the same, there is no difference (maybe the way the SKI is generated is different from windows 2003 to 2008).
    My applications communicate to each other using this SKI, replacing it everywhere is something that i dont want to consider.
    Does somebody know if it is possible to force this setting to be kept?
    Thanks in advance
    Best regards

    Hi Vadims,
    Thanks for your reply,  I have been playing a bit with openssl and a CA certificate, and in the meantime i solved the issue, and this is what I "guess" or what I understand from it:
    1) If you install CA services and use the options:  select and existing key --> select a certificate  --> then you will have to choose a p12 file which contains both (public and private key) and will use both values to generate a NEW certificate,
    but it will NOT generate the SKI value, it will just use the one from the p12 file.  That is why the SKI does not change if you use this option
    2) I am using an HSM and the private key is stored there and can not be exported, so, i can not generate a p12 file, in that case, I have the opther option in the wizard:  select an existing key --> use an existing key.... Then i can choose the correct
    private key from the HSM once i select the correct CSP... And then the fun begins:
    3) Acording to the RFC
    For CA certificates, subject key identifiers SHOULD be derived from
       the public key or a method that generates unique values.  Two common
       methods for generating key identifiers from the public key are:
          (1) The keyIdentifier is composed of the 160-bit SHA-1 hash of the
          value of the BIT STRING subjectPublicKey (excluding the tag,
          length, and number of unused bits).
          (2) The keyIdentifier is composed of a four bit type field with
          the value 0100 followed by the least significant 60 bits of the
          SHA-1 hash of the value of the BIT STRING subjectPublicKey
          (excluding the tag, length, and number of unused bit string bits).
    4) After all my openssl adventure, it all came down to 2 files containing the public key and the BIT STRING of the public key,  I opened them both and I confirmed that for the SKI generated on the windows 2008 machine, the method used to calculate the
    SKI is using the BIT STRING (option (1) from the RFC) 
    While for the SKI generated in the windows 2003 machine, the method is :  ???????
    What I think is that from windows 2003 to windows 2008 the certificate services changed the way they calculate the SKI.
    First they were maybe doing a SHA1 of the whole public key and now they are using a SHA1 of only the bitstring of the public key which is more similar to what is said on the RFC (point 1)).
    Then I started to look if there was a way to change this, and....

  • Identify ODS change log request from Cube update rules init routine

    Hello all.
    I need to use a logic in the Start routine of a cube, whcih change log request are move from an ODS when doing a delta.
    Anyone knows if this is possible???
    Thnaks and best regards,
    Alofnso.

    Hello Oscar.
    Basically my requirement is to do a selective deletion of the cube, before I load the new data, but the selective deletion has to be done according to some fields of the data that is going to be load to the cube.
    That´s why I need this.
    Best Regards,
    Alfonso.

  • Changes in BSEG -  XOPVW

    HI
    Experts
    I want to CHECK (Tick) Open Item Management Check-mark in FS00 (Bank GL) for the entries which have already been entered J/v's . For that I found a table BSEG and the field is XOPVW.
    If I done this directly in Table will affect to any other area?

    Hi Abhisek
    When I searched in sap help portal this note: 1003756,  I get next error message:  "The requested SAP Note is either in reworking or is released internally only"
    By the way I do not get also this note implemented in my system, but I can not find it also in https://websmp203.sap-ag.de/notes
    Do you Know Why ?
    Kind Regards

Maybe you are looking for