Example of find itab

Hi Guru's,
can anybody explains me and give me a sample program of below syntax please?
i want to know how exactly it works?
please can anybody help me?
FIND IN TABLE itab
Syntax
FIND [{FIRST OCCURRENCE}|{ALL OCCURRENCES} OF] pattern
  IN TABLE itab [table_range]
  [IN {BYTE|CHARACTER} MODE]
  [{RESPECTING|IGNORING} CASE]
  [MATCH COUNT  mcnt]
  { {[MATCH LINE   mlin]
     [MATCH OFFSET moff]
     [MATCH LENGTH mlen]}
  | [RESULTS result_tab|result_wa] }
  [SUBMATCHES s1 s2 ...].
Thanks & Regards
Priyalatha

Hi hope this can help you
Example
DATA: text TYPE STRING.
text = 'Everyone knows this'.
<b>FIND 'know' IN text.</b>
The search was successful. The field sy-subrc is set to 0.
System values
sy-subrc = 0
The search string was found in the target field.
sy-subrc = 4
The search string was not found in the target field.
sy-subrc = 8
This return value occurs only in systems with a multi-byte code page. The content of the search string in this case is an invalid multi-byte string.
Depending on whether byte or character string processing is carried out, the operands can only be byte-type or character-type.
<b>... MATCH OFFSET off.</b>
Effect
If the search string p is found in the target field c, the position in the string where it first occurred is stored in off.
Example
DATA:
  c    TYPE STRING,
  p(2) TYPE C,
  off  TYPE I.
c = 'Everyone knows this'.
p = 'ne'.
FIND p IN c MATCH OFFSET off.
After the search, off = 7 and sy-subrc = 0.
<b> MATCH LENGTH len.</b>
Effect
The length of the search string p is stored in the field len.
Example
DATA:
  c    TYPE STRING,
  p(2) TYPE C,
  off  TYPE I,
  len  TYPE I.
c = 'Everyone knows this'.
p = 'ne'.
FIND p IN c MATCH OFFSET off MATCH LENGTH len.
After the search, sy-subrc = 0, off = 7, len = 2.
REWARD POINTS IF USEFUL

Similar Messages

  • SyncBo Example - cannot find message associated with key

    Hi,
    I followed the tuturial to create a SmartSync Project.
    And when I run the project I've got a Servlet Exception:
    javax.servlet.ServletException: cannot find message appropriated with key: dispatcher.forwardException.
    What I need to change?
    Thanks a lot,
    Rachid

    Hi,
    this error comes up when the destination serlvet throws an exception other than ServletException!
    Its a standard tomcat bug!
    Rgds Thomas
    -->
    http://issues.apache.org/bugzilla/show_bug.cgi?id=19114
    -->From apache.org:
    When a forwarded servlet throws an exception other than ServletException or
    IOException, the thrown exception is lost. This is due to the line:
    throw new ServletException(sm.getString("dispatcher.forwardException", t));
    (found in org/apache/tomcat/facade/RequestDispatcherImpl.java:210)
    the earlier catched t is here not passed into the constructor of
    ServletException but into getString.
    To reproduce construct a servlet that throws an Exception (other than
    ServletException and IOException) and another servlet that forwards to it. You
    will get just a forwardException (if you have the proper locale strings
    installed!) but the originally thrown exception will get lost forever.

  • I have activated SVT 6.0 however it does not show installed in the find examples

    I have the Sound and Vibration measuremnt suite installed and the Sound assistant works.  However when go to look at the examples in Find examples in Labview 8.6 it shows not installed.
    Any ideas

    Hello Tim Nrc,
    Thanks for your post!
    I am sorry to hear that you cannot access your examples for Sound and Vibration. I want to let you know that you can always navigate straight to them using windows explorer.
    C:\Program Files\National Instruments\LabVIEW 8.X\examples\Sound and Vibration 
    I would like to ask if you have multiple versions of LabVIEW installed on the system. If you recently installed LabVIEW 8.6 then the examples would only be installed for the last version. So to get the examples you can simply uninstall and reinstall the Sound and Vibration Measurement suite and add support for LabVIEW 8.6. Let me know if any of this information helps/assist you to getting your SVT example programs.
    Cheers!
    Corby_B
    http://www.ni.com/support 

  • How to find a string in all directories/folders

    Good Day,
    I need to search for a word through out all the directories .Is there any command that which I can type to search for a string in all the directories,folders and sub folders at one time.
    Thanks in advance.
    Regards,
    Gopi.CH
    Edited by: 915796 on 10-Jun-2012 19:18

    Use the find command if you are looking for a specific file or directory name. The following example will find only filenames (type f) that contain the word "sample", but exclude the results found in /usr and /u01:
    # find / -type f -name "*sample*" | egrep -v "/u01|/usr"
    /home/oracle/snippets/parse2.sample
    /home/oracle/snippets/parse3.sample
    /root/sample.bin.dc
    /root/sample2.bin
    /root/sample.bin
    /root/sample.des
    /root/sample.out
    /etc/gdm/PostLogin/Default.sample
    /proc/sys/kernel/perf_event_max_sample_rateUse the grep command to search for content. For example:
    # grep -r "Dude" /home
    /home/oracle/snippets/sched_stop_dist.sh:# Author   : Dude
    /home/oracle/snippets/healthcheck.sh:# Author:     Dude

  • How to find the data table sin CRM 4.0

    Dear Guru's
    I want to know where can i get all the data tables in crm 4.0 for example if i want to know the data table for the Reason in activity Management.with the help of data table only the ABAP people can work.....na
    Points willbe given
    With Best Regadrs
    Sreeram Raghu

    Hi Raghu,
    There are many techniques in which you could find the database tables, few of them are given below:
    - Place your cursor in the field for ex: reason in activity and press F1
    - In F1 screen(performance assistant), Click on Technical Information (fourth button from left), you can find here the database table name.
    Another Option:
    - Go to transaction SE11
    - In Database Table Field type few letters, for example to find all the activity table type * act * and then press F4, all the tables related to activity will be displayed
    Wish this was useful to you
    regards
    Srikantan

  • About query Operator in find page??

    hi all~
    I hava a trouble about query operator.
    for example:
    In find page , there are some attribute for query.
    attribute BRAND for query the vender's name,
    Assume database has the follow data:
      BRAND
    =================
    1.IBM
    2.RedIBM
    3.BLUEIBMCO
    Case 1:When i input IBM in BRAND attribute and press Find,the result is :IBM
    Case 2:When i input %IBM in BRAND attribute and press Find,the result is : RedIBM,BLUEIBMCO
    How could I get above two result just input IBM??
    I want to serch the value of BRAND that contain IBM whether it location at the frond or middle.

    Spray Lin,
    I'm afraid that this time I do not quite understand what you are after.
    When I understand you correctly, you are saying that the current behavior is not what I think it should be, for example IBM results in IBM and IBMblue. That is strange indeed.
    Furthermore is it that when you try to find on IBM it should find everything with IBM in it? Said in other words, entering IBM should have the same result as entering %IBM%?
    If that is the case, you can achieve that by adding an extra property to the find form bean: "wildcardUsage". Setting this to "surround" will result in a "%" being put in front and at the end of the value you enter.
    You can look this up in the JHeadstart Developers Guide in the section Model-Aware Form Beans.
    Jan Kettenis,
    JHeadstart Team

  • [JS] I would like to find the date modifed of a link file

    I have a vbs script that updates my links. It checks if the file exists and then the modified date. I need to verify the link file had been updated within a few hours to verify it has today's info instead of yesterday's.
    I would like to convert this to use JavaScript but have had difficulties finding the link's modified date.
    I don't expect someone to rewrite my script but can someone give an example to find if a file exists and it's modified date?
    Terry W.
    Option Explicit
    msgbox "Press OK to continue!"
    'appliation object
    Dim objMyInDesign
    'document ofject
    Dim objMyDocument
    'table object
    Dim objTable
    'cell object
    Dim objCell
    Dim txtNewText
    'link object
    Dim objMyLink
    Dim txtFlag
    ' File from file system object
    Dim objFSO
    Dim objFileExistMessage
    Dim objFile
    Dim TimeDifference
    Dim FileDate
    ' Test for Message Box
    Dim MessageText
    ' myDocument will be the active document
    Dim myDocument
    'Windows Script object
    Dim WScript
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objMyInDesign = CreateObject("InDesign.Application.CS3")
    If objMyInDesign.Documents.Count = 0 Then
    MsgBox ("Please Open Document and Try again!")
    Else
    Set objMyDocument = objMyInDesign.ActiveDocument
    DoLinksExist()
    'ProcessLinks()
    End If
    Sub DoLinksExist
    For Each objMyLink In objMyDocument.Links
      If Not objFSO.FileExists(objMyLink.FilePath) And
    (TypeName(objMyLink.parent) <> "EPS") Then
       objFileExistMessage = MsgBox("File/Link does not Exist:"
    & vbCrLf _
       & vbCrLf & objMyLink.FilePath & vbCrLf & vbCrLf _
       & "Do you wish to continue with missing files??", _
       vbYesNo + vbCritical,"Stock Missing -- Continue?")
       If objFileExistMessage = vbYes then
        FilesAge()
        Exit Sub
       ElseIf objFileExistMessage = vbNo then
        MsgBox ("Script Quiting!!")
        Exit Sub
       End If
      End If
    Next
    FilesAge()
    End Sub
    Sub FilesAge()
    For Each objMyLink In objMyDocument.Links
      If objFSO.FileExists(objMyLink.FilePath) And
    (TypeName(objMyLink.parent) <> "EPS") Then
       Set objFile = objFSO.GetFile(objMyLink.FilePath)
       TimeDifference = abs(DateDiff("h", Now,
    objFile.DateLastModified))
       'If file is older than six hours then present error
    message
       If TimeDifference > 6 Then
        objFileExistMessage = MsgBox("ATTENTION!!!!" _
         & vbCrLf & "OLD!! OLD!! OLD!!" _
         & vbCrLf & vbCrLf _
         & "A Stock is very OLD" & vbCrLf _
         & vbCrLf & objMyLink.FilePath & vbCrLf &
    vbCrLf _
         & "Do you wish to flow old stocks onto
    page???", _
         vbYesNo + vbCritical,"STOCKS OLD --
    Continue?")
        If objFileExistMessage = vbYes then
         ProcessLinks()
         Exit Sub
        ElseIf objFileExistMessage = vbNo then
         MsgBox ("Script Quiting!!")
         Exit Sub
        End If
       End If
      End If
    Next
    ProcessLinks()
    End Sub
    Sub ProcessLinks
    For Each objMyLink In objMyDocument.Links
      If objFSO.FileExists(objMyLink.FilePath) And
    (TypeName(objMyLink.parent) <> "EPS") Then
       objMyLink.Update
      Else
       'objFileExistMessage = MsgBox("The following file/link
    DOES NOT exist" _
        '&  vbCrLf _
        '& vbCrLf & objMyLink.FilePath _
        '& vbCrLf & vbCrLf & "This link will not be
    processed" _
        '& vbCrLf & vbCrLf & "Click on 'OK' and" _
        '& " script will continue processing
    files/links")
      End If
    Next
    End Sub

    Seems like I may have found the answer of the modified date by using:
    var file2 = new File(myLink.filePath)
    alert("file2.name: " + file2.name)
    alert("file2.name: " + file2.modified)
    For the date I use:
    var currentTime = new Date() to get the time for Now and then subtract the file's date. If the difference is more then six hours I wan't to update the file. We link to text files created daily for lists of Dow stocks so must verify we're using today's stock info. I should change the time to one hour instead of six but it's worked for the past eight years.
    I'm now updating from InDesign CS to CS4 and from FreeHand?? to native Illustrator files for our graphs. I haven't figured out how to update the Illustrator graph's data using a script... well that's a different forum....
    Terry w.

  • Applescript find/change problem

    I have some text which needs to be styled in InDesign CS4 which has a bunch of extraneous tags ( eg. <b>, <i>, etc.). I have customised the FindChangeList.txt file that supports the FindChangeByList.applescript file to do things like:
    {find what:"<i>"}
    {change to:"^S"}
    which can then be picked up by a nested style. All good so far.
    Problem: the applescript will just not 'see' the strings <b> or </b> in FindChangeList.txt. It treats them like they aren't there. I can do it using the find/replace within InDesign, it works fine there, but my problem is that I have hundreds of pieces of copy to import and I'd like to automate as much as possible. Using GREP has the same effect, ie. works in find/replace within InDesign, but not with applescript.
    Any help would be greatly appreciated as this is really killing me at the moment. Thanks!
    Content of FindChangeList.txt follows. The command in the final line works, the command in the second-last line doesn't.
    (FYI the second line of code contains 'InDesign CS3' regardless of whether I use CS3 or CS4. I guess they didn't update the file)
    --FindChangeList.txt
    --A support file for the InDesign CS3 AppleScript FindChangeByList.applescript
    --This data file is tab-delimited, with carriage returns separating records.
    --The format of each record in the file is:
    --findType<tab>findProperties<tab>changeProperties<tab>findChangeOptions<tab>description
    --Where:
    --<tab> is a tab character
    --findType is "text", "grep", or "glyph" (this sets the type of find/change operation to use).
    --findProperties is a properties record (as text) of the find preferences.
    --changeProperties is a properties record (as text) of the change preferences.
    --findChangeOptions is a properties record (as text) of the find/change options.
    --description is a description of the find/change operation
    --Very simple example:
    --text          {find what:"--"}          {change to:"^_"}          {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false}          Find all double dashes and replace with an em dash.
    --More complex example:
    --text          {find what:"^9^9.^9^9"}          {applied character style:"price"}          {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false}          Find $10.00 to $99.99 and apply the character style "price".
    --All InDesign search metacharacters are allowed in the "find what" and "change to" properties.
    text          {find what:"<b>"}          {change to:"^S"}          {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false}          Find all bold and replace with non-breaking space.
    text {find what:"<i>"} {change to:"^S"} {include footnotes:true, include master pages:true, include hidden layers:true, whole word:false} Find all italics and replace with non-breaking space.

    You probably should post this in the ID Scripting forum. Here's an example of some simple AppleScript find and changes that might help:
    --find and replace keyboard formating
    tell application "Adobe InDesign CS5.5"
         --first clear the preferences
         set find text preferences to nothing
        set change text preferences to nothing
        --replaces non breaking space with space
        set find what of find text preferences to "^s"
        set change to of change text preferences to "<0020>"
        set myFoundItems to change text
        --replaces soft return with return
        set find what of find text preferences to "^n"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces return space with return
        set find what of find text preferences to "^p<0020>"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces 2 returns with return
        set find what of find text preferences to "^p^p"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces return, tab, return with return
        set find what of find text preferences to "^p^t^p"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces space, return with return
        set find what of find text preferences to "<0020>^p"
        set change to of change text preferences to "^p"
        set myFoundItems to change text
        --replaces space, space with space
        set find what of find text preferences to "<0020><0020>"
        set change to of change text preferences to "<0020>"
        set myFoundItems to change text
        --replaces 3 tabs with tab
        set find what of find text preferences to "^t^t^t"
        set change to of change text preferences to "^t"
        set myFoundItems to change text
        --replaces 2 tabs with tab
        set find what of find text preferences to "^t^t"
        set change to of change text preferences to "^t"
        set myFoundItems to change text
    end tell

  • Display UNIX path at top of Finder window?

    I used a trick, long since lost I'm afraid, to tell the Finder to display the
    UNIX path name of the current directory at the top of the Finder window.
    For example, a finder window with my Documents folder selected
    (i.e. "in" the Documents folder) normally shows the special
    Documents folder icon and the name "Documents".
    What the trick would have it show instead is:
      "/Users/cprice53/Documents"
    I've started over with a clean install of Lion (jury still out on the wisdom of this)
    so even if the setting would still work, I don't know how to make it.
    Does anybody know how to do this in Lion?

    And Indeed it does.
    Thanks so much.
    I've used other software from Marcel Bresink but had not looked at this one.
    For the benefit of anybody stumbling onto this thread
    in the future, I highly recommend both his free and paid
    software.  Take a look at.
       http://www.bresink.com/

  • RMI Hello Example under Windows

    I'm trying out the Sun RMI Hello World example to find out more about RMI
    http://java.sun.com/j2se/1.5.0/docs/guide/rmi/hello/hello-world.html
    I'm using JDK1.6, under WinXP.
    I've compiled the classes, then tried to run the Server using start java example.hello.Server (I've added a CLASSPATH env var pointing to the root of my class files.)
    When the Server starts I get
    Server exception: java.rmi.ConnectException: Connection refused to host: 192.168
    .1.5; nested exception is:
    java.net.ConnectException: Connection refused: connect
    java.rmi.ConnectException: Connection refused to host: 192.168.1.5; nested excep
    tion is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(Unknown Source)
    at sun.rmi.transport.tcp.TCPChannel.newConnection(Unknown Source)
    at sun.rmi.server.UnicastRef.newCall(Unknown Source)
    at sun.rmi.registry.RegistryImpl_Stub.bind(Unknown Source)
    at example.hello.Server.main(Server.java:61)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(Unknown S
    ource)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(Unknown S
    ource)
    ... 6 more
    My ip address is 192.168.1.5
    I think this is some sort of networking security problem and I would be grateful for some pointers on solving this ?

    jtahlborn wrote:
    do you have an rmiregistry running? the server is trying (and failing) to connect to a registry. i believe those examples refer to starting the rmi registry before running the example code.I didn't do that. Thanks for the help.
    In a real application I assume you start the registry service in some way when the server is started if it isn't already running ?

  • Query to find previous Activity in STM

    I have a database to reflect a State Transition Machine (STM). It contains 3 tables: Activity, Node and Transition.
    The Node and Transition tables are the configuration of the STM. They define the different possible states and the possible transitions between states.
    The path I take through the STM is recorded in the Activity Table. A record is created for every Node visited.
    I need a query that uses the id of my current Activity to find my previous activity, i.e. the activity that directly preceded me. The following rules apply:
    - My Id is meaningless
    - It has to work for different configurations of the transition and node tables, but:
    - The Start Node is always Node 'A'.
    - There are no recursive transitions, e.g. ('B','B');
    - There are no circular transitions, e.g. ('B','C') and ('C','B')
    - The transition and node tables will never change between the creation of the first activity and the execution of the query.
    - The path reflected by the Activity table is always a valid path.
    - My current activity is always the last activity.
    For the dataset below, find the previous activity of activity with id=4. The correct answer is 'C'.
    DROP TABLE Transition;
    DROP TABLE Activity;
    DROP TABLE Node;
    CREATE TABLE Node
         Id VARCHAR2(1) PRIMARY KEY
    CREATE TABLE Activity
         Id Number(8,0) PRIMARY KEY,
         Node_Id VARCHAR2(1)
    CREATE TABLE Transition
         FromNode_Id VARCHAR2(1),
         ToNode_Id VARCHAR2(1)
    ALTER TABLE Activity
    ADD FOREIGN KEY
    (Node_Id) REFERENCES Node(Id);
    ALTER TABLE Transition
    ADD FOREIGN KEY
    (FromNode_Id) REFERENCES Node(Id);
    ALTER TABLE Transition
    ADD FOREIGN KEY
    (ToNode_Id) REFERENCES Node(Id);
    INSERT INTO Node VALUES ('A');
    INSERT INTO Node VALUES ('B');
    INSERT INTO Node VALUES ('C');
    INSERT INTO Node VALUES ('D');
    INSERT INTO Transition VALUES ('A','B');
    INSERT INTO Transition VALUES ('B','C');
    INSERT INTO Transition VALUES ('B','D');
    INSERT INTO Transition VALUES ('C','D');
    INSERT INTO Activity VALUES (1,'A');
    INSERT INTO Activity VALUES (2,'B');
    INSERT INTO Activity VALUES (3,'C');
    INSERT INTO Activity VALUES (4,'D');Desired output:
    ID
    C

    Hi,
    Assuming Activity_id tells us nothing about the path, but that all the rows in Activity together form a single, complete path, we can get the desired results this way:
    WITH     all_paths    AS
         SELECT     'A' || SYS_CONNECT_BY_PATH (a.Node_id, '/')
                  || '/'     AS node_id_path
         FROM     Transition  t
         JOIN     Activity    a  ON  a.Node_Id  = t.ToNode_Id
         WHERE     LEVEL             = (
                                SELECT  COUNT (*)
                             FROM     activity
                             ) - 1
         START WITH  t.FromNode_Id  = 'A'
         CONNECT BY  t.FromNode_Id  = PRIOR t.ToNode_Id
    SELECT       REGEXP_SUBSTR ( node_id_path
                     , '([^/]+)/' || (
                                        SELECT  Node_Id
                                 FROM    activity
                                 WHERE   Id     = 4  -- target_id
                             || '/'
                   , 1
                   , 1
                   , NULL
                   , 1
                   )     AS prev_id
    FROM       all_paths
    ;This assumes there is some character (I used '/' above) that we know never appears in Activity.Node_Id.
    Since there are no loops in Transition, there can not be more than 1 path that involves all the rows in Activity. If there are N rows in Activity, that complete path will be the one that extends to LEVEL = N-1. (That's N-1, not N, because the join between Activity and Transition will always leave out the 1 row in Activity that has Node_Id = 'A'.) Once we have the complete path (which is node_id_path in the 1 row produced by all_paths), we just need to figure out what was the Node_Id that corresponds to the target id (4 in this example), and find the previous node_id from the delimited node_id_path.

  • Finding location of selection in InCopy [AppleScript]

    This is a variation of my request from yesterday. I am able to select the last character of the last column of the story. I now want to know the location of that character.
    For example, I find the last character with this lin of code
    select text of last character of last word of last text column of myStory
    I then put the seleciton in a variable
    set mySelection to selection of myDocument
    mySelection is a list. The first object has the following definition:
    text from character 1108 to character 1108 of story id 37515 of document id 7
    But I cannot figure how to get the the character number (1108) into a variable.
    Any ideas?

    I have some of my answer. I set a variable to the index of the given character. See below.
    tell application "Adobe InCopy CS5"
    set myDocument to active document
    set mySelection to selection of myDocument
    set myTextObject to item 1 of mySelection
    set myStory to parent story of myTextObject
    set myOverset to overset text of myStory
    set myText to index of last character of myTextObject
    set howMany to count characters of myStory
    select character 20 of myStory
    end tell
    Now to figure out how to select a selection of text.
    This works:
    select character 20 of myStory
    This doesn't:
    select characters 20 through 30 of myStory

  • Find datafile for a table (Urgent)

    Is there a way to find a datafile for a non-partitioned table.
    For examples
    Table 'A' belong to tablespace 'T'
    tablespace 'T' has 2 files 'F1' and 'F2' both in different filesystem in unix.
    I need to run a huge load on table 'T'
    I need to find which file system should have enough space for this load.
    Thanks

    Here an example to find the file name and the size taken by the table:
    SELECT a.name,sum(nvl(b.bytes/1024,0)) from dba_extents b, v$dbfile a
    where b.owner='X'
    and b.segment_name='A' and
    b.file_id=a.file#
    group by a.name
    Michel.
    http://www.odbtools.com

  • Organize in Finder by Date, not by Roll?

    I've been using iPhoto for quite a while. And I've been used to uploading photos to Snapfish, which uses the same folder structure as the Finder used to organize iPhoto, so it was easy to find any photo by date. I could upload all the photos from July 4, for example, by finding iphoto/2006/07/04. Easy enough.
    But now in iPhoto 6 there's this blasted "roll" category. When I try to upload, I have to look in iphoto/2006/modified/roll 821 or whatever roll it is. Plus iPhoto 6 has taken my nice folder-dated organizational structure and changed it to this roll structure, which is ineffective. Now if I see a photo in iPhoto, I have no idea of finding where on my hard drive it is, unless I want to search by the DSCN number. And I don't know what roll iPhoto thinks it is (I've chosen to sort by ascending date). Shouldn't the roll show up in the info box?
    So I'm looking for some way to change the roll structure back to the original date structure (year / month / day). I want to be able to upload easily to services such as Snapfish and I want to be able to manage the photo files in the Finder rather than through iPhoto. I can't backup my photos easily by dragging them to a hard drive, for example, without exporting them first (waste of time). Or I can't look easily at the folder for July 2006 and see what dates I've already uploaded from my camera.
    Andrewrchambers posted a question (http://discussions.apple.com/thread.jspa?threadID=561829&tstart=0) about organizing folders, which was a start, but didn't answer my question.
    I want to use the beautifully designed Apple Finder feature to automatically put photos into dated folders like it used to and get rid of the roll feature entirely. Who can help?

    It was in response to many who wanted a system that was based on folders representing "shoots", more in line with the many professional image management systems available. iPhoto's use has grown beyond the causal home photographer and Apple was just meeting the greater demand for more user control of file storage and folder identification.
    I upload my photos to a folder on the desktop, then title the folder with the shoot date (I'm not a pro) and a brief description. I then use R-Name to batch sequentially name the files with the internationadate format, YYYY-MM-DD-01.jpg, etc. This gives me great chronological search and sort.
    Also for finding files by date you can use the Calendar at the bottom of the Source window. You can retrieve files by year, month or individual date. One you find the file you're looking for, a Control-click on the thumbnail and a selection of the Show file option will take you to the folder that contains the file and the file will be selected.

  • K-modes algorithm working example

    can any give me a worked out example to find the class lable attribute using k-modes algorithm, or please tell me where can i find it.
    thanking everyone.

    You can use k-means algorithm and change the distance computation into mode (frequency). I found code for k means in http://people.revoledu.com/kardi/tutorial/kMean/download.htm

Maybe you are looking for

  • Payment adjustment against PDC

    Hi, Our SD person wants to capture PDC(cheque no) received from customer while adjusting the payment (i.e. payment receipt against which cheque no) against Bill.Can anyone plz tell me what standard setting is available to solve this issue or any conf

  • Mail will not launch

    Cannot open mail from iCloud on my MacBookPro or my iPad. Last email I retreived was yesterday afternoon. I can open other applications in iCloud, e.g., iCal and Contacts. When I try to open mail the grey screen comes up and then the white screen wit

  • Comcast mail folders

    I have comcast email as one of my email accounts. Why can't I see all my folders like with yahoo account? Also, is there a way to create new folders under an email account on the iPhone 3G? Thanks.

  • Where can I view all apps by a publisher?

    In ios 7 I don't see "view all" when your on a publishers page where it shows all the apps on it.  But I don't see a view all button for either iPhone apps or iPad apps. Where is it the button to view all of the apps?

  • Promise to Pay Settings

    Hi Gurus, Under financial supply chain management I went to Collections managment / integration with accounts receivable accounting/ Make settings for promise to pay .... Under this I specified Company Code & Tolerance Days , the system asks to enter