Error Creating File Items in Content Area

Received the following error message when trying to create an item in a content area:
An unhandled exception has occurred, ORA-01403: no data found.
I checked in the Apache error_log file and the only messages I see relate to portal30.wwv_add_wizard.edititem and portal30.wwv_additem.additem (had to be described for execution).
Any suggestions? Thanks

This is an unusual problem. Please work with Oracle Support to resolve it.
Regards,
Jerry
PortalPM

Similar Messages

  • Error when editing items in content area!

    Hi,
    I get an error: HTTP 404 - File not found, everytime I want to edit an item in the content area, after another try it works and does the changes.
    I'd like to know if this is a know bug? what's happening?
    This is bad to portal performance, the publishers and developers are backing out, due to this prob.
    Also I'm getting timeouts all the time.
    Any help?
    Carolina.

    Hi,
    This has been mentioned on a thread on 'General' about getting 404 errors and timeouts. I am having exactly the same problem.
    I re-installed our Server from Scratch with Windows 2000 and Portal version 3.0.9.8.0 so I would have a totally clean install, but I still get the same problems.
    Someone mentioned that turning Intermedia (Oracle Text) searching on causes the problems. Does anyone know if there is a fix for this? Any word on this from Oracle?
    Richard

  • How to create folder and items in content area without edit folder option

    Hello!!
    I would like to create something to users can create and insert folders and items in content area without using the edit folder option.They would have a form to include the name of the file and the name.i would like to do this for the end users can insert files more easily. Can i do this? Anyone can help me ??
    Thanks in advance!!!
    null

    The wwsbr_api and wwsbr_search_api packages are included in the current PDK, but won't be supported until 3.0.8 is release, later this month.
    Regards,
    Jerry
    null

  • Publishing air desktop app error creating files

    Hello I am using flash cc pro to try and publish my flash document  as a windows desktop app. I keep running into an error
    Error creating files. The AIR version set in Publish Settings of the initial content SWF exceeds that allowed for the descriptor namespace.
    I am trying to publish using Air 14.0.0.178. here is my descriptor file.
    <application xmlns="http://ns.adobe.com/air/application/3.1">
      <id>project18</id>
      <versionNumber>1.0</versionNumber>
      <filename>project18</filename>
      <description/>
      <name>project18</name>
      <copyright/>
      <initialWindow>
        <content>project18.swf</content>
        <systemChrome>standard</systemChrome>
        <transparent>false</transparent>
        <visible>true</visible>
        <fullScreen>false</fullScreen>
        <aspectRatio>portrait</aspectRatio>
        <renderMode>auto</renderMode>
      </initialWindow>
      <icon/>
      <customUpdateUI>false</customUpdateUI>
      <allowBrowserInvocation>false</allowBrowserInvocation>
    </application>
    thanks.

    Hi,
    Can you please share your file for us to investigate this issue?
    Thanks!
    Mohan

  • File handling in Content areas

    Where is it determined what happens when you select a file in a content area folder? If I want to only be able to download the file and not try to read it, is there a setting that may be changed to allow this?
    Thanks,
    Chris

    Chris,
    We just do whatever the browser is configured to do with the file type. There are no special settings available in Portal.
    Regards,
    Jerry
    null

  • Error creating files. Compilation failed... when publishing iOS app with AIR 3.1 and Flash 11.5.1

    Hello, I'm running Windows 7. I'm using Flash 11.5.1 (that's CS5.5 updated once) and AIR 3.1 to make an iPhone app.
    I can export the app perfectly fine with either Ctrl+Enter or F12.
    I added all the required things with AIR for iOS settings, such as a p12 certificate and icon files.
    I then hit publish. After I hit publish, I got this error:
    Error creating files.
    Compilation failed...
    I tried dragging the window to see if there was anything hidden behind the elipses. What can I do to fix this problem?

    note sure if I'm much help other than to CONFIRM it is working for me by using the sdk WITHOUT the compiler. Check out adobe's little note: "Note : Flex users will need to download the original AIR SDK without the new compiler."
    I am using FB 4.7 with AIR 3.6 and seems to compile correctly for iOS.
    Maybe try reinstalling flash builder?
    I honestly don't know if the JRE has anything to do with it... I'm using 1.7 ....to see what JRE you're using, open the Java Control Panel (I right click my java orange icon and hit properties), select the Java tab, then hit "View..."

  • 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.

  • Internal File Names within Content Areas

    I have a problem where I have loaded up a series of inter-linked HTML files created in an HTML editor (e.g. Dreamweaver). They all exist within a folder and all the links work. As soon as I amend a file and reload it, it gets a new name on the database (for example index_0.htm and then index_1.htm). Therefore because the name has changed the links no longer work. I have item versioning switched off in the content area and the folders where the items reside.
    Is there any way around this problem?
    null

    This behavior has been fixed for Portal 3.0.8, which is going to be part of 9iAS release 1.0.2.1, due out later this month.
    In the meantime, perhaps you could have dreamweaver update the links for your files as part of a dreamweaver "site" definition. If you update the name for one file say from ("myfile" to "myfile_1", all the other links would then be automatically updated by dreamweaver to reflect that). What version of Portal are you currently using? 3.0.6 or 3.0.7?

  • Error creating files in KM repository using templates

    Hi,
       We are having trouble creating files using templates.
    It was working fine in NW 4 SP11. Following error is occuring after upgrading to SP14.
    #1.5#0003BA0ED352001F000000000000733E00040871DB567309#113
    5185011045#com.sapportals.wcm.util.logging.CatchBlockHand
    ler#sap.com/irj#com.sapportals.wcm.util.logging.CatchBloc
    kHandler.ResourceImpl#testuser#3930##winserver_NW1_611512
    151#testuser#3f492260723d11dacdc90003ba0ed352#SAPEngine_A
    pplication_Thread[impl:3]_20##0#0#Error##Plain###[ECB]
    Can't move /documents/Templates/SingleTemplates/New
    Document Number Required_Engr Spec.doc to /my_content/test folder/New Document Number  required_Engr Spec_1_.doc: com.sapportals.wcm.repository
    .NotSupportedException: Can't move /documents/Templates/SingleTemplates/New Docu
    ment Number Required_Engr Spec.doc to /my_content/test folder/New Document Number Required_Engr Spec_1_.doc
            at com.sapportals.wcm.repository.ResourceException.fillInStackTrace(Reso
    urceException.java:400)
            at java.lang.Throwable.<init>(Throwable.java:195)
            at java.lang.Exception.<init>(Exception.java:41)
            at com.sapportals.wcm.WcmException.<init>(WcmException.java:59)
            at com.sapportals.wcm.util.content.ContentException.<init>(ContentExcept
    ion.java:38)
            at com.sapportals.wcm.repository.ResourceException.<init>(ResourceExcept
    ion.java:163)
            at com.sapportals.wcm.repository.NotSupportedException.<init>(NotSupport
    edException.java:64)
            at com.sapportals.wcm.repository.manager.cm.CmNamespaceAndContentManager
    .copy(CmNamespaceAndContentManager.java:1313)
            at com.sapportals.wcm.repository.ResourceImpl.internalCopyManager(Resour
    ceImpl.java:3142)
            at com.sapportals.wcm.repository.ResourceImpl.internalCopy(ResourceImpl.
    java:3232)
            at com.sapportals.wcm.repository.ResourceImpl.copy(ResourceImpl.java:204
    1)
            at com.sapportals.wcm.repository.ResourceImpl.copy(ResourceImpl.java:201
    4)
            at com.sapportals.wcm.rfadapter.CopyUtility.copy(CopyUtility.java:116)
            at com.sapportals.wcm.service.template.TemplateService.createFromTemplat
    e(TemplateService.java:409)
    Any help in this regard is appreciated!!
    Thanks
    Kiran

    Hi Kiran,
    looks like your repository 'my_content' doesn't support the copy of the desired template 'New Document Number Required_Engr Spec_1_.doc from the template storage into the target path. Does the creation of a new file from this template work in the documents repository?
    Is the my_content repostiory may be a file system repostory and doesn't support files with a space in their names.
    Kind regards,
    Michael

  • Problem with Checking In/Out Items in Content Area

    I've been reading the Portal On-Line help pages in regards to
    checking in/out items. The help states that when an item is
    checked out, the item is locked and a message "Checked out by:
    UserName" is displayed next to the item. When I check out an
    item, I do not see this "Checked out by" message. However, I do
    see the checkout icon. Note - I am doing this through the
    Content Area Navigation page. Is there something that I am
    missing? (I have seen other threads in regards to the
    checkin/checkout icons not displaying when the Content Area is
    published as a portlet. We are having this problem as well.)
    However, the lack of the "checked out" message happens in both
    the Content Area Navigator and the published portlet.
    Also, is there a way to get Portal to automatically generate
    version numbers when a new version of an item is created. I see
    that you can create a unique name or description .... but I'd
    like to have Portal generate the version number for me. This is
    done in the Application component section when you build forms,
    menus, or reports.
    Thank you for any assistance that you can provide.

    The "checked out by" message only appears to other users - you
    won't see it if you are the user who checked out the item.
    The version number is planned for a future release.
    Regards,
    Jerry

  • Error "creating file: 1008:5, -5000 Access Denied Error"

    I'm unable to install Flash Player 9 in OS X (10.4.8). I
    followed the following tech note:
    http://www.adobe.com/go/4aa64290
    * I uninstalled Flash Player using the uninstaller
    * I repaired disk permissions
    * I tried re-installing Flash Player
    I still get the error message saying I don't have the
    appropriate permissions.
    Some background: I'm upgrading from a G5 tower to a new Mac
    Pro. I ran the migration utility to copy over my user settings,
    apps, etc. I noticed that pages with Flash were crashing the
    browser(s) instantly. Of course, that's because the PowerPC version
    was previously installed. I uninstalled and tried to re-install.
    When I got the above error, searched the support area and found the
    tech note saying to uninstall (done), repair permissions (done),
    then re-install (fails.)
    I'm stumped.
    Any suggestions?

    I have the same problem, after trying more than a few times
    to install the
    player, uninstall it, uninstall the Firefox 2, reinstall
    Firefox... with the
    same result : it says that I need a plugin, and put me to the
    page of the Flash
    player installer...
    I had this new error message after erasing, as it was
    proposed on a forum, the
    Internet plug-ins directory... "creating file: 1008:5, -5000
    Access Denied
    Error"
    I never had this message before. I have all the rights and
    have installed lots
    of softwares. I tried to use the terminal way... but this is
    a long way for me
    on a Mac... I would be able on a PC but I can't even
    "navigate to this
    directory"...
    Do I have to say that this Flash player is now quite
    important for lots of web
    sites... This is really the first time I have a problem with
    Flash. Is it the
    Intel Mac ?? No, it seems Windows have also its probs. Thanks
    for a reply... or
    a solution !

  • Problem upload too large file in a Content Area ORA-1401

    Hi All
    I have a customer who is trying to upload a file with a too large name in a content area.
    If the filename is 80 characters, it works fine.
    But if the filename is upper or 80 characters the following error ocurred:
    ORA-01401: inserted value too large for column
    DAD name: portal30
    PROCEDURE : PORTAL30.wwv_add_wizard.edititem
    URL : http://sbastida-us:80/pls/portal30/PORTAL30.wwv_add_wizard.edititem
    I checked the table: WWV_DOCUMENT and it have a column name: FILENAME is defined like VARCHAR2(350).
    If i run a query on this table, the filename column stores the filename of the file uploaded.
    Is this a new bug? may i fill this bug?
    Do you have any idea about this issue?
    Thanks in advance,
    Catalina

    Catalina,
    The following restrictions apply to the names of documents that you are uploading into the repository:
    Filenames must be 80 characters or less.
    Filenames must not include any of these characters: \ / : * ? < > | " % # +
    Filenames can include spaces and any of these characters: ! @ ~ & . $ ^ ( ) - _ ` ' [ ] { } ; =
    Regards,
    Jerry
    null

  • How to zip files in a content area

    Hi!!
    We have a lot of documents in a content area, and every day the number of documents is going up. The question is, if we can zip these documents or something similar.

    If you're asking about compressing the files in the repository, or adding a bunch of items to a zip file, neither of these features are currently available.
    You would have to download the files, add them to a zip on the desktop, and then upload the new zip file.
    Regards,
    Jerry
    PortalPM

  • Public user sees old content of items in content area/portlets

    I have items in my Content Area, as pl/sql folders, text and pl/sql items. These are all published as portlets. Access is set to public. The content of these items have been altered a couple of times during development, and they work as they should when I4m logged in as a user.
    However, when I access these items (both directly by an url to the content area and by an url to the page containing the portlets) as the public user (not logged in), the content of these items is old. The content could be several weeks old, actually it is possible that the displayed content is the original content of the specific item (as it was when I first created the items).
    To me, it sounds like a cache issue, and I tried to set "Enable plsql caching" to "no", with no improvement.
    What can I do to solve this?
    /Sara

    You could try flushing the cache content by navigating to
    $ORACLE_HOME/Apache/modplsql/cache
    ..and deleting the directories and all content beneath them.
    This is guaranteed to cause a cache rewrite.
    You should also set your page cache settings to 'Dont Cache' which will guarantee that the cache is not being used.
    You can check the caching status of a portlet on a page by adding _debug=1 to the URL you are viewing.
    You can read more about it here..
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/OTN_CONTENT/MAINPAGE/ARCHITECTURE/TROUBLESHOOTING_ISSUES_IN_ORACLE9IAS_PORTAL2.HTM#31
    What patch/version are you running ?

  • Error creating text item in portal

    Hello forum, I am having an error creating a text item in portal. I'd like the item to be displayed directly on the page. However, the item is greater than 32K. This is the error in the log file: portal: [module=RepositoryServlet, ecid=83707100943,1] ERROR: Repository Gateway error: Request Processing Error: Value param too long. Length is 189640. Upper limit is 32512
    Does anybody know of a work around this issue?
    Thanks

    There's not a workaround, per se, for this. The 32K is a hard and fast (and very annoying) limit. Depending on the item and display you'd like to use, you could put it in a dynamic page and display it as a portlet, or split it up into different items.

Maybe you are looking for

  • Playing Photo CD on DVD Player

    Each year I burn to a CD my digital photos stored in my iPhoto albums. When I play them on a DVD player, I always get identical consecutive photos, only one of which plays/shows. The other creates a blank screen for the five seconds that each photo p

  • Note to moderators - mark sticky notes

    I only occasionally come to this forum and each time i am a bit disoriented on the top of the forum trying to figure out which messages are sticky and which are new. Can someone edit those message titles to all have *** or to have [sticky] on the fro

  • Photoshop elements editor 12 does not open .psb file

    why is this isn't this a type of photoshop file, it reads "Could complete your request because it is not the right kind of document" when I attempt to open

  • Moving existing Blogger blog into iWeb site

    I have an existing web site and am recreating it using iWeb This includes a blog of some years which is created via Blogger. Can I import my blogger blog (or the code from it) into an iWeb page so that it has the same look and feel? I'd also wnat to

  • Add new speakable items

    How do i add new speakable items. Menu items, and when using parallels, programs and menu items there?