Need field 1 to active second page - Help!

I have a form with many pages.  I want page (1) active and visible.  I want all other pages invisible unless the corresponding sn field on page (1) is filled in.
Example
Page 1
sn for page 2 entries
sn for page 3 entries
sn for page 4 entries
etc
page 2, page 3, page 4, etc should be visible only if something is entered in the sn field of page (1).  Like, "If sn for page 2 = null than page 2 "hidden".
Can this be done?
Sorry, new to livecycle
Thanks!

Thanks so much, this is how I have ended up with it:
  //if S/N is filled in, associated page will become visible - DNLE
if ((!this.isNull || !this.rawValue =="") || (!qeck_sn.isNull || !qeck_sn.rawValue =="")) page2qec.presence="visible";
else if (this.isNull && qeck_sn.isNull) page2qec.presence="hidden";
else page2qec.presence="hidden";
 This seems to be working BUT when it is checked in the preview PDF -vs- saving out to reader and saving as other readerextender, etc... it often starts erroring out after a couple of times of adding and removing the S/Ns.
Thank you so very much!

Similar Messages

  • Duplicate fields on a second page

    Hello,
    I have question that I'm hoping someone might be able to answer.
    I would like to create a 3 page form that would be used to collect information and printed out. Only pages 2 and 3 would print and a copy given to the relevant department. Ideally, pages 2 and 3 would be hidden from the viewer until they are printed.
    The first page would just have all the fields that need to be filled in. I then want to be able to copy the completed fields that relate to Department A to page 2 and copy the completed fields that relate to Department B to page 3.
    Can anyone tell me if this can be done and if so, what would be the best way to go about it.
    Thanks

    As far as the fields being the same on multiple pages you cab set the binding to global and all fields with the same name will have th esame values (automagically).
    Regarding the printing it is doable via javascript. You can change the pressence properties of those fields to visble but no print etc...

  • How to print main window data in second page without header

    hi friends.,,,,,,,,,,,,,,,,,,,,
    I am printing billing docu details in main window ,the data is coming in two pages but there is problem in printing as the tables is continuing in second page the line is not coming for the table for first row,space is also coming for second page for header .
    my issue is to remove space before printing table and line should come for the table for 1st row in second page.
    please help .
    thanks in  advance.

    Hi Raghukumar,
    1. For the line not coming on the top row of the second page, check if the rowtype u have used in the table has been given a border on the upper side.
    2.For the space issue in the second page, I assume you might have used only a single Page in your smartform and the same page is called again.Hence as per the main window size and length data will be displayed in all pages of the smartform.
    You may need to create a second page with the Main window length occupying the compete page so that data display starts from the top of the page. next Page attributes of the smartforms should be entered accordingly.
    Please try to elaborate your query to help us understand your issue.
    Regards,
    Rijuraj

  • How to Supress the Second Page in Smart form

    Hi,
      I have First page where there is no Main Window and on the Second page is with Main Window.Now lets say if there is item detais then vlaue will be printed on second page but in case there is no Item details so..the second page should not come only the first page would appear i.e. we need ot supress this second page.
    Thanks,
    Pramod

    Hi
    just use the command Describe table ITAB lines v_lines.
    so v_lines <> 0  means items Exist.
    so use this field in the condition
    Define a Text ELEMENT for the MAIN window data
    Before that text element put a condition based on the v_lines field.
    /:  IF V_LINES NE 0.
    /E MAIN
    /:  ENDIF
    So when you give print , if no data in internal table it won't print.
    Reward points for useful Answers
    Regards
    Anji

  • Friends need help desperate-- Second page not printing from the beginning

    Hi Friends,
    I have a large layout whose main-section is 8.5x20 (Width&height) which has 2 frames each having 2 repeating frames and about 20 fields in each repeating frame. When I run the report it shows the report right, but when I print, it prints only the first half since the report is long. When I change the property of the second frame of 'Page break before' to 'yes' it prints the second frame on the second page but print it at the same position as it printed on the first, and top of second page is all blank. How do I make to print from the beginning of the second page. Need your help.
    Thanks
    Joe.

    Hello,
    Most of the times, these problem are solved by "enclosing" the "Repeating frames" in frames with "Vertical Eleasticity" set to "Variable"
    Regards

  • I made upgrade for IOS to 7.04 but my iphone is second hand and when iphone need to make activation ,i don't have the apple ID so my iphone didn't work from this time so please help me urgent

    I made upgrade for IOS to 7.04 but my iphone is second hand and when iphone need to make activation ,i don't have the apple ID so my iphone didn't work from this time so please help me urgent.

    There isn't one.
    amrzaky wrote:
    I can't contact with previous owner s i need another solutoin
    The Apple ID and Password that was Originally used to Activate the iDevice is required.
    If you cannot get this information from the seller
    Removing a device from a previous owner’s account
    You need to return the Device for a refund, as you will not be able to re-activate it.

  • Popup window  opens in the second page  - plz help gurus.

    Hi All,
    I'm calling a transaction through ITS. There is a hyperlink in a report brings up PDF in the popup window. Popup window comes up in the second page of the report after closing in the first page of the report. Popup comes in all the consecutive pages of the report once I click on the hyperlink. This is really frustrating. Pls let me know if i need to do any configuration to avoid this problem. 
    Thanks,
    Kumari

    Hello Kumari,
    are you using the SAP GUI for HTML (webgui)? Normally, no hyperlinks are used except on documents inside an HTMLviewer (like in TX TRIP), or when Drag & Relate is activated.
    I suppose the link is part of a document that is shown in an HTMLviewer. Though this document does not belong to the ITS or the SAP GUI for HTML it uses ITS's URLs to address a new page or document. But, with this URL the status of the ITS or the application does not change, thus showing the popup over and over.
    If you have a tool to trace the HTTP protocol you can check for the URLs that are send on a particular action. I
    Best regards,
      TJ

  • Getting a field value from the first page on the second page in HTML

    I have a 2 page form I'm presenting in HTML to the user. The first page they select an action, enter a USERID and click the next page button. (The button executes "xfa.host.pageDown();" on the click action at the server)
    On the initialize of the second page I try to get the value of the USERID field from the first page and create a SQL statement to open my data connection. The issue I have is that I cannot get the value of the USERID field. This code works cause if I hardcode a valid value the query works. I tried to work around this by putting the same field on page 2, but it still did not work but the field was populated with displayed. I only assume the data is not populated at the time the initialize is invoked.
    Here is my code on the initialize..
    xfa.sourceSet.nodes.item(0).resolveNode("#command.query").commandType = "text"
    xfa.sourceSet.nodes.item(0).resolveNode("#command.query").select.nodes.item(0).value = "Select * from TABLE where userid = '" + xfa.form.resolveNode("form1.Page1.txt_EmployeeLogin").rawValue + "'"
    xfa.sourceSet.DataConnetion.open()
    Any help is greatly appreciated.
    THANKS!!

    Hi Steve,
    If you haven't already done so, I recommend posting this question in the LivCycle Forms forum.
    Jared

  • I have an Apple PC.  If I have an open page (active) and want to open a second page for an unrelated reason, how can I do that?

    I have an Apple PC.  If I have an open page (active) and want to open a second page for an unrelated reason, how can I do that?

    Have icon but cannot connect - Please Help.
    Mine is Gen. 2 - Model MC572C/A. I have the YouTube icon but cannot access YouTube.  Message says "No content was found - There is a problem communicating with YouTube. Try again later."  This problem has been for at least 1 month now.  Any ideas?

  • Help needed to create active links from a database

    I want to create active links to web addresses stored in my
    Access database and returned on the detail page of a Master/Detail
    set. The code below returns the correct entry from the database
    field - but I can't seem to make it an active link.
    <%=(rsNameMasterDetail.Fields.Item("Link").Value)%>
    any help would be appreciated!
    thanks,
    emyers

    >
    <%=(rsNameMasterDetail.Fields.Item("Link").Value)%>
    >
    > any help would be appreciated!
    <a
    href='<%=(rsNameMasterDetail.Fields.Item("Link").Value)%>'><%=(rsNameMasterDetail.Fields. Item("Link").Value)%></a>
    -Darrel

  • HT201441 need to activate a second hand purchase of i pad. previous owner not availble at all. ipad on IOS 7. any help ??

    need to activate a second hand purchase of i pad. previous owner not availble at all. ipad on IOS 7. any help ??

    There's no way around activation lock.  If you can't find the previous owner you won't be able to use it.

  • Went to open a file in words and got message. "You need a newer version of Pages to open this document." I have latest version.  All other files open w/o a problem.  Please help.

    Went to open a file in words and got message. "You need a newer version of Pages to open this document." I have latest version.  All other files in words open w/o a problem.  Please help.
    Thank you.
    <Email Edited by Host>

    You have 2 versions of Pages on your Mac.
    Pages 5.2 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.2 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Older versions of Pages 5 can not open files from later versions of Pages 5.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud and opened in a newer version of Pages is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed almost 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Peter

  • HT1338 Even though I have the Pages 5.0.1 installed as the default software, I still receive the message "You need a newer version of pages to open this document."  HELP!

    Even though I have the Pages 5.0.1 installed as the default software, I still receive the message “You need a newer version of pages to open this document.”  HELP!

    Please clarify....
    Mac OS X (10.4.6)
    What your system profile shows yet, you posted in the ML forums.

  • Is it possible to have a PDF form flow to a second page IF the user needs to type in a lot of information? ( Like a Word Doc would)

    Is it possible to have a PDF form flow to a second page IF the user needs to type in a lot of information? ( Like a Word Doc would)
    An automated second page.

    There are two approaches.
    If you wish to use AcroForm technology, then you would need to write a bunch of JavaScript to enable this.  It has been done, but it’s not trivial.
    If you wish to use XFA technology, then it can be setup to happen automatically.
    Be aware that in both cases, even though both technologies are part of the PDF standard, that the forms will only be usable in this manner in Adobe’s viewers as many others don’t support JavaScript or XFA.

  • SCRIPT: second page is not print but need spool number

    Hi Friends,
    I'm creating a script. It has only one page. if the line item is exceeds in main window then it automatically print the next page.
    now my requirement isgiven below
      I need to print the first page and the second page should not print. But i need seperate spool request for 2nd page. whenever the user wants second page at that time he use the 2nd page spool number to take the print.
    is there any solution or alternative method?
    Thanks in Advance.
    Vallamuthu.M

    Hmmm if i knew your exact requirement i would be able to propose something better i guess, since this seems a little weird to be honest.
    E.G. having a own output type for your page 2.
    Anyway, returning to what you asked. You opened your form using FM OPEN_FORM. and when you are ready you use CLOSE_FORM to close it again.
    You could make use of END_FORM followed by START_FORM when page 2 is to be printed.
    This will give you page 1 and page in seperate spools.
    you could as well close your form and open it again with ITCPO-TDNEWID = 'X' inmstead of using end_form and start_form.
    But still i highly doubt that complete scenario.

Maybe you are looking for

  • Error while Executing th program

    Hi Guys,              When i am executing my program I am getting this type of error           " Object ZMMOF3007_INVCE_TO_FACILITIES of class RE and language EN does not exist. Message no. SF616"                       can anybody tell me whsts the s

  • FnF Error when file is there Please Help

    I'm working on a school project and i have an encryption funcion, it creates a keyfile and then when you try to login it reads that keyfile and and decrypts the password and checks the password given by the user. i have this code try {           Obje

  • Look for SG200-26 OID

    Hello  and sorry for my English. I use SNMP for my Cisco, more than 30 Cisco switchs in my network. we had buy a new model : SG200-26 and i don t find OID for this switch like others, i think that most of MIB are not supported :-( I look for : ciscoM

  • Installing 9.2 with 10.4.6 already installed

    Hey guys, I just purchased a new processor from WOC http://eshop.macsales.com/item/Other%20World%20Computing/MEG42M1500/ and because of its requirements I need to install OS 9.2 on the same disk that already has 10.4.6. Presently I don't have OS 9 in

  • Insufficient Authorization old Invoices Will Not Release to Accounting

    I have some old invoices that will not release to accounting.  Instead of trying to secure a new credit card from the customer how can I remove the credit card information/or trick the order into thinking it doesn't need it so that I can get the open