Searching for content in text insets

In a FrameMaker book, is there a way to search all the text insets in a book without opening each individual inset?
I'm working on a project that has more than 30 text insets. I'd like to search for certain terms without having to open each inset. I'm using FrameMaker 11.

Not really, as FM won't search the inset content directly. You could try creating an auxiliary book that contains just the inset files and use the Find function on that book. You can also add this book to your main book and mark it with Exclude so it doesn't get output, but still provides access to everything from the main book file.

Similar Messages

  • Cross reference markers are deleted for content in text insets

    Cross reference markers are deleted for content text insets. I currently have a chapter that is built from several Import by Reference files. I added an introductory paragraph with cross reference links to heading 2 titles in these text insets. Everything works and saves normally, although the cross reference markers disappear from the chapter when files are checked out a few days later. An extra Heading 2 is also added to the end of the document.
    Steps to reproduce:
    1. Create a chapter composed of several text insets.
    2. Create a list of cross references to headings in these text insets at the beginning of the chapter.
    3. Check in/check out the files from a source control product.
    What went wrong?:
    The cross reference markers are gone, resulting in broken cross references. An empty Heading 2 is also added to the end of the document following the final text inset
    What should have happened?:
    The markers should remain and the heading 2 tag should not be applied to the document.
    Product version:
    Product: FrameMaker
    Version: 7.2
    Platform information:Windows XP
    Hardware: Dell Latitude D620
    OS Version: Windows XP Professional Version 2002, Service Pack 3.
    RAM: 1GB

    Thanks for the information, Van. We did try several techniques including adding the insertion point immediately after the text inset before the normal paragraph tag, but none seemed to consistently work. I will investigate this scenario futher, though, in light of your comments.
    We have managed to determine a workaround for this issue by avoiding a string of text insets. For some reason, using multiple text insets without separating them with normal text causes most of the problems after we add the files to our source control system. The situaton is not ideal, but it does work for the time being anyway.
    Steve

  • Search for content within a PDF

    Is it possible to search for content within a PDF across a mapped drive?

    Yes. Use Edit>Advanced search. Choose All PDF Documents in and choose the mapped drive.
    They have to be searchable PDF's of course...

  • TS2755 I turned off MMS today and suddenly all my text messages dissapeared from SMS 'inbox'. switched the iphone 4s on and off many times, nothing. If I search for an old text message by text I can see it, but it's not in the box of SMS

    I turned off MMS today and suddenly all my text messages dissapeared from SMS 'inbox'. switched the iphone 4s on and off many times, nothing. If I search for an old text message by text I can see it, but it's not in the box of SMS

    show this link to your friend http://support.apple.com/kb/ts5185

  • How to search for the selected text with a non-default search engine?

    Hi,
    Before the recent update of the search bar, you could select your "current" search engine, and a search for the selected text (right-click on selection) would use that engine.
    Now, it seems that you can only search for the selected text using the default engine. If that's correct, this is a major step backwards for me. For instance, I can't have Google as my default search engine, and search for a selected text on eBay!
    Or am I missing something?
    Thanks!
    R.

    I find this extension very useful for items selected on web pages. It offers all your search engines with select>right click.
    https://addons.mozilla.org/en-US/firefox/addon/context-search/?src=search

  • Searching for content in stored webpages?

    I am a student and Oracle Text is new to me. I am using isqlPlus with Oracle10g
    I am trying to search the content of external websites I upload using a procedure. The files are uploaded as BLOBs. I know UltraSearch is out there, but I´m trying to make an easy example using only SQL syntax. So far, I am able to load the html documents into a directory, but the search results are always 0. I don´t know what I am missing (sorry for the ignorance)! Can anyone give me some tips?
    I am not a DBA. This are the rights I have:
    CONNECT
    CREATE SESSION
    CREATE ANY DIRECTORY
    CTXAPP
    RESOURCE
    CREATE CLUSTER
    CREATE INDEXTYPE
    CREATE OPERATOR
    CREATE PROCEDURE
    CREATE SEQUENCE
    CREATE TABLE
    CREATE TRIGGER
    CREATE TYPE
    UNLIMITED TABLESPACE
    --First I create a table
    DROP TABLE t03_sorbaugh.CONTENT_INVENTORY;
    CREATE TABLE t03_sorbaugh.CONTENT_INVENTORY (
    CONTENT_INVENTORY_ID NUMBER NOT NULL,
    FILE_NAME VARCHAR2(1024),
    KEYWORDS VARCHAR2(2048),
    URL SYS.HTTPURITYPE,
    TEXT BLOB DEFAULT empty_blob(),
    TEXT_LOADED CHAR(1) DEFAULT 'N' NOT NULL,
    CONSTRAINT UNQ_CONTENT_INVENTORY
    UNIQUE(CONTENT_INVENTORY_ID) USING INDEX
    TABLESPACE USERS
    --Then I load an external Website
    INSERT INTO t03_sorbaugh.CONTENT_INVENTORY
    (CONTENT_INVENTORY_ID, URL, KEYWORDS)
    VALUES ('1', sys.httpuritype.createuri('http://en.wikipedia.org/wiki/Art'), '');
    COMMIT;
    --The Procedure looks like this (sorry for not keeping it short)
    CREATE OR REPLACE PROCEDURE loadLOBFromBFILE IS
    Dest_loc BLOB;
    Src_loc BFILE := BFILENAME('DIR_TESTCASE', '');
    Amount INTEGER := 0;
    cursor ContentInv_cursor is
    --create a recordset of the file names
    --that we need to load from the filesystem into the
    --Oracle database.
    SELECT
    CONTENT_INVENTORY_ID,
    FILE_NAME
    FROM t03_sorbaugh.CONTENT_INVENTORY
    WHERE FILE_NAME IS NOT NULL;
    varContentInv_id CONTENT_INVENTORY.CONTENT_INVENTORY_ID%TYPE;
    varFileName CONTENT_INVENTORY.FILE_NAME%TYPE;
    BEGIN
    open ContentInv_cursor;
    loop
    varFileName := NULL;
    varContentInv_id := NULL;
    fetch ContentInv_cursor into varContentInv_id, varFileName;
    exit when ContentInv_cursor%notfound;
    Src_loc := BFILENAME('DIR_TESTCASE', varFileName);
    IF DBMS_LOB.FILEEXISTS (Src_loc) = 1 THEN
    SELECT text INTO Dest_loc FROM CONTENT_INVENTORY
    WHERE CONTENT_INVENTORY_ID = varContentInv_id FOR UPDATE;
    /* Opening the LOB is mandatory */
    DBMS_LOB.OPEN(Src_loc, DBMS_LOB.LOB_READONLY);
    DBMS_LOB.LOADFROMFILE(Dest_loc, Src_loc, dbms_lob.getlength(Src_loc));
    /* Closing the LOB is mandatory */
    DBMS_LOB.CLOSE(Src_loc);
    /* Optional update statement */
    UPDATE t03_sorbaugh.CONTENT_INVENTORY
    SET TEXT_LOADED = 'Y'
    WHERE CONTENT_INVENTORY_ID = varContentInv_id;
    COMMIT;
    END IF;
    end loop;
    EXCEPTION
    WHEN OTHERS THEN
    RAISE_APPLICATION_ERROR (-20001, 'Error occurred while loading LOBs.');
    close ContentInv_cursor;
    END;
    -- I upload the file to the directory 'd:\daten\oracletextpraktikum'
    set serveroutput on;
    EXECUTE loadLOBFromBFILE;
    -- PL/SQL-Prozedur erfolgreich abgeschlossen.
    -- Now the preferences and the index
    begin
    ctx_ddl.create_preference('doc_lexer', 'BASIC_LEXER');
    ctx_ddl.set_attribute('doc_lexer', 'printjoins', '_-');
    end;
    drop index idxContentMgmtURL;
    create index idxContentMgmtURL on content_inventory(url) indextype is ctxsys.context;
    -- Finally, I run an example where I search for the word "Art" ... the only Webpage uploaded to my directory contains the Art definition from Wikipedia, but still, I get no search results :(
    SET LINESIZE 5000
    SET PAGESIZE 5000
    select content_inventory_id, url
    from t03_sorbaugh.content_inventory
    where contains(url,'&WORD_TO_FIND') > 0;
    --Type "Art"
    neu 3: where contains(url,'art') > 0
    Es wurden keine Zeilen ausgewählt
    Is isqlPlus somehow limited in using Oracle Text? I can´t seem to find the Problem!

    Okay, but I'm afarid I can't help much more than that, as I'm still new at Oracle Text myself. From my limited knowledge, it all looks fine, but like you, I must be missing something.
    You might try asking the DBA if the TXTSUP_UTIL package is installed in the CTXSYS schema. If it isn't, he can download it from Metalink or I can send it via email.
    While it won't fix the problem, it does offer some insight into the index preferences and storage, etc.
    BIll Ferguson

  • Will TREX/KM search for content on PDF files in Searchable image formats?

    Good Day,
    We are implementing KM/Trex for an SAP E-sourcing installation and I'm wondering if TREX is able to search PDF contents in the Searchable image format?
    Essentially, we scan a document which creates an image and then run Abobe Acrobats OCR on the document to create searchable text.
    Thanks in Advance,
    Kyle

    Hi Kyle,
    TREX is not able to index a scanned document even this is pdf.
    BUT if afterwards a OCR is running and this OCR text will be stored as hidden text in the pdf than TREX is able to search in this pdf.
    Best regards
    Frank

  • How do I search for content in my bookmarks?

    Hello,
    is there a way to search only my bookmarks for content?
    Essentially turn my bookmark folder into a personalized google?
    Thanks

    Click the Bookmarks icon left side of the Safari window then select a Bookmark folder.
    You should see a search field with a magnifying glass icon top right.

  • Search for a particular text used in formule - whole repository search

    Is there a way to search for a text used in formulae in all reports (CMS Database). We have hundreds of reports and some are using legacy Crystal formulae syntax. We want to know which reports are using such formulae.
    Please share if you have any utilities or scripts to search all reports. There is a Find/Replace feature in report formula editor.But I want to search all the reports in CMS.
    Thank you!

    Hello,
    Sorry nothing built into BOE. Only way would be to write an application to go through each report object and search, update then write back to the repository.
    You'll need a developer to write this for you or possibly contact our Professional Services to write this for you.
    Thank you
    Don

  • Is there a way to globally search for content?

    As more types of video become available, my biggest bugaboo with the Apple TV is the lack of a global search for a movie or TV show title or actor. I now look on Netflix, then look on Hulu, then look at YouTube, then look in iTunes store every time I have an idea for something I wish to watch enters my head.
    Other than a jailbreak, is there some way to do this that I am not getting? Is anyone else interested in this feature? Friends running home servers like Plex always bring this up as one of the reasons to use their solution.

    Jailbreaking will not help you with that. It is a matter of what vendors are dealing wheat suppliers, they aggrements they have in place, and the content they can get, and where (geographically) they can provide it.  Other than iTunes, Apple has no control over that (and limited control even then).
    I've been using an app called CanIStream.It for a while. Not always 100% accuratre, but has helped to find some content. I think they have a corresponding website, but not sure.

  • Searching for string in text files on XP

    Hi,
    At the moment I'm working on a Struts program. The output I get is:
    The requested resource (Invalid path /displayAddProductForum was requested) is not available.Somewhere in my files, I have a line containing /displayAddProductForum that should be displayAddProductForm. As I'm using XP as my development platform, I use the 'Windows Explorer' search facility. And I have noticed this search facility does not look in .java, .jsp and any other file with a non-Microsoft file-extension. So, how do you search for a string in a source file on XP?
    Abel

    sabre150 wrote:
    kajbj wrote:
    sabre150 wrote:
    Abel wrote:
    , I use the 'Windows Explorer' search facility. And I have noticed this search facility does not look in .java, .jsp and any other file with a non-Microsoft file-extension. So, how do you search for a string in a source file on XP? Err.. On my XP it does search though java/jsp files if I tell it to!You mean by modifying the registry?No! Using the right mouse click on a directory to get a context menu -> Search -> (All or part of filename : .java ) and (A word or phrase in the file : blah blah blah) -> Search
    Edit : Errr.. maybe I'm talking rubbish because I have just tested this and it only finds 5 java files of mine that contain the word 'class'! I'm sure it used to work because in my 'Windows' days I frequently used it.
    Edited by: sabre150 on Dec 20, 2007 12:44 PMSounds a bit odd. Search in windows should only search in registered file types and neither jsp nor java are registered types. It's however possible to modify the registry and add extensions (but it's not possible to say search within all types of files, and that sucks)

  • Numbers: searching for occurences of text (case sensitive)

    For biology class, I have a table for dihybrid genetic crosses. After I fill in all the table, I want another table to be able to count the occurrences of each letter combination.
    Essentially, what I want to do is tell a cell to count how many occurrences of "BBHH" are in a range of cells. The COUNTIF function is not case sensitive. I tried nesting the EXACT function inside functions like COUNTIF, COUNT, IF, etc., but EXACT doesn't accept a range of cells.
    Is there a way to do this (a.k.a. create a function that would have the same effect as a hypothetical case-sensitive COUNTIF)?

    Matt,
    I think you are giving up too soon. Create an additional column that tests each cell for your value using EXACT. Column A has your values, B2 has EXACT("BBHH",A2) and you have filled down as far as you have needed (say B11). In A12 use COUNTIF(B2:B11,"=true") to count matched values. Hide column B. Repeat for each value you want to search for.
    Quinn

  • SAP Forums (Jive) and TREX 7.1 search for content in attachements

    Hi
    I'm trying to find out if and how its possible to set TREX 7.1 up to index content and attachments in Jive forums. I've found a statement saying that portal search dosent work for Forums (EP-COL-APP-FOR).
    Does anybody know if this can be done and then how ?
    Of course I need a search UI for Forums if the standard one dosent work..
    We are talking EP7.0 with Forums 7.00 sp 18.
    Brgds Henrik

    Hi Herik,
    you can configure TREX to index the forum repository manager and by that search forums, categories, threads and messages.
    Have a look at this link for more information:
    http://help.sap.com/saphelp_nw70/helpdata/EN/47/17904a21fa3696e10000000a11466f/frameset.htm
    Hope this helps,
    Robert

  • Searching for content within a specified directory

    I am trying to do a simple content search on a specified directory, but I do not get the results I expect.
    I have looked at the examples and based my code upon them.
    If anyone can spot what I am missing or have forgotten I would be very grateful.
    Thanks
    Chris

    Here is the offending code :import oracle.ifs.beans.LibrarySession;
    import oracle.ifs.beans.LibraryService;
    import oracle.ifs.adk.filesystem.*;
    import oracle.ifs.beans.Search;
    import oracle.ifs.search.AttributeQualification;
    import oracle.ifs.search.AttributeSearchSpecification;
    import oracle.ifs.search.ContextQualification;
    import oracle.ifs.search.ContextSearchSpecification;
    import oracle.ifs.search.FolderRestrictQualification;
    import oracle.ifs.search.JoinQualification;
    import oracle.ifs.search.SearchClassSpecification;
    import oracle.ifs.search.SearchClause;
    import oracle.ifs.search.SearchQualification;
    import oracle.ifs.search.SearchSpecification;
    import oracle.ifs.search.SearchSortSpecification;
    // Import objects for working with search results
    import oracle.ifs.beans.LibraryObject;
    import oracle.ifs.beans.PublicObject;
    import oracle.ifs.beans.Folder;
    import oracle.ifs.beans.Document;
    import oracle.ifs.beans.ContentObject;
    import oracle.ifs.beans.SearchResultObject;
    // Import object for exception handling
    import oracle.ifs.common.IfsException;
    import oracle.ifs.common.AttributeValue;
    import java.util.Vector;
    public class contentSearch
    LibrarySession ls;
    String strSearch;
    public contentSearch()
    public void setSession( LibrarySession libsession )
    ls = libsession;
    public LibrarySession getSession()
    return ls;
    public void setSearchString(String str)
    strSearch = str;
    public PublicObject[] SearchSimple()
    Vector vecOutput = new Vector(50,5); PublicObject[] resultsArray = null;
    try
    ContextQualification cq = new ContextQualification();
    cq.setQuery(strSearch);
    String ContextClauseName = "CQ";
    cq.setName(ContextClauseName);
    SearchSortSpecification sortSpec = new SearchSortSpecification();
    sortSpec.add(Document.CLASS_NAME, ContextQualification.ORDER_PREFIX+"."+ContextClauseName, true);
    JoinQualification jq = new JoinQualification();
    jq.setLeftAttribute(Document.CLASS_NAME, Document.CONTENTOBJECT_ATTRIBUTE);
    jq.setRightAttribute(ContentObject.CLASS_NAME, null);
    // Add Folder Restriction for the search
    IfsFileSystem fsAPI = new IfsFileSystem( ls );
    PublicObject po = fsAPI.findPublicObjectByPath("public_demo");
    FolderRestrictQualification frq = new FolderRestrictQualification();
    frq.setStartFolder( (Folder) po);
    frq.setSearchClassname(PublicObject.CLASS_NAME);
    // END of FolderRestrictionQualification
    SearchClause sc = new SearchClause( cq, jq, SearchClause.AND );
    ContextSearchSpecification cp = new ContextSearchSpecification();
    cp.setContextClassname("CONTENTOBJECT");
    cp.setSearchClassSpecification(new SearchClassSpecification(new String[] {"DOCUMENT", "CONTENTOBJECT"}));
    cp.setSearchQualification(sc);
    cp.setSearchSortSpecification(sortSpec);
    // Session connection
    LibrarySession session;
    LibraryService serv;
    // Connect to Oracle iFS
    serv = new LibraryService();
    session = serv.connect("system", "manager", "IfsDefault");
    Search s = new Search(session, cp);
    try
    LibraryObject lo;
    // Open the search
    s.open();
    while (true)
    // Returns the next result row into Library Object
    lo = s.next().getLibraryObject();
    // Add LibraryObject to output vector to return
    vecOutput.addElement( lo );
    if (lo == null)
    throw new RuntimeException ("Retrieving search results : LibraryObject is null");
    else
    // Print results
    System.out.println(lo.getName());
    } // End Of While Loop
    } // End Of try block for search open
    catch (IfsException e)
    /* Throw an error, unless the exception is
    * 22000 'End of Data' which is always thrown
    * when s.next() reaches the end of the cursor.
    if (e.getErrorCode() != 22000 )
    // Something bad happened
    e.setVerboseMessage(true);
    throw new RuntimeException("Error happened in returning result set:"+e.getMessage());
    } // End of catch block for search open
    finally
    // Check if the size of ResultSet Vector Is more than zero
    if ( vecOutput.size() > 0)
    resultsArray = new Pub licObject[vecOutput.size()];
    for (int i=0; i < vecOutput.size(); i++)
    // Copy the result set library object to Public Object Array
    resultsArray[i] = (PublicObject) vecOutput.elementAt(i);
    } // End IF
    // Close the search
    s.close();
    } // End of Finally block for search open
    catch (IfsException i)
    System.out.println(" " + i.getMessage());
    return resultsArray; // Return the results
    null

  • When users are trying to search for content in SharePoint 2013 under Firefox browser, they are unable to open the listed results.

    Unable to open UNC path result in the Firefox browser, because the firefox cut out the server name from the unc path.
    The correct unc path is \\servername\foldername, in the firefox browser the listed result's uncp path is \\\foldername
    Thanks
    Thomas

    Unable to open UNC path result in the Firefox browser, because the firefox cut out the server name from the unc path.
    The correct unc path is \\servername\foldername, in the firefox browser the listed result's uncp path is \\\foldername
    Thanks
    Thomas

Maybe you are looking for

  • Meaningful way to identify steps executed in a loop?

    Hello, I have a set of tests, where I apply a voltage to many different pins (sequentially) while checking the response for each pin on a CAN bus. I implemented the tests in a loop, like this (pseudo-code): paramsArray = initParamsFromFile() For_each

  • No Sound on the internet ( Safari) !!

    Everything else plays find but when I'm on the internet all the websites have no sound. Some please help me...

  • 11gR1 - using SOAP_CLIENT as protocol to connect to worklist service fails

    Hi, We are trying to use the SOAP_CLIENT protocol to connect to the BPEL worklist service using a standalone java application. The code to connect is: IWorkflowServiceClient wfSvcClient = null; IWorkflowContext wfCtx = null; Map<CONNECTION_PROPERTY,S

  • How can i change the undisclosed text of Detail Disclosure in a table

    Hi. I have a new OAF page, with an advanced table. The table has a Detail Disclosure (a row-level Hide/Show in a table). By default, the prompt is "Show" or "Hide" for disclosed/undisclosed state. I need to change this text to another text, like"paym

  • Updates not showing

    I don't know if it's because iOS 7 came out but my iPod keeps coming up with the update notification but when I go to the update screen it says all apps are updated. I know that the apps aren't updated as I went into purchased apps and quite a lot of