Data transfer error open dataset files

hi,
When i try to create a excel or text in my application server using open dataset.
i.e
l_filename type rlgrap-filename  value '/tmp/down.txt'.
I got a short dump during the run time
i got the output and put into an internal table.
the following code has been used.
form user_command using r_ucomm like sy-ucomm
rs_selfield  type slis_selfield.
if r_ucomm = 'confirm' .
OPEN DATASET l_fname FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
LOOP AT it_out INTO wa_out.
  IF sy-subrc = 0.
    TRANSFER wa_out TO l_filename.
  ENDIF.
ENDLOOP.
endform.
during the execution i hv a button alv grid outpu. when i click the button the file should be transferred.
but NO authorization to open the file "/tmp/down.txt".
and the error is pointed in the opendataset line.
Please tell me where i am wrong . and  help me in resoving this.

Try this..instead of moving field by field into the file 1st convert all he fields to a character stream..and then move that steam to file. Ex:
loop at internal table into l_h_tbl_file.
concatenate l_h_tbl_file-f1 l_h_tbl_file-f2 l_h_tbl_file-f3
l_h_tbl_file-f4 l_h_tbl_file-f5 into g_string.
TRANSFER g_string TO fu_wk_get_file.
endloop.

Similar Messages

  • Open dataset fails...says "error opening input file"

    Hi,
    I am trying to open a file in my BDC program and get the following error "error opening input file". Its a text file with continuous data. No delimiters and hence character count will be used to parse the data.
    I am using the following statement to open it..
    OPEN DATASET p_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    but sy-subrc is set to 8 !!
    what could be the problem ??
    thanks

    This is pretty confusing !!I would explain to you my exact issue !!
    I have a program in which there is no GUI_UPLOAD call but just a direct open dataset statement !!
    This program runs fine for my collegue who has the file in a server (not the application server). She gives the full path name as
    servername\foldername\filename.
    I tried doing the same but as I did not have access to that server, it failed. So I received that file from her and stored it in my local system. So on program execution, i gave the path as c:\filename and I got the error message "Error opening the file"
    Find below some code extracts..
    PARAMETERS : p_sname TYPE d0100_mapn ,
                 p_file(136) TYPE c ,
    FORM open_file .
    *open file in textmode
      OPEN DATASET p_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF  sy-subrc = 0.
        DO.
        Read the file data and tranfer to workarea to internal table
          READ DATASET p_file  INTO  x_legacy_rec.
    Please help in debugging this issue !!
    thanks

  • Data transfer error(application server)

    Hi Gurus,
    While uploading data into application server, I have an issue. I am having the data in internal table but I am unable to send all the data into application server.
    (open dataset file for output )
    TRANSFER l_h_tbl_file  TO fu_wk_get_file.
    Data in internal table:
    f1 f2 f3 f4 f5
    1  2   -  4  5 
    after update to application server:
    f1 f2 f3 f4 f5
    1  2   -  -  - 
    I am getting 2 fields only. if any blank filed(f3) exist between those fields remaining fields also getting blank.
    How can proceed further?
    Regards,
    Dhanu

    Try this..instead of moving field by field into the file 1st convert all he fields to a character stream..and then move that steam to file. Ex:
    loop at internal table into l_h_tbl_file.
    concatenate l_h_tbl_file-f1 l_h_tbl_file-f2 l_h_tbl_file-f3
    l_h_tbl_file-f4 l_h_tbl_file-f5 into g_string.
    TRANSFER g_string TO fu_wk_get_file.
    endloop.

  • Error opening fla file.

    Hi,
    I am a relative newcomer to the world of Flash, so I apologize if this issue is a bit mindless for the veterans.
    I am working with Flash CS6 on a Macbook Pro and recently encountered a problem when trying to open a file. An error message pops up, saying 'there was an error opening the file...'. No further details are available.
    Looking at the file information, there is still data there, as the size is about 300MB.
    I've tried some amateur sleuthing online for a solution, mostly involving changing the .fla extentsion to .rar and repairing the file that way, but nothing I have tried has resolved the issue.
    Am I essentially out of luck, or is there a reliable solution for this kind of problem?
    Thanks for any help!
    Boots

    Wow, thanks for such a quick reply, kglad.
    I had actually previously zipped and unzipped the file and ended up with a folder full of stuff that I didn't know what to do with. Again, this is where my amateur understanding comes into play.
    In the unzipped folder, there are 'bin', 'library' and 'meta-inf' folders, as well as a 'DOMDocument.xml' file, a 'MobileSettings.xml' file, a 'PublishSettings.xml' file and finally a file called 'mimetype'.
    Should I be encouraged by this?
    I'm pretty clueless at this point about how I might proceed from here. I see that the 'library' folder contains all the sound files for the project (it's a soundboard), but is there a way to go from this point to recovering the project as it was before this issue came up? Or am I stuck with starting the project all over gain?
    Thanks again for the help!

  • Error opening dataset, return code:        8

    Hi,
    I'm passing the information from a txt to a transparente table. The problem is that it throws me the following message: Error opening dataset, return code:        8  .
    When I debug it the first row of information enters to the internal table but after it this erro comes.
    The code is the following:
    DATA: BEGIN OF record,
    data element: TABNAME
            tablename_001(030),
    data element: DESCR40
            des_002(040),
    data element: TYKLA
            tipo_003(015),
    data element: QUANTITY_I
            quan_004(011),
    data element: PRICE
            precio_005(021),
    data element: TOT01
            total_006(017),
          END OF record.
    End generated data section ***
    DATA:
    BEGIN OF i_tabla OCCURS 0,
    dest(40),
    type(15),
    quan(10),
    precio(15),
    tot(15),
    END OF i_tabla.
    PARAMETERS:
    p_user LIKE apqi-userid OBLIGATORY DEFAULT  sy-uname,
    p_fich LIKE rlgrap-filename OBLIGATORY
    DEFAULT: 'C:\Documents and Settings\lseri\My Documents\Book1.txt'.
    START-OF-SELECTION.
      CALL FUNCTION 'UPLOAD'
       EXPORTING
      CODEPAGE                      = ' '
         filename                      = p_fich
         filetype                      = 'DAT'
        TABLES
          data_tab                      = i_tabla
       EXCEPTIONS
         conversion_error              = 1
         invalid_table_width           = 2
         invalid_type                  = 3
         no_batch                      = 4
         unknown_error                 = 5
         gui_refuse_filetransfer       = 6
         OTHERS                        = 7
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      PERFORM open_dataset USING dataset.
      PERFORM open_group.
      LOOP AT i_tabla FROM 2.
    PERFORM bdc_dynpro      USING 'SAPLSETB' '0230'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'DATABROWSE-TABLENAME'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=ANLE'.
        PERFORM bdc_field       USING 'DATABROWSE-TABLENAME'
                                      record-tablename_001.
        PERFORM bdc_dynpro      USING '/1BCDWB/DBZSTOCK_TEST' '0101'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'ZSTOCK_TEST-TOTAL'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=SAVE'.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-DES'
                                      record-des_002.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-TIPO'
                                      record-tipo_003.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-QUAN'
                                      record-quan_004.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-PRECIO'
                                      record-precio_005.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-TOTAL'
                                      record-total_006.
        PERFORM bdc_dynpro      USING '/1BCDWB/DBZSTOCK_TEST' '0101'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/EBACK'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'ZSTOCK_TEST-DES'.
        PERFORM bdc_dynpro      USING 'SAPLSETB' '0230'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/EBACK'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'DATABROWSE-TABLENAME'.
        PERFORM bdc_transaction USING 'SE16'.
      ENDLOOP.
      PERFORM close_group.
      PERFORM close_dataset USING dataset.
    Please help me!
    Thanks

      open dataset                                                       *
    FORM OPEN_DATASET USING P_DATASET.
      OPEN DATASET P_DATASET
                   FOR INPUT IN TEXT MODE
                   ENCODING DEFAULT.
      IF SY-SUBRC <> 0.
        WRITE: / TEXT-E00, SY-SUBRC.
        STOP.
      ENDIF.
    ENDFORM.
      create batchinput session                                          *
      (not for call transaction using...)                                *
    FORM OPEN_GROUP.
      IF SESSION = 'X'.
        SKIP.
        WRITE: /(20) 'Create group'(I01), GROUP.
        SKIP.
      open batchinput group
        CALL FUNCTION 'BDC_OPEN_GROUP'
             EXPORTING  CLIENT   = SY-MANDT
                        GROUP    = GROUP
                        USER     = USER
                        KEEP     = KEEP
                        HOLDDATE = HOLDDATE.
        WRITE: /(30) 'BDC_OPEN_GROUP'(I02),
                (12) 'returncode:'(I05),
                     SY-SUBRC.
      ENDIF.
    ENDFORM.
    I'm using these performs because they appeared automatically when the recording became a program.

  • Error opening url 'file ///undefined'

    Hey everyone. I'm new to actionscript and I'm having some issues. Here is my code:
    function onFinish(success_boolean, results_obj, xml)
        if (success_boolean)
            play ();
        } // end if
    } // End of the function
    Stage.align = "MC";
    Stage.scaleMode = "noScale";
    url = "25904";
    _root.cacheKiller = "true";
    stop ();
    var parsed_obj = {};
    var unCash = new Date().getTime();
    if (_root.cacheKiller == "true")
        fileToLoad = url + "_main.xml?cacheKiller=" + unCash;
        fileToLoad = url + "_main.xml";
    else
        fileToLoad = url + "_main.xml";
    } // end else if
    gs.dataTransfer.XMLParser.load(fileToLoad, onFinish, parsed_obj);
    _root.emp.useHandCursor = 0;
    _root.mus = 1;
    _root.n = 1;
    _root.num = 1;
    when I try to test mouvie in Flash I received the following error:
    Error opening URL 'file:///O|/W%20E%20B%20%20%20%20D%20E%20%20S%20%20I%20%20G%20%20N/web%20design/25904/sou rces/flash/TRY/25904undefined'
    I don't know what the probblem is..
    Can anyone help me? pls!!!

    Use the trace function to track down what values you are trying to process.  The error is telling you it cannot find the file for the path specified, and the path that it is identifying seems to be showing that there is a problem not only with the path (appears to have several blanks spaces) but also the file name.
    Try tracing the url value before it gets sent to the loading line, as in... trace(url) and see what it shows.

  • TWAIN data transfer error

    NEW!    When I try to scan (CANON 8400F scanner) into my desktop (WindowsXP) I now get an error message (code 2,178,0) followed by the message "TWAIN data transfer error".  Can this be fixed?   sunnycroft

    Hello sunnycroft.
    Uninstalling and reinstalling the drivers may resolve this issue.  Please perform the following:
    1.  Click Start and open the Control Panel.
    2.  Open the Add or Remove Programs option.
    3.  Uninstall the CanoScan 8400F and the Canon CanoScan Toolbox.
    4.  Close all windows that are open.
    Once this has been done, ensure that the scanner has been disconnected.  Then reinstall the unit be downloading the Drivers and CanoScan Toolbox from our website at the following link.
    http://www.usa.canon.com/cusa/support/consumer/scanners/canoscan_series/canoscan_8400f#DriversAndSof...
    If these troubleshooting steps do not work, feel free to call us at 1-800-OKCANON.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Error opening jar file

    I'm using WLS 5.1 SP8 on NT 4.0 and trying to setup a cluster. The cluster
              starts fine except when I try to deploy a session bean that is marked as
              clustered. I get an error about reading a jar file
              (D:/weblogic/mycluster/server196/tmp_deployments/ejbjar1559.jar) that WLS
              created when the server started. Every server is getting this error and I
              tried setting up the same paths (D:\weblogic) but it doesn't matter. Any
              ideas?
              Wed Jan 24 15:04:10 EST 2001:<I> <WebLogicServer> WebLogic Server started
              java.util.zip.ZipException: error in opening zip file
              at java.util.zip.ZipFile.open(Native Method)
              at java.util.zip.ZipFile.<init>(ZipFile.java:69)
              at java.util.zip.ZipFile.<init>(ZipFile.java:84)
              at
              weblogic.boot.ServerClassLoader.deploy(ServerClassLoader.java:141)
              at
              weblogic.cluster.AnnotatedServiceOffer.expandClassPath(AnnotatedServiceOffer
              .java:74)
              at
              weblogic.cluster.AnnotatedServiceOffer.readObject(AnnotatedServiceOffer.java
              , Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializable(WLOb
              jectInputStreamBase.java, Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readLeftover(WLObjectInputS
              treamBase.java, Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(WLObjectInpu
              tStreamBase.java, Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObject(WLObjectInputStr
              eamBase.java, Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(WLObjectInputS
              treamBase.java, Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readArrayList(WLObjectInput
              StreamBase.java, Compiled Code)
              at weblogic.cluster.StateDump.readObject(StateDump.java:59)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializable(WLOb
              jectInputStreamBase.java, Compiled
              Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readLeftover(WLObjectInputS
              treamBase.java, Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(WLObjectInpu
              tStreamBase.java, Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObject(WLObjectInputStr
              eamBase.java, Compiled Code)
              at
              weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(WLObjectInputS
              treamBase.java, Compiled Code)
              at weblogic.cluster.TMSocket.execute(TMSocket.java, Compiled Code)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
              Code)
              Wed Jan 24 15:04:19 EST 2001:<E> <MulticastSocket> Multicast socket receive
              error: java.lang.RuntimeException: I/O error
              opening JAR file from
              file:/D:/weblogic/mycluster/server196/tmp_deployments/ejbjar1559.jar
              

    From previous posts I see this is a known bug. Is there a fix yet? btw, how
              did a bug of this magnitude
              get past QA. :(
              Elan Halfin <[email protected]> wrote in message
              news:[email protected]...
              > I'm using WLS 5.1 SP8 on NT 4.0 and trying to setup a cluster. The cluster
              > starts fine except when I try to deploy a session bean that is marked as
              > clustered. I get an error about reading a jar file
              > (D:/weblogic/mycluster/server196/tmp_deployments/ejbjar1559.jar) that WLS
              > created when the server started. Every server is getting this error and I
              > tried setting up the same paths (D:\weblogic) but it doesn't matter. Any
              > ideas?
              >
              > Wed Jan 24 15:04:10 EST 2001:<I> <WebLogicServer> WebLogic Server started
              > java.util.zip.ZipException: error in opening zip file
              > at java.util.zip.ZipFile.open(Native Method)
              > at java.util.zip.ZipFile.<init>(ZipFile.java:69)
              > at java.util.zip.ZipFile.<init>(ZipFile.java:84)
              > at
              > weblogic.boot.ServerClassLoader.deploy(ServerClassLoader.java:141)
              > at
              >
              weblogic.cluster.AnnotatedServiceOffer.expandClassPath(AnnotatedServiceOffer
              > .java:74)
              > at
              >
              weblogic.cluster.AnnotatedServiceOffer.readObject(AnnotatedServiceOffer.java
              > , Compiled Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializable(WLOb
              > jectInputStreamBase.java, Compiled
              >
              > Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readLeftover(WLObjectInputS
              > treamBase.java, Compiled Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(WLObjectInpu
              > tStreamBase.java, Compiled Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readObject(WLObjectInputStr
              > eamBase.java, Compiled Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(WLObjectInputS
              > treamBase.java, Compiled Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readArrayList(WLObjectInput
              > StreamBase.java, Compiled Code)
              > at weblogic.cluster.StateDump.readObject(StateDump.java:59)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readPublicSerializable(WLOb
              > jectInputStreamBase.java, Compiled
              >
              > Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readLeftover(WLObjectInputS
              > treamBase.java, Compiled Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readObjectBody(WLObjectInpu
              > tStreamBase.java, Compiled Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readObject(WLObjectInputStr
              > eamBase.java, Compiled Code)
              > at
              >
              weblogic.common.internal.WLObjectInputStreamBase.readObjectWL(WLObjectInputS
              > treamBase.java, Compiled Code)
              > at weblogic.cluster.TMSocket.execute(TMSocket.java, Compiled Code)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled
              > Code)
              > Wed Jan 24 15:04:19 EST 2001:<E> <MulticastSocket> Multicast socket
              receive
              > error: java.lang.RuntimeException: I/O error
              >
              > opening JAR file from
              > file:/D:/weblogic/mycluster/server196/tmp_deployments/ejbjar1559.jar
              >
              >
              

  • Error opening password file

    Hi, I'm traying to start up a database in sqlplus on SuSE 8.2 and Ora9.2, I have the next error:
    SQL> conn / as sysdba
    Connected to an idle instance.
    SQL> startup pfile=/opt/ora9/admin/pavilion/pfile/initmydb.ora
    ORACLE instance started.
    Total System Global Area 101781824 bytes
    Fixed Size 450880 bytes
    Variable Size 83886080 bytes
    Database Buffers 16777216 bytes
    Redo Buffers 667648 bytes
    ORA-01990: error opening password file '/opt/ora9/product/9.2/dbs/orapw'
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    My password file is /opt/ora9/product/9.2/dbs/orapwmydb
    How can I use my orapwmydb file?

    Hi Marco,
    as far as I know, you have to use the REMOTE_LOGIN_PASSWORDFILE = SHARED option in your init...ora file.
    In this case you have one password file for one or more databases. It can only have the entries for SYS and INTERAL.
    I'm sorry to cannot answer your question of having different password files for different databases %-)
    Klaus

  • Error opening preferences file

    When opening a pdf document in Adobe Acrobat 9 Pro, saved either locally or on the network, I receive the message "Error opening preferences file The file may be read-only, or another user may have it open.  Please save the document with a different name or in a different folder."  I've tried saving this file with a different name and I still receive this error.  If I choose to open this document with Adobe Reader 9, I have no issues.  Why would I be having this issue with Adobe Acrobat 9 Pro?

    What release of System Update are you trying to install? What OS are you using ie, win 7, 8, 8.1?
    Did you really mean IMPORT failed (not export)?
    Are your running the install . exec from a Network drive?
    Please look in  C:\users\*your id*\appdata\local\temp for the msi install log and post 50 lines of the log around where the error occurred.

  • [HELP] ORA-01990 Error opening password file '/home/oracle/OraHome1/dbs/ora

    Dear All,
    I have changed the PWD file on oracle 9.2.04 under linux redhat advance server 2.1. but when i start to open database by issuing dbstart, i get
    ORA-01990: Error opening password file '/home/oracle/OraHome1/dbs/orapw'
    ORA-27037: unable to obtain file status
    Linux Error: 2 : no such file or directory
    additional information: 3
    How to solve the problems?
    thanks and regard
    ER

    Hai all...
    I did it all..
    but still I got
    ORA-01990: Error opening password file '/home/oracle/OraHome1/dbs/orapw'
    ORA-27037: unable to obtain file status
    Linux Error: 2 : no such file or directory
    additional information: 3
    Help me...
    Thanks
    regard
    ER

  • Error opening the file:8-Per diems upload

    Hi Experts,
    I am trying to upload the perdiems for the year 2013. I got the error "Error opening the file:8" while doing so. I tried uploading in both .txt as well .xls. Resulted with the same error. Kindly suggest to overome this.
    Regards,
    Anil Kumar P.

    Hi Anil, I experienced the same issue when uploading the file. I resolved this by removing the " characters contained when pasting in the new values.

  • Error opening the file message

    Trying to import any photo I get message "There was an error opening the file."  This is new.  What can this be about

    Please see if the file is a valid one (try opening the image in any other image editor/browser). What is the extension and source of the image?
    ~Surendra

  • Error opening url 'file: What does it mean?

    When I test some of my as3 movies a new window opens and I can test the file. Yet when I test other movies I get an (error opening url 'file message.) What causes that? It seems to me that if a movie plays it should also test in a new window.

    It doesn' work. I only got the one file open. The swf file won't open at
    all. The fla file won't test. But when I debug the fla file the flash player
    debugger opens the movie in a new window and I get this message in the
    output window: "Attempting to launch and connect to Player using URL
    /Users/schweideltyson/Desktop/Circle.swf"
    SWF Users:schweideltyson:Desktop:Circle.swf - 2887 bytes after
    decompression
    Could it be my flash player is not working properly? I wish I knew.

  • Password file auth - error ORA-01990: error opening password file '/p00/ora

    Hi, Im setting up password file auth on our existing database.
    Ive run this
    orapwd file=orapwdt04.pwd password=secret entries=5
    then set this in the .ora file
    remote_login_passwordfile=exclusive
    But when I restart the dabase im getting this error
    ORA-01990: error opening password file '/p00/oraprod/9.2.0/dbs/orapw'
    How / where do I tell the database to look for the password file.
    Im running on AIX and Oracle 9.2.0.6
    thanks for looking.

    password filename must be in the format of orapw<sid> and location of the file $ORACLE_HOME/dbs

Maybe you are looking for

  • Oracle 11g: Split a line string in a set of two-points-line

    Hi, I have n Oracle RDBMS 11gR2 EE database. I have a single 2-D linestring with about 100 points. Does someone know a technic to "split" that line in an adajacent set of lines composed of 2 points only? Thanks by advance for any tips. Kind Regards

  • Is it possible to grant datasource resume actions to the Operator role?

    Hi gurus, I'm trying to grant the JDBC datasource suspend/resume action to the 'Operator' role. I understand this is an admin task and the 'Operator' role cannot do this. I've tried to edit weblogic.management.runtime -> JDBCDataSourceRuntime -> susp

  • PO Referring PR,not allowed to change Qty & Price once PO Created

    Hi All Qauntity and Price of Material Should not be Changed in PR  after PO creation,But before PO creation it should allow to change Qunaty and Price. Is ther any field control for this? Thanks in Advance. Raju

  • How to use web services in j2me ?

    Hi, I have j2me MIDlet application installed into mobile.This application like quize program(2 questions per page) like more than 10 pages will come this application.Finally i want to send answers to server for store mysql database. Now how to send d

  • Stored procedures for User Tables

    Can somebody please help me with this matter?. I need to add stored procedures for user tables. Is there any way  of doing so?. Thanks in advance. Ernesto.