HELP!  Need txt ouput, but issues with repeating frames...

In my data model, I have one main query, and three data linked queries. It IS a complex report, but I need to make it so that the user can output it to a delimited text file. I know how to do this, but when the report is printed, the rows are all mangled. If I PDF it, it's nice and pretty... one row per record. In my paper layout I have one parent repeating frame, which holds all columns, including 3 columns from the three data linked queries. Please help. Although I've written here before, I've never received a response, so I'm hoping this time will be different. Thanks.

I've read this document and that didn't solve my issue. I'm sure it has to be something others have done in building reports. A little more detail perhaps to help you help me:
Queries: 4
Main to get list of all students
3 other for attendance details (excused, unexcused and lates)
Paper Layout View:
1st layer: Frame
2nd layer: Repeating frame that holds all student info +
3rd layer: 3 more repeating frames for the 3 data linked queries that tells me if a student has missed any days.
PDF works great as an output, but it's needed an a delimited export or spreadsheet, both of which scrambles my 3rd layer numbers on different rows. I'm stumped. Again, any help would be great here.

Similar Messages

  • Help needed I updated my ipad2 with iOS5 but few of my dashbaords are not working now can any one let me know how to downgrade the OS

    Help needed I updated my ipad2 with iOS5 but few of my dashbaords (HTML5) are not working now ,can any one let me know how to downgrade the OS as we have a meeting coming up .. its urgent

    Downgrading the iOS is not supported. If you are using Safari this try clearing its cache via Settings > Safari.
    If that doesn't work then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Desperately need help ASAP!!! Issue with installing After effects CS6 trial version

    I downloaded the After Effects CS6 trial, but when I tried to run the patch installer, it told me to download adobe app manager. I did so, but when I try and run the patch installer again, it says in app manager that "Update failed. Update could not be applied." Please, I have really important work that I need to do, and I just cant get this thing to work. PLEASE HELP

    it says I need to update, but when I click on updates within aam, it just says "you're good! No new updates" Is there somewhere specific I need to go to update? Because the only options I have are all & Updates :/

  • Issue with Repeat Contact Info in Edit Screen

    Hello! 
    I recently had to get a replacement for my Droid because the home keys stopped working.    My replacement Droid was acting buggy and the screen would black out anytime I'd check voicemails and sometimes after placing a phone call.  I called customer service today and the tech support guy had me do a factory data reset on the phone.  Before I did it, I was instructed to export my contacts to my SD card, which I did.   The screen issue seems to be resolved, but I have an issue with my contacts now.  If I go into a contact and hit "edit contact", it will display three to four Google contacts for one person!  Also, if I try to make a shortcut to direct dial a contact, it has the same contact and phone number listed 3-4 times for every phone number listed.  (For example, my parents home phone is listed three times and so is their cell phone number.)  Anyone know how to get rid of the repeat contact info?  I have tried resetting the phone again, as well as separating contacts individually to no avail.  Any help or advice is appreciated!

    Here are the steps for deleting duplicate contacts.  HTH!
    From the home screen, touch the applications tab (located on the bottom of the screen).
    Touch Contacts.
    Touch the Contacts tab.
    Touch Menu.
    Touch the desired contact.
    Touch Menu.
    Touch Delete contact.
    Touch OK.

  • Help needed in solve my issue in sapscript.

    Hi all,
    I have a requirement to prin the terms and condiions after my Po layout. for this i have created 4 pages for terms and condition. Each page i have included two windows. One is main window and another window is having the text to be printed.
    in standard attributes i have assigned as
    page                         next page
    first                           next
    next                          last
    last                           last1
    last1                          last2
    last2                          last3
    last3                          last3.
    Here my issue is only the first page of the terms and conditions are printing in the output... Remaining text dint print..
    Please help me to solve the issue....
    Thanks
    Ahamed
    Edited by: Ahamed Anish on Oct 22, 2011 3:27 PM

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    A
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    7. iOS - Unable to update or restore
    Forgotten Restrictions Passcode Help
                iPad,iPod,iPod Touch Recovery Mode
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    You can restore from a backup if you have one from BEFORE you set the restrictions passcode.
    Also, see iTunes- Restoring iOS software.

  • Trying to delete a file with Powershell script ran by a service but issues with uac

    I'm having issues with a script that will delete a file on the C-Drive of a server. the script looks like this:
    param(
    [Parameter(Mandatory=$true)][string]$hostname
    $StrFileName = "C:\Program Files\NSClient++\nsclient.log"
    $LogLocal="c:\Nagios\naf_delete_nscp_log_file.log"
    $Date = Get-Date -Format "yyyy-MM-dd hh:mm:ss"
    "$date : NSClient logfile deletion requested on $hostname" | Out-File -filepath $LogLocal -Append
    If (Test-Path "$strFileName"){
    Remove-Item $strFileName -Force
    $Date = Get-Date -Format "yyyy-MM-dd hh:mm:ss"
    "$date : NSClient logfile deleted on $hostname" | Out-File -filepath $LogLocal -Append
    The script is initiated from a Nagios quick action which will use nrpe to pass the host as parameter and make the nscp service, which runs as local system, run it. It works perfectly on servers that have no uac enabled, but I can't get it to work on servers
    with uac. I've tried numerous options, but none seem to work. Any tips or advice to get this working with Powershell v2 code on servers with uac enabled is highly appreciated.
    Thanks.
    Willem

    Hi Willem,
    one thing to note: I don't see why your script itself has a hostname parameter.
    One way around UAC has always been the Windows Task Scheduler. If you register a task as System run and triggered by an event, you can simply call the event locally (which doesn't require admin permissions) and it will perform the task.
    I don't know how your Nagios construct works and the script by itself doesn't make much sense. If you want advice on how to do this without resorting to tasks, I'd need to know more about the system you are using.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Please help me...major issues with authorized repair center

    I could really use the advice of those more "techie" than myself. About a month ago, my iBook G4 crashed on me. I brought it to an authorized repair center and they replaced the hard drive for $270. When I got it home, it seemed to be acting funny - freezing, slower, etc. I noticed that About this Mac under the Apple menu said it had 128 MB of memory, yet when I brought it into the repair center it had 256 MB. Yet when I installed an extra memory card I had laying around it said 600-something (I forget), which is impossible, because my Mac can only hold 512 MB total. Anyway, very long story short, I've brought it back once to complain that my computer wasn't preforming the way it used to. I was told two things. One, it's because I'm running Tiger on an old machine (bullsh*t, I ran Tiger since July with NO problems). Second, they said my computer is screwy because I'm running 10.4.4, which is known for having bugs. Is this true? The same day they told me there was "nothing wrong with your iBook, sorry" it crashed again, and I can't get it to start! I've made an appointment with the owner of the repair shop, and I'd like to be able to defend myself because I think they screwed up. I'd like them to fix it for free, or refund my money and get the HD back. Any advice is GREATLY appreciated. Sorry this is so long, I love my Mac
    PS...I got it to start for about 3 minutes lastnight before it crashed again. I cannot open the Finder, and anything on the Dock that I try to click on shows a large grey question mark. What's that mean?

    Did you inform the repair center that your RAM reported had dropped? Tiger I would not run on anything less than 512 MB of RAM anyway. I've read stories that repair centers frequently remove any third party RAM you might have installed, and this may be another one such case.
    The gray question mark means the files have basically relocated themselves to someplace the system can't find them. If you didn't move anything, it is possible the directory got munged. To repair the directory, first make sure your data is backed up, and then follow these instructions:
    http://docs.info.apple.com/article.html?artnum=106214
    If that indicates something it can't fix, get Alsoft Disk Warrior 3.0.3.
    It is possible the RAM you have in there is bad, and that may be why you are detecting less RAM too. RAM can go bad at anytime. So can the memory slot itself go bad. And frequently the issues which make it go bad are undetectable by any hardware test. Though if a hardware test detects an issue with RAM, that's believable.

  • Specifying order of pages in output with repeating frames

    Hi
    I'm using Oracle Reports Builder 10g and I need help on this subject:
    I'm developing a report divided in sections that reference statistics of the partitions present in an IBM Machine. Each page in the first section appears also in the other sections of the reports, i.e. the first page of the first section (with data from partition A) has the same layout than the first page of the second section (with data from partition B in this case), which is page 14 on the final pdf report, and so on.
    For each 'kind' of page in the final report I use a repeating frame that fills a whole page in the page layout in reports builder (the parameter is the partition), so I get n output pages for each page in the rdf file (n is the number of partitions). The problem: in the resulting pdf output file, the first page of first section appears first, then the first page of second section, and so on. I need the pdf to be arranged in the correct order.
    Can someone help me on this subject?
    Thanks and regards,
    Alex

    How do you create sections?
    What is the data model?
    What is the layout model?

  • Cs6 issue with still frame duration setting not working, possibly yosemite problem

    Hi, I moved my project over to my iMac, which I updated to Yosemite awhile back. Suddenly the frame duration for stills setting defaults to 5 even though it is set at 2 for my animation project. What gives?
    I just bought my master collection two years ago and spent a pretty penny. There were updates for the Mavericks update but none for Yosemite? I think there need to be and people spend too much money on these products for the support option to be so skimpy.
    Hopefully someone answers this issue with a solution. Otherwise, I will not speak highly of Adobe.

    As suggested by someone on a different forum, I tried downgrading the firmware to 7.6.1. By doing so, the problems disappeared and WPA2 only mode works correctly. I will file a bug report with Apple.

  • HT4929 help needed - from mobileme to icloud with pc plus smartphone but no i-products

    I don't use an iphone or i anything else but have a mobileme mail account which I want to transfer to icloud - I have a pc which will need the icloud "adaptor" - what do I do next and what will I be able to use with my existing smartphone?

    Firstly, I note that your profile states that you are using OS X 10.5.8, in order to use iCloud on your computer you need OS X 10.7.2 or better.
    Secondly, I have asked for your email address to be edited out. Post your address in an open thread is a sure way to be bombarded by unwanted email, remember it will be here long after you have resolved your problem, for automated detection software to find.
    If you want people to contact you, enable others to see your email address in your profile.
    Finally, are you sure that these additional addresses are aliases and not sub accounts on a family pack, aliases from MobileMe should transfer to an iCloud when you migrate.

  • Help needed to sync Nokia 5800 with Ovi Suite, but...

    I need to back up my phone with Ovi suite before my phone goes to Vodafone for repair as the lcd screen isnt working. how do I sync my phone when I cant read the sms sent to set the sync up?

    if u hv the mobile wd u and u r able to switch on ur mobile and also hear the startin tune.. U can attach the phone to pc and sync using ovi suite.. U DONOT need to select the connection mode.. It gets selected by default if u start the ovi suite..
    Regards,
    Dr. Shoubhik

  • Hi anyone please help .. i am facing issue with acrobat 11 pro version, in acrobat 7  we are able to compare 2 pdfs which are having more than 1000 pages but in acrobat 111 pro it not possible , if try do so acrobat will unresponsive.. please let me know

    please let me know how can resolve this issue... how can i compare 2 pdfs which are having more than 1000 pages.
    Acrobat

    please let me know how can resolve this issue... how can i compare 2 pdfs which are having more than 1000 pages.
    Acrobat

  • Please help! I am having issues with correct placement of slideshow in Dreamweaver CS5.5?

    Hello, I am using Easyrotator for a slideshow in Dreamweaver. I am under the gun as I just had a death in the family, so I had to take a lot of time off. The slideshow works fine, but not together in Dreamweaver CS.5. I want to insert it underneath my title which is the name and photo of the company, but above the rest of the pages content. I have tried several frustrating attempts and to no avail. I am a designer and have really no experience with coding. I can put up what I have if that makes it easier. Thank you so much!

    Hi
    We need to see ALL your code to solve your issue quickly and accurately without a lot of guessing and questions back-and-forth.
    Just rename a copy of your problem page  (such as "test.html")  and upload it to your server, in whatever folder the original page was located, and simply post a link in the Forum and tell us your problem.
    This saves you having to cut and paste miles of code into the Forum for the page and all the dependent CSS, JS etc. files.and saves us from having to recreate all your files, find your images and then repair your code and test the solution for you.
    I trust this is helpful.

  • Want to upgrade to CS6, but issue with AVCHD scrubbing might stop me

    I've been using the Adobe Creative Suite for years and really love it. The last version I stuck to was CS5. Premiere Pro CS5 had no problems scrubbing my AVCHD footage (mts wrapper from GH2 cameras) and I wanted to upgrade to CS5.5 when this became available. Then a problem occured: although the project files (old and new) loaded a lot quicker than before, it was no longer possible to scrub through the footage. The lag was just incredible and I can see (and hear) my drives go mad as I try to scrub through the footage. I assume this is because certain things are no longer loaded at the opening of the project, but just when you look at the footage on a timeline.
    I hoped the issue would have been fixed in CS6, but after a colleague kindly installed the software for a few days on my machine (spare licence he had, since been uninstalled), it is clear that it is still impossible to use. WHY?
    I'm happy to upgrade some of my system to try and make this work, but I need to know what the problem. My current set-up is (no longer) cutting edge, but hardly bottom of the pile either. Any advice would be appreciated.
    Current Spec:
    6 core AMD processor 3.6Ghz
    8 GB of ram
    Nvidia GT440 card (cuda enabled)
    MTS files and project files are on a 2TB raid 0 (though windows 7, not dedicated card) (2 drives 1TB each 7200RPM sata 3)
    Thanks for any help.
    PS: I tried with and without cuda, moved the media cache to other drive, disabled sound whn scrubbing,... pretty much everything

    Niels,
    I've seen them and will add them to the results page later today.
    You end up around rank #630, somewhat as expected. Your disk score is quite acceptable and reflects your raid setup. However, your MPEG score is disappointing, but that may be attributed to only 8 GB memory and the relatively meager GT 440 card. However, in comparison with other Phenom II X6 systems, nothing really stands out.
    Your dilemma to improve the scrubbing behaviour is twofold: You are hindered by the slowness of the Phenom II X6, and whatever you will upgrade, but keeping the AMD CPU will only marginally improve performance. If you really want to improve performance you need a completely new Intel based system, but that is costly, requiring a new CPU, mobo and memory.
    Upgrading memory does not look attractive, since it will not really help performance and is not portable to a new Intel system.
    The only things that can help IMO and that can be ported to a new system in the future are extra disks and a better video card. I would start with additional disks, see if that solves the scrubbing issues. If that still is not enough, you can consider upgrading the video card to a GTX 670 or even a GTX 560 Ti if your PSU can handle it.

  • HELP!  Sony miniDVD camera issues with iMovie.

    I have a Sony DVD403 connected to my iMac, trying to bring over movie files to iMovie via USB connection. Apparently Sony records in MPEG format, and I cannot get iMovie or QT Pro to "see" my files....SONY support is no help. Is this Sony camera not supported on Mac? Am I going to have to ditch this $$$ mini DVD camera and invest in a DV camera??? Any and all suggestions welcomed!
    iMac   Mac OS X (10.4.7)  

    welcome busy to the  board...
    that "miniDVDcamcorder not supported" is a well discussed issue here, just read a few pages, if you're not too busy doing so...
    a) iMovie is a video edit app meant to work with firewire connected miniDV camcorders
    by concept, no word of DVD... mpeg2 is a delivery format, not meant for further processing...
    b) iM can control cameras just by firewire protocol, not usb
    c) you can import miniDVD content, but...
    d) don't insert miniDVD in slot-in drives => get an ext. dvd drive..
    e) dvd/mpeg2 needs conversion, choose....:
    * DVDxDV (free trial, 25$, Pro: 90$)
    * Apple mpeg2 plugin (20$) + Streamclip (free)
    * Cinematize >60$
    * Mpeg2Works >25$ + Apple plug-in
    * Toast6/7 allows converting to dv/import dvd, hit apple-k
    Am I going to have to ditch this $$$ mini DVD camera and invest in a DV camera?
    best practise, in case you want to use iMovie....
    helpful?

Maybe you are looking for

  • Creating audio for another Captivate project

    I am using Captivate v5.5 I have been asked to create the audio for a project that is being created by another person in our organisation. They will send me a word document with the script  - slide by slide. As I do not have any other means of record

  • Depreciation Posting in AFAB (urgent Pls)

    Hi All, pls let me know y the depreciation posting is not hapenning when it is showing Document created in Test run. It is not showing any errors nor is it posting. urgent pls. Chatura.

  • Can I get some help from a live person?

    thelman81312280 I have followed the instructions for installing flash player 15 times and it is still not installed. How can I get a live person to help me

  • Work with calculation forms on ipad?

    Hello, is it possible to work on the cases with calculation forms as http://individuelle-mitgliedschaft.aktivtreff.de/templates/injoy/images/vitalis. pdf The form was created with Adobe Lifecycle designer. With Acrobat Reader, I can open it, but the

  • CCMS: where does CCMS collects the database space information from?

    Hi, We are experiencing a kind of inconsistency in the data that CCMS is collecting for the space tablespaces related MTE's. Here is the thing: - RZ20 > SAP CCMS Monitoring Templates > Database :  will show the PSAPSRQ tablespace at 94% (which is wro