How do we what page we are in ?

We have installed I procurement here and would like to customize some of the apperance and flow of the pages.
In the SELF service framework manual they are saying that if you go and view source of html page then you will get the region code. But when we did that we are getting lot of region codes.
if we are into one screen ,Is there any to find out what page we are in?

A picture is worth a thousand words, and your numbers don't quite square up. Attach a picture.
It sounds like you want to have two rows of 4 and then three rows of 6, and then what? Is that it for the page? On to the next page the same way?
You could just merge 24 seperate fields.
Or you could pad your spreadsheet with 2 blanks in each of the first two rows, and then delete the blank boxes after you run the merge.
I think I would probably do the latter. That just turns it into an Excel problem.
If you want to solve this with InDesign scripting, well...there's no control over the internals of data merge. You can use it to change around
your document after (or before) the merge is complete, but that doesn't sound like an efficient approach here. (So your post is probably better off in the main forum, oh well.)

Similar Messages

  • I have a A4 document (569 pages) and within that A4 there are few A3's. Is there a way to isolate the A3's or find out what page numbers are A3's instead of scrolling through all the 569 pages???

    I have a A4 document (569 pages) and within that A4 there are few A3's. Is there a way to isolate the A3's or find out what page numbers are A3's instead of scrolling through all the 569 pages???

    thank you for the info... however I'm done buying pdf readers.... I've got three now, that should suffice.
    I don't think there's a problem such as you mentioned because the pages are all similar : text and drawings. Some of the pages with drawings work, other similar pages don't.
    I converted with Calibre to epub format and this seems to work !!!
    So good so far...
    Now I need to find a conversion to pdf to allow me to use goodreader or iannotate.
    Basically... the text is ok, because a conversion allows reading. So a shortcoming by Apple in my opinion. Again, all pdf's should be readable on such an expensive tool !!!

  • How to see what SQL queries are made to my Database Server?

    Hi all,
    I'm a newbie. I'd like to know if there's a way to find out what SQL queries are being made to my Database server at the server end.
    Is it possible that Oracle Database Manager logs this information (including the exact query/SQL)somewhere in its logs? How to enable such an option and/or view the recent SQL queries made ?
    Please enlighten me. Thanks in advance.
    Thanks and Regards
    Sharat

    "I checked the V$SQLTEXT view too. It has only 64 characters for SQL_TEXT field." Yes yes but you might have noticed that it also has the column called piece. The view shows the full SQL statement broken up into little pieces. Use ADDRESS and HASH_VALUE to link to v$sql. There is also a view V$SQLTEXT_WITH_NEWLINES that throws in some line separators to make it "easier" to read.
    Example below shows full text of SQL statements currently executing.
    SQL> column address noprint
    SQL> column hash_value noprint
    SQL> break on hash_value skip 1
    SQL> select
      2     a.address, a.hash_value, b.sql_text
      3  from
      4     v$sql a, v$sqltext b
      5  where
      6     a.users_executing > 0
      7     and b.address = a.address
      8     and b.hash_value = a.hash_value
      9  order by
    10     a.address, a.hash_value, b.piece ;
    SQL_TEXT
    select    a.address, a.hash_value, b.sql_text from    v$sql a, v
    $sqltext b where    a.users_executing > 0    and b.address = a.a
    ddress    and b.hash_value = a.hash_value order by    a.address,
    a.hash_value, b.piece
    begin quest_exec.get_message(:cmd, :peer, :owner, :folder, :scri
    pt, :delay); end;
    6 ligne(s) sélectionnée(s).
    SQL> select
      2     a.address, a.hash_value, b.sql_text
      3  from
      4     v$sql a, v$sqltext_with_newlines b
      5  where
      6     a.users_executing > 0
      7     and b.address = a.address
      8     and b.hash_value = a.hash_value
      9  order by
    10     a.address, a.hash_value, b.piece ;
    SQL_TEXT
    select
       a.address, a.hash_value, b.sql_text
    from
       v$sql a, v
    $sqltext_with_newlines b
    where
       a.users_executing > 0
       and b
    .address = a.address
       and b.hash_value = a.hash_value
    order by
       a.address, a.hash_value, b.piece
    begin quest_exec.get_message(:cmd, :peer, :owner, :folder, :scri
    pt, :delay); end;
    6 ligne(s) sélectionnée(s).

  • How to check what oracle patches are installed

    Hello,
    I need to now what oracle patches are installed on different databases, how can achieve this?
    Regards.

    Yep:
    select ACTION_TIME,ACTION, VERSION,COMMENTS from sys.registry$history;
    ACTION_TIME ACTION VERSION COMMENTS
    25-JAN-09 07.06.05.665358 PM UPGRADE 10.2.0.4.0 Upgraded from 10.2.0.1.0
    20-MAY-09 12.23.00.924500 AM APPLY 10.2.0.4 CPUJan2009
    20-MAY-09 12.32.48.709814 AM CPU view recompilation
    Regards.
    Edited by: user6046340 on Jun 25, 2009 3:57 PM

  • How to know what ActiveX references are still open

    Okay, so I'm about the millionth person to post about this topic, but I feel like I know what I should be doing, but have hit a wall.  I have read through pretty much everything I could find in the forums about references and ActiveX.
    I am communicating with Excel via ActiveX, and everything works seemlessly, until I realized that if the user closes the Excel sheet (via an "exit" button on my FP), the "EXCEL.exe" process is still running.  I've read enough to know that this probably points to a reference that I have not closed.
    Problem is, I have poured over my code, and as far as I can tell, I have closed every reference, in the opposite order it was opened (as I read to do in a post earlier).
    Aside from casting references to int's to see what is still considered "active" (as I mentioned earlier, all the ones I can find are closed, so this doesn't help me), is there a way to determine which ActiveX references are still open?
    Even a way outside of LV?  A Microsoft utility even or ...well anything!  This is very annoying, and I know it should be quick and easy, I just have to know what is remaining open.
    Or, am I missing something else that might be keeping EXCEL.exe running?  (yes, I have an application quit and close the application reference)
    Thanks for any help

    Hi Will,
    As you said it yourself closing the same number of references as you open and using Application Quit should be enough to close down Excel.exe.
    Did you run your code in highlight execution to see how the behavior of your program changes when you hit the "Exit" button on your Front Panel?
    If you can post the minimum amount of code that reproduces the error, I will be more than happy to take a look at it.
    Best regards,
    Message Edited by Kalin T on 12-07-2006 03:11 PM
    Kalin T.
    National Instruments
    Attachments:
    activex_excel.jpg ‏16 KB

  • How to see what data fields are linked to

    OK, not sure if that is even how to ask for what I am looking for. I am using Jetform Design version 5.3. There is a file at my company that was created before I took over as Systems Admin and one of the fields is cutting off the test string.  It is actually the text pay line on a check ie. One hundred twenty three thousand and.......It stops at the word and. It is pulling data from our ERP system somehow and has been confirmed that it does print the cents amount when not printing thru Jetforms to Adobe Central Server.  Somewhere in the conversion those final words are getting lost and I have no clue where. I don't know how to look at the link of that pay field on the form.  Can somebody please try and give me a hand. Thanks alot!

    Can you take a look into the data file (eg. DAT file) which is used to merge with the Jetform template?
    I suppose you could see some text like:
    ^field FD_PAY_TEXT
    One hundred twenty three thousand and ...
    Please be noted that FD_PAY_TEXT is sample. It could be another name. Then, opening Jetform template by Output Designer and seeking a textbox named FD_PAY_TEXT. You can use the combo box (in the top-right side) that listing all of objects in current template to reach a specified object.
    Hope it helps.

  • How to set what page opens when open a new tab?

    I don't want the page that comes up when I open a new tab. How to I change that?

    Add On Manager->extensions-> " annoying "toolbar->options->advanced/custom installation->use "****" for a new tabs opened----> uncheck it->ok!!!!!
    Go to Add On Manager
    (Ctrl+Shift+A)
    goto the extension which is causing problem.
    click on options.
    goto Advanced Custom Installation
    uncheck the "use ****** for a new tab opened"....
    It should solve the Problem!!!!!!

  • How to find what all languages are supported by particular font ?

    Please ................... help !!
    i want to dynamically generate a list of languages supported by a given font.
    Waiting for reply.
    Thanks & Regards
    Manish Basotia

    Hello Arthur M,
    You said:
    ok thanks
    so in this case what's the serial# ? ;)
    I see that every session has an different SID and Serial#.
    its looks like redondant information... These info are in combination a unique session identifier. Let's take an example:
    SID---SERIAL#---USERNAME
    10----22--------USER1
    11----10--------USER2
    12----24--------USER3
    13----25--------USER4
    Let's say USER3 disconnects. we now have:
    SID---SERIAL#---USERNAME
    10----22--------USER1
    11----10--------USER2
    12----24--------
    13----25--------USER4
    And now USER5 connects:
    SID---SERIAL#---USERNAME
    10----22--------USER1
    11----10--------USER2
    12----25--------USER5
    13----25--------USER4
    Now, a little explanation.
    When a user connects the system gives him a Session IDentifier (SID). But, each time a SID is given to a session, the SERIAL# is increased. THis allows to differentiate sessions. Immagine you just had a look at the sessions at step 1. If you want to kill the session, ods are when you issue the command, you'll be at step 3. If you just identify the session via SID, you just killed the USER5 session. Oops.
    Same things appear for locks, enqueues, ...
    So the only way to be sure is to have the SID and SERIAL#. SID can be considerred like a "Connexion Slot" and SERIAL# like "The number of times the Connexion Slot has been used".
    Hope this helps,
    Yoann.

  • How to activate the queries which are inactive

    Hello All,
    1) After BW upgradation from 3.5 to 7.0 we found some of the queries are inactive. Can anyone let me know how to activate those inactive queries.
    2) How to find what all roles are inactive nd how to activate them.

    Hi,
    After upgrade or client copy you'll need to set the release indicator for queries (prog. RSAQUM40), in general it is only possible to transport those queries that are created in the global area. For conversion of queries refer OSS notes 92124/109094/119655.
    However if you wish to move queries from the standard area use program RSAQR3TR, execute the program via TX SA38 then click in the blue "i" (information button) for full details of the program.
    Best Regards,
    Chandrasekhar

  • I am reading in ibooks and i do not see how many pages there are or what page i am on. how do i fix this

    i am reading in ibooks and i do not see how many pages there are or what page i am on. how do i fix this

    Some books may not display a page number on each page, or the position indicator, because the author did not include them. 
    Most basic books resembling paperbacks that are mostly words (like Kindle books) will display these because they are so basic
    that iBooks knows they need to have that information superimposed, so it just does it.
    For more advanced books, the people who made the book may elect to not display page numbers for some or all of the pages. 
    What book are you reading, and have you looked at another book and had the same problem?

  • In Safari I can define what pages are loaded when I open a "New Window". How do I achieve the same in Firefox (and supress the current begavior of it opening all of the tabs that I defined as my home page all the time)?

    I am returning to Firefox after having used Safari on Mac for the past year. One thing I liked about Safari was that I could define what page gets loaded when I used the File Menu command to open a new Browser Window. I defined this as opening up with my Bookmarks Menu where I then was able to select the page I wanted to go to.
    I have not been able to find a way to define this in Firefox and was surprised to see that "New Window" in Firefox opens all of tabs that I've defined as my Home Page.
    Is there a way to manage this?

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I have just updated my plug in & add ons, but they are several that say to research. How do I know what plug ins are necessary for mozilla to run properly. I really don't want a bunch of unnecessary downloads on my computer

    I have just updated my plug in & add ons, but they are several that say to research. How do I know what plug ins are necessary for firefox to run properly. I really don't want a bunch of unnecessary downloads on my computer

    None are '''''necessary''''' to use Firefox, but some parts of some web pages aren't going to work without a specific plugin being installed.

  • How do I work out what pages templates have in them ?

    I think i do this !
    how do I work out what pages templates have in them ?

    Hi c,
    "Instinctive" (and "Intuitive", the more common term) seem to be often used where "what you're used to" would be a more accurate choice. Nothing about Page Layout is particularly instinctive if you've never done it before.
    Regarding 'greying out' some of the tools: Tools and menu items go grey when they aren't available. For example, you can't move an object to the front if you don't have an object selected (or if the selected object is the only thing in the document), or if the selected object is already further forward than anything else in the document. Anytime it is possible to use the tool/menu item in the current context, the tool/item will be active, and shown in dark type.
    You mention you are headed toward a "business plan/power point thing." The first (business plan) makes me think in terms of print, and something to be produced from a word processing template rather than page layout one. The second part say 'this will be projected on a screen' and says 'Keynote would be a better application for this task than Pages.'
    Keynote is a presentation tool, designed to produce documents that will be presented on a screen (ie. designed for the same type of documents as Powerpoint was built to produce).
    Pages has two basic document types, both aimed at producing documents that will be printed:
    Word processing—used for things like letters and reports. In general, documents that are mostly text, but that may have some illustrations, charts, or other graphics objects inserted into them.
    Page layout—used where there's a mix of graphics and text, with the text usually coming in smaller chunks.
    The biggest difference between them is that a 'blank' page layout document is really 'blank'. It can be thought of as a page sized blank canvas onto which you can place containers for text (text boxes), shapes, images, charts, or containers (placeholders) for images or other objects.
    A blank word processing document can also accept the objects and containers listed above, but also includes a text layer (where text can be entered directly, without the need to place it into a text box), and a background layer (where objects can be placed behind the text layer).
    If the above helps you choose the type of document you want to have as the end product, we can then take a look at one of the templates for that type and look at deconstructing it.
    Regards,
    Barry

  • Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Pages 5.5.1: When opening a document created with Pages '09 (Version 4.0) with Pages 5.5.1 the page header and the page footer are deleted. How can this be prevented? Or is this a bug in Pages 5.5.1?

    Same problem here (no graphics in header or footer) and the problem has been reported months ago. It is another bug/feature lost when Apple moves from 09 to the iCloud-compatible versions.  Complain to Apple, you may have better chance than me and they may finally listen to their users....

  • My rescue email is a deleted email and i have no idea what the answers are to my security questions- what do I do? How do I change the rescue email?

    My rescue email is a deleted email and i have no idea what the answers are to my security questions… what do I do? How do I change the rescue email?

    You will need to contact Apple support. You can use the link in the quote below from If you forgot the answers to your Apple ID security questions - Apple Support
    If you couldn't send a reset email, don't have a rescue email address, or can't access email at your rescue email address, contact Apple Support.

Maybe you are looking for

  • Table is not getting updated

    Hi, I have developed the code to create projects and to update the table ytest. When I write the project name and click on create button, one more screen comes(like LSMW screen) where we have to give the description. This is happening, but when the s

  • Just got iphone, and safari stuck in Landscape mode

    Hey Everyone, Hope this isn't a newbie error, but everytime I start the Safari it flashes briefly in portrait mode, and then defaults to landscape. I've tried a hard reset, upgrade to 2.2.. and it still happens. Thanks, Dnouche

  • ITunes will not open on 10.7

    I have downloaded 10.7 and I can not open iTunes. It says there is a problem and this is what it says Process:         iTunes [1105] Path:            /Applications/iTunes.app/Contents/MacOS/iTunes Identifier:      iTunes Version:         ??? (???) Co

  • I see there's mail but can't read content!

    I understand there were a few issues recently with icloud, but while I can see I have mail on my iPhone 4S, when I open an individual email on my iPhone I get just the header text with the sender details and subject, but then everything below the hea

  • Write XMP data to custom FileInfo Panel in CS5

    Hello, I have created a custom FileInfo Panel in CS5.5. We had a programmer create a shell script to do the same thing for CS3, but now he wants too much money to rewrite the script for CS5.5. I was able to create the custom info panel easily using a