Two Pages and Layout from One Data Source

Hi
I need to find a solution where i can based on if a flag in the data is true or not generate a 2nd page which is slightly different in layout to the 1st page.
But at this moment in time i'm struggling to understand how i can even get crystal to generate a 2nd page.
Background is that our system generates a delivery note with a price on it and as a part of new legislation now there has to be a 2nd page provided for the end user. Now we have a data source linked to the report and we would just like to pass in another field which is true/false to print End User Page.
So if the flag is true i need to create a Delivery page and a end user page and if false then only the Delivery page would be generated.
I just need some guidance as to how we may achieve this.  Iu2019m ok with crystal but not really done advanced level reports hence why iu2019m probably stuck.
Thanks for any advice in advance

And i suppose i could suppress any other fields from page one based on the same flag. But ideally as they layout is common i was hoping not to have to do a subreport to lay it all out again.
Could i not based on a flag on the group footer or header say if this flag is true start a new page and then on the feilds the ones i want to hide or show say something like if page two and x is ture then show or hide as need be??

Similar Messages

  • Need to move pages and sections from one doc to another

    I have a long document loaded with graphics. I need to repurpose pages and sections from that document and use them in another document.
    How do I move a section or page from one to another. A simple copy and paste doesn't seem to be the answer since it copies only the text, not the illustrations and format.
    Also, it would help if I could unlock sections - is that possible and how do I do it?

    You will have to do it manually, but you can do it whole sections at a time. Open your files & show thumbnails. Sections have a yellow border around all of the pages in that section. Now click on the page in the thumbnail pane & copy. If the file is more than one page & you only want one, you'll need to insert a section break to separate the pages. Then go to your other file & paste. The whole copied page will be pasted in. I found that pasting in the body of the target document only pasted the text but, if I clicked in the thumbnail area of the target document & pasted, I got both text & graphics. Repeat with another section. Styles will copy over with the sections but headers & footers will not.

  • How to move the pages and reports from one dashboard to another

    hi all
    can please any one tel me hw to copy the reports along with pages from one dashboard to another
    Thanks

    Hi,
    Go to Administrator->Manage Presentation Catalg->Click on Group folder under which the dashboard and reports are present
    1)Create one folder and copy the reports which are present in the dashboard pages you want(reports will be under some specific folder,open and copy one after the other to the newly created folder).Do this if you want other set of same reports for new dashboard that you are creating
    2)Click on _portal and create a new folder(new dashboard)
    3)Click on dashboad that is to be copied
    4)copy the pages one after the other into new dashboard folder
    If you are not keeping new set of reports then no need to point reports in pages,if reports are placed under new folder then go to each page and pull those reports from newly created folder.
    Regards,
    Srikanth

  • Two selectOneMenu in a page and action from one to other

    Hi everybody. I have two selectOneMenu in a jsf page. In the fist there is a list of students, and in the second there is a list of courses. I want, when I select a student, to launch a methot that show me in the second selectOneMenu only the courses that the studend is enrolled. Because I new on Jsf, I think to use the onClick property, but I don't know how I can use it. I don't use AJAX, so I must reload all the page. There is any other way to do this? Thanks to all.

    Thanks, I use it, and now I have this jsf page:
    <h:selectOneMenu id="lista_studenti" binding="#{svolgiSingoloEsercizioBean.menuStudenti}" onchange="this.form.submit();" valueChangeListener="#{svolgiSingoloEsercizioBean.studenteSelezionato}" immediate="true">
              <f:selectItems id="studente" value="#{svolgiSingoloEsercizioBean.studenti}" />
    </h:selectOneMenu>
    <f:verbatim>
    </f:verbatim>
    <h:selectOneMenu id="lista_corsi" binding="#{svolgiSingoloEsercizioBean.menuCorsi}" onchange="this.form.submit();" valueChangeListener="#{svolgiSingoloEsercizioBean.corsoSelezionato}" immediate="true" rendered="#{svolgiSingoloEsercizioBean.menuStudenti.value != null}">
              <f:selectItems id="corso" value="#{svolgiSingoloEsercizioBean.corsi}" />
    </h:selectOneMenu>
    <f:verbatim>
    </f:verbatim>
    <h:selectOneMenu id="lista_esercizi" binding="#{svolgiSingoloEsercizioBean.menuEsercizi}" rendered="#{svolgiSingoloEsercizioBean.menuCorsi.value != null}" >
              <f:selectItems id="esercizio" value="#{svolgiSingoloEsercizioBean.esercizi}" />
    </h:selectOneMenu>
    When I change the second selectOneMenu, I have this error:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Value binding '#{svolgiSingoloEsercizioBean.corsi}'of UISelectItems with component-path {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /cercaesercizi_studentecorso.jsp][Class: javax.faces.component.html.HtmlForm,Id: _idJsp0][Class: javax.faces.component.html.HtmlSelectOneMenu,Id: lista_corsi][Class: javax.faces.component.UISelectItems,Id: corso]} does not reference an Object of type SelectItem, SelectItem[], Collection or Map but of type : null
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
    root cause
    java.lang.IllegalArgumentException: Value binding '#{svolgiSingoloEsercizioBean.corsi}'of UISelectItems with component-path {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /cercaesercizi_studentecorso.jsp][Class: javax.faces.component.html.HtmlForm,Id: _idJsp0][Class: javax.faces.component.html.HtmlSelectOneMenu,Id: lista_corsi][Class: javax.faces.component.UISelectItems,Id: corso]} does not reference an Object of type SelectItem, SelectItem[], Collection or Map but of type : null
         javax.faces.component._SelectItemsIterator.hasNext(_SelectItemsIterator.java:131)
         javax.faces.component._SelectItemsUtil.matchValue(_SelectItemsUtil.java:46)
         javax.faces.component.UISelectOne.validateValue(UISelectOne.java:62)
         javax.faces.component.UIInput.validate(UIInput.java:353)
         javax.faces.component.UIInput.processDecodes(UIInput.java:158)
         javax.faces.component.UIForm.processDecodes(UIForm.java:53)
         javax.faces.component.UIComponentBase.processDecodes(UIComponentBase.java:602)
         javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:135)
         org.apache.myfaces.lifecycle.LifecycleImpl.applyRequestValues(LifecycleImpl.java:219)
         org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:71)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
    Is because I don't use the converter?

  • Running multiple VI's from one data source

    Hello,
    I am newer to Labview, and currently stuck on a problem.
    I have created a program to serial read from an RS232 port and extracted multiple points of the string and display it to the web. I would like to create a second VI from the same RS232 port and display one or two points of information. I have tried to do this with a global VI, but I can't web publish a global. Neither VI will have a user control, they simply display the data coming in. Any suggestions?

    You really should have a separate loop just to read the COM port.  You can then parse the read data and send to the appropriate sections of code using queues.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to use a property from other data source

    Scenario: we have 2 datasources, that each have their own set of records having different properties. What I need to do is grab 1 property that exists in all records of 1 of the datasources and display it in the records of the other datasource. There is 1 "common" property (called by different names) in the records of both Data Sources, that have the same value; so this property could be the link between those records even though they belong to 2 different Data Sources.
    Here's a simple example:
    Data Source " Department" has records that have the properties: 'Name', 'Age' and 'Nationality'.
    Data Source "Staff" has records that have the properties:'Staff_name', 'Position'.
    The 'Name' and 'Staff_name' have the same values, and can be used to link the 2 records.
    I'd like to get the records in the 'Department' data souce to also contain the property 'Position" from the "Staff" datasource .
    Is there a manipulator that can do this?
    Thanks!
    J

    Thanks Pravin,
    But I don't want to join all data from the 2 datasources - I just want one property from one data source to appear in the records of the other data source.

  • From two given tables, how do you fetch the values from two columns using values from one column(get values from col.A if col.A is not null and get values from col.B if col.A is null)?

    From two given tables, how do you fetch the values from two columns using values from one column(get values from col.A if col.A is not null and get values from col.B if col.A is null)?

    Hi,
    Use NVL or COALESCE:
    NVL (col_a, col_b)
    Returns col_a if col_a is not NULL; otherwise, it returns col_b.
    Col_a and col_b must have similar (if not identical) datatypes; for example, if col_a is a DATE, then col_b can be another DATE or it can be a TIMESTAMP, but it can't be a VARCHAR2.
    For more about NVL and COALESCE, see the SQL Language manual: http://docs.oracle.com/cd/E11882_01/server.112/e26088/functions119.htm#sthref1310
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • Can BO universe design tool read from more than one data source

    Hi Experts
    can I add personal data (from excel or Text) on a designer that is connected to relational Database
    can we combine more than one universe from different data sources to do so
    Please advise
    thanks all

    Thanks for reply
    I tried the linked universe concept but it is not working when I read in this topic in the universe design tool guide it indicated that
    both universes should have the same database I cote from this book
    ("The core universe and derived universe use the same data account, or database, and the same
    RDBMS.")
    I also checked in the designer help it says the same condition
    If you have idea how to do so please send me the steps
    thanks

  • Can a master data will have loading from more than one data source

    Dear gurus,
          I have a master data object which has every day loading from one particular data source. Now I got a requirement to load data from another data source. If we load data from more than one data source , will there be any problem with data? Will it accept loading from more than one data source.?
    Regards
    Rs

    Hi Ram,
    We can load the data to target morethan one datasource.Thats advantage in BI compare to BW. It will accept loading from more than one datasource.but you have to take care about characteristic and attributes are the same in both datasources like that.
    Regards,
    SVS

  • Cannot update my keynote, pages and numbers from my ipad. I have different accounts, one for app store and other for icloud. What can I do?

    Cannot update my keynote, pages and numbers from my ipad. I have different accounts, one for app store and other for icloud. What can I do?

    You can't merge accounts or transfer iTunes purchases from one Apple ID to another: but there is no problem about using two IDs.
    Use your iCloud ID for iCloud for syncing email, contacts, calendars, bookmarks, and PhotoStream.
    Use your other Apple ID as before for iTunes, iTunes in the Cloud and iTunes Match.
    There's no conflict about doing this, and you won't even notice as Keychain will log you in with the correct ID in each case. It's also better security not to have your iTunes login also your email address, given the number of complaints about hacked iTunes accounts.

  • How do I copy and paste from one page or file to another page or file - on the same screen?

    How do I copy and paste from one page or file to another - on the same screen?

      Open both of your images in the Editor. Click on the image you want to copy and press Ctrtl+A (select all) followed by Ctrl+C (copy) then click the tab for your other image and press Ctrl+V (paste)
    Alternatively click on your background image then simply drag the second image from the photo/project bin and drop it into the main editor workspace on top of the background image. Use the move tool to position and the corner handles of the bounding box to scale.

  • I am trying to drag and drop one page of a .pdf into another .pdf in Acrobat Reader.  I used to be able to drag and drop from one .pdf to another.

    I am trying to drag and drop one page of a .pdf into another .pdf in Acrobat Reader.  I used to be able to drag and drop from one .pdf to another.

    If you could drag and drop pages before, it wasn't in Reader. You no doubt had Adobe Acrobat (Pro or Standard) which shouldn't be confused with Adobe Acrobat Reader. They recently added Acrobat to the name of Adobe Reader so the confusion about which product you had and/or have is understandable.

  • How do I copy the same app folder layouts from one device to another? We have a several iphones and ipads.

    how do I copy the same app folder layout from one device to another. We have several apple devices.
    It's a challenge when syncing a device for the first time to go through all the apps and apply them back to the same folders as on your other iphone.
    I've seen suggestions of taking pictures of the correct layout, then manually applying it to the new device. Big time waister.
    What's the work around?
    Thank you

    I'm afraid there is no short workaround. One thing that you could do if you were REALLY desperate is reset your device to factory settings and then restore it from your other device's backup, but that is rather risky and you probably don't want to take your chances just for folder layouts. I would just do it manually.

  • I have a password problem. After importing data and settings from one MacBook Pro to a new one, I have to put my iCloud password in when re-starting, but the password from the old computer in when waking the computer from sleep.

    I have a password problem. After importing data and settings from one MacBook Pro to a new one, I have to put my iCloud password in when re-starting the new computer, but the password from the old computer in when waking the computer from sleep. I want to use my iCloud password on both computers consistently. How can I fix this?

    The only other place to change a password for the computer login is in Users & Groups preferences. But I don't really know enough here to fix your problem. You can try fixing the keychain:
    iCloud- Frequently asked questions about iCloud Keychain
    Tutorial: Resolving Keychain Issues
    If you can't access your keychain, or forget your password If you can't get into your keychain file because you've forgotten your password or the keychain file appears to be corrupt, there are a couple of options.
    First, if you've forgotten your password, you can use the "Keychain First Aid" utility to make the keychain password the same as the login password. This can be accomplished via the following process:
      1. Open Keychain Access (located in Applications/Utilities)
      2. Go to the "Keychain Access" menu and select "Preferences"
      3. Click the "First Aid" tab
      4. Make sure the "Synchronize login keychain password" box is checked
      5. Close the Preferences window
      6. Go to the "Keychain Access" menu and select "Keychain First Aid"
      7. Enter your username and password
      8. Click the "Repair" button
    The second option is to completely delete your keychain then recreate it. This routine is useful if your keychain appears to be corrupt or otherwise inaccessible. This can be accomplished as follows:
      1. Launch Keychain Access (located in Applications/Utilities)
      2. Click "Show Keychains" in the lower-left corner of the window.
      3. Select the problematic keychain from the left-hand pane.
      4. Navigate to the "File" menu and select "Delete Keychain '(name of keychain)'"
      5. Check all options for deletion and press "OK"
      6. Create a new keychain by going to the "File" menu, then "New" and selecting
          "New Keychain"
      7. You can now make this keychain your default if you desire by selecting it, then
          going to the "File" menu and selecting "Make '(name of keychain)' Default"
    Login as root and perform repair In some cases, problems with keychains can only be resolved when logged in as the root user.
    First, you want to enable the root user:
      1. OS X Mountain Lion: Enable and disable the root user
      2. OS X Lion: Enable and disable the root user
      3. Mac OS X 10.6: Enabling the root user
      4. Enabling and using the "root" user in Mac OS X
    After enabling the root user, and logging in under this account, again open Keychain Access. First attempt repairs using Keychain First Aid, and failing that, delete then recreate the keychain as described above while logged in as root.
    Persistently asked for stored passwords If you are persistently asked for passwords in various applications that you have specified should be remembered in a keychain, your "login" keychain may not be active for one reason or another.
    Navigate to ~/Library/Keychains/ (this is the Library folder inside your user's home folder). Find the file named "login.keychain" and double-click it.
    Failing that, select the "login" keychain within the Keychain Access application and make sure it is the default keychain by going to the "File" menu and selecting "Make 'Login' Default"
    Turn off Keychain synchronization in applications having problems If specific applications are experiencing issues when accessing password-protected material, the Keychain may be to blame.
    The above comes from an article published on MacFixit.com.

  • One data source and assign multiple data target in BI?

    Hi all,
    Is it  possible is to assign one data source to multiple data targets in BI? Not like  in BW 3.X ; one data source can assign only one Info source. I am bit confused about it, let me know about this ?
    Regards.
    hari

    Okay, I must have misunderstood your message, I was thinking BI 7 and data targets .. like cubes and DSO's.
    In 3.x, assign your datasource to a single infosource.  Then assign that infosource to multiple data targets by creating update rules and assigning your infosource to each/all of them.
    In this way, you shouldn't need multiple infosources per datasource unless you have a special situation that calls for it.
    Brian

Maybe you are looking for