Importance of the SAVE_TEXT

Hi,
   I need to append the long text in the sales order, for that i am going to use SAVE_TEXT  function module. Can i directly append the text for the existed text of the sales order - or do i need to pull the long text through READ_TEXT function module for that sales order & append the new text ?
   What are the important parameters i need to pass SAVE_TEXT function module to append the text for the sales order.
regards
Jaya

it create the text - if no text available in system - it simply inserts the text.
it append the text - if text is avialbel in system then it append the text in next line of text onwards.
if you want to create new text entirely ,if already text is available ,first delete the text ( using DELETE_TEXT ) ,then use save_TEXT FM.
Here is the simple example -> here i am deleting old text and re enter new text.
report ZMPPC016
       no standard page heading
       line-size 120.
Constants
constants : c_r type c value 'R', " PLNTY Value
            C_X TYPE C VALUE 'X', " Value for dynbegin.
            c_tcode like tstc-tcode value 'CA22', " Transaction code
            c_mode(1) type c value 'A', " BDC Mode
            c_tdformat type tline-tdformat value '*',"Tag column
            c_tdid type thead-tdid value 'PLPO', " Text ID
            c_tdform type thead-tdform value 'SYSTEM'." Form name
Variables
data : v_date like sy-datum, " date
       v_date1(4) type c,
       v_date2(2) type c,
       v_date3(2) type c,
       TNAME LIKE THEAD-TDNAME,
       v_mandt(3) type c,
       v_matnr(18) type c,
       flag type c.
Internal table for file
data : begin of t_file occurs 0,
       matnr(18) type c, " Material Number
       werks(4) type c,  " Plant
       vornr(4) type c,  " Operation Number
       tseq(3) type n,   " Line number in the long text
       text1(70) type c, " Long text
       plnal(2) type n,  " Group counter
       end of t_file.
data : begin of t_text occurs 0,
       matnr(18) type c, " Material Number
       werks(4) type c,  " Plant
       plnal(2) type n,  " Group counter
       vornr(4) type c,  " Operation Number
       tseq(3) type n,   " Line number in the long text
       text1(70) type c, " Long text
       end of t_text.
Internal table for MAPl
data : begin of t_mapl occurs 0,
       plnnr like mapl-plnnr,
       end of t_mapl.
  Internal Table for PLAS and PLPO Table
data : begin of t_plpo occurs 0,
       mandt like plpo-mandt,
       plnty like plpo-plnty,
       plnnr like plpo-plnnr,
       plnkn like plpo-plnkn,
       zaehl like plpo-zaehl,
       end of t_plpo.
data t_long like tline occurs 0 with header line.
Work area for t_text Internal table
data : wa_text like t_text.
data:  t_header like thead.         " long text
Internal table for BDCDATA Structure
data : begin of itab_bdc_tab occurs 0.
        include structure bdcdata.
data : end of itab_bdc_tab.
Selection-screen
selection-screen : begin of block blk with frame .
parameter : P_file like rlgrap-filename obligatory.
selection-screen : end of block blk.
initialization.
  p_file = 'C:\My Documents\InputFile.txt'.
at selection-screen on value-request for p_file.
F4 value for file
  perform file_get.
start-of-selection.
Get file data into Internal Table.
  perform get_data.
  sort t_text by matnr werks  vornr  plnal tseq.
Save the long text into CA22 Transaction
  perform load_data.
top-of-page.
  CALL FUNCTION 'Z_HEADER'
EXPORTING
   FLEX_TEXT1       =
   FLEX_TEXT2       =
   FLEX_TEXT3       =
  skip 1.
*&      Form  file_get
      F4 Value for file
FORM file_get.
  CALL FUNCTION 'WS_FILENAME_GET'
       EXPORTING
            DEF_PATH         = 'C:\Temp\'
            MASK             = ',.,..'
            MODE             = 'O'
            TITLE            = 'Select File'(007)
       IMPORTING
            FILENAME         = P_file
       EXCEPTIONS
            INV_WINSYS       = 1
            NO_BATCH         = 2
            SELECTION_CANCEL = 3
            SELECTION_ERROR  = 4
            OTHERS           = 5.
ENDFORM.                    " file_get
*&      Form  get_data
      Get file data into Internal Table.
FORM get_data.
  CALL FUNCTION 'WS_UPLOAD'
       EXPORTING
            FILENAME                = p_file
            FILETYPE                = 'DAT'
       TABLES
            DATA_TAB                = t_file
       EXCEPTIONS
            CONVERSION_ERROR        = 1
            FILE_OPEN_ERROR         = 2
            FILE_READ_ERROR         = 3
            INVALID_TYPE            = 4
            NO_BATCH                = 5
            UNKNOWN_ERROR           = 6
            INVALID_TABLE_WIDTH     = 7
            GUI_REFUSE_FILETRANSFER = 8
            CUSTOMER_ERROR          = 9
            OTHERS                  = 10.
  if sy-subrc eq 0.
    sort t_file by matnr werks plnal vornr tseq.
    delete t_file where matnr = ''.
    loop at t_file.
   Get the material number from tables ZMSMI_FERR_RAW,
   ZMSMI_SNAP_RAW and ZMSMI_SIMP_RAW
      perform get_matnr.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
           EXPORTING
                INPUT  = t_file-vornr
           IMPORTING
                OUTPUT = t_file-vornr.
      move : t_file-matnr to t_text-matnr,
             t_file-werks to t_text-werks,
             t_file-vornr to t_text-vornr,
             t_file-tseq  to t_text-tseq,
             t_file-text1 to t_text-text1,
             t_file-plnal to t_text-plnal.
      append t_text.
      clear t_text.
    endloop.
  else.
    WRITE: / 'Error reading input file'.
    stop.
  endif.
ENDFORM.                    " get_data
*&      Form  call_bdc
      BDC Script for CA22 Transaction
FORM call_bdc.
Screen 1010
  perform bdc_screen using  'SAPLCPDI'     '1010'.
  perform bdc_field  using  'BDC_OKCODE'   '=VOUE'.
  perform bdc_field  using  'RC27M-MATNR'   SPACE.
  perform bdc_field  using  'RC27M-WERKS'   SPACE.
  perform bdc_field  using  'RC271-VBELN'   SPACE.
  perform bdc_field  using  'RC271-POSNR'   SPACE.
  perform bdc_field  using  'RC271-PLNNR'   T_PLPO-PLNNR.
  perform bdc_field  using  'RC271-AENNR'   SPACE.
  clear :  v_date,
           v_date1,
           v_date2,
           v_date3.
  v_date1 = sy-datum+0(4).
  v_date2 = sy-datum+4(2).
  v_date3 = sy-datum+6(2).
  concatenate v_date2 v_date3 v_date1 into v_date.
  perform bdc_field  using  'RC271-STTAG'  v_date .
  perform bdc_field  using  'RC271-REVLV'   SPACE.
  perform bdc_field  using  'RC271-WERKS'   SPACE.
  perform bdc_field  using  'RC271-PLNAL'   WA_TEXT-PLNAL.
  perform bdc_field  using  'RC271-STATU'   SPACE.
  perform bdc_field  using  'RC271-VAGRP'   SPACE.
  perform bdc_field  using  'RC271-PROFIDNETZ'   SPACE.
Screen 5400
  perform bdc_screen using  'SAPLCPDI'     '5400'.
  perform bdc_field  using  'BDC_OKCODE'   '=OSEA'.
Screen 1010
  perform bdc_screen using  'SAPLCP02'     '1010'.
  perform bdc_field  using  'BDC_OKCODE'   '=ENT1'.
  perform bdc_field  using  'RC27H-VORNR'  WA_TEXT-VORNR.
Screen 5400
  perform bdc_screen using  'SAPLCPDI'     '5400'.
  perform bdc_field  using  'BDC_OKCODE'   '=LTXT'.
  perform bdc_field  using  'RC27X-FLG_SEL(01)'  C_X.
Screen 1100
  perform bdc_screen using  'SAPLSTXX'     '1100'.
  perform bdc_field  using  'BDC_OKCODE'   '=XEIN'.
Screen 0999
  perform bdc_screen using  'SAPLWB_CUSTOMIZING'     '0999'.
  perform bdc_field  using  'BDC_OKCODE'   '=CONT'.
  PERFORM BDC_FIELD  USING  'RSEUMOD-GRA_EDITOR' SPACE.
Screen 1100
  perform bdc_screen using  'SAPLSTXX'     '1100'.
  perform bdc_field  using  'BDC_CURSOR'   'RSTXT-TXPARGRAPH'.
  perform bdc_field  using  'BDC_OKCODE'   '=TXBA'.
  perform bdc_field  using  'RSTXT-TXPARGRAPH(03)'   '*'.
  perform bdc_field  using  'RSTXT-TXLINE(03)'
Screen 5400
  perform bdc_screen using  'SAPLCPDI'     '5400'.
  perform bdc_field  using  'BDC_OKCODE'   '=BU'.
  call transaction c_tcode
       using itab_bdc_tab mode 'N'
       update 'S'.
  refresh itab_bdc_tab.
  if sy-subrc eq 0 and sy-msgty ne 'E'.
    v_mandt = t_plpo-mandt.
    CONCATENATE v_mandt
                t_plpo-plnty
                t_plpo-plnnr
                t_plpo-plnkn
                t_plpo-zaehl into tname.
    commit work.
    CALL FUNCTION 'DELETE_TEXT'
      EXPORTING
      CLIENT                  = SY-MANDT
        ID                    = c_tdid
        LANGUAGE              = 'E'
        NAME                  =  TNAME
        OBJECT                = 'ROUTING'
        SAVEMODE_DIRECT       = 'X'
     TEXTMEMORY_ONLY       = ' '
     LOCAL_CAT             = ' '
     EXCEPTIONS
       NOT_FOUND             = 1
       OTHERS                = 2
    if sy-subrc ne 0.
      write:/3  wa_text-matnr,24 wa_text-werks,
                30 t_mapl-plnnr,44 wa_text-plnal,48 wa_text-vornr,
                60 ' -',
                67 'Error Deleting Existing Long Text'.
    endif.
  else.
    write:/3  wa_text-matnr,24 wa_text-werks,
                   30 t_mapl-plnnr,44 wa_text-plnal,48 wa_text-vornr,
                   60 ' -',
                   67 'Error Executing BDC'.
  endif.
ENDFORM.                    " call_bdc
*&      Form  bdc_screen
      BDC Script for Screen fields
     -->P_PROG   Program name
     -->P_SCRN   Screen Number
FORM bdc_screen USING    p_prog
                         p_scrn.
  clear itab_bdc_tab.
  itab_bdc_tab-program = p_prog.
  itab_bdc_tab-dynpro = p_scrn.
  itab_bdc_tab-dynbegin = c_x.
  append itab_bdc_tab.
ENDFORM.                    " bdc_screen
*&      Form  bdc_field
      BDC Script for Screen fileds
     -->P_NAM   Field name
     -->P_VAL   Field value
FORM bdc_field USING    p_nam
                        p_val.
  clear itab_bdc_tab.
  itab_bdc_tab-fnam = p_nam.
  itab_bdc_tab-fval = p_val.
  append itab_bdc_tab.
ENDFORM.                    " bdc_screen
*&      Form  load_data
      Save the long text into CA22 Transaction
FORM load_data.
  loop at t_text.
    move t_text to wa_text.
    at new vornr.
Read the data in MAPL Table
      select single plnnr from mapl into t_mapl-plnnr
                             where matnr  = wa_text-matnr
                             and   werks  = wa_text-werks
                             and   plnty  = c_r
                             and   loekz  = space.
      if sy-subrc eq 0.
Read the data from PLAS and PLPO Table
        select SINGLE  a~mandt
                a~plnty
                a~plnnr
                a~plnkn
                a~zaehl into  t_plpo
               from plpo as a inner join plas as b on aplnty = bplnty
                                                  and aplnnr = bplnnr
                                                  and aplnkn = bplnkn
                where b~plnty = c_r
                and   b~plnnr = t_mapl-plnnr
                and   b~plnal = wa_text-plnal
                and   b~loekz = space
                and   a~vornr = wa_text-vornr
                and   a~loekz = space.
        if sy-subrc eq 0.
          perform call_bdc.
        else.
        flag = 'X'.
          write:/3  wa_text-matnr,24 wa_text-werks,
                 30 t_mapl-plnnr,44 wa_text-plnal,48 wa_text-vornr,
                 60 ' -',
                 67 'Matching routing group\Operation not found'.
          continue.
        endif.
      else.
        flag = 'X'.
        write:/3 wa_text-matnr,24 wa_text-werks,
                 40 ' -',
                 45 'Material Does not Exists or Material',
                 82 'not Available in MAPL Table'.
        continue.
      endif.
    endat.
    if flag ne 'X'.
      t_long-tdline = wa_text-text1.
      t_long-tdformat = c_tdformat.
      append t_long.
    endif.
    at end of vornr.
      if flag ne 'X'.
        v_mandt = t_plpo-mandt.
        CONCATENATE v_mandt
                  t_plpo-plnty
                  t_plpo-plnnr
                  t_plpo-plnkn
                  t_plpo-zaehl into tname.
        T_HEADer-TDOBJECT = 'ROUTING'.
        t_HEADer-TDNAME   = tname.
        T_HEADer-TDID     = c_tdid.
        t_header-tdform   = c_tdform.
        T_HEADer-TDSPRAS  = 'E'.
Save the text
        CALL FUNCTION 'SAVE_TEXT'
          EXPORTING
            CLIENT                = SY-MANDT
            HEADER                = t_header
            SAVEMODE_DIRECT       = 'X'
     OWNER_SPECIFIED       = ' '
     LOCAL_CAT             = ' '
   IMPORTING
     FUNCTION              =
     NEWHEADER             =
          TABLES
            LINES                 = t_long
         EXCEPTIONS
           ID                    = 1
           LANGUAGE              = 2
           NAME                  = 3
           OBJECT                = 4
           OTHERS                = 5
        if sy-subrc eq 0.
          CALL FUNCTION 'COMMIT_TEXT'
               EXPORTING
                    OBJECT   = t_header-TDOBJECT
                    NAME     = t_header-TDNAME
                    ID       = t_header-TDID
                    LANGUAGE = t_header-TDSPRAS.
          write:/3   wa_text-matnr,24 wa_text-werks,
                     30 t_mapl-plnnr,44 wa_text-plnal,48 wa_text-vornr,
                     60 ' -',
                     67 'Long Text Loaded Successfully'.
        else.
          write:/3   wa_text-matnr,24 wa_text-werks,
                     30 t_mapl-plnnr,44 wa_text-plnal,48 wa_text-vornr,
                     60 ' -',
                     67 'Error Uploading Long Text'.
        endif.
        refresh t_long.
        else.
        write:/3 wa_text-matnr, 24 wa_text-werks,
               45 'Long text not uploaded'.
        clear flag.
       endif.
      endat.
    endloop.
  ENDFORM.                    " load_data
*&      Form  get_matnr
      Get the material number from tables ZMSMI_FERR_RAW,
FORM get_matnr.
  clear v_matnr.
  case t_file-werks.
    when '0101'.
      select single cmatnr from zmsmi_simp_raw
             into v_matnr  where matnr = t_file-matnr.
     if sy-subrc eq 0.
      if not v_matnr is initial.
        clear t_file-matnr.
        t_file-matnr = v_matnr.
      endif.
    when '0103'.
      select single cmatnr from zmsmi_ferr_raw
             into v_matnr  where matnr = t_file-matnr.
     if sy-subrc eq 0.
      if not v_matnr is initial.
        clear t_file-matnr.
        t_file-matnr = v_matnr.
      endif.
    when '0102' or '0110' or '0111' or '0112' or '0113'
         or '0114' or '0115' or '0116' or '0117'.
      select single cmatnr from zmsmi_snap_raw
             into v_matnr  where matnr = t_file-matnr.
     if sy-subrc eq 0.
      if not v_matnr is initial.
        clear t_file-matnr.
        t_file-matnr = v_matnr.
      endif.
  endcase.
ENDFORM.                    " get_matnr
Thanks
Seshu

Similar Messages

  • How can I import *just* the new images in a folder?

    Is there anyway to import only the images within a folder that aren't already in the library? This seems to be the default behavior in Lightroom and makes really good sense. If I add an image to a folder without doing so in Aperture, I'd really like to just import that new version into the library.
    Thanks,
    -Dave

    Yes, I knew that I could do this, but I was hoping for an automated method as I suspect that I will screw things up if I rely on doing everything manually.
    -Dave

  • My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any

    My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any advice is helpful. This has never happened in 6 years

    answered in your other thread LR 4 suddenly no longer recognizes files.

  • PSE 9 and 5 will not import - says the file already exists in the catalog !

    I've already wasted 2 days looking for answers to this. When someone buys this program, at least half of the price is paying for the database in the Organizer - yet even John Ellis himself, who seems to know more than anyone about it, has gone to Lightroom. This is bad coding!!!
    Upgraded from 5 to 9. If you read my previous posts, this took 2 days too, and phone help from a tech, because it would not install in my XP computer. It did upgrade the Organizer from 5, although many of the symbols are unusable and don't work to help me identify my tags. However, now I see that neither 5 nor 9 is able to look at a file and display thumbnails that are in it.
    I move files around a lot for my business. Any half-way good database should be able to find the missing files, and also add any new images. Say I have 10 images in file A, then add 2 more to make 12. It can't see the added images! Says can't import, the file already exists in the catalog.
    I tried: updating thumbnails, recover, repair, in both 5 and 9 - nothing works. to import the images that I can SEE in these folders! I read here  that it will not import files if the same name is somewhere else. That alone is a problem.  But I think it's more than that: even if the file used to be in another folder, folder B, it won't recognize that it's in folder A now!
    Since PSE9 uses sql db, shouldn't that be better than 5 and be able to do simple tasks like this?
    Any advice or similar experiences eagerly welcomed.

    Thank you for replying, dj paiqe.
    Do you mean the first little section that says photos may not be displaying? Yes, those just reveal hidden photos and are very basic. I did them.
    I guess we disagree about databases and what they are designed to do, or maybe I didn't explain this well.
    I did not move the images outside of the catalog: I move them to various folders, all already imported WITHIN the catalog, as I send them to various editors. (these are all drawings, not photos, and I do this professionally, so it needs to work).
    Folder A and Folder B and Folder C have already been imported into the catalog. So if I move 2 images from folder B into folder A, the Organizer is simply lost, says image already exists, and everything is totally screwed up, as the image is no longer in folder B, and it can't find it in folder A!!! The problem is, unless I memorize the image name, say Image 9, I can't tell it to reconnect, as there is no longer an image in front of me! So there are 2 images, without names, now nowhere to be found. Inefficient, to say the least.
    I've never tried Lightroom or Filemaker, but I cannot believe that they would lose data like this. I think it's the Folder coding that's not working in PSE, and I wanted this to work so badly!!!!!
    I am willing to do it the PSE way, since you now have captions, keywords, etc, and it is a very powerful database, when it works. I understand that one is supposed to move images within the Organizer, obviously. But now many images are disconnected. I could start all over importing, but is there any way to do that without losing tags and categories?

  • Import failed the following clip encountered an error during import and is still referencing media on the camera

    This is one of the many error windows I'm getting.  This MVI_9935 is from 5DMIII.  But I'm also getting the same errors for other files with the exact same error message for Panasonic AF100.  All shot at 23.976fps. 
    * 5D is h.264. They're all about the maximum lengths (of ~30 minutes).
    * Panasonic footage is AVCHD wrapped MTS files.  Two clips of this kind are about 75 minutes long each.
    I have dealt with this problem by doing ALL of the steps I've read so far for each shoot and it takes too long... I'm doing
    1) making FCPX archives
    2) copying the all of the contents from each card (with the file structure intact) and pasting them onto an external hard drive (eSATA with 3TB space... with a plenty of empty space ~ 1TB)
    3) copying and pasting just the video files onto an internal hard drive (separate from the system drive but same as where the project files are)
    And I click through each error window (which takes about a full working day or more) and then when I _still_ see missing footage indicated by
    that little "video camera" icon on the bottom left (as you can see above).  What I do at this point is to:
    1) re-import from one of the FCPX Archives, and if this does not work, I
    2) re-import from one of the directly copied files.
    Sometimes, I need to create a new event and re-import if the clip is still **referencing** the media on the camera.
    I did not have this problem **before** FCPX's import window combined both spanned clips and individual files (circa version 10.0.5 or 10.0.6).
    Now I have an Evernote notebook dedicated this problem and just from Google Searching, I have gathered 7 notes from different discussion forums dealindg with the same issue.
    Some things that are common to us who are having problems:
    1) we deal with big files (for long shoots)
    2) we either use Canon 5DMIII or mix and match different types of codecs / wrappers.
    3) we end up wasting so much time because Apple support is not paying attention.
    4) or maybe we don't know how to get support from Apple.  I know this isn't a forum where an Apple employee checks.  Where can we directly contact Apple about this?

    For the 5D clips, copy ONLY the .mov files into a folder on your external drive or wherever else you want to put them and import from there. You can safely ignore the .thm files and other stuff. Pretty easy and you also will have an archive of your clips. For the Panasonic files, copy ALL the contents of the card and use import from camera.
    If you want to import from the card to an event - with the 5D at least - you can use a card reader. Don't use the camera itself. It does work but it is slow and cumbersome and card readers are cheap.
    Create an event, hit import from camera and the card should show up.
    Sorry, not familiar with the Panasonics but some of the other guys at work use P2 cards and I have imported from them a couple of times with no problem using both a P2 card reader and importing directly from the camera via firewire.
    I use the previously mentioned method with all my Canon files - 5D2, 5D3, 60D and 7D - and have never had a single problem.
    Hope this helps.

  • How can I import pictures from my iphone to PC which I imported to the iphone from another PC? The folder doesn't show on my computer. I see all other pictures I took with the phone but not the imported folder.

    How can I import pictures from my iphone to PC which I imported to the iphone from another PC? The folder doesn't show on my computer. I see all other pictures I took with the phone but not the imported folder.

    Photos that were synced from a computer won't show for copying to a computer. If you want to copy them back then you will need a third-party app on your phone such as Simple Transfer which can copy them off via your wifi network. But photos are 'optimised' when they are synced to a device, any that you then copy back to a computer may not be exactly the same as they originally were on your computer (e.g. their dimensions might be different and their colours may look a bit different).

  • How do I transfer my play lists from one pc to another? I can't find import on the new version.

    How do I transfer my play lists from one pc to another? I can't find import on the new version.

    Holtey wrote:
    Not an option.
    Onlly have turn on home sharing or get artwork
    Do ou have the iTunes menus showing across the top of the iTunes window?
    ctrl B

  • I'm trying to import photos from my iphoto library, but keep getting a message saying I cant import from 7.1.5, that I need to upgrade to 7.1.5 or later.  But I have version 8.1.2.  I don't know what to do. I've been able to import in the past.

    I'm trying to import photos from my iphoto library, but keep getting a message saying I cant import from 7.1.5, that I need to upgrade to 7.1.5 or later.  But I have version 8.1.2.  I don't know what to do. I've been able to import in the past.

    Sounds like an issue with the iPhoto Library
    Option 1
    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.
    If that fails:
    Option 2
    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

  • Importing tape into Imovie 11. How do I import all the clips as one long clip?

    How do I import all the clips as one long clip? I have 45 min of footage and I want it as one long take I can edit in Final Cut ProX. When I import, all the clips are split up when the scene cuts. I just want the 45 min in one long video.

    iMovie will import the tape as if it is direct from the camera. It will sense the scene breaks and put all the clips in chronological order.
    If you want to import it as one long clip, I suggest you load the tape into the app that you edited the tape with. Then export it out as a QuickTime movie in the DV codec. You can import this MOV file into FCPX or iMovie.

  • "Photos in the Camera Roll of "(your) iPhone" cannot be imported because the device is locked with a passcode.  You must unlock the device to import them."  My iPhone 5 running the latest iOS 7.1 and I'm using iPhoto '11 v 9.4.3

    "Photos in the Camera Roll of "(your) iPhone" cannot be imported because the device is locked with a passcode.  You must unlock the device to import them."  That's the new error message when I plug in my iPhone 5 running the latest iOS 7.1 into the MacBook Pro running iPhoto '11 v.9.4.3.  My Mac OSX is still 10.8.5.
    So, I unlock the iPhone by entering the "passcode" before I plug it into the MBP and still iPhoto does nothing.  At least it doesn't issue the error message above.
    I've checked both iPhoto preferences and those for Photos and Camera in the Settings on the iPhone.  There doesn't seem to be anything to change this lack of connectivity.
    What next please?

    An hour-long phone discussion with Apple Support yesterday solved this question and sorted a couple of others.
    As for this one, do not ignore any messages which pop up when you plug in your iPhone and ask "Trust this computer?".  The correct reply is "Yes", not "Cancel".
    OK, you cancelled like I did, thinking "What on earth is this for?".  Mistake.  You can force the issue by having iTunes open when you next plug in your iPhone.  Tell the iPhone that it can trust its old friend, your computer and voila!  Your photos can download into iPhoto again.
    Thank you, Jay with Apple Sydney, Australia!

  • Is there a way to import only the Address Bookfrom OE into TB? When I started to import my full data, I clicked Cancel, TB crashed, & my Address Book vanished.

    Hi, I am in the process of migrating from Outlook Express 6 to Thunderbird. Thunderbird made the migration very easy, a click of an "Outlook Express" radio box selection for import. But then I made it hard on myself by deciding I wanted to fix an OE .dbx folder-file (make it importable, previously not imported likely because it was marked "read only" and then re-import. I started to re-import OE into TB but then got nervous when I saw everything was importing, not a single dbx folder-file I wanted to fix. I clicked "Cancel" in TB, and then, when I later opened TB, noticed that my Address Book now is empty. It was definitely full before. Any ideas how to import strictly my contacts again? I am thinking of importing my entire OE data again if the answer to that post is that the re-import will not result in double OE line items. If I re-import all of OE, my Address Book should reappear, too, right?

    Oops, I found the answer to my question. Great knowledge base! I had originally imported via the automatic popup dialog box that appeared when I installed TB, and didn't absorb at the time that there would be a way to do an import later, after TB install, too, and even for specific parts of OE (address book vs. mail messages, etc.).
    I pasted the link to the "Migrate to Thunderbird" page that includes how to migrate just an Address Book from OE, but the following is all that pastes in: 9723729938
    I have typed out the link here:
    en.flossmanuals.net/thunderbird/migrating/

  • How do I get my videos to upload from my sony handy cam when I get the message The following file could not be imported.  The file is in an unrecognized format. I am using a macbook pro version 10.9.3, I have 411 gb free space, it worked before I updated

    How do I get my videos to upload from my sony handy cam when I get the message The following file could not be imported.  The file is in an unrecognized format. I am using a macbook pro version 10.9.3, I have 411 gb free space, it worked before I downloaded the latest update for iphoto.

    You may be able to download and install the update from here: Digital Camera RAW Compatibility 6.01
    If I upgrade to Yosemite will I be forced to go to the new Photos program
    No. After upgrading (and of course make a back up first) you will need to update iPhoto to v9.6.1 (you won't be able to do this prior to upgrading). Here's how:
    Go to the App Store and check out the Purchases List. If iPhoto is there then it will be v9.6.1
    If it is there, then drag your existing iPhoto app (not the library, just the app) to the trash
    Install the App from the App Store.
    Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.
    Photos is v1 of a new app, as yes it's not as mature as iPhoto. It uses a different technology for working with external editors. That requires Adobe to write an extension to let it hook into the new app. Not done yet, neither has anyone else.
    Going forward: iPhoto will run on OS 10.10., but there is no guarantee for subsequent versions of the OS. You might want to factor that into your anger term thinking.

  • Getting an error while importing/exporting the universe from my BO Designer

    Hi,
       I am facing a issue while importing/exporting the universe from my BO Designer to the Server.The error is mentioned below.
       'File Repository Server Input is down'
       Once I click the OK button on this error message, it displays  the message
       'Could not import the Universe'.
      I tried the check the status of the File Repository Server (Ouput and Input) and also the of the Root Directory on the  Physical Server and also my machine.They all have read-write access.
    Installed Version of the Universe Designer Client: Business Object XI Release 2 SP3
    Installed Version of the BO Enterprise Server: Business Object XI Release 2 SP2
      Can you please help me to resolve the issue

    Hi,
       The step you have mentioned may not be applicable to my issue as one of my colleagues can import/export the universe from the same server
    The second thing is that a DB2 Client v9 is installed on both mine and my colleagues system.The Designer software can recognise the DB2 drivers on his system but it cannot recognise the same drivers on my system.I even checked the versions of the BO software installed on his and my system and they are same.
    The only difference is that his machine is a Windows XP Machine and mine is a Network Desktop.
    Will any of the above two things will affect the operation of the BO Designer.
    Thanks
    Prabhakar Korada

  • Mac OSX, 10.7.5, LR 5.6  After creating a new folder in the Destination section and importing images, the new folder name appears as 2010, no matter what name I give it.  Why is it doing this?

    Mac OSX, 10.7.5, LR 5.6  After creating a new folder in the Destination section and importing images, the new folder name appears as 2010, no matter what name I give it.  Why is it doing this?

    I am experiencing Mavericks failing to copy subdirectories from usb sticks, I am backing up game saves from a console. Both sticks I use are fine, same permissions of course since the console wrote the files. Sometimes it copies, sometimes it doesn't. It seems to be related to the mounting process.
    Thank God Apple hasn't (yet) broken bash.

  • Photos in the camera roll of "iPhone cannot be imported because the device is locked with a passcode.  Tried just about everything - suggestions?

    Photos in the camera roll of "iPhone cannot be imported because the device is locked with a passcode.  Tried just about everything - suggestions?

    Because your computer sees your phone, as it would see any digital camera, as long as you have photos in your camera role. Since you state you don't sync with this computer & have a passcode on your phone, that's why you get that message. The only way to prevent that message is either start syncing with this computer; remove the photos from your camera roll prior to connecting; or first turn off your passcode before you connect. Either that, or you live with it.
    You shouldn't be storing photos in your camera roll anyway. iPhone camera roll is not designed for photo storage. You should be regularly importing them.

Maybe you are looking for