Unable to create files from FORMs6i Patch11

Hi Frnds,
I'm executing a stored procedure from the back-end to create an XML file.This is working fine with the back-end i.e. ORACLE10g.
But when the stored procedure is executed within the FORMS then it executes without any error but the file is not created.
Please assist ... Its very urgent...
Regards,
Jignesh S

Well, firstly, there's nothing urgent around here compares to anyone elses questions, so don't even thing about stating it as urgent.
Are you closing your files off after creating each one?
What version of Oracle are you using?
Can you show us your code or are we supposed to guess at what you are doing?

Similar Messages

  • Windows Server 2012 R2 RDS: RDS Users are unable to delete files from their desktop

    Hello,
    We are working with Windows Server 2012 R2 RDS. We also implemented User Profile Disks. This is all working fine without problems. The only issue I have is that normal users are unable to delete files from their desktop. They are getting a message:
    you'll need administrator permission to delete this file, with the prompt for administrator access.
    They can edit, copy, rename, cut and paste files. But they cannot delete a file from their desktop.
    I checked the security permissions of the files on the desktop (for example a normal self-created PDF file) and the users are owner and have "Full Control" over the files.
    I checked the file permissions and took a look under "Advanced", selecting the specific domain user and checked the "Advanced Permissions" and the user has the "Delete" option checked. So he should be able to delete the
    file.
    I am guessing this is UPD related issue, or something in GPO. But I already unlinked the GPO objects, that I felt could be the source of this problem, but without results.
    Could someone give me a hint on where to look? It's kinda annoying to users, that they can't delete their own files.

    Hello Bria,
    What you should check first, is the NTFS permissions on the User Profile Disk to begin with. See if the user has full control over the items that are in the UPD.
    Also check the GPO's that are enabled for the user and computer account. You can check that by running: gpresult /h <path>\gpresult.html
    There are two GPO settings that could prevent the user from deleting his/her own items: 
    User
    Configuration\\Policies\\Administrative Templates\\Windows Components\\Windows Explorer\
    Hide these specified drives in My Computer
    Prevent access to specified drives in My
    Computer
    There might be other GPO settings, that block deleting items on the UPD, but can't think of any out of my head.
    I can only think NTFS and GPO settings that might prevent the user from deleting items. In my case it was a GPO setting, that I didn't suspect.

  • "unable to create *file name*" error

    I imported videos from ipod touch to iphoto. Then i try to export the videos on either desktop or external hard-drive and it gives me the "unable to create *file name*" error in both cases. To export videos i go FIle-Export, choose kind "original". Tried to do it with several different albums, and it doesn't work on any of them. Didn't have an issue for exporting pictures though.
    Please help!
    Nina

    What exactly was selected when you did the test?
    Regards
    TD

  • "error building executble. unable to create file."

    Hello!
    When I try to run or Build an Pocket PC application i get thes message: "error building executble. unable to create file."
    I have installed:
    LAbview 8
    Microsoft embedded visual c++ 4.0
    Microsoft Pocket PC SDK
    PDA Module 8
    Does anyone have a clue wats wrong?

    The builder is missing the C compiler and the linker from Microsoft for the emulator target.
    On my system they are located in C:\Program Files\Microsoft eMbedded C++ 4.0\EVC\wce420\bin. Check on your computer.
    I couldn't find a place where to set this path (remember: I have 7.1, 8.0 may support this settings, although it's not likely).
    Paolo
    Paolo
    LV 7.0, 7.1, 8.0.1, 2011

  • Unable to Create Invoice from iSupplier

    I am unable to create invoice from isupplier module,
    the moment i click on create invoice "with a PO" or "without a PO" under finance Tab,
    i get this error "You cannot complete this task because you accessed this page using the browser's navigation button(the browser Back button, for example).
    But I have not accessed the pages with any browser navigation buttons at all.
    please advise what may be preventing me from creating invoice?

    This is caused by the incorrect setup of the browser.
    The browser's "Temporary Internet Files" setting for "Check for newer versions of stored pages" was set to "Never". This caused the browser to pull up the old data instead of querying the server.
    Please make sure the browser's "Temporary Internet Files" setting for "Check for newer versions of stored pages" is set to "Automatic".
    You Used Your Browser's Navigation Buttons To Get Here (Doc ID 1214138.1)

  • ODBC error generating temp file: "Unable to create file buffer" Server 2008

    Guys:
    I have a 32 bit application that has been running for years with no problems under XP and MS Server 2003.
    To access the oracle DB we use MFC drivers and ODBC system datasources for Oracle 10g and 11g.
    We recently moved from MS Server 2003 to Server 2008 Standard Edition (32 bit).
    We also upgraded our DB from 10g to 11g R2.
    Now the application gets intermittent errors when accessing the database like the one below:
    "Unable to create file buffer"
    I looked this up on other forums and it seems to be a problem with the ODBC driver creating uniquely names temp files
    in the system temp folder. This was a documented problem some years ago and was fixed but now seems to have
    reared its ugly head for Server 2008.
    I'm not sure who the culprit is: 2008 32-bit or the 11g drivers.
    I just know that some of our transactions fail because ODBC has problems and this is killing us.
    As you see we are still running on a 32 bit OS and have created the ODBC DSNs using odbcad32.exe.
    The application connects to the DB and works MOST OF THE TIME but random transactions now fail because of this error.
    If I try to kill all of the *.tmp files from the windows temp directory it seems to solve the problem for a while but then the problem comes back rather quickly.
    Any help here would be apprciated.

    This may solve the issue: http://support.microsoft.com/kb/130719
    Don't just delete the offending file...it will be recreated eventually. Post a dummy file to prevent the error from reoccurring.
    My only question is why you put more info on database and ODBC versions here and not in your SR? I'll note this in your SR for ya ;)

  • Unable to create envelope from given source:

    Hi all,
    1) actually i have wrote a servlet and i am trying to get a SOAPMessage from input stream...the code is as follows
    public void doPost(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException      {
              try
              {     InputStream inputStream= request.getInputStream();
                   InputStreamReader ir = new InputStreamReader(inputStream);
                   BufferedReader br = new BufferedReader(ir);
                   String theLine;
         while ((theLine = br.readLine()) != null)
         System.out.println(theLine);          
         MimeHeaders headers = getHeaders(request);
         MessageFactory msgFactory = MessageFactory.newInstance();
         SOAPMessage msg = msgFactory.createMessage(headers, inputStream);
         SOAPEnvelope envelope = msg.getSOAPPart().getEnvelope();
         SOAPBody body = envelope.getBody();
              catch(Exception e)
                   e.printStackTrace();
    public MimeHeaders getHeaders(HttpServletRequest req) {
              Enumeration enum1 = req.getHeaderNames();
              MimeHeaders headers = new MimeHeaders();
              while (enum1.hasMoreElements()) {
              String headerName = (String)enum1.nextElement();
              String headerValue = req.getHeader(headerName);
              StringTokenizer values = new StringTokenizer(headerValue, ",");
              while (values.hasMoreTokens()) {
              try{
              String strValue = values.nextToken().trim();
              headers.addHeader(headerName, strValue);
              }catch (Exception e){
              System.out.println("SAAJ_Simple_Receive getHeaders: " + e);
              return headers;
    2) i have added mails.jar,saaj-api.jar,saaj-impl.jar,saaj-ri.jar,xalan.jar,activation.jar,xercesimpl.jar and servlet.jar
    3)but i am getting following exception
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to create envelope from given source:
    13:39:29,986 ERROR [STDERR]      at com.sun.xml.messaging.saaj.soap.EnvelopeFactory.createEnvelope(EnvelopeFactory.java:148)
    13:39:29,986 ERROR [STDERR]      at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPPart1_1Impl.createEnvelopeFromSource(SOAPPart1_1Impl.java:102)
    13:39:29,986 ERROR [STDERR]      at com.sun.xml.messaging.saaj.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.java:156)
    13:39:29,986 ERROR [STDERR]      at InterceptorServletClass.doPost(InterceptorServletClass.java:88)
    13:39:29,986 ERROR [STDERR]      at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    13:39:30,018 ERROR [STDERR]      at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    13:39:30,018 ERROR [STDERR]      at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
    13:39:30,018 ERROR [STDERR]      at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
    13:39:30,018 ERROR [STDERR]      at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
    13:39:30,018 ERROR [STDERR]      at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    13:39:30,018 ERROR [STDERR]      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
    13:39:30,018 ERROR [STDERR]      at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
    13:39:30,018 ERROR [STDERR]      at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:580)
    13:39:30,018 ERROR [STDERR]      at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    13:39:30,018 ERROR [STDERR]      at java.lang.Thread.run(Unknown Source)
    4) can anyone plz tell me how would i resolve this problem... do i need to add any more jar fils?????
    thanks in adavance(waiting for reply)

    Try editing the file and put only the <SOAP-ENV:Envelope> XML into your file.
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Head
    er><edc:transid xmlns:edc="http://www.edc.com">4</edc:transid><edc:cmdid xmlns:edc="http://www.edc.com">50</edc:cmdid><edc:attDataInfo xmlns:edc="http://www.edc.com">.\testdata\FormExample.xml</edc:attDataInf o></SOAP-ENV:Header><SOAP-ENV:Body/></SOAP-ENV:Envelope>
    i.e remove all the "Part", "Content-type: text/xml", "image.jpeg" stuff.

  • BOBJ is unable to delete file from OFRS

    System Info:
    Business Objects Enterprise XI3.1 SP3 FP3.2
    Windows 2003 Server Enterprise Edition SP3
    Oracle 10.2
    Java 1.6.0_20
    APACHE Tomcat 5.5.20
    2 clustered servers
    FRS located on SAN Disk Drive connected to primary server (Winchester1)
    We use WebIntelligence exclusivly.
    We are receiving the following error in our event log on our clustered server:
    Source: BusinessObjects_CMS
    Category: General
    Type: Warning
    Event ID: 33018
    Computer: Winchester2
    Unable to delete file from the file repository. Make sure a File Repository Server is running and registered and enabled. Details : Failed to connect to the File Repository Server output. Make sure the server is up and running.
    We have verified the FRS is running and we are able to connect to it from our clustered server (Winchester2).  The security settings are set to full control for the admin group and the users have Read/Write access to the file store folders.  The errors are filling up our event logs and causing issues with the servers.  this appears to be happening each morning and the file it is trying to delete is an .xls file.
    We have a ticket open with SAP Support but they are just as baffled as we are and keep sending us from one group to another and tell us they need to look at it on thier end and they will get back to us.
    Has anyone had this happen on their system?

    Hi Richard, did you ever get this issue resolved?  We are having a similar issue on XI R3 SP4 using NAS/CIFS shares for our File Stores.  We see this issue mainly after our servers are patched and a full environment restart is initiated.  Like you, our event logs fill up with so many error messages I cannot pinpoint exactly when the issue starts happening.
    Any help would be much appreciated.

  • Unable to download file from cloud

    Hi,
    I am unable to download file from adobe cloud.can anyone help me out?

    Adobe has more than one file-storage 'cloud.'  What is the URL of the file you are trying to download?

  • Recently, iPhoto will no longer allow my to export photos onto my folders on my desktop. It just says that it is unable to create file. Not sure why this is happening?

    iPhoto is no longer allowing me to export & resize photos into a file on my desktop. It just states that it is Unable to create file on desktop. I'm not sure what this means on how to correct this issue. Any support would be greatly appreciated!

    Then do the following:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot.
    If Fix #1 fails to help continue with:
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download IPhoto Library Manager 4 for OS XC 10.6.8 and iPhoto  8.1.2 and later  or iPhoto Library Manager 3 (for OS X 10.5.8 and iPhoto 7.1.5 and earlier) and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu (iPLM 3) or Library ➙ Rebuild Library menu (iPLM 4) option.
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • I am unable to copy files from my macbook pro to my external hard disk.

    I am unable to copy files from my macbook pro to my external hard disk. I tried to copy a movie 800mb in size to my EDD and  it shows the loading box and it says zero kb loaded out of 800mb and sometimes it loads a a few kb of the file, then after a while it ejects my hard disk and gives a message saying you should have ejected it properly. and it sometimes gives this message
    "The Finder can’t complete the operation because some data in “....” can’t be read or written.
    (Error code -36)".
    This happens with a range of files if they are more than a few mb in size, so I am pretty sure its not the file problem. It also occurs sometimes when i try to copy from my EDD to my mac.
    I have tried everything. I formatted my EDD to MS-DOS (FAT) format because i need to use it with mac and windows. I tried resetting The SMC and the PRAM and NVRAM. I tried verify and disk repair on disk utility. But the same thing happens over again and it is really frustrating. The problem doesnt happen with my PC.
    My EDD is an  Apollo 320GB hard drive from Imation.
    Also are there any particular EDD brands that may not have this issue with MACs and can be used on mac and PC?
    Thanks in advance!

    Hey guys,
    So this is follow up from my debarkle with the EDD. I found out my problem with copying files from Mac to EDD and vice versa was a result of a not so good EDD ( i had an apollo hard drive from imation) that was not very compatible with macs. So i did my research and found out that the best hard drives were Western Digital and Seagate. I bought the newest western digital EDD 1TB and formated it to FAT32 and guess what...no problems so far. The only problem is that FAT32 format doesn't copy files larger than about 4 gigs so i couldnt copy a movie from my brothers computer onto my EDD that was 1080p. You could probably resolve that by partitioning a small part of your hard drive in ExFAT? but yeah, hopefully that helped guys.
    Aaisha

  • When I try to export the file in word, I get the error "The Save as command has not been able to develop this document. Unable to create file"

    When I try to export the file in word, I get the error "The Save as command has not been able to develop this document. Unable to create file".
    Win7 Pro, 64bit
    Acrobat XI Pro, tryal

    Create a one word pdf file. Try converting to word. If that fails, try a complete uninstall, run the cleaner tool, then re-install.
    Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs

  • Open the pdf file from forms6i

    Hi,
    how to open the pdf file from forms6i.
    can anyone help me regarding this.
    Thanks,
    Ansaf.

    Hi,
    The HOST built-in does not return any error or message back to the Form.
    You will have to use some other means to first find out whether the file exists or not. E.g. you could use TEXT_IO.FOPEN to open the file in Read mode. If the files is not found the handle returned will be null, and that will be condition you have to process to show a message or pop an alert.
    Make sure you close the file with FCLOSE, irrespective of whether the file is found or not, before you open the File for viewing.
    Regards,

  • POST fails on T5140 server.   POST shows errors about "Unable to create files".  Server won't boot

    All,
    Need any help that someone can provide.  Currently I have a T5140 server.   Yesterday it crashed unexpectedly. We were able to reboot the system and it come back up with the service light on.  Service light was indicating a memory DIMM problem.   We powered down the server to replace the memory modules that had service led showing for them.   After powering the system on, it never gets past POST now.  We attached a serial console to the ILOM and watch the post.   POST starts normally. Then we start to see messages about "unable to create files.  Finally POST gets to a point where it looks like it is finishing but hangs.   It hangs at the point where it say that it is initiating run level 3.  But it just sits there and never boots the system.  Any ideas?   Is this a motherboard issue that really cemented itself when the power was removed to the system?  Any help would be greatly appreciated.  We are stuck.
    Thanks.

    I have had this same issue, unfortunately you will need to place a service call for a field tech to come on-site and replace the failty DIMM. The T5140 WILL NOT BOOT if any one or more DIMMs fail to POST.
    The only partial solution is to disable the CPU that is connected to the bad DIMM so the system will successfully boot up in degraded mode. But I would not run the box like that for long.
    You need to call service a.s.a.p.

  • Unable to create SC from internal catalog (MDM)

    Hi All,
    We have issue were user is unable to create SC from internal catalog. User can access the catalog, however when trying to checkout he gets BLANK screen. This issue is with all the items for that catalog.
    Please advise.
    Thanks,
    Sunil

    Hi Sunil,
    What is your IE version ? If its IE 8.0 please check SAP note 1511147. This contains settings that are needed.
    Please also check the following note:
    1264879 - Transferred Catalog items get stuck at Inbound Handler
    Please maintain the ISO code of page on the webservice details as UTF-8 and retest. Also try, if you are using BYPASS_INBOUND_HANDLR parameter on the call structure with value = X delete this line and retest.
    Another issue is that if the user does not have access to the product category their items will not be added to the SC.
    I hope this helps,
    Lisa

Maybe you are looking for

  • Smartform in binary code

    Hi, i have a problem; when i execute a smartform, the spool of smartform is in binary code. How can i change the format of spool? Thanks.

  • Doc.pageNum  InvalidGetError

    I wrote a JavaScript batch sequence with a function, in which I read Doc.pageNum. I get this error: "InvalidGetError: Get not possible, invalid or unknown. Doc.pageNum:9:Batch undefined:Exec 00 Exception in line 9 of function myFunc, script Batch:Exe

  • Menu audio not working?

    I placed an audio track on all the menus in my dvd project. The audio track playes on every single menu except for the main one. Am I doing something wrong?

  • Nothing happens when trying to open Adobe Reader or pdf

    When I attempt to open Adobe Reader (any version) nothing happens. I am running Windows 7 Pro and have tried uninstalling Reader 9 & 11, Running a suggested hotfix, running the Adobe cleaning tool to remove it, launching it from a CL, but I did see a

  • Failed to export to pdf - need help in understanding adobe advice

    my indesign document failed to export to pdf, therefore I looked up the indesign help - see below; I could not find where to proceed after point 2 / would anyone help? thank you Solution 2: Downsample the images after export using  Acrobat. Choose Fi