A Full DTP is converted into delta DTP and facing some data problem

Recently Full DTP(DSO to DSO) is converted into delta DTP , we are facing some data problem in first request.Some data in D2 are not updated properly after just converted in full to delta. Please let me know if you have any idea.
Example :
DSO : D1
DSO : D2
Previously FULL DTP D1->D2
Now Delta DTP D1->D2

Hi,
First time run of delta DTP will extract all the records from the source...
As u have already run the Full load and followed by delta,i guess u can use direct change log option...
rgds,

Similar Messages

  • ALV output converted into PDF format and send that PDF to user through mail

    Hi Experts,
    I have report earlier its output was in alv grid.
    Now i want that ALV output converted into PDF format.And that PDF output send to user through mail.
    Can u please tell how to do?
    My code is here(output is displaying in ALV grid).
    INCLUDE <icon>.
    TYPE-POOLS: slis, kkblo.
    TABLES : zmsd_freight_hdr, zmsd_freight_det, zmsd_blinfo, zmsd_diheader.
    TABLES : lfa1.
    DATA : t_hdr   LIKE   zmsd_freight_hdr   OCCURS 0 WITH HEADER LINE,
           T_DET   LIKE   ZMSD_FREIGHT_DET   OCCURS 0 WITH HEADER LINE,
           t_bl    LIKE   zmsd_blinfo        OCCURS 0 WITH HEADER LINE,
           t_di    LIKE   zmsd_diheader      OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF t_det OCCURS 0.
            INCLUDE STRUCTURE zmsd_freight_det.
    DATA    type(30).
    DATA: END OF t_det.
    DATA: v_target2(30),
          v_zsammg LIKE t_det-zsammg,
          v_gsttotal LIKE t_det-zamount.
    DATA : BEGIN OF t_data OCCURS 0,
             zsammg       LIKE  zmsd_freight_hdr-zsammg,
             zdidbl       LIKE  zmsd_freight_hdr-zdidbl,
             zvkorg       LIKE  zmsd_freight_hdr-zvkorg,
             zinvno       LIKE  zmsd_freight_hdr-zinvno,
             zttlamt      LIKE  zmsd_freight_hdr-zttlamt,
             zstatus      LIKE  zmsd_freight_hdr-zstatus,
             ztype        LIKE  zmsd_freight_hdr-ztype,
             zconfirm     LIKE  zmsd_freight_hdr-zconfirm,
             zconfirmdate LIKE  zmsd_freight_hdr-zconfirmdate,
             erdat        LIKE  zmsd_freight_hdr-erdat,
             ernam        LIKE  zmsd_freight_hdr-ernam,
             erzet        LIKE  zmsd_freight_hdr-erzet,
             aedat(10),
             aenam        LIKE  zmsd_freight_hdr-aenam,
             aezet        LIKE  zmsd_freight_hdr-aezet,
             zline        LIKE  zmsd_freight_det-zline,
             zfptype      LIKE  zmsd_freight_det-zfptype,
             zchrcode     LIKE  zmsd_freight_det-zchrcode,
             zcurcode     LIKE  zmsd_freight_det-zcurcode,
             zqty         LIKE  zmsd_freight_det-zqty,
             zuom         LIKE  zmsd_freight_det-zuom,
             zrate        LIKE  zmsd_freight_det-zrate,
             zamount      LIKE  zmsd_freight_det-zamount,
             zexrate      LIKE  zmsd_freight_det-zexrate,
           zccode       LIKE  zmsd_blinfo-zccode,      "MADK991565
             zccode       like  ZMSD_FREIGHT_HDR-zfcode, "MADK991565
             zbldate(10),
             zbl          LIKE  zmsd_blinfo-zbl,
             type(3),
             waerk        LIKE  zmsd_freight_det-zcurcode,
             zamountl     LIKE  zmsd_freight_det-zamount,
           END OF t_data.
    DATA : w_layout      TYPE   slis_layout_alv,
           w_catalog     TYPE   slis_fieldcat_alv,
           t_catalog     TYPE   slis_t_fieldcat_alv,
           w_sort        TYPE   slis_sortinfo_alv,
           t_sort        TYPE   slis_t_sortinfo_alv.
    DATA   V_ZINVNO    like   T_HDR-ZINVNO.                   "MADK991565
    DATA : v_count  TYPE  i.
    SELECTION-SCREEN BEGIN OF BLOCK a0 WITH FRAME TITLE text-001.
    PARAMETERS     :  p_zvkorg LIKE zmsd_freight_hdr-zvkorg  OBLIGATORY .
    SELECT-OPTIONS :  s_zdidbl FOR  zmsd_freight_hdr-zdidbl             ,
                      s_zccode FOR  lfa1-lifnr                          ,
                      s_status FOR  zmsd_freight_hdr-zstatus            ,
                      s_ztype  FOR  zmsd_freight_hdr-ztype              ,
                      s_erdat  FOR  zmsd_freight_hdr-erdat              ,
                      s_ernam  FOR  zmsd_freight_hdr-ernam              ,
                      s_zconfd FOR  zmsd_freight_hdr-zconfirmdate       .
    PARAMETERS     :  p_zconf  AS   CHECKBOX                            .
    SELECTION-SCREEN END OF BLOCK a0.
    SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-002.
    PARAMETERS     :  p_hdr    RADIOBUTTON GROUP rad DEFAULT 'X'        ,
                      p_det    RADIOBUTTON GROUP rad                    .
    SELECTION-SCREEN END OF BLOCK a1.
    INITIALIZATION.
    AT SELECTION-SCREEN.
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM process.
      PERFORM display.
    END-OF-SELECTION.
      PERFORM fm_get_num_pages.
    AT USER-COMMAND.
    AT LINE-SELECTION.
    TOP-OF-PAGE.
      PERFORM fm_top_of_page USING '7010' sy-title space.
    FORM get_data.
      SELECT   *
        FROM   zmsd_freight_hdr
        INTO   TABLE t_hdr
       WHERE   zvkorg        EQ  p_zvkorg
         AND   zdidbl        IN  s_zdidbl
         AND   zstatus       IN  s_status
         AND   ztype         IN  s_ztype
         AND   erdat         IN  s_erdat
         AND   ernam         IN  s_ernam
         AND   zconfirmdate  IN  s_zconfd
         AND   ZFCODE        IN  S_ZCCODE.                      "MADK991565
      IF p_zconf = 'X'.
        DELETE t_hdr WHERE zconfirm NE 'C'.
      ENDIF.
      CHECK NOT t_hdr[] IS INITIAL.
      SELECT   *
        FROM   zmsd_blinfo
        INTO   TABLE t_bl
         FOR   ALL ENTRIES IN t_hdr
       WHERE   zsammg = t_hdr-zsammg.
      SORT t_bl BY zsammg.
      SELECT   *
        FROM   zmsd_diheader
        INTO   TABLE t_di
         FOR   ALL ENTRIES IN t_hdr
       WHERE   zsammg = t_hdr-zsammg.
      SORT t_di BY zsammg.
    IF P_DET = 'X'. "MADK933361
      SELECT   *
        FROM   zmsd_freight_det
        INTO   TABLE t_det
         FOR   ALL ENTRIES IN t_hdr
       WHERE   zsammg  =  t_hdr-zsammg
       AND ZINVNO =  T_HDR-ZINVNO .                           "MADK991565
    SORT t_det BY zsammg zline.                            "MADK991565
       SORT T_DET BY ZSAMMG ZINVNO ZLINE.                     "MADK991565
    ENDIF. "MADK933361
    ENDFORM.
    FORM process.
      REFRESH t_data.
      CLEAR v_gsttotal.                                         "MADK933361
      LOOP AT t_hdr.
    Start of MADK933361
        CLEAR: v_target2.
        v_zsammg = t_hdr-zsammg.
        V_ZINVNO = T_HDR-ZINVNO.                                "MADK991565
       AT NEW zsammg.                                         "MADK991565
         AT NEW ZINVNO.                                         "MADK991565
          PERFORM get_gst_value.
        ENDAT.
    End of MADK933361
        PERFORM move_header.
        CHECK t_data-zccode IN s_zccode.
        IF p_det = 'X'.
    CSF Project Changes Starts   DEV34    MADK985782
        LOOP AT T_DET WHERE ZSAMMG = T_HDR-ZSAMMG..
          LOOP AT t_det WHERE zsammg = t_hdr-zsammg AND
                              zinvno = t_hdr-zinvno.
    CSF Project Changes Ends     DEV34    MADK985782
            PERFORM move_header.
            CHECK t_data-zccode IN s_zccode.
            MOVE-CORRESPONDING t_det TO t_data.
            t_data-zamountl = t_data-zamount * t_data-zexrate.
            APPEND t_data.
            CLEAR t_data.
          ENDLOOP.
        ELSE.
          APPEND t_data.
          CLEAR t_data.
        ENDIF.
        AT END OF zsammg.
          CLEAR v_gsttotal.
        ENDAT.
    *Start of changes for  IS090901289-PIA MADK991565
        AT END OF ZINVNO.
          CLEAR V_GSTTOTAL.
        ENDAT.
    *End of changes for  IS090901289-PIA MADK991565
      ENDLOOP.
    ENDFORM.
    FORM move_header.
      MOVE-CORRESPONDING t_hdr TO t_data.
      t_data-zttlamt = t_data-zttlamt + v_gsttotal.             "MADK933361
      t_data-waerk = 'SGD'.
      IF NOT t_hdr-aedat IS INITIAL.
        WRITE: t_hdr-aedat TO t_data-aedat.
      ELSE.
        CLEAR : t_data-aedat.
      ENDIF.
      READ TABLE t_bl WITH KEY zsammg = t_hdr-zsammg BINARY SEARCH.
      IF sy-subrc EQ 0.
      t_data-zccode  = t_bl-zccode.   "MADK991565
        T_DATA-ZCCODE = T_HDR-ZFCODE.   "MADK991565     
        IF NOT t_bl-zbldate IS INITIAL.
          WRITE: t_bl-zbldate TO t_data-zbldate.
        ENDIF.
        t_data-zbl     = t_bl-zbl.
        t_data-type    = 'DBL'.
      ELSE.
        READ TABLE t_di WITH KEY zsammg = t_hdr-zsammg BINARY SEARCH.
        IF sy-subrc EQ 0.
        t_data-zccode  = t_di-zdiforcode.     "MADK991565
          T_DATA-ZCCODE = T_HDR-ZFCODE.         "MADK991565
          t_data-type    = 'DI'.
        ENDIF.
      ENDIF.
    ENDFORM.
    FORM display.
      IF t_data[] IS INITIAL.
        MESSAGE s398(00) WITH 'No Data Selected'.
        EXIT.
      ENDIF.
      DATA : l_repid LIKE sy-repid.
      l_repid = sy-repid.
      REFRESH t_catalog.
      CLEAR   t_catalog.
      w_layout-cell_merge = 'X'.
      PERFORM map_fields.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program      = l_repid
                i_callback_user_command = 'ALV_USER_COMMAND'
                is_layout               = w_layout
                it_fieldcat             = t_catalog[]
                i_grid_title            = sy-title
                i_save                  = 'A'
                it_sort                 = t_sort[]
           TABLES
                t_outtab                = t_data
           EXCEPTIONS
                program_error           = 1
                OTHERS                  = 2.
      IF sy-subrc <> 0.
      ENDIF.
    ENDFORM.
    FORM map_fields.
    Sort Order
      CLEAR v_count.
      PERFORM sf USING 'ZDIDBL'   'X'  'X'.
    Fields to be displayed
      CLEAR v_count.
      IF p_hdr = 'X'.
        PERFORM af USING :
       DESCRIPTION       FIELD        LEN   RTABLE             RFIELD
        'DI/DBL         ' 'ZDIDBL'     '14' '                ' '        ',
        'Type           ' 'TYPE'       '04' '                ' '        ',
        'Forwarder Code ' 'ZCCODE'     '14' '                ' '        ',
        'BL Number      ' 'ZBL'        '14' '                ' '        ',
        'BL Date        ' 'ZBLDATE'    '10' '                ' '        ',
        'Invoice Number ' 'ZINVNO'     '15' '                ' '        ',
        'Extraction     ' 'ZSTATUS'    '05' 'ZMSD_FREIGHT_HDR' 'ZSTATUS ',
        'Freight Type   ' 'ZTYPE'      '05' 'ZMSD_FREIGHT_HDR' 'ZTYPE   ',
        'Confirmation   ' 'ZCONFIRM'   '05' 'ZMSD_FREIGHT_HDR' 'ZCONFIRM',
        'Confirm Date   ' 'ZCONFIRMDATE' '10' 'ZMSD_FREIGHT_HDR'
    'ZCONFIRMDATE',
        'Total Amount   ' 'ZTTLAMT'    '18' '                ' '        ',
        'Created On     ' 'ERDAT'      '10' '                ' '        ',
        'Created By     ' 'ERNAM'      '10' '                ' '        ',
        'Changed On     ' 'AEDAT'      '10' '                ' '        ',
        'Changed By     ' 'AENAM'      '10' '                ' '        '.
      ELSE.
        PERFORM af USING :
       DESCRIPTION         FIELD     LEN   RTABLE             RFIELD
        'DI/DBL           ' 'ZDIDBL'   '14' '                ' '        ',
        'Type             ' 'TYPE'     '04' '                ' '        ',
        'Forwarder Code   ' 'ZCCODE'   '14' '                ' '        ',
        'BL Number        ' 'ZBL'      '14' '                ' '        ',
        'BL Date          ' 'ZBLDATE'  '10' '                ' '        ',
        'Invoice Number   ' 'ZINVNO'   '15' '                ' '        ',
        'Extraction       ' 'ZSTATUS'  '05' 'ZMSD_FREIGHT_HDR' 'ZSTATUS ',
        'Freight Type     ' 'ZTYPE'    '05' 'ZMSD_FREIGHT_HDR' 'ZTYPE   ',
        'Confirmation     ' 'ZCONFIRM' '05' 'ZMSD_FREIGHT_HDR' 'ZCONFIRM',
        'Confirm Date     ' 'ZCONFIRMDATE' '10' 'ZMSD_FREIGHT_HDR'
    'ZCONFIRMDATE',
        'Total Amount     ' 'ZTTLAMT'  '18' '                ' '        ',
        'Freight Payment  ' 'ZFPTYPE'  '14' '                ' '        ',
        'Charge Code      ' 'ZCHRCODE' '10' '                ' '        ',
        'Currency         ' 'ZCURCODE' '08' '                ' '        ',
        'Quantity         ' 'ZQTY'     '13' '                ' '        ',
        'UoM              ' 'ZUOM'     '04' '                ' '        ',
        'Rate             ' 'ZRATE'    '15' '                ' '        ',
        'Amt(Foreign Curr)' 'ZAMOUNT'  '16' '                ' '        ',
        'Exchange Rate    ' 'ZEXRATE'  '13' '                ' '        ',
        'Amt(Local Curr)  ' 'ZAMOUNTL' '16' '                ' '        ',
        'Created On       ' 'ERDAT'    '10' '                ' '        ',
        'Created By       ' 'ERNAM'    '10' '                ' '        ',
        'Changed On       ' 'AEDAT'    '10' '                ' '        ',
        'Changed By       ' 'AENAM'    '10' '                ' '        '.
      ENDIF.
    ENDFORM.
    FORM af USING text
                  field
                  len
                  table
                  reffield.
      v_count = v_count + 1.
      w_catalog-col_pos       = v_count.
      w_catalog-fieldname     = field.
      w_catalog-ref_tabname   = table.
      w_catalog-ref_fieldname = reffield.
      w_catalog-seltext_s     = text.
      w_catalog-seltext_m     = text.
      w_catalog-seltext_l     = text.
      w_catalog-outputlen     = len.
      IF field = 'ZTTLAMT' OR field = 'ZAMOUNTL'.
        w_catalog-no_zero     = 'X'.
        w_catalog-cfieldname  = 'WAERK'.
        w_catalog-datatype    = 'CURR'.
      ENDIF.
    IF FIELD = 'ZRATE' OR FIELD = 'ZAMOUNT'.
      IF field = 'ZAMOUNT'.
        w_catalog-no_zero     = 'X'.
        w_catalog-cfieldname  = 'ZCURCODE'.
        w_catalog-datatype    = 'CURR'.
      ENDIF.
      IF field = 'ZQTY' OR field = 'ZRATE'.
        w_catalog-no_zero     = 'X'.
        w_catalog-datatype  =  'DEC'.
      ENDIF.
      APPEND w_catalog TO t_catalog.
      CLEAR  w_catalog.
    ENDFORM.
    FORM sf    USING   fieldname  sortup  group.
      v_count = v_count + 1.
      CLEAR w_sort.
      w_sort-fieldname = fieldname.
      w_sort-spos      = v_count.
      w_sort-up        = sortup.
      w_sort-group     = group.
      APPEND w_sort TO t_sort.
    ENDFORM.
    FORM alv_user_command USING  in_ucomm    LIKE sy-ucomm
                                 in_selfield TYPE slis_selfield.
      DATA: lfs_data LIKE t_data.
      IF in_ucomm = '&IC1'.
        READ TABLE t_data INDEX in_selfield-tabindex INTO lfs_data.
        CHECK NOT lfs_data-zdidbl IS INITIAL.
        IF lfs_data-type = 'DBL'.
          DATA: l_zdbl LIKE zmsd_diheader-zdinum.
          l_zdbl = in_selfield-value.
          EXPORT l_zdbl TO MEMORY ID 'VBL'.
          CALL TRANSACTION 'ZMSD_BL01'.
        ENDIF.
        IF lfs_data-type = 'DI'.
          DATA: v_dinum LIKE zmsd_diheader-zdinum.
          v_dinum = in_selfield-value.
          EXPORT v_dinum TO MEMORY ID 'VDI'.
          CALL TRANSACTION 'ZMSD_DI01'.
        ENDIF.
      ENDIF.
    ENDFORM.
    FORM get_gst_value.
      LOOP AT t_det WHERE zsammg = v_zsammg
         AND ZINVNO = V_ZINVNO.                              "MADK991565
        CHECK t_data-zccode IN s_zccode.
        t_det-zamount  = t_det-zamount * t_det-zexrate.
        SELECT SINGLE  y0mmtarget2
                INTO   v_target2
                FROM   y0mmipstranslate
                WHERE  y0mmdatatype = '70' AND
                       y0mmsource = t_det-zchrcode.
        SELECT SINGLE y0mmtarget1
               INTO   t_det-type
               FROM   y0mmipstranslate
               WHERE  y0mmdatatype = '76' AND
                      y0mmsource = v_target2.
        IF t_det-type NE '3Z'.
          v_gsttotal    = v_gsttotal +
                               ( t_det-zamount * 5 / 100 ).
        ENDIF.
      ENDLOOP.
    Regards,
    Raj.

    Hello,
    Following is the procedure to convert alv output to spool and then it to PDF Format.
    After we display the ALV, we can check whether it is running in the background using system field u2018sy-batchu2018. Then,we call an function module named u2018GET_JOB_RUNTIME_INFOu2019 to get the current job information. Then go to spool request table tbtcp to get the spool id.
    Get current job details
      CALL FUNCTION u2018GET_JOB_RUNTIME_INFOu2019
           IMPORTING
                eventid                 = gd_eventid
                eventparm               = gd_eventparm
                external_program_active = gd_external_program_active
                jobcount                = gd_jobcount
                jobname                 = gd_jobname
                stepcount               = gd_stepcount
           EXCEPTIONS
                no_runtime_info         = 1
                OTHERS                  = 2.
    SELECT * FROM  tbtcp
                     INTO TABLE it_tbtcp
                     WHERE      jobname     = gd_jobname
                               AND jobcount = gd_jobcount
                               AND stepcount = gd_stepcount
                               AND listident <> u20180000000000u2032
                               ORDER BY   jobname
                                                   jobcount
                                                   stepcount.
      READ TABLE it_tbtcp INTO wa_tbtcp INDEX 1.
    Finally, we can call function module u2018CONVERT_ABAPSPOOLJOB_2_PDFu2018 to convert spool reqeust(which is stored in OTF format) to PDF format. Then we can call either function module u2018SO_DOCUMENT_SEND_API1u2032 or SAP BCS (Business Communication Service) to send the pdf as an email attachment.
    CALL FUNCTION u2018CONVERT_ABAPSPOOLJOB_2_PDFu2019
           EXPORTING
                src_spoolid              = gd_spool_nr
                no_dialog                = c_no
                dst_device               = c_device
           IMPORTING
                pdf_bytecount = gd_bytecount
           TABLES
                pdf = it_pdf_output
           EXCEPTIONS
                err_no_abap_spooljob     = 1
                err_no_spooljob          = 2
                err_no_permission        = 3
                err_conv_not_possible    = 4
                err_bad_destdevice       = 5
                user_cancelled           = 6
                err_spoolerror           = 7
                err_temseerror           = 8
                err_btcjob_open_failed   = 9
                err_btcjob_submit_failed = 10
                err_btcjob_close_failed  = 11
                OTHERS                   = 12.
    Regards,
    Sayali
    Edited by: Sayali Paradkar on Apr 20, 2010 12:51 PM

  • How can I get my data back after a family member hacked into my iphone and replaced my data

    A family member hacked into my iPhone and replaced my data with his own data. I am afraid to plug it into iTunes for fear of overwriting my backup. iCloud probably already overwrote. Can I restore the phone without synching first, and then use Time Machine to get back to an earlier backup and re-synch?

    Over two years and no spsonse to this? will there be any point me asking the same?

  • My Macbookpro has turned into microsoft windows and lost all data, how do I recover it with my windows 7 still inside? I accidentally install directly, Help please...

    My Macbookpro has turned into microsoft windows and lost all data, how do I recover it with my windows 7 still inside? I accidentally install directly, Help please...

    ok turn it off manually and turn it back on while holding the apple logo bottor or the function botton this will give you  an option to choose if you want to startup with osx ow windows. let me know if this works
    <Email Edited By Host>

  • I plugged my ipod into the computer and my brothers data replaced mine...how do i get mine back?  my photos...my apps...etc

    i plugged my ipod into the computer and my brothers data replaced mine...how do i get mine back?  my photos...my apps...etc

    Sync it to your computer.

  • Converting into AVI, Mpeg2, and WMV

    What's the best way to convert files into AVI, Mpeg2 and WMV from Final Cut Pro? Should I convert into .mov then convert into those from another program? As far as I know, Final Cut only does Mpeg2. I would like to get the best quality.

    Concerning AVI, it depends on what codec you want within the AVI container. How will the AVI be used? Is it going to be further compressed on a Windows system, or used in Premiere on a Wiindows computer, or perhaps played from within PowerPoint?
    Really, the only good reason to make an AVI any more is to provide compatibility with certain software on the Windows platform that still requires it. Otherwise, Windows Media or Quicktime provide better solutions.

  • Convert from IBM DB2 and IBM Net.Data

    We currently have an DB2 database that will be converted to Oracle. We have developed a web based application using IBM's Net.Data to access the DB2 database. Has anyone converted a Net.Data application for use with Oracle directly of converted the application to something else that would allow access to an Oracle database. Thanks in advance

    Hello,
    unfortunately there is no plugin for DB2 on OS/390 or z/OS.
    Migrations of DB2 needed to be done with the old Oracle Migration Workbench. But that excluded the OS/390 or z/OS platform:
    From the following note in My Oracle Support: Migration from DB2 to Oracle (Doc ID 200288.1):
    At the moment there is not a plug-in for DB2 on OS390/zOS.
    Starting with SQL Developer 2.1, DB2 databases can be migrated using the SQL Developer Migration Workbench. But the "New Feature List 2.1" at http://www.oracle.com/technology/products/database/sql_developer/files/NewFeatureList21.htm is telling us:
    +9. Migrations and Third Party Database Support      Third Party Browsing      DB2 UDB+
    Consult the following My Oracle Support note for further alternatives: Options for Connecting to Foreign Data Stores and Non-Oracle Databases (Doc ID 233876.1)
    One chapter in the mentioned note says:
    If OMWB cannot be used for the migration then other options include a manual
    migration. This could be done using a transparent gateway or generic connectivity
    to copy tables, or by loading data into flat files and loading into the Oracle
    database using SQL*Loader.
    Oracle Consulting can help you to do this.
    Best regards
    Wolfgang
    Edited by: wkobargs on Mar 2, 2010 4:00 AM

  • Sony CCD-FX525 won't import color in IMovie9 with MacBook Pro.  Dipswitch 2 is on.  It's NTSC.  Using yellow composite cable to ADVC110 converter.  Opened GarageBand and played some, then quit.  Still no color.  9pin firewire on Mac to 6pin on Canopus. ??

    Using Canopus ADVC110 analog to digital converter.
    VTR on.
    Dipswitch 2 is on.  Camcorder is NTSC.
    Using RCA cables to connect to front of Canopus.
    9pin firewire on MacBook Pro to 6pin firewire on back of Canopus.
    Held the input select button for 25 seconds since copyright not an issue (home movies).
    Opened Garageband and played some.  Quit.  Reopened IMovie.
    Still can't get color.  Can see video but color not solid.  
    Any ideas?

    Thanks for getting back to me.  I've tried two different yellow RCA cables and went out and bought a yellow composite cable on one end and the S-video on the other to connect to the ADVC110.  Still didn't work.  The picture comes through but the color is not quite there.  I tried connecting camcorder directly to the TV via the yellow RCA cables and same thing so now I'm wondering if it's the camcorder or the analog to digital tv issue.  I'm almost ready to give up.

  • HT1933 I bought this movie for $14.99 and I tryed to download it and it said "error, storage is too full" so I go into my settings and deleted 10 apps and 6 songs and also along with it about 356 photos. And it still won't let me download it. I either wan

    I bought this movie for $14.99 "mud" and I put download, well it said" error, you may not download this movie because your storage is almost full". And all I want is either a refund or a resolution to this problem. And I would like Orr as soon as possible.

    Welcome to Apple Support Communities
    Carry on deleting things because you haven't got enough storage. Note that movies take some GBs of storage

  • K7N2 Delta ILSR and XP2500+ - strange overclocking problem

    Relevant configuration data:
    - K7N2 Delta ILSR (with 7.6 BIOS version)
    - Barton 2500+ (AQXEA)
    - Arctic Silver 3 thermal compound
    - GlobalWin CAK 38 (7000 rpm DELTA, all copper)
    - 2x512 MB Corsair XMS cmx512 3200c2 (it should run 6-3-3-2 at 200MHz on AMD systems according to older documents, and on 6-3-3-2.5 at 200MHz  on AMD systems according to newer documents)
    - PSU Enermax EG465P-VE (430W)
    - Gigabyte ATI Radeon 9800Pro 128MB
    - Battlefield 1942 game  
    I have 2 seperate problems:
    1. When I try to set my proc on 13x166 (Barton XP3000+) BIOS won't recognise that settings and it gives me real-clock rate of 833MHz (and no name, just "Athlon XP"). Just a note, when I set proc to be XP2600 or XP2800, everything is great in BIOS and in real conditions (Windows, Battlefield). I had 7.4 version of BIOS and I tried with new 7.6 version and nothing has changed (as I suspected). Can someone help me about this ?
    2. Second problem is a bit more serious.
    I'm having problems setting my proc to work with 100% stability on 200MHz FSB speed.
    This is what's going on:
    - Behaviour in Windows is pretty much good (no random restarts).
    - Sometimes (on rare occasions) blues screen appears when I'm in windows or some program. Last time when it appeared it said something about "memory managment". I tried to lower memory settings but nothing seemed to be better.
    - If I try to freshly install windows on 200 MHz FSB in 98% of the cases installation will be abrupted (blue screen or resets) or it won't even start to install.
    - What's bothering me the most is this: Battlefield 1942 is crashing on regular basis. Sometimes it can hold for 5 minutes, sometimes 20 minutes, sometimes half an hour. But on certain moment, puff, and I'm out in Windows. Not a computer restart, just it throws me on desktop.
    I've been checking the temperature on regular basis when I'm playing. It is always low.
    I've tried to raise core voltage all the way to 1.8v, but same thing happens.
    I've tried to lower memory settings, but I get same BF crashing.
    I don't know what else to do or what other component to acuse for instability.  
    Can somebody please help me ?
    Thank you in advance !

    Quote
    Originally posted by ellswt
    On the newer 2500+'s the multiplier is locked, this could be your problem
    Nope, because I am changing multiplyers without probs. The only multiplyer that doesn't work is 13x.
    Quote
    ...loosen up your memory timings to add stability, and give it a try again at the 200 mhz fsb without changing the multiplier.
    I drove the memory according to the Corsair's specs, and I drove it on lower settings also. No change.
    Quote
    also you may wish to go up to 2.7 volts for your ram, and 1.7 volts on your processor to add stability, remember sometimes you have to go up gradually a step or two at a time and keep it there for a day or two before you reach your top OC.
    I might try upping ram voltage but that doesn't sound good, because it IS DDR 400 memory (an excellent one too !).
    It's not like I'm trying to drive it over 200MHz. 200MHz is this memory's normal frequency.
     Quote
    Newest video driver from ATI may help with the stability on your gaming.
    Already have newest drivers.
    Anyway, thanks for the tips !  

  • How to Split Single Idoc into 2 files and put some delay

    Hi,
    I have a IDoc to file Scenario. Invoice Idoc to Flat file scenario
    this is a reuse Interface
    Current Scenario we have graphical mapping(used for lookup and dynamic filename, mostly all the field mappings are 1-1) and ABAP Mapping to convert Idoc to flat file, 1 Idoc will generate 1 file.
    In addition to the above case, there is 1 more requirement
    Correction Invoice case. where in I get single Idoc with Multiple Item categories (Original data and Correction data)
    In this case always I need to send two files(2 Idoc data), first Idoc is for Original Idoc and 2nd is Corrected Invoice, these 2 idocs should be sent with some delay.
    In Correction Invoice case, I should generate 2 idocs based on Item category (PSTVY) value.
    Suppose I have 4 E1EDP01 segments out of which PSTVY has value "AA" and "BB" repeated twice as shown below
    <PSTYV>AA</PSTYV>
    <PSTYV>AA</PSTYV>
    <PSTYV>BB</PSTYV>
    <PSTYV>BB</PSTYV>
    So I need to generate 2 Idoc 1 for AA and other for BB.
    If there is no correction Invoice, 1 idoc for 1 file will be generated.
    Am planning to use BPM to delay the idocs and identigy bpm based on Document type else no bpm...
    How do I split the mapping of single Idoc to 2 files based on Item category.
    Thanks,
    Varun

    You can use the multi-mapping to split the message payloads according to business requirement (AA and BB segments values)
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    And then send to different receivers by adding the conditions on the Receiver Determination (for example, "field = AA" go to Receiver1, and "field = BB" to to Receiver2).
    http://help.sap.com/saphelp_nwpi71/helpdata/en/26/5ccd3bb4560f01e10000000a11402f/frameset.htm
    Or even Extended (enhanced) receiver determination, should the scenario be more complex:
    http://wiki.sdn.sap.com/wiki/display/XI/EnhancedReceiverDeterminationinSAP+XI

  • I am new to Mac and am wondering if I make an Album in iPhoto  by moving similar events that have been dated into the album will they just merge or will the events move into the album and keep their date

    I am new to the MacBook Pro and am wondering if I make an Album in iPhoto by using events that have titles and dates will I loose the titles and dates??I had hoped to combine my ie. 2010 Trip pictures  Grandchildren pictures etc but do not want to lose the dating of them.
    What advice does anyone out there have for a program to add text to the pictures. I have been using Paint Shop on my PC but want to switch totally to the MAC
    Thank you

    1 - iPhoto is a database and there is a learning curve - it  is all about photos and nothing about files - under teh help menu ==> iPhoto help watch the movies - that will help get you started more smoothly
    2 - there never is a reason to go directly into the iPhoto library - do not do it (inclusing via the all images display in teh finder) - doing so can cause loss of data and photos
    3 - preview or a third party editor can add text to photos
    4 - events are very basic automatic automatic things and generallly it is best to leave them as buckets of photos and organize via albums and folders - and using keywords, faces and places and smart albums
    5 - dates are part of the metadate stored in the EXIF fields of the photo - moving a photo will not affect that (but note that file managers like the finder do not look at the photo metadate - they look at teh file metadate which is seperate
    L:N

  • Ok so. . . . . i got my ipod to go into diagnostic mode and did some test .

    yea i got it in diagnostic mode finally but, im on the accessorize test and it says
    Please Plug FW
    lcd id : 2
    fwrpwr : 0
    what does that mean? what do i do? plz help.

    Firewire is still faster than USB2. I have an external hard drive that has both types. I have tried tansferring the same set of files to and from the drive using both connections and timing the transfers. Firewire was faster. This is Firewire400 not the newer Firewire800 that is definately faster than USB2.

  • Error while extracting through delta DTP

    Hi All ,
       I am extracting data from one DSO say A to another DSO say B . For the first time when i am executing the first DTP load which is full load it is getting successfully executed . In this DTP the data is being taken from the active table .
    After this when i am executing the delta DTP which is taking data from the change log the process is getting executed . I am getting data in the new data section . But the status of the table is remaining yellow.
    When i am trying to forcefully make it green it is showing "Lock Table Overflow error" .
    Can anyone tell me how to overcome this ??
    thanks
    Sam

    hi Anup ,
       In 3.x we have to run init before delta . but in 7.0 when we run a delta dtp for the first time for loading into a Infoprovider , that delta update is marked as deltainit extraction and then the subsequent delta loads occur successfully .
    Also i have ran that full dtp just to test whether full dtp is also giving same problem or not ? when it succeeded i deleted the data and then ran the delta DTP .
    So the delta DTP is loading data for the first time into the DSO so it will act as deltainit.
    Correct me if i am wrong.

  • I have MTS files imported from a Canon HD cam. They import into I movie and I see them in the Finder folders and they preview fine. I have a new project and some of the clips are freezing and some audio is now gone? Do i need a file converter and convert

    I have MTS video files that import from a Canon Vixia HF S20 HD camera. I imported into I Movie. They converted into MOV files and I see them in the movies folder in finder. They view fine and run through the events folder in Finder. In I Movie, I created a new project and used a "Theme". The project worked fine at first but then some clips started to freeze and some lost audio. The effected clips are the same in the project library and in the event library, meaning they are froze in both places. As I said when i view through finder the MOV files preview and work fine.  Is this inherent to MTS files using in I movie. SHould i consider using a file converter to convert to MOV files prior to importing into I movie.
    I found on Apple support site info that states the MTS files can only be imported through the camera. I am developing my back up procedures and now I am faced with backing up in the original MTS files but not being able to reload if necessary into I movie. Any suggestions?

    I'd like to add that after I import these clips without thumbnails, iMovie does give me an error and say that they could not be imported. No explanation as to why, though. Again, they play fine on my camera.

Maybe you are looking for

  • How to configure iCloud for a family

    WIth the move from MobileMe to iCloud, I am challenged with how to best configure multiple Apple ID's, Mobile Me legacy accounts, and iCloud accounts for a family of four. Intentions: - Have the ability to unify family purchased music, movies, apps,

  • How to build drill down reports in 10g

    Hi everybody, I want build the reports with drill down option.Can any one help regarding this. Also i want to publish that output in Excel sheet. Example: Monthly Commission Statement FOR <MM/YYYY> GAM CODE & GAM NAME :<GAM Code &GAM Name>      GAM U

  • How to view pdf online?

    os: win xp, sp3 i am using adobe reader 9.0; i can't view my pdf's. i tried following the suggestions on the attached link: http://kb2.adobe.com/cps/328/328233.html i tried all the suggestions in the "try these first", adn the first three suggestions

  • Configuring variables for bsp_protcl :// bsp_server /

    Hello all, We have copied our BW and SRM production systems back to our support environment (BW1 and EB1). There is a BW web reporting role that is on both the BW1 and EB1 system however when I execute a report from the role on the EB1 system it trie

  • I get an error message when checking the response arrow icon: What do I do?

    When I respond to a message, it sits in my sent folder. If I wanted to see my response, I could check my inbox on the original email and click on the response arrow icon. Now I get a message "error - Mail was unable to find your response to the messa