Loading PDF's to content area

On a daily basis, i receive a few dozen pdf's from an outside source that I would like to upload to various content areas. I can do this manually quite nicely, and put them into the various content areas they need to be in, and have them versioned and expired, etc.
The process just takes too long. The pdf's come during the night and need to be out by open of business. How can I load these pdf's where they need to go in an automated fashion?

Check out the apis on portalstudio.oracle.com. There is a plsql api that you can use. The directory where the files reside
must be visible to the db server
On a daily basis, i receive a few dozen pdf's from an outside source that I would like to upload to various content areas. I can do this manually quite nicely, and put them into the various content areas they need to be in, and have them versioned and expired, etc.
The process just takes too long. The pdf's come during the night and need to be out by open of business. How can I load these pdf's where they need to go in an automated fashion?

Similar Messages

  • Cannot output Reports pdf directly to content area

    I have registered a report (Oracle Reports rdf) as a portal component. It is included in a content area. I can execute the report and the output file is created (pdf) - but it is not loaded automatically into the content area folder that I specified in the scheduling parameters.
    The pdf file is created in the first directory in the REPORTS60_PATH (in our case 'bin').
    Version info :
    9iAS 1.0.2.2
    Portal 3.0.9

    Andy,
    The integration of Oracle Reports into a Portal content area is possible in two ways. Having registered a report in the Reports security pages the Oracle Report appears a standard Web component and may be added as an item. In this case the report appears as a Link which when clicked will run the report at that time (you indicate that this is working). The second way is to push a scheduled report automatically to a defined folder such that when a user moves to that folder the pre-generated report is already there.
    This second technique requires that the report server know where the Portal repository is stored. To do this you need to first set the "REPOSITORYCONN" parameter in the Report Servers configuration file (usually <reportServerName>.cfg) Eg. portal30/portal30@PortalSID. This will then allow the server to push the completed document to the defined folder.

  • Need an adobe pdf with 2 content areas like a book

    Dear all,
    maybe an easy question for you but I didn´t find a solution yet.
    I need a PDF like a book. Means Page 1 on the left side, Page 2 on the right side.
    On Next page: Page 3 on left, Page 4 on right side and so on.
    Thanks.
    Kind regards
    Frank

    Hi Frank,
    you just have to set a own paperformat (for example A4 special) and afterwards setting up the XDC-File to the specific printing-mode.
    ~Florian

  • All pages contents are diagonal (text, pictures, buttons...)

    when i open firefox, the home page loads, but everything is diagonal, and it's the same for every page, they load but all the contents are diagonal. an example: i see a button that should be in a corner standing in the middle of the page and when i want to click on it, the text from the button appears near it so i have to click there to load this content. it's like the button and it's picture are separated and everything it's diagonal, even the text is italic.

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Use rating for Content Area items.

    Does anybody now if it is possible to rate
    items loaded in a Portal Content Area.
    So later on you can see how high visitors
    rated the items you loaded.

    Hi,
    You can always add an extra attribute to the item, but then the users need access to all the attributes of the item.
    Good luck.
    Filip Huysmans.

  • Images present in datagridview not exporting to file only text contents are generating into PDF file..

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M
    Hello,
    Since this issue is mainly related to iTextSharp which belongs to third-party, I would recommend you consider posting this issue on its support website to get help.
    Maybe the following forum will help.
    http://support.itextpdf.com/forum/26
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Acrobat 9 PDF Portfolio - setting size of swf content area

    Hi,
    I added a swf file to a PDF Portfolio in Acrobat 9 Pro Extended and it works fine when the portfolio is opened in Reader 9, except that the swf content area is small. I want it to occupy the entire page. How/Where do I set this?
    Thanks
    Vijay

    I've got this same problem. I add a SWF that's got a width and height of 792x612px. After using the Multimedia->Insert Flash tool the movie is resized to 320x240px and doesn't look right.
    Does anyone have any wisdom or insights that can help me understand what I'm missing? I'd love to solve this problem and there doesn't seem to be a lot of info related to this functionality online.
    Thanks,
    Scott

  • Open a pdf document in portal content area

    All,
    I have a folder in 'Public Document' with a pdf file. A KM Navigation iView points to the folder with the pdf file. When a user clicks on the pdf file it opens in a seperate window. Is it possible to open the pdf file in the content area of the portal.
    Thank you.
    SAP Partner

    Hi,
    Try to set the "Target Window Type" in the corresponding resource or collection renderer setting, see http://help.sap.com/saphelp_nw04/helpdata/en/50/041142e862654ca98ced1607386c9c/frameset.htm and the same for the collection renderer settings for details.
    Hope it helps
    Detlev

  • PDF in Content Area?

    Is it possible to display a PDF-File in Folder Area, not in full browser window? How can I make two frames in Content Area, one for Navigation Bar and one for PDF-File?
    null

    All,
    We're working on solving this problem. A high priority for us is to always maintain the Portal context for all content, so the user always has links to take them back to home, the previous page, etc.
    We moved from frames to tables because of overwhelming demand from most users. Although frames have the one advantage that you cite, their other disadvantages (difficulty with bookmarking, printing, and others) have caused many sites to abandon them. In fact, Jakob Nielsen, the leading expert on Web usability, calls frames the #1 mistake in Web Design.
    Regards,
    Jerry
    null

  • Problem when loading pdf files from Shared Content

    When I load pdf files from Shared Content, I got the following problem: "The selected document could not be retrieved, please try uploading the document again."
    Anyone knows this?
    Thank you very much in advanced.

    I don't migrated the program, but installed it from the original installer,
    i. e. I first installed Indesign from backup, and then uninstalled it and
    reinstall  clean from Adobe.
    What a plug-in or utility converts page from InDesign to PDF?
    2014-08-10 22:51 GMT+04:00 Peter Spier <[email protected]>:
        problem with exporting PDF files from InDesign CS5  created by Peter
    Spier <https://forums.adobe.com/people/P+Spier> in InDesign - View the
    full discussion <https://forums.adobe.com/message/6627440#6627440>

  • Iview calls new Page on Content Area

    Hello Everybody,
    I have a Page with 3 Iviews on it, and would like that an Iview call a new Page.
    Wich means, I have Iview 1,2,3 on Page A and if you trigger a link on of these Iviews a new Page B should be loaded.
    All I got is that the Page loaded in the Iview itself. Is there an opportunity to change that behavior, to call a Page B from an Iview that reloads the content area with a Page B?
    Thanks in advanced,
    Marcus

    Hi Marcus,
    you can call EPCM.doNavigate with the PCD target, see https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/enterprise portal client.pdf
    Hope it helps,
    Detlev

  • How to pass variable to content area from a PL/SQL procedure

    Hi,
    Can somebody tell me how to create a(Content area) folder based on a PL/SQL procedure that takes a variable as a
    parameter and returns data based on value of that parameter to the folder . Any help would be appreciated .
    Thanks and regards.
    Neeti.

    Somewhere, in one procedure, build a session identifier and save your variable there. If no session with that identifier is previously stored, it will create a new session instance with that ID for you.
    declare
    l_sess portal30.wwsto_api_session;
    varvalue number;
    begin
    varvalue := 100;
    l_sess := portal30.wwsto_api_session.load_session('MYSESSION','VARIABLES');
    l_sess.set_attribute('VAR_NAME',varvalue);
    l_sess.save_session;
    end;
    In your other procedure, or anywhere else needed within that same session, simply load the session and reference the variable. To reference the variable, use the following.
    -- assuming new procedure, so re-defining session variable and reloading session into it
    declare
    my_session portal30.wwsto_api_session;
    my_new_variable number;
    begin
    my_session := portal30.wwsto_api_session.load_session('MYSESSION','VARIABLES');
    my_new_variable := my_session.get_attribute_as_number('VAR_NAME');
    end;
    This will let you reference parameters across multiple portal applications and indirect calls.

  • How to Pop-up new Window and load PDF at same time

    Hi
    In my servlet application, when I receive request, I have to load PDF form and at same time I have to pop up new browser window with html content ( help data).
    I thought of writing <script>window.open(....)</script> to outputstream before writing FDFdocument , but it fails.
    I am using FDF tool kit to load PDF forms, once I set content type to "application/vnd.fdf" , I can't write any javascript to response.
    Any help /ideas to do this is appreciated.
    Thanks,
    Prakash

    Hi Prakash,
    Here is the way to solve this issue:
    Make use of HTML frame, one frame (maybe with 0 height and width) pop up with a new HTML browser using javascript. Set the content type and display the pdf in another frame.
    Note that one page can only set content type once, so if u have set it to application/vnd.fdf, you cannot write HTML content into same response stream.
    -ms

  • Acrobat Plug-In - Wont load PDF pages in browser

    Not sure when it started happening, however either after upgrading to Safari 4.0.2 or installing the entire Master Collection of CS4, Safari will no longer load PDF's into a window. The error message reads:
    Acrobat Plug-IN
    The Adobe Acrobat/Reader that is running can not be used to view PDF files in a web browser. Please exit Adobe Acrobat/Reader and exit your web browser & try again.
    My Acrobat Plug In section is as follows:
    Adobe Acrobat
    Adobe PDF Plug-In For Firefox and Netscape — from file “nppdf32.dll”.
    MIME Type Description Extensions
    application/vnd.adobe.x-mars Acrobat Portable XML Document Format mars
    application/vnd.adobe.xdp+xml Acrobat XML Data Package xdp
    application/vnd.adobe.xfd+xml Adobe FormFlow99 Data File xfd
    application/pdf Acrobat Portable Document Format pdf
    application/vnd.adobe.xfdf XML Version of Acrobat Forms Data Format xfdf
    application/vnd.fdf Acrobat Forms Data Format fdf
    Can someone help me out. Am trying to cross debug a website for IE8 and Safari but any PDF content in the webpage that loads separately causes the application to quite with a Data Execution Protection error.

    Thanks for your help I found the SIMBL directory and deleted a file called AcidSearch.Bundle which had a date of 2006, The SIMBL directory was not deleted just the file .
    Safari now loads error free ! The path for anyone else with the issue is below.
    Application Support>Library>SIMBL>Plugins  AcidSearch.bundle

  • DW MX trouble with loading PDF files

    I'm using Dreamweaver MX on an XP Pro machine and have
    trouble loading pdf documents to my web pages. It cooperates
    intermittently. I'm using a virtual pdf printer to convert word
    documents to pdf, then saving them to my website folder, selecting
    the linking text on my page in DW, using the link box to select my
    pdf document, then saving the page and putting files in both the
    local and remote views.
    This method has worked for me before, and now it's not. Does
    anyone know of a reason for this? The documents are saved
    correctly, as I can get them to open as pdf outside of dreamweaver
    and my webpage...when I click on the link I created online I get
    "page not found."
    Thanks for any help!

    I am having the same trouble with Dreamweaver MX 2004 on
    Mac-OSX since I switched from MacOs9. I still have no solution .
    When I want to export a .pdf file I get a message saying <ftp
    error>.
    I never had problems on Mac Os 9 and it started when using
    the first version of Mac Os X. I am presently using mac Os 10.4.10
    and I am still unable to transfer .pdf files, no matter whether I
    use acrobat or the Mac system to produce the.pdf file.
    When I try the page on my computer the link to the.pdf file
    functions allright, but not on the server as the file cannot be
    transfered to it by the software.
    Does someone know how to solve this ?
    Q]
    Originally posted by:
    milflib
    I'm using Dreamweaver MX on an XP Pro machine and have
    trouble loading pdf documents to my web pages. It cooperates
    intermittently. I'm using a virtual pdf printer to convert word
    documents to pdf, then saving them to my website folder, selecting
    the linking text on my page in DW, using the link box to select my
    pdf document, then saving the page and putting files in both the
    local and remote views.
    This method has worked for me before, and now it's not. Does
    anyone know of a reason for this? The documents are saved
    correctly, as I can get them to open as pdf outside of dreamweaver
    and my webpage...when I click on the link I created online I get
    "page not found."
    Thanks for any help!

Maybe you are looking for

  • Database access in JSP?

    Can I easily access MS access using JSP? If it is, what kind of drive should be used to access the MS Access database? Thank you so much!

  • Lumia 800 ringertone problem

    I updated my lumia to the latest firmware. Have a problem The volume level when the phone rings for the first 1-2 seconds jumps to max. then a pauses and then comes down to what was set. Why is that? Solved! Go to Solution.

  • Set the input cursor i.e. "set cursor" in ABAP

    In ABAP Dynpro, I have the possibility to set the cursor to a specified input field using the "set cursor" command. In ABAP Web Dynpro it seems that I always have to place the cursor first using the mouse. Is there an equivalent to "set cursor" in AB

  • Xcelsius 2008 SP1 - Ignore Blank cells not working

    I have a ticker object that is showing the values from a QaaWs query just fine, but at the end of the list I keep getting the words NULL - NULL - NULL - .... This solution is working in the OEM release of Xcelsius 2008. The range is set longer than t

  • How can I get path from af: inputFile or a uploadedFile

    Hi, there, I am getting error messages while sending attachment. I firstly tired getting the attachment from <af:inputFile> and attach it to the email. It failed. Then I put the file name directly into my code, still choose the same file from the <af