[CRS2008] Scheduling a report to multiple file output in single schedule

Hi,
Is there any way in CRS2008 / Infoview to scheduling one report to multiple file output in one schedule?
i thought maybe it can, but still not found the way.
Says,
I have one report say "Report by Branch.rpt", the parameter prompt is BranchCode.
I want to generate the "Report by Branch.rpt" for every BranchCode in separate output generate file. Like, "Report by Branch.rpt" for BranchCode A, or "Report by Branch.rpt" for BranchCode B.
So, if i run the schedule, it will generate several report based on the report parameter given.
Hope, would find the way.
Thanks in advance.
Regards.
Edited by: fritzwijaya on Sep 20, 2010 3:47 AM

For anyone still looking, the job can be seen under the Job History option on the home screen, but not on the Job History option under the report in the catalog - i am assuming this is becasue somehow im not referencing the report correctly in the ScheduleReport request message.
Also, the jobId returned is a parent jobId, which when used to poll the job status, always returns a 'Scheduled' status. Im now adding 1 to this ID to get the status of my job - this returns the correct status of 'Success'.
Still hoping someone has an idea on the getDocumentData question...?
Thanks.

Similar Messages

  • Scheduled WEBI reports based on File Events not retrieving data

    Dear All,
    We are facing performance related issues with Scheduled WEBI reports based on file based events.
    When running Web Intelligence on demand it takes  4to 5 Minutes.
    Scheduling the same report in Excel format it takes more than 20 minutes.Schedule status showing success but no data found in Excel instance.
    Env:BOXI3.1 Sp3
    Windows 2003
    It woud be great if any one can share your ideas.
    Thanks,
    Kumar

    Hi Kumar,
    Is your report has prompts?
    if you have prompts , make sure that you assigned prompts in the schedule also.
    Hope you have multiple webi processing servers and adpative job servers for better scheduling performance.
    Try below solution .
    On the BusinessObjects Enterprise server, navigate to the folder <install root>\Business Objects\BusinessObjects Enterprise 12.0\win32_X86\dataAccess\connectionServer
    Open the file cs.config in a text editor such as Notepad
    Search the file contents for the string "Traces Active"
    Modify the line from  <Traces Active="Yes">   to  <Traces Active="No">
    Save the cs.config file
    Restart the Web Intelligence Processing Server

  • How to schedule one report for multiple company code?

    How you can schedule reports in BW 3.5? Suppose I need to schedule one report for multiple company code, how can you do that and notify the users? I do not want to send multiple emails to the same user if the report runs for 20 times (for 20 different companies).
    points are given for ASAP replies.
    Thanks in advance
    Peter

    Dear Peter,
    Try to restrict the Company Code with  those 20 values and schedule.
    Regards,
    Ramkumar.

  • Multiple smartform output to single pdf file

    HI,
    I am new to ABAP. I have a requirement to combine multiple smartfrom output to  single pdf file.  I searched in this site. I got material but i did not get the complete concept. Can anybody tell me the methodology and sample code to do that.
    Thanks & regards,
    Maha.

    Hi Mahalakshmi,
    Clik on the link to view document: <b>[Combining Multiple Smartform Outputs Into One PDF File|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54f26944450?overridelayout=true]</b>
    Thanks
    Venkat.O

  • Hiding filenames when combining multiple files into a single .pdf

    I'm fairly new to this Acrobat X. I'm trying to assemble my portfolio to distribute to employers but I cannot seem to get rid/hide the filenames in the final pdf file. I was using the option to 'combine multiple files into a single pdf' because I was compiling images and documents to a single readable pdf file. I got all that done but once I open it, I'd see that each page would still contain the original file names rather than page numbers - which I prefer not to have employers see for the sake of tidiness (and I refuse to use the Adobe portfolio because it's not really efficient on space or design. I prefer a simple page-by-page pdf). So I was wondering if anyone can tell me how to hide my file names, change them into page numbers or getting rid of them all together so the 'Table of Contents' in the pdf preview mode would not show anything, I would really much appreciate it.
    -Ss

    Well, when the .pdf is in the final, deliverable form; I open it in Mac preview mode and the sidebar is always extended showing a 'table of contents' rather than having each document in the pdf file have a number designating a page name, it shows each individual filename the pdf is composed of. Not too sure about bookmark, though. Thanks for the reply!
    If you want, I can send the file to you.

  • Multiple JSPs output into single PDF file

    Could anyone guide me on how do I combine output of multiple JSP files into a single PDF file? I have got 8 different reports and shall required to have single output of all of them in a PDF file. Its urgent. Please help.

    Hi Mahalakshmi,
    Clik on the link to view document: <b>[Combining Multiple Smartform Outputs Into One PDF File|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54f26944450?overridelayout=true]</b>
    Thanks
    Venkat.O

  • Multiple input files to multiple file outputs

    I have a workflow that can select multiple files and zip them into a single zip file.
    What modification should I do to get a workflow that zips each of the files separately into separate zip files?
    So I can select multiple files but each file is zipped into a separate file.

    You can use a Run AppleScript action do do it - the following action can be used instead of the Finder's Create Archive action:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px; height: 335px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters}
    -- create a PKZip archive of the selected Finder item(s)
    -- if no destination folder is specified, the archive will be placed in the same location
    -- input: a list of Finder items to archive
    -- output: a list of Finder items archived
    set output to {}
    set SkippedItems to {} -- this will be a list of skipped items
    set DestinationFolder to missing value -- a Finder path to a destination folder if different
    repeat with SomeItem in the input -- step through each item in the input
    try
    set SomeItem to SomeItem as text
    if the last character of SomeItem is in {":", "/"} then set SomeItem to text 1 thru -2 of SomeItem
    set ArchiveSource to POSIX path of SomeItem
    if DestinationFolder is missing value then -- save the archive to the same location
    set ArchiveName to ArchiveSource & ".zip"
    else -- save the archive to the specified folder
    set TheName to name of (info for SomeItem as alias)
    set ArchiveName to (POSIX path of DestinationFolder) & TheName & ".zip"
    end if
    do shell script "ditto -ck " & (quoted form of ArchiveSource) & space & (quoted form of ArchiveName)
    set the end of the output to (POSIX file ArchiveName) as alias -- success
    on error ErrorMessage number ErrorNumber
    log ErrorMessage
    set the end of SkippedItems to SomeItem
    end try
    end repeat
    if SkippedItems is not {} then -- handle skipped items
    set TheCount to (count SkippedItems) as text
    display alert "Error with Archive action" message TheCount & " items(s) were skipped - workflow will continue"
            choose from list SkippedItems with title "Error with Archive action" with prompt "The following items were skipped:" with empty selection allowed
    if result is false then error number -128 -- user cancelled
    end if
    return the output -- pass the result(s) to the next action
    end run
    </pre>

  • Automatic scheduling of report and send the output  to user via email

    Good Morning,
    Please i need to scheduled report and send the output via email in Discoverer . Please can someone assist in how to achieve this ?

    Hi,
    You cannot schedule and email a Discoverer report using standard Discoverer scheduling. You have to use a third party scheduler and Discoverer Desktop running on a windows PC.
    This presentation has some more details on how to do this.
    Rod West

  • Running Scheduled Crystal Reports for Multiple Customers!

    Hi,
    We are trying to accomplish what we felt was a very common practice with reports.
    We have CR 2011, CR 2011 Enterprise, CR Server 2011.
    What we are trying to accomplish is very simple.
    Currently, I have a prompt in my report that prompts me with a dynamic list based on a small sql statement my report, it provides a list of individual customer and their id's. It takes that ID , puts it into another SQL statement in the command and generates just that customers data. it works perfectly!
    What we are trying to do is use crystal server 2011 to take that report in question, schedule it, and have it run for each of the dynamic customer id's that I previously used when it prompted the screen.
    The reports cannot use multiple values as we only want each customer data to be included in the report.
    We need to have the scheduler run this report for our 10 different customer idu2019s and send it to their individual email addresses at a scheduled time each day.
    Is this possible? This has to be a very common request of reporting tools.
    If SAP software cannot do it, is there a 3rd party software that will allow our reports to be ran in the way I am wanting?

    Hi Rsheppick,
    Within CR Server you can use the publication functionality to create a publication and schedule this to external customers - for this you would have to use a dynanic recipient list to map the customers email id's to a field in the source report.
    The workflow is described in the online Publication document, accessible at the SAP Support site.
    I hope this is a very helpful answer to you.
    Kind regards,
    John

  • Combining multiple files into a single PDF/A

    The issue brought up in another discussion is the loss of PDF/A conformity when “merging” multiple PDF/A files into a single file (I use PDF/A for preservation of corporate records). The “insert” option retains conformity but does not allow inserting multiple files in a certain order, unless you insert them one by one (which is a pain when you have 50 files to attach).
    The solutions I’ve come up with so far:
    1)     1)  In AAPro – combine files into a single PDF and then convert it to PDF/A using Preflight. This is easy, my only problem is that I don’t have AAPro (and AAStandard doesn’t convert to PDF/A).
    2)     2)  In AAStandard – combine files into a single PDF and then “print” to PDF/A. The problem of this “re-frying” is that it only creates PDF/A-1b (not 1a), bookmarks and OCR of scanned pages are lost, and files become significantly larger.
    I wonder if anyone knows a more intelligent way around this problem, provided that I only have AAStandard. Thanks!

    Well, when the .pdf is in the final, deliverable form; I open it in Mac preview mode and the sidebar is always extended showing a 'table of contents' rather than having each document in the pdf file have a number designating a page name, it shows each individual filename the pdf is composed of. Not too sure about bookmark, though. Thanks for the reply!
    If you want, I can send the file to you.

  • Insert multiple files onto a single track, not one file per track

    Hello,
    In both Audition CS5.5 and CS6, when the user inserts multiple files into a multitrack session, they are placed on multiple tracks. (As the help file says, "The files are inserted on separate tracks at the current time position"). Please change this to allow multiple files to be inserted onto a single track.
    I can understand the usefulness of the current behaviour in some scenarios, but there are other workflows in which the placement of multiple files on multiple tracks is a serious hindrance.
    E.g. In this thread, a user mentions needing to insert 10,000 individual files for dialogue editing and mixing.
    I also posted in that thread because my own workflow involves editing hundreds of individual files, which are single notes recorded for the production of virtual instruments.
    The reason why a "one-track multitrack" workflow is useful to me is that it allows great flexibility in processing multiple files individually or at once, comparing them, adding markers, fades, etc.
    It would also be useful when bringing in any audio that has been recorded in consecutive chunks - field recordings, concerts, Foley sessions, etc.
    In the thread, another user suggested inserting all the files onto a single track in Premiere Pro, then bringing that project into Audition as a multitrack session. Unfortunately this creates another problem for me, because it renames all the audio with the suffix "extracted". My workflow requires me to keep the original file names, because these are used downstream when mapping the recorded notes in the virtual instrument.
    Thanks for reading and please consider this for a future update.

    Just curious. Has there been an answer yet as to how to insert existing audio clips from a file to a waveform view in CS6. I create voiceovers or edit large interview files that require audio tones and sfx for my clients in production studios. The tones are inserted between takes as a courtesy tone to denote separation.  In the older versions of Audition, the function was as simple as mix/pasting an audio file, selecting insert or overlap, set the import level percentage and paste.  And each time this function was exercised, Audition would use the same settings you last used to reduce repetition of settings. Logical. That's all gone in CS6 ... so, to lay down a voiceover file for Comcast or any client, in waveform view (vs. Multitrack which is not necessary for single mono file editing) I have to go through unnecessary steps simple to select insert/mix paste>file>paste into existing wave form.
    Also, if I need to simply overlap a gasp over the last syllable of a phrase in a simple wave form, I don't appear to be able to do this.  I called Adobe for support on these function, but, they had not answers and simple said I couldn't change the workspace, and they had no other answers. Any help would be greatly appreciated if you have insight.

  • Joining data in multiple files into a single file using BPM

    Hello All,
             Can someone kindly give me any documentation or step by step procedure to join data in multiple file and display it all in one single file, using BPM.
    Thanks in advance,
    XI_Novice

    hi,
    Check this blog also...
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm
    /people/narendra.jain/blog/2005/12/30/various-multi-mappings-and-optimizing-their-implementation-in-integration-processes-bpm-in-xi
    regards

  • Transferring multiple files over a single socket

    I'm trying to send multiple files to a client without creating a new socket for each file and I'm undeceided on the best approach. The problem is that if the client is just reading from a socket, it won't know when one file stops and the next begins (assuming that the server side is just writing byte data to the socket). I could use an ObjectStream, but then I can't create a nifty progress bar. I could transfer the byte length of each file so that the client knows how much to read, but this seems messy. Is there a better approach?

    Method 1: send file length first. Simple way. Downside: if the file size changes on disk while you are sending it you may be in trouble - what if the file is truncated or there is an IO error so you can't send as many bytes as you promised.
    Method 2: use an end-of-file indicator. E.g. "." on a line by itself. If the file contains a "." on a line you'll need to quote it - e.g. the SMTP mail protocol uses "..", and "..." for two periods, etc. Needs a bit of extra code to do the quoting and detecting the EOF marker.
    Method 3: send "packets". Send a "packet header" followed by data, e.g.:
    HERECOMES C:\fred.txt
    DATA 1024 <...1024 bytes...>
    DATA 1024 <...1024 bytes...>
    DATA 120 <...last 120 bytes...>
    END OF FILE HAVE A NICE DAY
    You can make the "packet header commands" binary ('\001' = file begins, '\002' = data segment, ...) or sort of human readable like SMTP and HTTP do. The former can be a bit easier to implement, the latter is nice because you can debug it easier and try it out with "telnet".

  • Multiple smartform Outputs in Single PDF

    Hi,
    I am displaying ALV report , from there I am converting my smartform output into PDF using CONVERT_OTF and Downloading it to my desktop.
    Now user is looking for push button in ALV, i.e Display PDF in Single File. I have created the pushbutton and tried to convert the OTF data PDF as per below link.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/62ae7fcd-0b01-0010-3e9d-a54f26944450?quicklink=index&overridelayout=true
    My file is downloading to the desired path. When i tried to open that file it is giving error message as below.
    THERE WAS AN ERROR OPENING THIS DOCUMENT .  THE FILE IS DAMAGED AND COULD NOT BE REPAIRED.
    when i seleted the rows seperatly, it is displaying as PDF correctly, but if i tried to append the lines as per the above reference link i am getting the problem.
    Can anyone please help me out to solve this.
    Thanks & Regards,
    Srinivas Bhavanam
    Moderator message - Cross post locked
    Edited by: Rob Burbank on Mar 24, 2010 6:25 PM

    This article is correct about the //. First make sure you remove them correctly, and nothing else. Only 2 // must remain, one at the beginning, one at the end.

  • Examples for converting multiple form output to single pdf

    Hi all ,
         I need sample code or examples for converting multiple smart form outputs (more than 1)  to single pdf. Can someone provide that? Reply  ASAP 
    Thanks & Regards,
    Pavan.

    Hi,
    check this:
    [How to merge multiple spools into single PDF file?;
    [Merge multiple PDF Files;
    [https://www.sdn.sap.com/irj/scn/advancedsearch?query=multipleformoutputtosinglepdf++]
    hope u'll get some idea.
    Regards,
    Sneha.

Maybe you are looking for

  • Set null in PreparedStatement

    Hi I need to set null as a parameter in the PreparedStatement (that will behave as "is null" ). the PreparedStatement.setNull is not working. any ideas???

  • Auto-removing played podcasts from a smart playlist

    I'm wondering if anyone can help me figure out a way to do this. I have two smart playlists for podcasts. The first contains my favourite podcasts and they are removed from the playlist once they've finished playing. This works and I accomplished it

  • Can we create a local client copy for the RFID Client in discovery Box

    Can we create a local client copy for the RFID(400 Client) in the Discovery Box,and if created which profile we have to select for the client and also at a time we can work on these both client or not  .

  • Using old versions of InDesign

    I've been asked to work on some documents in InDesign 2 because that's what the client has. Are there any problems that might occur if I install InDesign 2 on my 2009 iMac running OSX 10.6.7, which also has ID CS4 and CS5 installed? The client has ID

  • Question about Java plug in problem

    Dear Firefox: My system is Windows XP, Home Edition. I've been using Firefox browser about 4 years now and this is the first time I see the following warning on the plug in. When I checked plug-ins via Tools tab, it says "Java Deployment Toolkit 7.0.