Storing Orders into Site using streamWriter Class in c# getting Error

Hi,
    I am using streamWriter class to write orders into text file.It's working.,But not my client asking to change site URL to store orders into that site.
I need to save orders into below path:
https://SP2010.org/Departments/Community/Communications/DocForms/Forms/Simple%20View.aspx
Getting Error: 
The given path's format is not supported.
In web.config File:
<AppSettings>
<add key="OrdersList" value="https://SP2010.org/Departments/Community/Communications/DocForms/Forms/Simple%20View.aspx"/>
</AppSettings>
Under Button control,wrote below code:
 string Orderslist = System.Configuration.ConfigurationManager.AppSettings["OrdersList"].ToString();
                        string fileName = Orderslist;
                        string fileText = fileName + nextorder.ToString();
                        //Check if file already exists. If yes, delete it. 
                        if (File.Exists(fileText))
                            File.Delete(fileText);
                        // Create a new file 
                        using (StreamWriter streamWriter = new StreamWriter(fileText))
                        {streamWriter.WriteLine(listItem["Title"]);
                                streamWriter.WriteLine(listItem["OrderDate"]);
                                streamWriter.WriteLine(listItem["OrderCreatedBy"]);
Thanks in Advance:
Help Me

Hi Sadomovalex,
Thanks for Responding.
I tried below code,Getting error:
server Error in '/' Application
File Not found
Description: An unhandled exception occured during the exception of the current
web request. Plaese review the stack trace for more 
information about the error and where it originated in the code
Exception Details: System.IO.FileNotFoundException:File not found
The file is storing in my file system:Orderlist.txt44,
Orderlist.txt45,
Orderlist.txt46...
I am unable to read the file;getting error file not found
The code Is:
protected void Button1_Click(object sender, EventArgs e)
        string siteURl = System.Configuration.ConfigurationManager.AppSettings["OrdersList"].ToString();
        string fileName = siteURl.ToString();
        String fileToUpload = fileName;
        //String sharePointSite = "http://sp2010:9596/DocForms/Forms/AllItems.aspx?InitialTabId=Ribbon.Library&VisibilityContext=WSSListAndLibrary";
  String sharePointSite = "http://sp2010:9596/DocForms/Forms/AllItems.aspx";
        Console.WriteLine(sharePointSite);
        String documentLibraryName = "DocForms";
        using (SPSite oSite = new SPSite(sharePointSite))
            using (SPWeb oWeb = oSite.OpenWeb())
                if (!System.IO.File.Exists(fileToUpload))
                    throw new FileNotFoundException("File not found.", fileToUpload);
                SPFolder myLibrary = oWeb.Folders[documentLibraryName];
                // Prepare to upload
                Boolean replaceExistingFiles = true;
                String fileNames = System.IO.Path.GetFileName(fileToUpload);
                FileStream fileStream = File.OpenRead(fileToUpload);
                // Upload document
                SPFile spfile = myLibrary.Files.Add(fileNames, fileStream, replaceExistingFiles);
                // Commit 
                //Check if file already exists. If yes, delete it. 
                if (File.Exists(fileName))
                    File.Delete(fileName);
                // Create a new file 
                using (StreamWriter streamWriter = new StreamWriter(fileName))
                    streamWriter.WriteLine("Hyderabad");
                    streamWriter.WriteLine("Secundrabad");
                    myLibrary.Update();
Help me,
Thanks:

Similar Messages

  • We are using jni.h but its getting errors, please check it this

    We are using jni.h but its getting errors, please check it this
    Calling from a .dll using Java and JNI - by Borland Developer Support Staff
    Abstract:Basic JNI example: making a Win32 API call
    Making Native Windows API calls from within a Java Application
    One of the main points of Java is to be completely platform independent. However, sometimes it will occur that the developer of an
    application will know that his or her application is only going to be run on a specific platform, for example, Win32.
    NOTE: This example assumes that you are using JDK 1.2 or later.
    Below are the steps for writing a Java application that makes a Win32 API call. The application generates a Swing Jframe and makes it
    system modal, or gives it the �Always On Top� functionality, similar to that of the Windows NT Task Manager.
    Steps to follow:
    1. Write the Java code for the application
    2. Run javah.exe on your .class file to generate a C header file
    3. write the implementation of your native methods
    4. create the shared library
    5. run the application
    1. Write the Java code for the application
    import java.awt.*;
    import sun.awt.*;
    import sun.awt.windows.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Frame1 extends JFrame {
    int windowHWND = 0;
    JButton jButton1 = new JButton();
    public Frame1() {
    //windowHWND = this.getHwnd();
    try {
    jbInit();
    catch(Exception e) {
    e.printStackTrace();
    public int getHwnd() {
    DrawingSurfaceInfo w = (DrawingSurfaceInfo) ((DrawingSurface) getPeer()).getDrawingSurfaceInfo();
    w.lock();
    WDrawingSurfaceInfo win32 = (WDrawingSurfaceInfo) w;
    int hwnd = win32.getHWnd();
    w.unlock();
    return hwnd;
    static {
    System.loadLibrary("windowOnTop");
    public static native void WindowAlwaysOnTop(int hwnd, boolean flag);
    public static void main(String[] args) {
    Frame1 frame11 = new Frame1();
    frame11.setSize(400,400);
    frame11.setVisible(true);
    private void jbInit() throws Exception {
    jButton1.setText("jButton1");
    this.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowOpened(WindowEvent e) {
    this_windowOpened(e);
    public void windowClosing(WindowEvent e) {
    this_windowClosing(e);
    this.getContentPane().add(jButton1, BorderLayout.NORTH);
    void this_windowOpened(WindowEvent e) {
    windowHWND = this.getHwnd();
    System.out.println("the value is: " + this.getHwnd());
    this.WindowAlwaysOnTop(windowHWND, true);
    void this_windowClosing(WindowEvent e) {
    System.exit(0);
    Once the code is written, compile it with Jbuilder or the command line javac.exe tool which will result in a generated .class file. You will use
    this .class file in the next step.
    2. Run javah.exe on your .class file to generate a C header file
    The following line represents the basic syntax for running javah.exe:
    javah Frame1
    where Frame1 is the name of the argument class.
    When you run javah.exe, it will generate a header file by the same name as your implementation but with a .h file extension. For this
    example the .h file that was generated from the above Java code will be emitted being that it is quite large.
    NOTE: Make sure that when you run javah.exe, it is the javah.exe that came with the same JDK that you will be compiling with as there may
    be some issues with using a version of javah.exe that is different from that of the JDK you are using to compile.
    3. write the implementation of your native methods
    Now that you have your Java source and your C header file, it is time to write the implementation of your native methods.
    Following is the C code that corresponds to the native methods declared in the Java code listed in step 1:
    #include "jni.h"
    #include "Frame1.h"
    #include <stdio.h>
    #include<windows.h>
    JNIEXPORT void JNICALL Java_Frame1_WindowAlwaysOnTop(JNIEnv *env, jclass obj, jint hwnd, jboolean flag)
    if (flag)
    SetWindowPos((HWND) hwnd,HWND_TOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    else
    SetWindowPos((HWND) hwnd,HWND_NOTOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    return;
    You will notice several things: one is that the function signature has �Java_Frame1_� preceeding the name of the function. If there was a
    package statement in the Java source, it would appear after ��Frame1_� in the function signature.
    Second, you will notice the #include �jni.h�. Normally this would be #include<jni.h>, depending on how you have your libraries set up within
    your C compiler.
    4. create the shared library
    Now you are ready to create the shared library. Using your C compiler, create a .dll file with the code from the C implementation file. Refer
    to the doccumentation of the C compiler for details on creating a .dll file.
    For those interested in using Borland C++ Builder:
    If you have got it installed, you could use Borland C++ Builder 3 or C++ Builder 4 to create your DLL file. If this is the case, you would use
    File | New... | DLL C++ Builder will then generate some code for you, and you will just need to add your implementation code to the code
    which was generated.
    Remember in the Java code in step one there is a line:
    static {
    System.loadLibrary("windowOnTop");
    �windowOnTop� is the name of the .dll file. You can name it whatever you want, just make sure that you specify the appropriate name when
    loading the library.
    5. run the application
    Finally you are ready to run the application. From the command line use java.exe and as the argument specify the name of the class that
    you compiled in step one. Once the system loads your DLL, the window that the VM creates should mimic the �Always On Top�
    functionality.
    We are getting errors like this
    �Compiling JNI.H:
    Error JNI_MD.H 23: , expected
    Error JNI.H 115: Declaration missing
    Error JNI.H 200: ) expected
    Error JNI.H 202: ) expected

    #include "jni.h"
    #include "Frame1.h"
    #include <stdio.h>
    #include<windows.h>
    JNIEXPORT void JNICALL Java_Frame1_WindowAlwaysOnTop(JNIEnv *env, jclass obj, jint hwnd, jboolean flag)
    if (flag)
    SetWindowPos((HWND) hwnd,HWND_TOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    else
    SetWindowPos((HWND) hwnd,HWND_NOTOPMOST,0,0,0,0,SWP_NOMOVE|SWP_NOSIZE);
    return;
    We are getting errors like this
    �Compiling JNI.H:
    Error JNI_MD.H 23: , expected
    Error JNI.H 115: Declaration missing
    Error JNI.H 200: ) expected
    Error JNI.H 202: ) expected

  • During recovery on iPhone 4 I got : The iPhone could not be restored. Un unknown error occurred ( 3004 ). Then - iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes.Then I get error 3004

    During recovery on iPhone 4 I got : The iPhone could not be restored. Un unknown error occurred ( 3004 ). Then - iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes.Then I get error 3004 again. Latest iTunes and OS updates. I cant use the phone now. I did restart the destop,unplug the usb,...etc. Same iTune logo ,arrow and USB on the screen.THANK YOU SO MUCH,...!

    Perhaps the information in this Apple support article will help:
    http://support.apple.com/kb/TS3694#error3004
    Regards.

  • How do you export your movie using idvd? I keep getting error messages and notices that I do not have enough space to transfer to a dvd.

    How do you export your movie using idvd? I keep getting error messages and notices that I do not have enough space to transfer to a dvd.

    Can you give us the steps to re-create the problem, and the exact wording of the error message you are getting please.

  • Entering into site using valid id and password through URL class

    hi......
    i need to access the google adwords editor site. I have account on that but i want to access that by using URL class and then i need to use some data on getting response. It is very urgent for me. Whats the drawback is i am unable to handle the cookies send by the server. Can any one help how to get the response from that by handlin cookies or sessions through program. I have valid id and password.
    Thanks in advance.
    Regards...............
    v.suresh

    Thanks for the response.
    I attempted to remove cookies, but I can not identify any of the cookies on the list with the PrimeVest web site. No PrimeVest, no PVs, nothing that looks like it came from them.
    I have also reported the problem to PrimeVest and their tech did answer. He suggested erasing the browsing history (temporary internet files), which I did with no effect. He also had me check for the correct starting page address, which was OK. He stated that they are aware of a problem and it is on their list. No indication of how far down that list though. His only cure was to use IE for now, which I was already doing. Perhaps he can tell me which cookies to remove.

  • Trying to extend class TimecardCO but getting error the following message

    I am using jdev version 9.0.3.5
    I am trying to extend class TimecardCO; but an error is produced when I try to run the page in EBS.
    This is the message I am getting:
    Error message is java.lang.NullPointerException
    at oracle.apps.hxc.selfservice.common.util.GlobalUtilities.changeDestinationURL(GlobalUtilities.java:1418)
    This is my package below.
    package oracle.apps.hxc.selfservice.timecard.webui;
    import oracle.apps.hxc.selfservice.timecard.webui.TimecardCO;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAFwkConstants;
    public class xtimecardcoex extends TimecardCO
         public void processFormRequest(oracle.apps.fnd.framework.webui.OAPageContext param1, oracle.apps.fnd.framework.webui.beans.OAWebBean param2)
    System.out.println("IN xtimecardcoex processFormRequest");
    }

    Here is my error Page
    =============
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: java.lang.NullPointerException
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:603)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1136)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:646)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2335)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1734)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
         at oa_html._OA._jspService(_OA.java:85)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._RF._jspService(_RF.java:102)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.lang.NullPointerException
         at oracle.apps.hxc.selfservice.common.util.GlobalUtilities.changeDestinationURL(GlobalUtilities.java:1418)
         at oracle.apps.hxc.selfservice.timecard.webui.TimecardCO.processRequest(TimecardCO.java:261)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:587)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1136)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:646)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2335)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1734)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
         at oa_html._OA._jspService(_OA.java:85)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._RF._jspService(_RF.java:102)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)
    java.lang.NullPointerException
         at oracle.apps.hxc.selfservice.common.util.GlobalUtilities.changeDestinationURL(GlobalUtilities.java:1418)
         at oracle.apps.hxc.selfservice.timecard.webui.TimecardCO.processRequest(TimecardCO.java:261)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:587)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processRequest(OAPageLayoutHelper.java:1136)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processRequest(OAPageLayoutBean.java:1569)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:959)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequestChildren(OAWebBeanHelper.java:926)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processRequest(OAWebBeanHelper.java:646)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processRequest(OAWebBeanContainerHelper.java:247)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processRequest(OABodyBean.java:353)
         at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2335)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1734)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:508)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:429)
         at oa_html._OA._jspService(_OA.java:85)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at oa_html._RF._jspService(_RF.java:102)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:534)

  • FPGA code using too much memory? getting error 52000

    Hi all,
       I'm having trouble getting some FPGA code to run. What I am trying to do with the program is acquire data using DAQmx from two fgen's, and then use an FPGA based lock-in amplifier to find the frequency of these signals and their phase difference (It's actually only a slight modification of a lock-in amplifier available on the NI site). I keep getting error 52000 when I start up the program, indicating I'm using up too much memory somewhere. I don't know why this is, as even the lowest sampling rates I give to the DAQ do not keep this problem from happening. Could someone look at my code to see whats going on?
    Thanks,
          Grant
    Attachments:
    LIA_SSTL.lvproj ‏90 KB

    I am using a PXI-7852R card in a PXI-1033 chassis, all connected to my comp through a PCI bridge. I'm also using a PXI-6115 data acquisition card, which is feeding data to the FPGA.
    Sorry for not attaching the VI's, I thought they were contained within the llb. Here they are.
    Thanks,
         Grant
    Attachments:
    LIA_FPGA.vi ‏285 KB
    LIA_Host.vi ‏2346 KB

  • I cannot get into the iTunes store. I keep getting error message 0x80092013

    I have spent hours trying to get into the iTunes store without success. Error message 0X80092013 keeps appearing. Someone has suggested maybe a driver is missing. Please help if you can. (I can get into the store using my laptop. I cannot get into it from my desktop.) I'm using Windows Vista.

    many thanks.
    I am in my iTunes application and when I press the link to connect to the iTunes Store, it starts churning, and churning, but never connects. It has churned for hours and when I finally click the "X" to close it, I get error code 11222.
    I'd try the following document: 
    Apple software on Windows: May see performance issues and blank iTunes Store
    (If there's a SpeedBit LSP showing up in Autoruns, it's usually best to just uninstall your SpeedBit Video Accelerator.)

  • When I am using FB08(for Reversing) am getting error message

    Hi Guys!!!
                  am basically ababper, I got one issues from FI consultant.when he has done posting using the transaction  FB03. He wanted to reverse the posting item using the transaction FB08.when he is using the transaction FB08,he is getting error like *express document "update was terminated" recived from auther"(my name)"*.
                after that i went to SM13 if click the error messges it goes to dump analysis,in  this function module."RKE_WRITE_ACT_LINE_ITEM_COC1"
    this is the error text i got: 00 671: ABAP/4 processor: SAPSQL_ARRAY_INSERT_DUPREC

    Hi
    It seems the fm RKE_WRITE_ACT_LINE_ITEM_COC1 try to insert some records with the same keys.
    There isn't the fm RKE_WRITE_ACT_LINE_ITEM_COC1 in my system, you should check what that fm does.
    Max

  • When we r using zslsoff_all role , we r getting error: No Authorization

    HI!
    We have 10 sales office . each sales office having each role. For Ex: Sales office Is X, Y, Z . Then Roles r Zslsoff_X, Zslsoff_y, etc. Apart from this we have role for all sales office like zslsoff_all. When we r using zslsoff_all role , we r getting following error: U don’t have a authorization to read Zslsoff.
    If we r using Zslsoff_X, Zslsoff_y, etc we r getting correct one.
    I check both roles (zslsoff_all and Zslsoff_X) in Pfcg . both r same.
    Plz help me. I will assign points

    Hi,
    post your query in security forum.
    use this link: Security
    any way run tcode SU53 after authorization error to identify missing authorization for object.
    regards,
    kaushal

  • Cannot log into site using digital certificate

    On a Windows XP machine digital certificates have been imported into the certificate store using the Certificate Import Wizard. And verified using IE7 to login into an internal site.
    In FireFox, when I choose "Digital Certificate" as a login option I get the following message:
    The page requires a client certificate
    The page you are attempting to access requires your browser to have a Secure Sockets Layer (SSL) client certificate that the Web server will recognize. The client certificate is used for identifying you as a valid user of the resource.

    You can try to export the certificate in IE and import the certificate in Firefox.
    Tools > Options > Advanced : Encryption: Certificates - View Certificates

  • How to import 300 purchase order into SAP using excel upload

    Hi Everyone,
    I am trying to close all the existing purchase orders in the system (about 300) and create similarly 300 new ones under new accounts.
    My questions is can I do that using an excel upload, or it will have to be done manually? If I can, any help in that regard would be highly appreciated.
    Regards,
    Abubakr Asif

    Hi
    Welcome to SDN World!
    You can use LSMW to create 300 Purchase Orders.
    please check this link for guidance
    http://www.ficoexpertonline.com/downloads/0703.doc
    To close existig POs, you can use Mass update (Tr code MEMASSPO).
    hope it helps.
    regards
    Srinivas
    Reward if it helps

  • In expert mode, using the mover tool, I can not move one picture into another. Need help as I get error message

    I have two pictures in expert mode in editor. I go to "Move tool", click on picture but I am unable to move and drop in second picture. I do not get the dashed lines around the picture, and if I move cursor to
    move picture, I get the following message " This operation cannot be performed on the locked background layer. Do you want to convert the locked background layer into an editable layer?"  I have no idea
    what I need to check or uncheck to make it work.,  I am following a lesson plan in a "Infinite Skills" training course.  I talked to them, but was unable to come up with a answer.  Help, please I have been
    trying to do this move for over a week.  tks  rdf

    We don't know whether this tutorial was written for Photoshop or Photoshop Elements, more specifically for which version of PSE. There are differences. Be sure to have the layers palette open.
    Try this instead
    Open picture B, the one you wish to select something from to add to another picture.
    Use one of the selection tools, e.g. selection brush, lasso tool, to select the object. You will see an outline ("marching ants") once the selection is complete
    Go to Edit menu>copy to copy the selection to the clipboard
    Open picture A, then go to Edit>paste
    Use the move tool to position object from picture B.
    In the layers palette you should see picture A as the background layer, and object B on a separate layer.
    To unlock the background layer, double click on it in the layers palette. Perhaps your tutorial will  guide you through the process.

  • No Video will play on any site using Safari, but I do get the audio

    This is a problem I've had for some time now. I've just switched over to FireFox when there was a video I wanted to watch instead of taking the time to fix it.
    Anyway, when trying to watch a video
    http://www.apple.com/macosx/guidedtour/small.html for example.
    I get no video at all, but I can hear the audio perfectly. Not sure what is going on here.
    I just upgraded to Leopard and was hoping this would resolve itself, but not such luck. Anyone have any ideas what the problem is?
    Thanks.

    That Guided Tour of Leopard works fine for me. Perhaps you need to tweak a few settings:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11.
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • HT201413 I have been trying to restore my iphone 4s for 5 hours, please help! The update wouldn't work and now when I connect the iphone it says I have to resore in order to start using itunes but I am getting an error msg. HELP!

    I am trying to update a 4s. The update did not work for some reason. Now I need to restore the iPhone. When I connect the usb to the computer and phone it says I need to restore. So, I click to restore. It starts extracting the software. But I am continually getting the same error message that it cannot complete for unknown error. I have been working on this for 5 and a half hours. I'm tired, mu husband needs his phone and apple support is a joke and of course I can't find any answers anywhere. Please help!

    Hi MB2751,
    As an iPhone user myself, I know it must be very much a problem to have the phone out of service because of an error such as you are seeing. Let's see if we can get you back up and running.
    I would suggest that you troubleshoot using the steps in this article - 
    If you can't update or restore your iPhone, iPad, or iPod touch
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

Maybe you are looking for

  • Apex 4.0 install note - watch out for PLSQL_OPTIMIZE_LEVEL 3 in 11g!

    Hi all, I just wanted to share a tidbit I found during installation Apex 4.0 on an 11.2.0.1.1 database on a slower computer... We had our PLSQL_OPTIMIZE_LEVEL set to 3 to enable code-inlining for PL/SQL objects - and this REALLY slowed down the apex

  • Print Server WPS54GU2 and Widows 7, x64

    I am trying to use my WPS54GU2 print server with Windows 7, x64. I get the following error: err=1805 AddMonitor Fail Need any help available!

  • IWeb O8 Won't Publis After Upgrade- Help Please

    Hey All, So I finally upgraded to iWeb 08 and now my sites won't publish at all. Every time I select Publish or Publish All it goes through the paces connects then goes through updating all of the pages and then reaches the publishing in the backgrou

  • How to view all categories offline?

    I have for my work a e72. And i use ovi maps. For my work i often come in other countries like french and germany. Outside my own country i cant go online so i have to use ovi maps in offline mode. But then there is a problem. The categories are in o

  • Export Contacts, Calendar etc to Outlook

    How do I export Contacts, Calendar, etc from Palm Tungsten E2 Ver 4.1.4 to Outlook on Windows OS 7 64 bit?