Trying to find the Find/Change queries

Okay I thought I knew where these were.  I've looked in
C:\Users\phyllis\AppData\Local\Adobe\InDesign\Version 6.0\en_US\Caches
There are files there called FindChangeData and FindChangeDataTmp, but writing them into the folder for Version 7.5 doesn't do anything.
So I think I'm looking in the wrong place.  I'm trying to move all the find/change queries into InDesign CS 5.5.  Can someone point me to them?
Thanks, Phyllis

try C:\Users\<USER>\AppData\Roaming\Adobe\InDesign\<Version #>\<Language>\

Similar Messages

  • How to find the list of queries containing a Particular Infoobject

    Hi all,
    I have requirement to find the list of queries and workbooks which contains a Particular Infoobject. Please advice is there any Database table or Programs exists to find..
    Thanks in advance
    GAMY..

    Hi,
    Thanks for your replies.
    I have tried the oprion already..(RSD1 > Type in the name of the InfoObject and from the menu Edit > choose Where Used list.) but no use. It doesn't show the list of queires..It shows only the data targets.
    I would like to know is there any table to achieve the requirement.
    Thanks in advance
    Ganesh(GAMY)

  • How to find the list of Queries/Reports which are using Exceptional Aggregation in SAP BI?

    Hi All,
    We are interested to know how to find the list of Queries/ Reports which are using Exceptional aggregation in SAP BI.
    Please let us know is there any table's to check the list of reports using Exceptional Aggregation in SAP BI.

    Hi,
    Here you go..
    1) Go to table RSZCALC and get list of ELTUID where AGGREXC is not INITIAL and AGGRCHA is not initial; now you get only exception aggregation set based on some chars. Also you can further add STEPNR = 1 since your intention is just to get query name , not the calculation details; this will reduce number of entries to lookup and save DB time for next steps.
    Here you will get list of exception aggregation UUID numbers from which you can get properties from RSZELTDIR.
    2) Pass list of RSZCALC-ELTUID to table RSZELTXREF - TELTUID and get list of RSZELTXREF -SELTUID - this table stores query to it's elements maping kind.
    3) Now again pass RSZELTXREF - SELTUID into same table but into different field RSZELTZREF - TELTUID and get RSZELTXREF - SELTUID
    This step you get query reference sheet or column or query general UUID for next step.
    4) Pass list of RSZELTXREF - SELTUID into RSZELTDIR - ELTUID with DEFTP as 'REP'. Now you get list of query names in RSZELTDIR - MAPNAME and description in TXTLG.
    Note: you can also get the reference chars used for exception aggregation from RSZCALC - AGGRCHA field.
    Hope this helps.
    Please keep in mind, it might take more time depends on how many query elements you have in the system...
    Comments added for better DB performance by: Arun Thangaraj

  • How to find the list of Queries for that have statistics enabled in the sys

    Hi ,
    How to find the list of Queries  that have statistics enabled on them in the system.
    Please help me in this regard
    Thanks
    Maruthi

    hi ,
    I found three options there like
    X - on
    D - Default
    off
    can you please expalin the difference between on and Default
    Thanks in Advance
    Maruthi

  • How to find the recent changes done in the workflow by user id ?

    Hello all,
    How to find the recent changes done in the workflow by user id ?
    I have made changed in Production system .
    Like changing the status ,
    changing the agent ,
    but for these it will , not ask for any request .
    So i want to know is there any method to find what are the changes done by me ?
    Thanks and regards
    Prem

    Hi,
    This is caused by mandant settings in scc4. It's better not to make changes in PRD, because then your DEV en QA systems differ.
    Kind regards, Rob Dielemans

  • Script to find the list of Queries currently running in database with User Login Name and Host Name.

    Hai,
    How to find the list of queries currently running in the Database with User Login Information.
    Since my database application is running slow, to find the slow queries.

    Try the below query
    SELECT r.start_time [Start Time],r.session_id [SPID],
    DB_NAME(database_id) [Database],
    s.host_name,
    s.program_name,
    s.login_name,
    SUBSTRING(t.text,(r.statement_start_offset/2)+1,
    CASE WHEN statement_end_offset=-1 OR statement_end_offset=0
    THEN (DATALENGTH(t.Text)-r.statement_start_offset/2)+1
    ELSE (r.statement_end_offset-r.statement_start_offset)/2+1
    END) [Executing SQL],
    r.status,command,wait_type,wait_time,wait_resource,
    last_wait_type
    FROM sys.dm_exec_requests r
    OUTER APPLY sys.dm_exec_sql_text(sql_handle) t
    inner join sys.dm_exec_sessions s
    on s.session_id = r.session_id
    WHERE r.session_id !=@@SPID -- don't show this query
    AND r.session_id > 50 -- don't show system queries
    ORDER BY r.start_time
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • I would like to find the object change and to move

    Thank you very much, but
    Sayfaları, tek tek sayfalarını bakacak bu script belgede (3, 5, 7, ...) işlem yok
    I would like to object all page (height and width of the rectangle is known, the text frame) to move to find and replace
    The height and width of a rectangle with known or find text frame, changing the height and width, to move to a point
    I'm glad I sent you edit scprit
    var findX, findY, changeX, changeY, moveX, moveY;
    var diyalogWindow = app.dialogs.add({name:"RECTANGLE oR TEXT FRAME", canCancel:true});
    with(diyalogWindow){
      with(dialogColumns.add()){
    with(borderPanels.add()){
    with(dialogColumns.add()) {
    staticTexts.add({staticLabel:"FİND X"});
                         findX = textEditboxes.add({editContents: "10"});
                        staticTexts.add({staticLabel:"FİND Y"});
                          findY = textEditboxes.add({editContents: "10"});
    with(dialogColumns.add()) {
         staticTexts.add({staticLabel:"CHANGE X"});
                          changeX = textEditboxes.add({editContents: "50"});
                          staticTexts.add({staticLabel:"CHANGE Y"});
                          changeY = textEditboxes.add({editContents: "60"});
             with(dialogColumns.add()) {
         staticTexts.add({staticLabel:"MOVE X"});
                          moveX = textEditboxes.add({editContents: "100"});
                          staticTexts.add({staticLabel:"MOVE Y"});
                          moveY = textEditboxes.add({editContents: "10"});
    if(diyalogWindow.show() == 1) {
    var myDocument=app.activeDocument;
    var p;
    for(p=0; p < myDocument.selection.length; ++p) {
            myDocument.selection[p].move([changeX.editContents,changeY.editContents]); // ................... how contined ???

    https://forums.adobe.com/message/6714843#6714843
    this script
    app.selection  .paragraphs.everyItem (). spaceAfter = 1
    its make spaceafter = 1
    but how make
    1
    2
    3
    4
    5
    Each click, I get a continuous increase
    2014-09-04 12:14 GMT+03:00 vandy88 <[email protected]>:
        I would like to find the object change and to move  created by vandy88
    <https://forums.adobe.com/people/vandy88> in InDesign Scripting - View
    the full discussion <https://forums.adobe.com/message/6700008#6700008>

  • Finding the long running queries

    Hello, I am able to find the long running queries in my database as below.
    SQL> select sid,serial#
    2 from v$session_longops
    3 where time_remaining > 0
    4 order by time_remaining desc;
    SID SERIAL#
    1100 4411
    1383 3912
    1295 2493
    SQL>
    With this info, i want to find out what sql code related to these (SID,SERIAL#). The SQL code comes from v$sqlarea. But i am not able to join v$session_longops with v$sqlarea. Any help is highly appreciated.
    Here is my database version.
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production

    Thank you!!!
    select     
    A.SID ,
    A.SERIAL# ,
    A.OPNAME ,
    A.TARGET ,
    A.TARGET_DESC,
    A.SOFAR ,
    A.TOTALWORK ,
    A.UNITS ,
    A.START_TIME ,
    A.LAST_UPDATE_TIME ,
    A.ELAPSED_SECONDS ,
    A.CONTEXT ,
    A.MESSAGE ,
    A.USERNAME ,
    B.sql_fulltext
    from     v$session_longops a,
    v$sqlarea b
    where a.sql_id = b.sql_id
    and     time_remaining > 0
    order by time_remaining desc

  • I cannot find my data on my finder sidebar and i tried to check the finder pref and Disk utility

    I cannot find my data on my finder sidebar and i tried to check the finder pref and Disk utility
    and i do not want tpo delete any data on my flashdisk

    Launch Finder.
    View > Show sidebar.
    Move the mouse to the right of the "Devices", "Show" should show up.

  • External hard drive connected to my airport extreme will no longer open, when navigating to it in Finder, the Finder window quits and reopens, cannot access hard drive, it is visible in airport utility, since the problem began I have updated firmware

    External hard drive connected to my airport extreme will no longer open, when navigating to it in Finder, the Finder window quits and reopens, cannot access hard drive, it is visible in airport utility, since the problem began I have updated firmware on Extreme as well as both of my Airport Expresses. Hard drive is USB connected to Extreme.

    Reboot the USB drive.. assuming it is powered.. or unplug and replug a self-powered drive.. (you should not use self-powered drives on AE before the latest model.. always use a powered hub).
    Does the drive now appear in finder..
    If not reboot both drive and the AE.. it should now appear.
    If it doesn't work with direct connection try a powered hub.. that can help.

  • Monitoring manually using scripts/sql cmds to find the recent changes on Oracle Database

    Hello All,
    I have an Oracle database running on HP Open VMS Alpha server, need to monitor the actvities and changes made to the database.
    I am not sure of any tools which supports HP Open VMS alpha server, Can you help with the scripts or commands to findout recent changes occured on the database.
    I found suddenly a couple of schema sizes showing very less in size than usaul, how to find out the recent changes.
    Regards,
    RanG

    RanG wrote:
    Thanks but sorry EdStevens,
    I was referring to DB Administration/auditing etc on HP Open VMS in specific. Tools or Grid agent installation steps for effective and easy monitoring.
    Regards,
    RanG
    And I was referring to "DB Administration/auditing etc " on any platform.  Oracle's AUDIT function is the same regardless of OS.
    "I found suddenly a couple of schema sizes showing very less in size than usaul,"
    Exactly what do you mean by "schema sizes showing very less in size than usual"?  Schemas don't have sizes.  Only segments.
    Perhaps if you were more explicit in exactly what problem you are trying to solve, we could give better advice, but whatever it is, I seriously doubt that the solution will be OS-specific.

  • How to find the shape change of a curve

    Dear All,
    I need to find the point where the curve got deviated. I Tried Calculating Slope It Is Not useful. Share Some Ideas to sort out this problem.
    Find the attached vi and the TDMS file read the file with default group name and let me know the result.
    Thanks and regards,
    Rams.
    Attachments:
    Test.vi ‏38 KB
    Testdata.zip ‏293 KB

    You don't define what you mean by "deviate". Deviate from what? From zero? From a straight line?
    Your curve has a couple of places where the slope changes, can you tell us which one you want?
    First is it horizontal, then
    starts sloping upward. (x=~1.0)
    changes in slope (x=~1.4)
    another change in slope (x=~1.9)
    In what way is calculating the slope "not useful"?
    LabVIEW Champion . Do more with less code and in less time .

  • Comparing a table itself to find the grade change duration

    hi Frnds
    I have one table with Grades and jobs and i need to find the duration of staff for a particular grade.If a person have multiple grades in his EmpGrade History how long he was on that grade.I want to find the grade differe not job Difference.How long one person stayed in a certian grade as of 31-DEC- 2007,31-DEC-2008
    EmpGradeHist
    empno---------grade----------job-------Datestart---------Dateend
    110-------------4---------------Clerk------- 01-JAN-2006------01-DEC-2007
    110--------------4--------------SnrClerk----02-DEC-2006------01--JAN-2008
    110--------------5---------------Officer------02-JAN-2008------31-APR-2009
    110-------------6----------------SnrOfficer--- 01-MAy-2009---
    111-------------5---------------officer-------01-JAN-2005------01-DEC-2005
    110--------------5--------------Snrofficer--02-DEC-2005------31--MAR-2007
    110--------------8---------------SnrEXe----01-APR-2007------31-APR-2008
    110-------------9----------------SnrExe--------01-MAy-2008--- -
    the Desired result should be
    as of 31-DEC-2008
    empno------ Grade------Dur
    110-----------4----------2yrs
    110---------- 5----------.9yr
    111---------5----------2.3yr
    I tried following query but its not working
    SELECT empno,grade,MIN(datestart),MAX(dateend),MAX(dateend)-MIN(datestart) Duration FROM
    SELECT emp,grade,datestart,(CASE WHEN NVL(dateend,:dt)>=:dt
    THEN :dt
                             ELSE dateend END) dateend
    FROM EmpGradeHist
    WHERE datestart <= :dt)
    GROUP BY empno,grade
    rgds
    radhika

    Starting a duplicate thread is not the answer to avoid a question: Comparing a table itself to find the change duration

  • I am trying to update an Ipod Touch 3G but can't find the find uploads in the general settings.

    I am trying to update the software on an Ipod Touch 3G but can't find software updates in the generral settings.

    What is the firmware of the iPod touch you're updating right now? If it's not 5.x, then you cannot, because that was a primary feature of 5.0 (the mobile software updates). Then, you would have to update the software using your computer and iTunes

  • Bought an iPad 2 , did all the set up, when I tried to use the find my iPhone app. , it can't seem to locate my iPad. Or not listed in the devices, can you help me solve this issue?

    Anyone?

    Just get to make sure I'm understanding correctly. The iPad 2 can connect to the internet and the web just fine. I also read another post stating that Mobile me awhile back was having issues with the find my "ipad/iphone/ipod touch" functionality. 
    I'm not sure about this but if your not a mobile me user don't you have to sign up for the "find my ... service"?
    Can I assume you did that too?
    Paul

Maybe you are looking for

  • ITunes doesn't load all of my music

    For some reason iTunes doesn't load all the songs that's in My Music folder. I have over 3500 songs in that folder but it only imports 451 of them. I never had this problem until today. Can anyone tell me what's wrong

  • Requirements for the Interactive Graph -- Process Monitoring in WLI

    Hi, In my WLI console I m not able to bring the Graphical View for the Process Monitoring. My server is running on HP-UX -11, however I am able to view the graph from the workshop (windows desktop). Is there any server side requirement for the Graphi

  • % Symbol in report after calculation

    Hi, I have two key figures in my report. I want to calculate the percentage of KF1 to KF2. Say KF1 is 20 and KF2 is 100. My KF3 is the formula and it should 20 %. I am using the %A operator and it is just returning the value 20 and the % Symbol follo

  • Selection of records in TABLE CONTROL.

    hello friends, this is venkat. I have been using a table contrlo to display the contents of a custom table. my table control can display 10 records in one shot and my custom table had more than that. vertical scroll bar has been working properly so i

  • Status Icon next to the battery life.. Little phone with dots...

    Hey, What is the little phone icon next to the battery life display on my iphone? I cannot find it in any of the literature.. A little phone with buttons below it... Confused.. Thanks Lucas