(hr)problem with time-event upload

hi friends, flowing codes like rpteup10 program. but we changed it. (december 2005) . but now there is problem not working . it is writing done but infotype 2011 from pa20 there is no change. maybe problem is fm HR_CC1_TIMEEVENT_INSERT. please help me.
note sorry for my english.
report rpteup10 no standard page heading.
* Die Struktur der eingelesenen Saetze ist in der Feldleiste EXTREC
* beschrieben.
* Die Umsetzung der Saetze in die Struktur TIMEEVENT erfolgt in FORM
* SET_EXTREC_TO_TIMEEVENT. Die Zuweisung erfolgt an die Feldleiste
* timeevent.
* The structure of the imported records is described in the internal
* structure EXTREC.
* The transport of the imported records into the structure TIMEEVENT
* is done in FORM SET_EXTREC_TO_TIMEEVENT.
tables: teven.
data: begin of extrec occurs 0.
        include structure z1hrkk1teup.
data: end of extrec.
data: timeevent like cc1_timeevent occurs 0 with header line.
data: last_timeevent like cc1_timeevent.
data: skipped_timeevent like cc1_timeevent occurs 0 with header line.
data: begin of stat occurs 1,
        ldate like teven-ldate,
        anzhl(4) type p value 1,
      end of stat.
data: l_posted_timeevents   like sy-dbcnt,
      l_faulty_timeevents   like sy-dbcnt,
      l_locked_timeevents   like sy-dbcnt,
      l_total_timeevents    like sy-dbcnt,
      l_uploaded_timeevents like sy-dbcnt,
      l_skipped_timeevents  like sy-dbcnt.                  "P40K025970
data: msg(100).
* Syntax von MASKE siehe Doku FB WS_FILENAME_GET
data: begin of maske,
        f01(30),
        '*.txt',
        f02(30),
      end of maske.
selection-screen begin of block quelle with frame title text-src.
* Pushbuttons for selection of source
selection-screen begin of line.
parameters:
  dataset like rptxxxxx-kr_feld1
    radiobutton group g001 default 'X'.
selection-screen comment 03(30) text-010.
parameters:
     file like rptaxxxx-rfile default '/usr/sap/up.tmp'.
selection-screen end of line.
selection-screen begin of line.
parameters:
   workstn like rptxxxxx-kr_feld1
      radiobutton group g001.
selection-screen comment 03(30) text-011.
parameters:
     name like rlgrap-filename default 'A:UPLOAD.TXT'.
selection-screen end of line.
selection-screen end of block quelle.
selection-screen begin of block frm1 with frame title text-par.
parameters:
     upload like rptxxxxx-kr_feld1 default 'X',
     update like cc1par-x_verb default 'X',
     protokol like rptxxxxx-kr_feld2 default 'X'.
selection-screen end of block frm1.
*                      AT SELECTION-SCREEN                            *
at selection-screen.
*            AT SELECTION-SCREEN ON VALUE-REQUEST FOR ...             *
at selection-screen on value-request for name.
  call function 'WS_FILENAME_GET'
       exporting
*           DEF_FILENAME     = 'hallo'
            def_path         = 'C:'
            mask             = maske
*           MODE             = 'O'
*           TITLE            = ' '
       importing
            filename         = name
*           RC               =
      exceptions
            inv_winsys       = 1
            no_batch         = 2
            selection_cancel = 3
            selection_error  = 4
            others           = 5.
* end of -------------------------------------------------- "P30K108491
initialization.
start-of-selection.
  perform check_parameters.
  if not workstn is initial.
    call function 'WS_UPLOAD'
           exporting
                filename            = name
                filetype            = 'ASC'
           tables
                data_tab            =  extrec
         exceptions
              conversion_error    = 1
*         FILE_OPEN_ERROR     = 2
              file_read_error     = 3
              invalid_table_width = 4
              invalid_type        = 5
              no_batch            = 6
              unknown_error       = 7
              others              = 8.
    if sy-subrc eq 2.
      write: / 'Fehlerhafter Pfadname'(013).
    endif.
  elseif not dataset is initial.
    open dataset file for input message msg.
    if sy-subrc ne 0.
      write: / msg.
      stop.
    endif.
    do.
      read dataset file into extrec.
      if sy-subrc ne 0. exit. endif.
      append extrec.
    enddo.
  else.
* Nur zum Testen
    extrec-zausw = '10005301'.
    extrec-satza = 'P10'.
    extrec-ldate = sy-datum.
    extrec-ltime = '120000'.
*    extrec-otype = 'S '.
*    extrec-plans = '12345678'.
*    extrec-usrup = 'VIELZWECKFELD'.
    append extrec.
    extrec-ltime = '140000'.
    extrec-satza = 'Z10'.
    append extrec.
  endif.
  loop at extrec.
    check not extrec is initial.
    perform set_extrec_to_timeevent.
    perform append_timeevent.
    perform fill_stat.
  endloop.
*for double entry
  CLEAR SKIPPED_TIMEEVENT. REFRESH SKIPPED_TIMEEVENT.
  LOOP AT TIMEEVENT.
  SELECT SINGLE * FROM TEVEN WHERE PERNR = TIMEEVENT-PERNR AND
                                   LDATE = TIMEEVENT-LDATE AND
                                   LTIME = TIMEEVENT-LTIME AND
                                   SATZA = TIMEEVENT-SATZA AND
                                   STOKZ = ''.
  IF SY-SUBRC EQ 0.
    MOVE-CORRESPONDING TIMEEVENT TO SKIPPED_TIMEEVENT.
    APPEND SKIPPED_TIMEEVENT.
    DELETE TIMEEVENT.
  ENDIF.
  ENDLOOP.
  if protokol eq 'X'.
    perform show_timeevent.
    perform show_skipped_timeevent.
  endif.
  if upload eq 'X'.
    describe table timeevent lines sy-tfill.
    if not timeevent[] is initial.
      perform get_numbers.
      call function 'HR_CC1_TIMEEVENT_INSERT'
           tables
                timeevent = timeevent
           exceptions
                others    = 1.
      commit work.
      describe table timeevent lines l_uploaded_timeevents.
    endif.
  endif.
  if update eq 'X'.
    call function 'HR_CC1_TIMEEVENT_POST'
         importing
              posted_timeevents  = l_posted_timeevents
              faulty_timeevents  = l_faulty_timeevents
              locked_timeevents  = l_locked_timeevents
              skipped_timeevents = l_skipped_timeevents     "P40K026655
         exceptions
              others            = 0.
*       Zeitpunkt zur Steuerung der Batchverarbeitung setzen
*   GET TIME.
*   start_datum = sy-datum.
*   start_uzeit = sy-uzeit + 10.
*       Übergabe Steuerungsparameter an Task-handler -> BATCH !
*   CALL FUNCTION 'START_OF_BACKGROUNDTASK'
*        EXPORTING
*             startdate = start_datum
*             starttime = start_uzeit
*        EXCEPTIONS
*             others    = 1.
    commit work.
  endif.
* PERFORM show_stat.
  perform show_verarbeitung.
*=====================================================================*
*    FORM SET_EXTREC_TO_TIMEEVENT                                     *
*       Hier ist gegebenenfalls Sondercoding erforderlich.            *
form set_extrec_to_timeevent.
* Nutzdaten
  move-corresponding extrec to timeevent.
*  move: extrec-otype to timeevent-pdc_otype,
*        extrec-plans to timeevent-pdc_plans,
*        extrec-usrup to timeevent-pdc_usrup.
* technische Felder
  timeevent-indeu = 'I'.
endform.
*       FORM APPEND_timeevent.
form append_timeevent.
*  IF sorted EQ 'X'.
** Die Sätze sind nach Ausweisnummer gruppiert,
** performant: nur den letzten Satz vergleichen.
*    IF timeevent-zausw EQ last_timeevent-zausw AND
*       timeevent-ldate EQ last_timeevent-ldate AND
*       timeevent-ltime EQ last_timeevent-ltime AND
*       timeevent-erdat EQ last_timeevent-erdat AND
*       timeevent-ertim EQ last_timeevent-ertim .
*      DESCRIBE TABLE timeevent LINES sy-tfill.
*      MODIFY timeevent INDEX sy-tfill.
*      skipped_timeevent = last_timeevent.
*      APPEND skipped_timeevent.
*    ELSE.
*      APPEND timeevent.
*    ENDIF.
*    last_timeevent = timeevent.
*  ELSE.
* Die Sätze sind nicht sortiert,
* immer mit allen vorhandenen Sätzen vergleichen.
    read table timeevent into last_timeevent
                      with key  zausw = timeevent-zausw
                                ldate = timeevent-ldate
                                ltime = timeevent-ltime
                                erdat = timeevent-erdat
                                ertim = timeevent-ertim
                      binary search.
    if sy-subrc eq 0.
* Früherer Eintrag wird protokolliert und überschrieben.
      modify timeevent index sy-tabix.
      skipped_timeevent = last_timeevent.
      append skipped_timeevent.
    else.
      insert timeevent index sy-tabix.
    endif.
*  ENDIF.
endform.
*       FORM CHECK_PARAMETERS                                         *
form check_parameters.
  if file eq space.
    write: / 'Bitte Namen für seq. Datenbestand angeben'(e01).
    stop.
  endif.
endform.
*       FORM FILL_STAT                                                *
form fill_stat.
  read table stat with key timeevent-ldate binary search.
  if sy-subrc eq 0.
    add 1 to stat-anzhl.
    modify stat index sy-tabix.
  else.
    move timeevent-ldate to stat-ldate.
    move 1 to stat-anzhl.
    insert stat index sy-tabix.
  endif.
endform.
*       FORM SHOW_STAT                                                *
form show_stat.
  skip 1.
  summary.
  format color col_background intensified.
  write:    'Statistik                     '(s06)
            color col_background intensified off.
  write: /(23)  sy-uline.
  format color col_heading.
  write: / sy-vline no-gap.
  write:  (10) 'Datum     '(s07) no-gap.
  write:   sy-vline no-gap.
  write:   (10) 'Sätze     '(s10) no-gap.
  write:   sy-vline.
  write: /(23) sy-uline.
  loop at stat.
    write: /  sy-vline no-gap.
    format color col_key.
    write:    stat-ldate no-gap.
    write:    sy-vline no-gap.
    format color col_normal.
    write: (10) stat-anzhl no-gap.
    write:    sy-vline no-gap.
  endloop.
  write: /(23) sy-uline.
endform.
*       FORM SHOW_VERARBEITUNG                                        *
form show_verarbeitung.
  l_total_timeevents = l_posted_timeevents +
                       l_faulty_timeevents +
                       l_locked_timeevents.
  skip 1.
  summary.
  format color col_background intensified.
  write:    'Verarbeitung                  '(par)
            color col_background intensified off.
  write: /(78)  sy-uline.
  format color col_heading.
  write: / sy-vline no-gap.
  write:  (65) ' ' no-gap.
  write:   sy-vline no-gap.
  write:   (10) 'Sätze     '(s10) no-gap.
  write:   sy-vline.
  write: /(78) sy-uline.
  write: /  sy-vline no-gap.
  format color col_key.
  write: (65) 'in Schnittstelle gestellt'(v01) no-gap.
  write:    sy-vline no-gap.
  format color col_normal.
  write: (10) l_uploaded_timeevents no-gap.
  write:    sy-vline no-gap.
  write: /  sy-vline no-gap.
  format color col_key.
  write: (65) 'aus Schnittstelle gelesen'(v02)  no-gap.
  write:    sy-vline no-gap.
  format color col_normal.
  write: (10) l_total_timeevents no-gap.
  write:    sy-vline no-gap.
  write: /  sy-vline no-gap.
  format color col_key.
  write: (65) 'in Zeitwirtschaft verbucht'(v03)  no-gap.
  write:    sy-vline no-gap.
  format color col_normal.
  write: (10) l_posted_timeevents no-gap.
  write:    sy-vline no-gap.
  write: /  sy-vline no-gap.
  format color col_key.
  write: (65) 'in Fehlervorrat gestellt'(v04)    no-gap.
  write:    sy-vline no-gap.
  format color col_normal.
  write: (10) l_faulty_timeevents no-gap.
  write:    sy-vline no-gap.
  write: /  sy-vline no-gap.
  format color col_key.
  write: (65)
         'in Schnittstelle belassen, da Personalnummer gesperrt'(v05)
         no-gap.
  write:    sy-vline no-gap.
  format color col_normal.
  write: (10) l_locked_timeevents no-gap.
  write:    sy-vline no-gap.
  write: /  sy-vline no-gap.                                "P40K026655
  format color col_key.                                     "P40K026655
  write: (65) 'durch Zeitwirtschaft verworfen'(v06) no-gap. "P40K026655
  write:    sy-vline no-gap.                                "P40K026655
  format color col_normal.                                  "P40K026655
  write: (10) l_skipped_timeevents no-gap.                  "P40K026655
  write:    sy-vline no-gap.                                "P40K026655
  write: /(78) sy-uline.
endform.
*    FORM SHOW_timeevent                                              *
form show_timeevent.
  summary.
  format color col_background intensified.
  write:    'Protokoll                     '(s08)
            color col_background intensified off.
  write: /(78) sy-uline.
  format color col_heading.
  write: / sy-vline no-gap.
  write: (10) 'PersNr.   '(001) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Zeitausw. '(002) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Datum     '(003) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Uhrzeit   '(004) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Satzart   '(005) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Terminal  '(006) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'An/Abw    '(007) no-gap.
  write:   sy-vline no-gap.
  write: /(78) sy-uline.
  format color col_normal.
  loop at timeevent.
    write: / sy-vline no-gap.
    write: (10) timeevent-pernr no-zero no-gap,
                sy-vline no-gap,
           (10) timeevent-zausw no-zero no-gap,
                sy-vline no-gap,
           (10) timeevent-ldate no-gap,
                sy-vline no-gap,
           (10) timeevent-ltime no-gap,
                sy-vline no-gap,
           (10) timeevent-satza no-gap,
                sy-vline no-gap,
           (10) timeevent-terid no-gap,
                sy-vline no-gap,
           (10) timeevent-abwgr no-gap,
                sy-vline no-gap.
  endloop.
  write: /(78) sy-uline.
endform.
*       FORM SHOW_SKIPPED_timeevent                                   *
form show_skipped_timeevent.
  check not skipped_timeevent[] is initial.
  skip 1.
  summary.
  format color col_background intensified.
* WRITE:    'Überschriebene Sätze'(s09)                     "P40K026655
  write:    'Überlesene doppelte Sätze'(s09)                "P40K026655
            color col_background intensified off.
  write: /(78) sy-uline.
  format color col_heading.
  write: / sy-vline no-gap.
  write: (10) 'PersNr.   '(001) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Zeitausw. '(002) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Datum     '(003) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Uhrzeit   '(004) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Satzart   '(005) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'Terminal  '(006) no-gap.
  write:   sy-vline no-gap.
  write: (10) 'An/Abw    '(007) no-gap.
  write:   sy-vline no-gap.
  write: /(78) sy-uline.
  format color col_normal.
  loop at skipped_timeevent into timeevent.
    write: / sy-vline no-gap.
    write: (10) timeevent-pernr no-zero no-gap,
                sy-vline no-gap,
           (10) timeevent-zausw no-zero no-gap,
                sy-vline no-gap,
           (10) timeevent-ldate no-gap,
                sy-vline no-gap,
           (10) timeevent-ltime no-gap,
                sy-vline no-gap,
           (10) timeevent-satza no-gap,
                sy-vline no-gap,
           (10) timeevent-terid no-gap,
                sy-vline no-gap,
           (10) timeevent-abwgr no-gap,
                sy-vline no-gap.
  endloop.
  write: /(78) sy-uline.
endform.
*       FORM GET_NUMBERS                                              *
form get_numbers.
  data: retcd  like inri-returncode,
        quantity_wanted like inri-quantity,
        number          like pdsnr-pdsnr,
        object like inri-object      value 'PD_SEQ_NR',
        range  like inri-nrrangenr   value '01',
        quantity_get    like inri-quantity .
  describe table timeevent lines quantity_wanted.
  check quantity_wanted gt 0.
  call function 'NUMBER_GET_NEXT'
       exporting
            object                  = object
            nr_range_nr             = range
            quantity                = quantity_wanted
       importing
            returncode              = retcd
            number                  = number
            quantity                = quantity_get
       exceptions
            object_not_found        = 1
            interval_not_found      = 2
            number_range_not_intern = 3.
  case sy-subrc.
    when 0.
      case retcd.
        when 1.                        "kritischer Bereich
          message w093(53) with object number.
        when 2.                        "erschöpft
          message e094(53) with object number.
        when 3.                        "erschöpft
          message e094(53) with object number.
      endcase.
    when 1.                            "Objekt nicht angelegt
      message a090(53) with object.
    when 2.                            "Intervall nicht angelegt
      message a091(53) with object number.
    when 3.                            "Intervall nicht intern
      message a092(53) with object number.
  endcase.
  loop at timeevent.
    timeevent-pdsnr = number - quantity_wanted + sy-tabix.
    modify timeevent.
  endloop.
  commit work.
endform.
Message was edited by:
        Fatih AYDIN

Hi Atish,
ok you are right. I add new function to solve problem. its HR_TMW_DB_UPDATE_TEVENT.
i am directly insert to teven with that fm.  but I want to solve why it is not working. it was working before and now its working now just some personel. i will become insane. what is problem?
note my name is Fatih, not Faith.

Similar Messages

  • LIssue with time events upload through RPTEUP10

    Dear experts,
    I am using the standard report RPTEUP10 for uploading time events in IT 2011. It works fine but in the log, it just indicates the number of records read, posted, placed in the error pool ...
    Can we by any chance know the PERNRs for which the upload failed? The FM HR_CC1_TIMEEVENT_INSERT directly takes table of time events as parameter.
    Will I have to put this FM inside a loop and pass a each entry for each PERNR separately, so that I could catch the failed PERNRs? or is there any standard solution to this?
    Please advice.
    Regards,
    Sumit Nene

    Hi,
    Actually we tried to upload the data manually through RPTEUP10 using txt file and also our client also want this for few locations.
    But we are unable to sort it out.
    I have gone through your document  and we adopted for automatic recording process as  my colleague confirmed it works excellent.
    But the problem is with manual uploading, the same is not showing in it 2011.
    any changes required in 2011 or 0050 before recording.
    it 0007, 1-1 is selected.
    please suggest some measure to achieve this.
    Regards,
    Sumana

  • At event calendering site, getting message "There was a problem with your event submission. If you have disabled JavaScript please enable it and try your submission again." Javascript is ENABLED on my computer.

    I'm trying to submit an event to the events calendar at http://calendar.jtnews.net/events/index.php?com=submit. After I enter the Authentication words and press Enter, I get the message, "There was a problem with your event submission. If you have disabled JavaScript please enable it and try your submission again." According to my Firefox/Tools, etc., button, Javascript is enabled. I

    Hello mjswooosh,
    I'm very disheartened to hear that you've had ongoing problems when attempting to order from BestBuy.com. Our goal is ever to provide a fun and efficient shopping environment! Certainly creating aggravation serves neither you nor us and I apologize sincerely for this having been your experience.
    We recommend the troubleshooting steps you mentioned (i.e., clearing the browser cache, deleting temporary internet files and cookies) because this is the most common cause of this type of problem. I too have encountered this issue from time to time and these steps have almost always resolved the problem. I say almost always because there's one further step you can try: ensure that you have signed out of BestBuy.com, then perform the browser maintenance steps we've recommended. Afterward, before signing in to BestBuy.com, add your desired items to your cart and sign in as part of the checkout process. When the standard steps have not netted a resolution for me, this has solved the problem each time.
    I hope this helps. I'm very grateful that you took the time to write to us with your concerns and for sharing your very valuable feedback about your online experience.
    Sincerely,
    John|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Hi, I have the following problem with Time Capsule: La imagen del disco de copia de seguridad "/Volumes/Data/MacBook Pro de Carlos.sparsebundle" ya está en uso. Please your comments to solve this problem, i can't made a backup. Thanks.

    Hi, I have the following problem with Time Capsule: La imagen del disco de copia de seguridad “/Volumes/Data/MacBook Pro de Carlos.sparsebundle” ya está en uso. Please your comments to solve this problem, i can't made a backup. Thanks.

    Try Here  >  http://pondini.org/TM/Time_Capsule.html
    Perhaps P 2  >  Time Machine could not complete . . . sparsebundle could not be accessed. (Error 109).

  • Problem with Time Dimension generating

    Hello, everybody.
    I have a problem with Time Dimension generating with the help of the Standard Wizard.
    1. I choose Dimensions -> New -> Using Time Wizard
    2. Set Name as "Time"
    3. On the next screen I choose ROLAP: Relational Storage
    4. On the next screen set Start year: 2003, Number of years: 3
    5. On the next screen choose all levels of the Normal Hierarchy
    On the 6-th step Wizard complete 60% of job and hang up doing nothing (buttons "Cancel" and "Help" is active).
    chapter "Create REL_TIME Dimension Using the TIME Dimension Wizard", step 1-6 of tutorial =(
    http://www.oracle.com/technology/obe/11gr1_owb/owb11g_update_getting_started_intro/lesson3/less3_relational.htm
    My system characteristics:
    Builder client 11.1.0.7.0, warehouse at local computer.
    can anybody give me any advice about this problem? =(
    thanks in advance.

    Had this issue been solved please?
    I have just come across the exact same problem and this post is the only one i managed to find which describes exactly what is happening to me.
    Thanks

  • HT1338 problems with time  machine and parallels desktop,  mac osx mountain lion 10.8

    have a good day, i have been problems with time  machine and parallels desktop, dont work in mac osx 10.8, i upgrate two mac´s (macbook air, imac), in the two machines shows problems, could you help me please.
    two machines have good ram memory (macbook air 11.1 2010 early , imac 2009 late).
    i am waiting for your help.
    thanks.
    Jesus.

    Take a look here:
    http://pondini.org/TM/Troubleshooting.html
    Specifically, you'll probably want to try item #A5 on that page, but there's a lot of other info there that may be useful.

  • Problems with close event scripts and closing Photoshop

    Hi!
    We are having problems with close event scripts ("Cls ") when closing/quitting Photoshop.
    The close event scripts are working without problem when closing an image. But when quitting Photoshop without having closed all images we are observing the following behaviour:
    with CS2 the close event scripts are not triggered at all
    with CS4  the close event scripts are triggered and executed correctly. But after that the Photshop process freezes. No visible GUI, you have to kill the process with the task manager.
    I can reproduce this behaviour even with a small script consisting of a single alert('hello') and even an empty script. Is this an known bug or am I doing something wrong?
    Thanks for your help!
      Eric

    Check your energy saver settings under system preferences. That is where you set sleep setting.

  • Problem with Time Capsule backup

    My Time Capsule is a first gen (500 GB), and I recently upgraded to Lion on my iMac. It seems like right around the time I upgraded that I started having problems with Time Machine backups. They will complete, but then the disk does not eject from my desktop. I am running the Time Capsule buddy widget, and here's the log file:
    Starting standard backup
    Network destination already mounted at: /Volumes/TimeCapsule
    QUICKCHECK ONLY; FILESYSTEM CLEAN
    Disk image /Volumes/TimeCapsule/Stefano.sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    100.0 MB required (including padding), 174.27 GB available
    Copied 2353 files (2.0 MB) from volume Macintosh HD.
    100.0 MB required (including padding), 174.27 GB available
    Copied 1656 files (718 KB) from volume Macintosh HD.
    Starting post-backup thinning
    No post-back up thinning needed: no expired backups exist
    Backup completed successfully.
    Waiting for Spotlight to finish indexing /Volumes/Time Machine Backups/Backups.backupdb
    Waiting for Spotlight to finish indexing /Volumes/Time Machine Backups/Backups.backupdb
    Stopping backup to allow backup destination disk to be unmounted or ejected.
    Backup failed because the destination disk was ejected or disconnected unexpectedly!
    You can see at the end where I ejected the disk manually.

    I finally resolved this.  However, I had to erase the entire backup on my 3tb and start with a new backup.  I connected via hardwire to make it go faster.  No problems now.

  • No batch input problem with Vendor master Upload

    Hi All,
    I am getting a problem with Vendor Master upload conversion. We have'nt change the code and configuration but when i try to run the code today its giving an error for particular Account group. I run this code yesterday and its work fine with that particluar Account group. But i am getting an error when i run the code today. The error is as follows "No batch input data for screen SAPMF02K 0610".When i got through the code i have'nt find that screen number.
    Can anyone suggest how to resolve that problem.

    Double click on the session name in SM35 and click on the screens tab there you can find the screen number.
    process the same session in foreground mode and see if you are getting the same error.
    If so, the new screen number you got is due to some change in the settings some where, show the new screen to Your Functional guy and he can help you.
    There is one more chance where some data is missing in the flat file, just check it out.
    Reward points if usefull.
    Thanks ,
    Veeru.

  • Since I upgraded to 10.7.2 lion I have these problems with Time Capsule. What is the problem? thanks

    since I upgraded to 10.7.2 lion I have these problems with Time Capsule. What is the problem? thanks

    Unable to access disk image backup "/ Volumes / Time Capsule / iMac Admin. Sparsebundle" (error -1).
    Then?????

  • Another problem with Time Machine

    This is the second time I have experienced the following problem with Time Machine. After 2 months of backups it gets to a point where backups fail and I cannot enter time machine. In each instance I have only used 110GB of the 500GB space.
    Is there a better solution to fixing this problem than deleting the sparsebundle? That seems to be the only way to get it to back up again.

    backup is failing again:
    Oct 28 08:39:58 MBA /System/Library/CoreServices/backupd[8307]: Starting standard backup
    Oct 28 08:40:02 MBA /System/Library/CoreServices/backupd[8307]: FSMatchAliasBulk returned 0 while resolving alias to backup target
    Oct 28 08:40:07 MBA /System/Library/CoreServices/backupd[8307]: Backup failed with error: 19
    Oct 28 09:22:57 MBA /System/Library/CoreServices/backupd[8464]: Starting standard backup
    Oct 28 09:22:58 MBA /System/Library/CoreServices/backupd[8464]: Network mountpoint /Volumes/MPTC not owned by backupd... remounting
    Oct 28 09:22:59 MBA /System/Library/CoreServices/backupd[8464]: Network volume mounted at: /Volumes/MPTC-1
    Oct 28 09:22:59 MBA /System/Library/CoreServices/backupd[8464]: Backup requested due to disk attach
    Oct 28 09:23:28 MBA /System/Library/CoreServices/backupd[8464]: Disk image /Volumes/MPTC-1/MBA_001f5bd2c764.sparsebundle mounted at: /Volumes/Backup of MBA
    Oct 28 09:23:32 MBA /System/Library/CoreServices/backupd[8464]: Backing up to: /Volumes/Backup of MBA/Backups.backupdb
    Oct 28 09:23:32 MBA /System/Library/CoreServices/backupd[8464]: Backup requested due to disk attach
    Oct 28 09:25:44 MBA /System/Library/CoreServices/backupd[8464]: No pre-backup thinning needed: 242.1 MB requested (including padding), 351.94 GB available
    Oct 28 09:41:34 MBA /System/Library/CoreServices/backupd[8464]: Copied 990 files (72.4 MB) from volume MacBook Air HD.
    Oct 28 09:41:35 MBA /System/Library/CoreServices/backupd[8464]: No pre-backup thinning needed: 159.6 MB requested (including padding), 351.94 GB available
    Oct 28 09:44:09 MBA /System/Library/CoreServices/backupd[8464]: Bulk setting Spotlight attributes failed.
    Oct 28 09:46:13 MBA /System/Library/CoreServices/backupd[8464]: Copied 879 files (2.2 MB) from volume MacBook Air HD.
    Oct 28 09:47:18 MBA /System/Library/CoreServices/backupd[8464]: Starting post-backup thinning
    Oct 28 09:49:15 MBA /System/Library/CoreServices/backupd[8464]: Deleted backup /Volumes/Backup of MBA/Backups.backupdb/MBA/2008-10-27-090710: 351.94 GB now available
    Oct 28 09:50:46 MBA /System/Library/CoreServices/backupd[8464]: Deleted backup /Volumes/Backup of MBA/Backups.backupdb/MBA/2008-10-27-061332: 351.94 GB now available
    Oct 28 09:52:53 MBA /System/Library/CoreServices/backupd[8464]: Deleted backup /Volumes/Backup of MBA/Backups.backupdb/MBA/2008-10-27-050805: 351.94 GB now available
    Oct 28 09:52:53 MBA /System/Library/CoreServices/backupd[8464]: Post-back up thinning complete: 3 expired backups removed
    Oct 28 09:52:53 MBA /System/Library/CoreServices/backupd[8464]: Backup completed successfully.
    Oct 28 09:53:11 MBA /System/Library/CoreServices/backupd[8464]: Attempt to eject diskimage failed with status: -47, dissenting pid: 0
    Oct 28 10:23:16 MBA /System/Library/CoreServices/backupd[8603]: Starting standard backup
    Oct 28 10:23:19 MBA /System/Library/CoreServices/backupd[8603]: Network volume mounted at: /Volumes/MPTC-1
    Oct 28 10:23:27 MBA /System/Library/CoreServices/backupd[8603]: Disk image /Volumes/MPTC-1/MBA_001f5bd2c764.sparsebundle mounted at: /Volumes/Backup of MBA
    Oct 28 10:23:27 MBA /System/Library/CoreServices/backupd[8603]: Backing up to: /Volumes/Backup of MBA/Backups.backupdb
    Oct 28 10:23:28 MBA /System/Library/CoreServices/backupd[8603]: Error: (-50) Creating directory 2008-10-28-102328.inProgress
    Oct 28 10:23:28 MBA /System/Library/CoreServices/backupd[8603]: Failed to make snapshot container.
    Oct 28 10:23:33 MBA /System/Library/CoreServices/backupd[8603]: Backup failed with error: 2
    Oct 28 10:23:33 MBA /System/Library/CoreServices/backupd[8603]: Attempt to eject diskimage failed with status: -47, dissenting pid: 0
    Oct 28 11:23:16 MBA /System/Library/CoreServices/backupd[8729]: Starting standard backup
    Oct 28 11:23:16 MBA /System/Library/CoreServices/backupd[8729]: Network volume mounted at: /Volumes/MPTC-1
    Oct 28 11:23:20 MBA /System/Library/CoreServices/backupd[8729]: Disk image /Volumes/MPTC-1/MBA_001f5bd2c764.sparsebundle mounted at: /Volumes/Backup of MBA
    Oct 28 11:23:20 MBA /System/Library/CoreServices/backupd[8729]: Backing up to: /Volumes/Backup of MBA/Backups.backupdb
    Oct 28 11:23:21 MBA /System/Library/CoreServices/backupd[8729]: Error: (-50) Creating directory 2008-10-28-112321.inProgress
    Oct 28 11:23:21 MBA /System/Library/CoreServices/backupd[8729]: Failed to make snapshot container.
    Oct 28 11:23:26 MBA /System/Library/CoreServices/backupd[8729]: Backup failed with error: 2
    Oct 28 11:23:26 MBA /System/Library/CoreServices/backupd[8729]: Attempt to eject diskimage failed with status: -47, dissenting pid: 0
    Oct 28 11:24:05 MBA /System/Library/CoreServices/backupd[8729]: Stopping backupd to allow ejection of backup destination disk!
    Oct 28 11:24:11 MBA /System/Library/CoreServices/backupd[8747]: Backup requested by user
    Oct 28 11:24:11 MBA /System/Library/CoreServices/backupd[8747]: Starting standard backup
    Oct 28 11:24:11 MBA /System/Library/CoreServices/backupd[8747]: Network volume mounted at: /Volumes/MPTC-1
    Oct 28 11:24:12 MBA /System/Library/CoreServices/backupd[8747]: Disk image /Volumes/MPTC-1/MBA_001f5bd2c764.sparsebundle mounted at: /Volumes/Backup of MBA
    Oct 28 11:24:12 MBA /System/Library/CoreServices/backupd[8747]: Backing up to: /Volumes/Backup of MBA/Backups.backupdb
    Oct 28 11:24:12 MBA /System/Library/CoreServices/backupd[8747]: Error: (-50) Creating directory 2008-10-28-112412.inProgress
    Oct 28 11:24:12 MBA /System/Library/CoreServices/backupd[8747]: Failed to make snapshot container.
    Oct 28 11:24:17 MBA /System/Library/CoreServices/backupd[8747]: Backup failed with error: 2
    Oct 28 11:24:17 MBA /System/Library/CoreServices/backupd[8747]: Attempt to eject diskimage failed with status: -47, dissenting pid: 0

  • Problem with Time Capsule after backup session

    I have a problem with Time Capsule after a backup session. Our two Macs (on Maverick) loose connection with the station and the only thing that seems to help is unplugging the Time Capsule  and starting it again! After the next backup session the same thing happens again. The Macs seem not to be able to hold on to the connection and continually loose it.  The iPhones and iPads that we have (4 units) are not affected - it is the Mac Mini and Mac Powerbook that experiences this problem!
    I would be grateful for your help!
    Thor

    This is standard Mac issues and has been a bug floating around since Lion.. it hits some people worse than others.. but once it starts it is awful hard to get rid of.
    Just to confirm the connection to internet is not a problem?? Just the hard disk drops out?
    I recommend you
    1. Reset the TC to factory.. and start over with all new names.. short, no spaces pure alphanumeric.
    TC name and wireless name/s should conform. By default the disk share name is data which is fine.
    2. Mavericks has changed over from using AFP to SMB for network filesharing.. why Apple why??
    This is unhelpful to say the least. Many many people are struggling with TC and being unable to mount the network drive.
    So do it manually and force it back to AFP.
    In Finder use top menu, Go, Connect to Server.
    Type AFP://TCname or TCIPaddress (it must be the network name of actual TC.. or its IP address)
    When the computer locates the resource it will ask for a password.. it is public by default.. supply your password or public and save it in the keychain.
    3. Delete the existing TM setup and start over.. See A4 here. http://pondini.org/TM/Troubleshooting.html
    I cannot promise this will fix it but should reduce the problem to now and then.. rather than every time TM needs to backup.

  • I am having problems with Time Machine and having enough space to finish my last back up.

    I am having problems with Time Machine and having enough space to finish my last back up.

    Take a look at this link, http://support.apple.com/kb/HT1427

  • Problem with Time Capsule after upgrading to firmware 7.6.1

    I am currently using Time Capsule Firmware 7.6 and just upgraded to 7.6.1. After the upgrade, my IPad 2 cannot access iTune, App Store and Safari cannot access any web-site. Email and other Apps which require Internet access have no problem with connection. My other Apple devices like iPhone and Mac Pro have no problem with Internet access and can access App Store, and Safari can access web site as normal.
    I tried to downgrade the Firmware back to 7.6. After the downgrade, iPad 2 can now access iTune and App Store. However, Internet access via Ipad 2 is very slow, at only 1M download and 0.2M upload Internet speed. The same issue occur with my other iPad 1 too. When I check Internet speed on iPhone 4 and Mac Pro, the result is normal, at 25M download internet speed.
    Please let me know how I can resolve this problem.

    I just read other discussion treads on Time Capsule Firmware upgrade to 7.6.1. It seems the whole community is having the same issue ie slow Internet connection speed and even some users are reporting unstable connection. If Apple is reading these treads, Apple should do something to either stop allowing the Firmware upgrade to 7.6.1 or rectify the issue with another Firmware upgrade without this problem.
    If Apple has read and is not taking any action, then, we all should question what exactly is the management hired for?

  • Wireless comm problem with time capsule or airport extreme using iMac G5

    I did buy a Time Capsule and an iMac 20" G5 January 2009...Installed all the components and created a wireless network...MacBook, iPhone and iPod Touch connected perfectly...iMac connected but started to drop communications with Time Capsule...Safari, iTunes and other internet-access programs had problems to connect 100% with the web...After reviewing all the post here and "testing/trying" several parameters, I found out that you need to define a WPA/WPA2 password protection with more than 13 characters...FYI, Time capsule is configured using 802.11n (b/g compatible)...

    Further to Bob's comments..
    A Gen1 TC will be using marvel wireless chip and your 2008 and 2010 Macbook will use atheros and/or broadcom cards.. Just open your system profiler and look for info on the airport. We find the mixture of wireless chipsets especially older draft N and later N products can give very varied results.
    The very fact you are linking at 270 and not 300mbps shows some reduction from theoretical max speed.. and really to get over 100mbps with any wireless you need perfect setup.. matched wireless chips etc.
    Do a test uploading and downloading a file to the TC to see if the LAN speed is better than internet speed.
    In reality I think you are doing especially well.. we see loads of people complaining about slow internet here who are getting less than 10% of the speed they get direct when routed through the TC. And on most occasions the limit in speed is not really going to affect what you do, as the real links to the internet are not that fast.

Maybe you are looking for

  • Storage system - DMS

    hi, My client has his document data on some system on a network drive. How can i add this location as one of my the storage systems for the document/s i create. Pls somebody suggest! Thanks in advance

  • Error on class attribute... pls. help!

    hi! i am beginning to learn jsp. i am using tomcat 5.5.20 and using some url i am learning over time bout jsp... only this, im having a very hard time figuring out the error i am getting. HTTP Status 500 - type Exception report message description Th

  • Where has the recent pages button on the navigation bar gone?

    On the V3 navigation bar we had a "go back one page" a "go forwards one page" and a "recent pages" button. The latter has disappeared in V4, which is inconvenient when I want to skip over several pages to get back to the one I wanted. Is there a way

  • Text problems on X40 Access Connection​s and Power Manager

    Recently, and possibly in conjunction with a recent Lenovo update, Access Connections and Power Manager (at the least, there may be other programs that have problems too, but I have not checked all) display all text as little boxes.  The functionalit

  • What happened to class designer and printing in JDev 9i??

    Where did the "Class Designer" go in JDeveloper 9i... It was in JDev 3.2?? Also, I've read that the printing functionality will be put back into JDeveloper in the next release. It there a date set for this release? Thanks