Save batch data to see it in sm35

I want to save at runtime an internal table so I can see it in SM35 transaction...
REPORT  zjmprueba MESSAGE-ID 56.
START-OF-SELECTION.
  DATA: ibdc TYPE STANDARD TABLE OF bdcdata
          WITH HEADER LINE.
  CLEAR ibdc.
  ibdc-program  = 'ZPSPNM009'.
  ibdc-dynpro   = '100'.
  ibdc-dynbegin = 'X'.
  APPEND ibdc.
CALL FUNCTION 'BDC_OBJECT_CREATE'
  EXPORTING
    name                 = 'zpruebadata'
  CLIENT               = SY-MANDT
  DATATYPE             = '%BDC'
  USER                 = SY-UNAME
  HOLDDATE             = ' '
  KEEP                 = ' '
IMPORTING
  KEY                  =
  tables
    dynprotab            = ibdc
EXCEPTIONS
   SYSTEM_FAILURE       = 1
   OTHERS               = 2
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
It doesn't work and it doesn't send any message. Anyone has made something like this?

Mark KEEP = 'X'.
Thanks,

Similar Messages

  • How to stored data after clicking checkbox save in data base table

    REPORT  zreport                                 .
    TABLES:mseg,mard,mkpf.
    TYPE-POOLS:slis.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:smblnr FOR mseg-mblnr MODIF ID m1,
                   smatnr FOR mseg-matnr MODIF ID m2,
                   swerks FOR mard-werks MODIF ID m3,
                   slgort FOR mard-lgort MODIF ID m4,
                   slgpbe FOR mard-lgpbe MODIF ID m5,
                   scharg FOR mseg-charg MODIF ID m6,
                   sbwart FOR mseg-bwart MODIF ID m7,
                   skostl FOR mseg-kostl MODIF ID m8,
                   saufnr FOR mseg-aufnr MODIF ID m9,
                   srsnum FOR mseg-rsnum MODIF ID m10.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:pre RADIOBUTTON GROUP radi USER-COMMAND ucomm DEFAULT 'X',
               pse RADIOBUTTON GROUP radi,
               bps RADIOBUTTON GROUP radi.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    PARAMETER:layout TYPE i.
    SELECTION-SCREEN END OF BLOCK b3.
    DATA:BEGIN OF itab OCCURS 0,
         mblnr LIKE mseg-mblnr,
         matnr LIKE mseg-matnr,
         werks LIKE mard-werks,
         lgort LIKE mard-lgort,
         lgpbe LIKE mard-lgpbe,
         charg LIKE mseg-charg,
         bwart LIKE mseg-bwart,
         budat LIKE mkpf-budat,
         menge LIKE mseg-menge,
         meins LIKE mseg-meins,
         kostl LIKE mseg-kostl,
         aufnr LIKE mseg-aufnr,
         rsnum LIKE mseg-rsnum,
         checkbox TYPE c,
         END OF itab.
    DATA:  gt_fieldcat TYPE slis_t_fieldcat_alv,
           gw_fieldcat TYPE slis_fieldcat_alv,
           gt_layout TYPE slis_layout_alv.
    START-OF-SELECTION.
    SELECT msegmblnr msegmatnr mardwerks mardlgort mardlgpbe msegcharg msegbwart mkpfbudat
        msegmenge  msegmeins msegkostl msegaufnr mseg~rsnum
    INTO TABLE itab FROM
              mseg JOIN mard ON mardmatnr EQ msegmatnr
                   JOIN mkpf ON msegmblnr EQ mkpfmblnr
                   WHERE mseg~matnr IN smatnr.
      IF sy-subrc EQ 0.
        SORT itab BY matnr.
        PERFORM display_alv_output.
      ENDIF.
    *&      Form  display_alv_output
          text
    -->  p1        text
    <--  p2        text
    FORM display_alv_output.
      REFRESH gt_fieldcat.
      gw_fieldcat-fieldname = 'MBLNR'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 1.
      gw_fieldcat-seltext_m = 'material document'.
      gw_fieldcat-key = 'x'.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'MATNR'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 2.
      gw_fieldcat-seltext_m = 'material'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'WERKS'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 3.
      gw_fieldcat-seltext_m = 'plant'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'LGORT'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 4.
      gw_fieldcat-seltext_m = 'storage location'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'LGPBE'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 5.
      gw_fieldcat-seltext_m = 'storage bin'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'CHARG'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 6.
      gw_fieldcat-seltext_m = 'Batch number'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'BWART'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 7.
      gw_fieldcat-seltext_m = 'Movement Type (Inventory Management)'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'BUDAT'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 8.
      gw_fieldcat-seltext_m = 'Posting Date in the Document'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'MENGE'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 9.
      gw_fieldcat-seltext_m = 'QUANTITY'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'MEINS'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 10.
      gw_fieldcat-seltext_m = 'Basic unit of measure'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'KOSTL'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 11.
      gw_fieldcat-seltext_m = 'Cost center'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'AUFNR'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 12.
      gw_fieldcat-seltext_m = 'Order Number'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'RSNUM'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 13.
      gw_fieldcat-seltext_m = 'Number of Reservation / Depe'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-col_pos = 14.
      gw_fieldcat-fieldname = 'CHECKBOX'.
      gw_fieldcat-seltext_m = 'Compltd'.
      gw_fieldcat-checkbox = 'X'.
      gw_fieldcat-edit = 'X'.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        I_CALLBACK_PROGRAM                = 'ZREPORT'
        I_CALLBACK_PF_STATUS_SET          = 'PF_STATUS'
       I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
        IS_LAYOUT                         = gt_layout
        IT_FIELDCAT                       = gt_fieldcat
       TABLES
         t_outtab                          = itab
      EXCEPTIONS
        PROGRAM_ERROR                     = 1
        OTHERS                            = 2.
    ENDFORM.                    " display_alv_output
    FORM USER_COMMAND USING P_UCOMM TYPE SY-UCOMM
    P_SELFLD TYPE SLIS_SELFIELD.
    set pf-stATUS 'YSTATUS'.
    case p_ucomm.
    when 'SAVE'.
    Data ref1 type ref to cl_gui_alv_grid.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    E_GRID = ref1.
    call method ref1->check_changed_data.
    Here you wil have the table with updated data
    itab2[] = itab[].
    delete itab where checkbox = space. "Mark is the field for the checkbox
    modify ztable from table itab.
    endcase.
    ENDFORM.
    use loop dump error is came.
    another solutions plz send me
    this is mycode.

    Hi Lakshmi,
    You please give me some more information related to your problem instead of pasting the total code here
    Warm Regards,
    Vijay

  • How tostored data  after clicking checkbox save in data base table

    REPORT  zreport                                 .
    TABLES:mseg,mard,mkpf.
    TYPE-POOLS:slis.
    DATA:BEGIN OF itab OCCURS 0,
         mblnr LIKE mseg-mblnr,
         matnr LIKE mseg-matnr,
         werks LIKE mard-werks,
         lgort LIKE mard-lgort,
         lgpbe LIKE mard-lgpbe,
         charg LIKE mseg-charg,
         bwart LIKE mseg-bwart,
         budat LIKE mkpf-budat,
         menge LIKE mseg-menge,
         meins LIKE mseg-meins,
         kostl LIKE mseg-kostl,
         aufnr LIKE mseg-aufnr,
         rsnum LIKE mseg-rsnum,
         checkbox TYPE c,
         END OF itab.
    data: itab2 like standard table of ztable with header line.
    DATA:  gt_fieldcat TYPE slis_t_fieldcat_alv,
           gw_fieldcat TYPE slis_fieldcat_alv,
           gt_layout TYPE slis_layout_alv.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:smblnr FOR mseg-mblnr MODIF ID m1,
                   smatnr FOR mseg-matnr MODIF ID m2,
                   swerks FOR mard-werks MODIF ID m3,
                   slgort FOR mard-lgort MODIF ID m4,
                   slgpbe FOR mard-lgpbe MODIF ID m5,
                   scharg FOR mseg-charg MODIF ID m6,
                   sbwart FOR mseg-bwart MODIF ID m7,
                   skostl FOR mseg-kostl MODIF ID m8,
                   saufnr FOR mseg-aufnr MODIF ID m9,
                   srsnum FOR mseg-rsnum MODIF ID m10.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS:pre RADIOBUTTON GROUP radi USER-COMMAND ucomm DEFAULT 'X',
               pse RADIOBUTTON GROUP radi,
               bps RADIOBUTTON GROUP radi.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    PARAMETER:layout TYPE i.
    SELECTION-SCREEN END OF BLOCK b3.
    START-OF-SELECTION.
    SELECT msegmblnr msegmatnr mardwerks mardlgort mardlgpbe msegcharg msegbwart mkpfbudat
        msegmenge  msegmeins msegkostl msegaufnr mseg~rsnum
    INTO TABLE itab FROM
              mseg JOIN mard ON mardmatnr EQ msegmatnr
                   JOIN mkpf ON msegmblnr EQ mkpfmblnr
                   WHERE mseg~matnr IN smatnr.
      IF sy-subrc EQ 0.
        SORT itab BY matnr.
        PERFORM display_alv_output.
      ENDIF.
    *&      Form  display_alv_output
          text
    -->  p1        text
    <--  p2        text
    FORM display_alv_output.
      REFRESH gt_fieldcat.
      gw_fieldcat-fieldname = 'MBLNR'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 1.
      gw_fieldcat-seltext_m = 'material document'.
      gw_fieldcat-key = 'x'.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'MATNR'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 2.
      gw_fieldcat-seltext_m = 'material'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'WERKS'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 3.
      gw_fieldcat-seltext_m = 'plant'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'LGORT'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 4.
      gw_fieldcat-seltext_m = 'storage location'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'LGPBE'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 5.
      gw_fieldcat-seltext_m = 'storage bin'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'CHARG'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 6.
      gw_fieldcat-seltext_m = 'Batch number'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'BWART'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 7.
      gw_fieldcat-seltext_m = 'Movement Type (Inventory Management)'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'BUDAT'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 8.
      gw_fieldcat-seltext_m = 'Posting Date in the Document'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'MENGE'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 9.
      gw_fieldcat-seltext_m = 'QUANTITY'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'MEINS'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 10.
      gw_fieldcat-seltext_m = 'Basic unit of measure'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'KOSTL'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 11.
      gw_fieldcat-seltext_m = 'Cost center'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'AUFNR'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 12.
      gw_fieldcat-seltext_m = 'Order Number'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-fieldname = 'RSNUM'.
      gw_fieldcat-tabname = 'itab'.
      gw_fieldcat-col_pos = 13.
      gw_fieldcat-seltext_m = 'Number of Reservation / Depe'.
      gw_fieldcat-key = ' '.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
      gw_fieldcat-col_pos = 14.
      gw_fieldcat-fieldname = 'CHECKBOX'.
      gw_fieldcat-seltext_m = 'Compltd'.
      gw_fieldcat-checkbox = 'X'.
      gw_fieldcat-edit = 'X'.
      APPEND gw_fieldcat TO gt_fieldcat.
      CLEAR gw_fieldcat.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        I_CALLBACK_PROGRAM                = 'ZREPORT'
       I_CALLBACK_PF_STATUS_SET          = 'PF_STATUS'
       I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
        IS_LAYOUT                         = gt_layout
        IT_FIELDCAT                       = gt_fieldcat
       TABLES
         t_outtab                          = itab
      EXCEPTIONS
        PROGRAM_ERROR                     = 1
        OTHERS                            = 2.
    ENDFORM.                    " display_alv_output
    FORM USER_COMMAND USING P_UCOMM TYPE SY-UCOMM
    P_SELFLD TYPE SLIS_SELFIELD.
    *set pf-stATUS 'YSTATUS'.
    case p_ucomm.
    when 'SAVE'.
    Data ref1 type ref to cl_gui_alv_grid.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    E_GRID = ref1.
    call method ref1->check_changed_data.
    *itab2[] = itab[].
    delete itab where checkbox = space. "Mark is the field for the checkbox
    modify ztable from table itab2.
    endcase.
    ENDFORM.
    this is my cde error is  not came,
    plz check that one,send me reply

    REPORT  YH648_1111111.
    TABLES SSCRFIELDS.
    parameter : c  AS CHECKBOX USER-COMMAND SUNIL
    AT SELECTION-SCREEN .
    SY-UCOMM = SSCRFIELDS-UCOMM.
    START-OF-SELECTION.
      CASE SY-UCOMM.
        WHEN 'SUNIL'.
          WRITE 'SUNIL KUMAR .BETHINEDI'.
        WHEN ' '.
          WRITE 'BLA BLA BLA '.
    ENDCASE.
    THIS IS THE WAY U CAN USE THE CHECK BOX.
    INSTED OF THIS  WRITE 'SUNIL KUMAR .BETHINEDI'.
    U USE THE INSERT STATEMENT.

  • How can i save the data from the Oracle database to my local directory

    How can i save the data from the Oracle database to my local directory instead Of saving the data file to the Directory created on the Oracle Server ?
    I require to design the Procedure which will pull the data from various tables and needs to store the data in the Client's local directory.

    Since SQL*PLUS runs on the client, you can use SQL*PLUS to spool data to your local drive.
    You could also use the database to write a a specified drive where all users have access to (mapped network drive, e.g.). I wouldn't recommend doing it that way, but it is sometimes useful when the files are created in some nightly batch run.

  • My HP Elitebook 8530w is toast, but my hard drive is fine. To save my data, I would like to learn

    My HP Elitebook 8530w is toast, but the hard drive is fine. To save my data, I would like to learn
    all the HP models which can accept this same drive, so I can start hunting for a suitable used one. It probably won't be the elitebook, that laptop seems kinda rare. So I'm hoping that other models will accept the same drive. The hard drive model has a really long number - Hitachi HTS723216L9A360. Does anyone know which hp models are compatible with this hard drive? Thanks.

    Notebook hard drives are pretty much the same in recent years, yours is SATA interface, much older notebooks used IDE-PATA and are not interchangeable.
    Installing it in a different notbook that has different hardware may not work so good, most of the time windows will not load properly or at all, you can buy a usb to hard drive adapter and connect it to the hard drive after you remove it, then connect the drive using the adapter to any other PC with a usb port, then you will be able to see you data on that hard drive using Windows explorer
    http://www.newegg.com/Product/Product.aspx?Item=N8​2E16812119152

  • Help! Having Serious Issues and need to save my data!!!

    This is probably going to be a long post, and I apologie in advance, but before I give up completely, I need to see if there's anything that I can do to save the data on my computer. Also, I'm writing this from work and don't have access to the system right now, so I'm going to have to rely on my questionable memory to relay the situation.
    Since the battery update was installed, I was having intermittent issues with my MBP battery - when I was fully charged, it only showed about 1:45 of time left (down from a usual 3:00 or so). When it would get down to about 50 minutes left, the system would shut off with no warning. I was about to take the system into the Apple Store to get the battery replaced last week, but just to make sure, I followed the instructions to reset the battery and after that was done, it seemed like the battery was fine (showed up as about 3:00 fully charged). But... the system started working very slowly.
    As a result, I decided to try to back up the system (I use SuperDuper and backup to an external USB drive). The backup failed mid-stream and my backup file was now useless (that's the last time I use the erase before backing up option). So now I don't have a backup of my data (all of my data is on that laptop).
    I tried running Disk Utility, by booting from the installation DVD, to Repair the disk and it stopped with an invalid node error. I tried again, but no joy. A third time, it appears to have completed. However, now when I boot the system, not only is it really slow, but it boots into some unfamiliar linux prompt ("I don't have a name#:", or something like that.
    Since I still think that there was a file system problem, I bought a copy of DiskWarrior 4. However, I don't want to wait for the bootable CD, so I tried to install the OS on the external USB drive so I could run it from there. Everytime I tried to install to the USB drive, I got a kernel panic when the IT Tunes install script was loaded. Every time. I tried removing the second (add-on) RAM stick, removing the battery, etc. No joy. Finally on about the 10th attempt, this time on battery power only (no power cable connected), I managed to get the OS to install on the USB drive.
    Okay, so now I can boot to the USB drive. I installed Disk Warrior 4 and ran it on the internal hard drive. Kernel Panic. Every time I've run it (error is about unlocking mutex). Even more frustrated now, I tried to backup the disk again (since all my data is on there, I can't afford to lose any of it). No joy. The backup (using SuperDuper or CloneCopyX) fails at various spots. I have some folders on the drive that I tried to copy off (about 7GB) that contain disk images and the like. That copy failed.
    So now, I have un-backupable (is that a word) hard drive that I can't repair without kernel panics (although, now as I write this, I didn't try DW without the power cord). And what I need to know is if anyone can think of anything that I haven't tried to save my user data off of the system before I have to take it in to the Apple Store and potentially lose everything that's on it.
    My number 1 concern right now is losing the data on the drive.
    Can anyone help me at all?
    Again, sorry for the long post...
    Thanks!
    Jim
    17" MacBookPro   Mac OS X (10.4.9)   2GB RAM, 120GB HD, Glossy Screen

    You may not have the luxury of having another Mac but you must know someone who does. You need to boot your Mac into target disk mode. This is going to be your best bet as far as saving your files. Keep in mind that everytime you mess with this computer you are further endangering your data. Also, once your Mac is booted as a target disk, it may be possible to mount it on a windoze computer just to copy your files to another drive. I used to have one here and if i still did I would try this for you but I "offed" it in favor on running windoze (Parallels) on my MBP. But, one way or another, you need to get next to another computer.

  • HT204053 I buy icloud for save my data, but I can't backup to icloud since I purchase it, and I lost my email from itune that I can cancel that on14 day, please andvise me, how to cancel my purchase since I can't back up my data is feel useless spent more

    I buy icloud for save my data and app, but I can't back up my data since I purchase, and I lost my email that I can canceled on 14 days, I please advise me since it useless buying without able to backup my data, I just want to canceled

    Please see this post:
    https://discussions.apple.com/message/16968425#16968425
    it gives the USA number - if you don't live there you will have to find an equivalent number from the 'Contact Us' link at bottom right of this page.

  • Splitting events after batch date change causes event to disappear

    Hi all,
    The basic (repeatable) scenario is this:
    o I scan in a bunch of old pictures I want to keep in iPhoto (lets say 10)
    o I import them into iphoto (no problems with import) 1 event with 10 pictures is created.
    o I then take a specific set of 4 photos and split them out of the main event into a new event (everything still ok) - 2 events, 4 and 6 events respectively.
    o I open the new event and do a batch date change on the 4 pictures, changing the date to the correct date of the picture
    o I exit the event expecting it to move up in the list of events (I sort by date). It's gone! iPhoto lists the 1 new event and its 6 photos
    o I change my sort (by time, by name, etc) and still not there.
    o I find my library in finder, open the package, and the files are still there.
    o I go back to iPhoto and click on "Photos". Walla! 10 pictures!
    o I undo the data change and they show up again in events - 2 new events, 10 total pictures.
    I've already done all the obvious checks (are you sorting by date, look up by even name, search by file name through all events etc.) I've talked with a product specialist and they said the standard "rebuild the library" which did not resolve the issue.
    I can repeat this until the cows come home in the existing library. I've created a brand new library and it does not repeat, do there is something in my library not right. But I don't buy the standard "redo your library from scratch" (36K pictures, 50 faces and hundreds of places). Just like with faces, you can discard the db files, there must be something besides "rebuild automatically and if that doesn't work sorry start over". Was iPhoto coded in Redmond?
    Has anyone had anything similar to this? I looked through the forums and couldn't see anything. If I have to rebuild this, I am done with iPhoto after having to rebuild due to faces too many times, and my question changes to what are folks recommendations for a more stable photo management software suite?
    Thanks!
    HOTG

    If the problem doesn't repeat in another Library then obviously the issue is with that library.
    As you've tried the basic rebuild: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    The obvious solution is to restore a good version from your back up and, er, Walla! as you say yourself.
    Next least destructive option: Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • A string that can be displayed as both ASCII and hex in an indicator will only save the data to a file in ASCII format

    We can see the data in an indicator just fine, but when we try to write that string of hexadecimal data to a file, it will only save the data in ASCII format.  
    This sounds fairly simple, as the indicator can be selected to display the data in several different formats (VI>Properties>Appearance>Display Style: Normal, Backslash...., Hexadecimal).  However, I have been unable, as of yet, to save the data in different formats.
    Solved!
    Go to Solution.

    altenbach wrote:
    ... or you could just read the string:text.text property to get whatever is actually displayed.
    like this...
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    texttextString.PNG ‏6 KB

  • Vendor batch data

    Hi experts,
    While displaying batch (transaction MSC3N), I found Vendor Batch field with the vendor batch number in it.
    It drives me to the table-field MCHA-LICHA.
    But when I check the table, I find the field MCHA-LICHA with a blank value.
    How come it happened? where can I find the vendor batch data?
    Please advise.
    regards,
    rob

    To my knowlege there is no standard report that will show movements with or by vendor batch.
    The vendor batch that you enter while doing a goods receipt is only stored in the batch record, mot in the movement.
    In BMBC batch information cockpit it is possible to list batches and to display the vendor batch at the same time (tab where used).
    You may need to execute this first, then take all your batches for a certain vendor batch and use it as selection criteria for MB51 to the see movements.

  • Save waveform data to .TXT

    Hi all,
    I'm acquiring data from one machine. I show all data from each channel on graph, which works OK, for different sample rate. What I want is to save this data to .TXT file.
    Please take a look at my picture. What I need into .TXT file is value for each channel at each iteration. I tried to save  "value" Y from each "build waveform", but what I get is data on picture. It's always saving previous data(see picture at bottom), but I need just:
    17:49:16
    28,192885
    17:49:16
    28,193563
    17:49:16
    28,193902
    PICTURE:
    Rookie; LV 2011 on WIN 7

    I'm saving like this (I know I must put "open and close" block outside of while loop, but this is not my problem right now). How can I index then to save just value of each itteration...
    Rookie; LV 2011 on WIN 7

  • Userexit while/before save adrc-data

    Hi there!
    I need a common userexit to save additional data each time anywhere in the system adrc-data is saved.
    This can be a changed or new adress data if there's a new customer as well as there's a new built in equipment for example.
    Is there such an always valid userexit for saved adrc-data?
    I've found the SZRS0003 (adress check interface for external components). Could this be a solution in my case? What i have to do in this case... Do i have to switch on the external adress check anywhere?
    Thanks in advance for any help.
    Cheers, Ingo

    Hello Ingo,
    regarding the interface of that exit i would not expect that.
    There is a BADI called 'ADDRESS_UPDATE', which might be more helpful.
    Also see OSS-Note 176559.
    Regards
    Wolfgang

  • Save million datas in one sec

    Hi guys, I've tried to search, but I didnt find the answer, thats why I'm posting this.
    How many points/samples that can be saved in 1 sec with Labview (max)? It depends on my PC specs? I've searched in this forum and found this old thread http://forums.ni.com/t5/LabVIEW/Extremely-large-files/m-p/730139. With that program from (Herr) Altenbach, I've tried to save the datas in a .txt file using this Save1Data.vi and Signalsub.vi. The problem comes, when I'm trying to save like 100.000 points. Is there any hints to save that much samples, I need like to save about 1 million samples in 1 sec?
    Solved!
    Go to Solution.
    Attachments:
    save.png ‏25 KB
    Save 1Data.vi ‏25 KB
    Signalsub.vi ‏17 KB

    Yamaeda wrote:
    That's not quite what i meant.
    You should open and close the file, just not every second.
    Assuming you have a loop that measures 1m samples and then write the result to file, you should open and close the file outside this loop, and just overwrite/append inside the loop (in this case in a sub-vi).
    You're writing the result as text, which'll be a little bigger and will also require a transform of the data, you could write a binary file. However, it shouldn't be a real issue in this case.
    I'm pretty confident the main culprit is the opening/closing time of the file.
    /Y 
    I thought I need to put the open file and close file in the loop cause I need to store the data while I'm in TRUE case (I mean, actually Im not going to save all the datas all the time, but just at the time I'm clicking the TRUE button for the real program). But I think I'll try to take out the open/close file thing from the loop and see how it works for me. 

  • Busted mac - how to retrive and save my data?

    Hi Hope someone can help -
    My Mac has gone belly up recently. It starts up in the grey screen with an apple logo and a spinning disc before moving onto a blue screen (with occasional spinning wheel). I can move the mouse cursor in the blue screen.
    Note - There is only 7gb of free space left on the hard drive.
    I’ve tried many different options to get back into the mac including –
    1. Trying to boot into safe mode – fails to do so.
    2. Tried holding down the S key while booting up – no joy here either.
    3. Holding down cmd-S to get into the UNIX command line – this was successful and I can see all my files and directories.
    4. Cmd-C and running from the original OS-X install disc. From here I was able to run the disc utility but it reported no problems with the hard disc. I can also see the various files and directories from here. But I cannot see any way to copy/save my data using this option.
    It’s been reported elsewhere that the above problem might be caused by the logic board failing, so re-installing the OS may be pointless, correct? And anyway a full re-install will wipe all my data. So at this point it looks like saving my mac might be a wasted effort, so my main emphasis is now on retrieving my data.
    Perhaps someone might be able to help with the following (I’m fairly comfortable with using UNIX, but not an expert).
    1. Could I copy the necessary files onto an external hard disc using Unix CP command if I simply attached another external hard disc to the mac?
    2. Or could I simply cp my files to an external DVD re-writer drive from the UNIX command line? If so what would be the command to do so?
    3. Any other options/suggestions?

    Hi, I hope we can help as well.
    Okay so your first concern is your data. Go and purchase an external hard drive that is at least twice as big as you think you will need. We'll use it to 1) Create a boot disk and 2) Put any data you can save in a safe place. After we are done, you'll use this external hard drive for backing up your data on a regular basis, so you won't need to worry about this nearly as much again. If you really want to be safe, get two external drives and back up your backup.
    Boot the iMac from its install DVD. Use *Disk Utility* to format the external drive. Install the OS on it. Restart, booting from the system on the external drive. Copy your data from the internal hard drive to the external. You can use the *Migration Assistant* (in /Applications/Utilities) the UNIX cp command, a program called Carbon Copy Cloner, or any of several other methods. At this point you can also use the Finder to make a copy of critical files to DVD(s).
    Once you have your data safe, shut down the iMac and disconnect the external hard drive. Reboot starting from the install disk again. Use the installer to do an *Archive and Install* of the operating system, preserving user and network settings. See [this article|http://support.apple.com/kb/HT1710] for further information about A and I.
    If the Archive and Install works, you should be able to restart the computer and have it be working again. Reconnect your external hard drive and use it with [Time Machine|http://www.apple.com/support/leopard/timemachine> to maintain current backups for the future.
    If all of the above fail, let us know, we'll keep working with you.
    Best of luck.

  • How can I save first data before data logging in a regular period?

    Hi,
    I need some help to see what's wrong with my VI. I want to save the first data when I launch my VI until reach the first minute, after I want save data minute by minute, but in this fisrt period my VI does't save this data in the .lvm file.
    Could someone help me?
    Thanks.
    Attachments:
    savefirstdata.vi ‏76 KB

    Thanks MoReese, but I can't open again. Well, I think I figured out what you have said last post and it worked fine, I will attach the new VI. So, I got another question right now. Why when data acquisiton has start collecting data with timestamp after some time it's incremented 1 second in the time stamp inside the lvm file or same in txt file? I'll attach the file to exemplify.
    Thanks for the responses.
    Diego 
    Attachments:
    savefirstdata3.vi ‏53 KB
    incrementsecond.png ‏19 KB

Maybe you are looking for