JDBC receiver error: field not exist in the table

But the field does exist.
Columns  Name Data Type Size Scale Not NULL Default Value
EMPID VARCHAR2 10
EMPNAME VARCHAR2 30
EMPAGE VARCHAR2 3
FLAG VARCHAR2 1
The Database is Oracle.
Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'emp' (structure 'Statement1'): java.sql.SQLException: FATAL ERROR: Column 'flag' does not exist in table 'emp'.

Does it have the field flag?? XI is case sensitive!!Check you have the correct spelling and case.
Even if not workig use this same thread JDBC Problem Part III (SQL error?)
Edited by: Dharamveer Gaur on Oct 10, 2008 7:56 AM

Similar Messages

  • Error :Extract Structure does not exist for the table YFSP03A .

    Hi Could you please help me to solve the above mentioned problem?
    I have a requirement where i have to generate the Data Source ' 3FI_SL_FS_SI ' using the table YFSP03A .
    Using the Tcode: BW03MAST i tried to assign FI-SL to the ledger but it throwed me an error that extract structure does not exit for the table YFSP03A .The reason being that i didnot create an extract structure for the table.So i tried to create it using the Tcode: BW01,but i did not have authorisation for the Transaction and BI team also could not generate as even they were not authorized to generate extract Structures.
                          So, Please are there any other ways to generate Extract structure for the table so that i can generate the Data source? Or is there any other means of generating the Data Source? And i couldnot access the other Tcodes viz :FAGLBW03, FAGLBW01,  FAGLBW02.

    Hi Bharath,
    Goto SE11, put the name of your extract structure in Data type and click display, check the version of the structure. if it is inactive then goto RSA6 and activate your DS.
    After activation try to retransport.
    Regards,
    Durgesh.
    Edited by: Durgesh Gandewar on Jul 25, 2011 3:13 PM

  • Error: . fields not displayed because the HTML form was not yet opened.

    I had created a data base application using Import from one workspace(schema1) to another workspace(schema2).
    Created all the tables and data in schema2.
    Now when I'm trying to run the page getting the following error
    " Error: Item "P16_PRODUCT" was not displayed because the HTML form was not yet opened. "
    I'm not able to figure out what is that I'm missing during import due to which form is not opening.
    Removed the authorization from the pages in order to test the page. So, I don't think this is related to Authorization.
    Please help me in identifying the issue.
    Thanks,
    Suresh.

    Hello Suresh,
    >> I had created a data base application using Import from one workspace(schema1) to another workspace(schema2).
    Is the APEX version on both workspaces are the same? What is the APEX version?
    Please make sure that the page template you are using includes #FORM_OPEN# in the last line of the Header section.
    Regards,
    Arie.
    ♦ Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    ♦ Author of Oracle Application Express 3.2 – The Essentials and More

  • Query the values not exist in the table

    We have a table AP_INVOICES_ALL where we have a column INVOICE_NUM, now we are searching INVOICE_NUM from a large set of values of INVOICE_NUM provided by the user.
    I want a query to find the INVOICE_NUM values supplied by user that doesn't exist in AP_INVOICES_ALL table.
    Database version : 11g
    OS : aix 6.1
    Regards,
    Gaurav

    Hi,
    If you are getting values in the table then the above solution is there but if you are getting the values in excel or text file then you need to upload the data into the table by using sql loader or by using external table.
    if the case then
    load data from excel or plain file into oracle table by using sql loader.(loader is server based utility)
    create table in oracle like create table table_name as column specification.
    If you have excel then save it as .csv file and create sql loader control file like
    oPTIONS (SKIP=1)
    load data
    infile 'Path_where_you_saved_csv_file'
    truncate
    into table table_name_you_have_created
    fields terminated by ','
    optionally enclosed by '"'
    trailing nullcols
    (your_column_name)
    {code}
    call control file from command prompt from the path where your control file and csv or plain file resides.
    {code}
    sqlldr userid=user_name/passowrd@database_name control=control_file_name
    {code}
    above will insert data into table.
    now you can use the select query...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • JDBC receiver error Cannot establish connection with the registered driver

    Hi Expert,
    I am constructing a proxy to JDBC scenario. And I am getting error saying "
    Message processing failed. Cause: com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error when attempting to get processing resources: com.sap.aii.af.lib.util.concurrent.ResourcePoolException: Unable to create new pooled resource: DriverManagerException: Cannot establish connection with the registered driver. oracle.jdbc.driver.OracleDriver returns: The Network Adapter could not establish the connection. : SQLException: The Network Adapter could not establish the connection"
    I can get into my Oracle database using TOAD with same IP address, user name and password. Could anybody tell me what should I do? Thanks a lot!
    Charles

    Hi,
    Check with your network team, network conenction between PI and Data base not working , Network team have to open Data base system ports inorder connect PI System.
    check with Basis team about network connectivty,like they are bale to ping Data base server ip or not.
    please go through below thread,
    SQLException: Io exception: The Network Adapter could not establish the con
    regards,
    ganesh.

  • BDCDATA error-Field INVFO-ZUONR does not exist in the screen SAPLMR1M 6000

    Hi
    I am trying to call transaction MIR7 from ABAP code and passing values to the same.
    I am able to pass data to first tab using code (as recorded in SHDB) :
        DATA BEGIN OF BDCDATA OCCURS 1.
        INCLUDE STRUCTURE BDCDATA.
        DATA END OF BDCDATA.
        CLEAR BDCDATA.
        BDCDATA-PROGRAM  = 'SAPLACHD'.
        BDCDATA-DYNPRO   = '1000'.
        BDCDATA-DYNBEGIN = 'X'.
        APPEND BDCDATA.
        CLEAR BDCDATA.
        BDCDATA-FNAM     = 'BKPF-BUKRS'.
        BDCDATA-FVAL     = CompCode.
        APPEND BDCDATA.
        CLEAR BDCDATA.
        BDCDATA-PROGRAM  = 'SAPLMR1M'.
        BDCDATA-DYNPRO   = '6000'.
        BDCDATA-DYNBEGIN = 'X'.
        APPEND BDCDATA.
        CLEAR BDCDATA.
        BDCDATA-FNAM     = 'INVFO-BLDAT'.
        BDCDATA-FVAL     = InvoiceDate.
        APPEND BDCDATA.
        CLEAR BDCDATA.
        BDCDATA-FNAM     = 'INVFO-WRBTR'.
        BDCDATA-FVAL     = InvoiceAmount.
        APPEND BDCDATA.
        Call Transaction 'MIR7' USING BDCDATA MODE 'A'.
    But when I add fields
        CLEAR BDCDATA.
        BDCDATA-FNAM     = 'INVFO-ZUONR'.
        BDCDATA-FVAL     = 'HELLO !!!!!'.
        APPEND BDCDATA.
        CLEAR BDCDATA.
        BDCDATA-FNAM     = 'INVFO-BKTXT'.
        BDCDATA-FVAL     = 'MY DATA .........'.
        APPEND BDCDATA.
    I get an error message :
    Field INVFO-ZUONR does not exist in the screen SAPLMR1M 6000
    But when I add
        CLEAR BDCDATA.
        BDCDATA-PROGRAM  = 'SAPLFDCB'.
        BDCDATA-DYNPRO   = '0150'.
        BDCDATA-DYNBEGIN = 'X'.
        APPEND BDCDATA.
    before setting INVFO-ZUONR, the error disappears, still I don't get values in HeaderText and Assignment fields on GUI
    Can anybody help.
    Thanks a lot
    Ruhi Hira

    I had used the exact recording as in SHDB but no success.
    Is it OK to create a parameter map this screen field to the parameter.
    Where I can set the parameter outside the screen..
    Ruhi Hira

  • Field RF05A-NEWBK. does not exist in the screen SAPMF05A 0100

    Hi,
    We are doing the intercompany account payable postings through SAP EDI.  The process following as below -
    Delivery -> Intercompany Billing -> Account Receivable
                                                  --> IDOC -> Account Payable
    While doing the EDI posting for AP, system giving the following message -
    Field RF05A-NEWBK. does not exist in the screen SAPMF05A 0100
    Best Regards
    Goutham

    Hello,
    I am facing the Same issue for Inbound Idoc for Invoice.
    I checked in debug mode as well and in BDC call we get a sucess message as
    Field RF05A-NEWBK. does not exist in the screen SAPMF05A 0100
    which beocme as error for Inbound IDOC.
    Coundt get the field newbk on the screen for Invcoice . in which segment do we pass the value for this.
    Can anyone please give more inputs on this.
    Thanks
    Ritesh Solanki

  • In SharePoint Calendar lists, fields [Start Time] and [End Time] do not exist at the Site Column level.

    <header style="box-sizing:border-box;color:#777777;line-height:1;font-size:13px;padding-right:46px;margin-bottom:3px;font-family:'Helvetica Neue', arial, sans-serif;">
    </header>
    I'm doing SP app development and have the following problem.
    I need to check Start time and End Time in SharePoint Calendar using CAML query and then add a new event to Calendar list using the Start time and End Time that user has entered in 2 datapickers
    in the form.
    function AddCalendarListItems() {
    var SD = document.getElementById("datepicker1").value;
    var SThh = document.getElementById("St1").value;
    var STmm = document.getElementById("St2").value;
    var ED = document.getElementById("datepicker2").value;
    var EThh = document.getElementById("Et1").value;
    var ETmm = document.getElementById("Et2").value;
    var T = document.getElementById("Title").value;
    var S1 = SThh;
    SD = SD.slice(6, 10) + "-" + SD.slice(0, 2) + "-" + SD.slice(3, 5) + "T" + SThh + STmm + ":00Z";
    ED = ED.slice(6, 10) + "-" + ED.slice(0, 2) + "-" + ED.slice(3, 5) + "T" + EThh + ETmm + ":00Z";
    //alert("SD= " + SD + " , ED= " + ED);
    var siteUrl = SiteCollurl + "/SharePointApp11";
    var clientContext = new SP.ClientContext(siteUrl);
    var oList = clientContext.get_web().get_lists().getByTitle('Calendar');
    var ListItemCInfo = new SP.ListItemCreationInformation();
    var newEvent = oList.addItem(ListItemCInfo);
    newEvent.set_item("Title", T);
    newEvent.set_item("EventDate", SD);
    newEvent.set_item("EndDate", ED);
    newEvent.update();
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQueryAddCalendarSucceeded2), Function.createDelegate(this, this.onQueryAddCalendarFailed2));
    function onQueryAddCalendarSucceeded2(sender, args) {
    alert("Success");
    function onQueryAddCalendarFailed2(sender, args) {
    alert('Add new item to the calendar failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    But I receive the following error:
    Add new item to the Calendar failed. Column 'Start time' does not exist. It may have been deleted by another user.
    I've checked and 'Start time' does exist. So it seems in SharePoint Calendar lists, field [Start Time] and [End Time]  exist but do not exist at the Site Column level.
    Please advise.

    Hi Khojasteh,
    Use “EventDate” for Start Time field, and “EndDate” for End Time field. They are the internal name of the two fields, you can check it in the column settings page url like “Field=EndDate”.
    If it isn’t the issue, please debug the code, in which line the error occurs.
    Thanks,
    Qiao
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Qiao Wei
    TechNet Community Support

  • Messaging Server 4.1: Received mail is not returned to the sender if the receiving local account does not exist.

    I have found that received mail is not returned to the sender if the receiving
    local account does not exist. This problem occurs even if I use Console to
    enable the Return message to sender option under the error handling methods.
    In addition, I have used the configutil
    to confirm that I have set the value
    for Unknown account action to "13," which corresponds to the settings "Return
    message to sender," "Notify the postmaster via email," and "Log the error in
    the log file." Yet, in this situation, an error message is being sent to
    postmaster, but not to the sender, and the error is not being recorded in the
    log file.
    <P>
    Do the following steps:<BR>
    <P>
    <OL>
    <LI>From Console, open the appropriate Messaging Server.
    <LI>Click the Configuration tab.
    <LI>Open the Services folder.
    <LI>Select SMTP.
    <LI>Click the System tab.
    </OL>
    <P>
    Check the "Domain handled by this server exclusively" field to make sure that
    your mail domain is listed. If your mail domain is not listed, then Messaging
    Server will assume that there is another mail server that is handling the
    domain listed and will forward requests to this server.
    <P>
    For more information, please see the document <I>Messaging Server
    Administrator's Guide</I>, Chapter 3, Configuring SMTP Services at <BR>
    http://docs.iplanet.com/docs/manuals/messaging/nms41/ag/smtp.htm#1010371

    On Thu, 12 Dec 2013 16:16:02 +0000, lpphiggp wrote:
    > I'm seeing this XTCOM error occur all over our /var/log/messages for one
    > server, running SLES11sp2 / OES11/sp1;
    >
    > I don't really know what this is even for. We don't use NetStorage or
    > iPrint even, this server only does basic NCP file serving, DHCP, and
    > hosts a GroupWise PO.
    > Is this anything to be concerned about?
    If this:
    http://www.linuxquestions.org/questi...entication-vs-
    edirectory-825043/
    is to be believed, it seems to indicate that your NAM configuration on
    this server is not valid. I'm not seeing this message here on the OES
    servers I looked at, and NAM is working correctly here.
    David Gersic dgersic_@_niu.edu
    Knowledge Partner http://forums.netiq.com
    Please post questions in the forums. No support provided via email.
    If you find this post helpful, please click on the star below.

  • Field VIQMSM-MATXT(14) does not exist in the screen SAPLIQS0 7204

    Hi experts,
    I have a BDC calls QM02 Tcode in a custom report as follow:
      PERFORM bdc_dynpro      USING 'SAPLIQS0' '7204'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=REAK'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'VIQMEL-QMNUM'.
      CLEAR txline.
      CONCATENATE 'VIQMSM-MATXT(' lnindex ')' INTO txline.
      " txline = VIQMSM-MATXT(0014)
      CONCATENATE 'PO #: ' alv_qmel-ponum INTO matxt SEPARATED BY space.
      PERFORM bdc_field       USING txline
                                      matxt.
      PERFORM bdc_transaction USING 'QM02'.
    When debugging I found that the input bdcdata table contains a field VIQMSM-MATXT(14) in screen SAPLIQS0 7204.
    Number 14 is the number of task of the notification which was not marked as deleted.
    This field caused the error: Field VIQMSM-MATXT(14) does not exist in the screen SAPLIQS0 7204 after that.
    I would like to know what does VIQMSM-MATXT(14) mean? How BDC can transfer VIQMSM-MATXT(14) to QM02? And How does it work?
    Thanks,
    Khanh

    Hi Kostek,
    I did not have the solution for this exact problem because our FA canceled this bug.
    Check your test case carefully whether the screen of the TCode called by BDC has that field OR NOT. If that screen does not have that field in your special case, just ignore it.
    Regards,
    Khanh

  • Field BSEG-SKFBT does not exist in the screen SAPMF05A 0302

    Hi
    while posting parked documents using  FBV0 i am getting following error.
    Field BSEG-SKFBT does not exist in the screen SAPMF05A 0302
    What can be the solution to above error.
    regards
    Rajesh

    To eliminate this problem please use transactions OB14, OB41 and set for posting key and G/L account
    field status for field  BSEG-SKFBT 'Optional entry':
    transaction OB14 AND OB41 -> Select group 'Payment transactions' -> 'Payment terms' -> set 'Optional'.
    I think the SAP note 1073234 could correct this issue.
    Thanks,
    Daniel

  • Error in ALV : Field Does not exists in Output table .

    Hi All,
    In my ALV report, program get dumped and showing error when i tried to put a col named Distribution channel ion the alv.
    I have put the Distribution cannel field in the IT_FInal table , but still getting folwong errors :
    Error : Field Symbol is not been assigned.
    As Instructed i have passed            I_INTERFACE_CHECK              = 'X'.
    By this i am getting detail error that :
    Field Distribution channel does not exists in Output table & Heading for List is missing .
    But i have maintained the distribition channel in IT_Final table
    Please suggest wheather we have to define dis channel in any other place.
    Thanks in advance.
    Can any one help me regrarding this.
    Thanks in advance.

    Hello,
    You have to populate the same in the fieldcatalog as well, i think you have not maintained this field there.
    BR,
    Suhas
    PS: Also make it a point to follow-up on your previous post: [Error in ALV : Field Symbol not been assigned.|Error in ALV : Field Symbol not been assigned.]

  • Field BSEG-DMBTR. does not exist in the screen SAPMF05A 0302

    Hi Gurus,
    I am facing an error when uploading document in background through SM35(batch session)
    1. 1. If i try to post the document in the forground system gives same message but on pressing enter it goes to next line item and ultimately posts the document. But if i try to post (SM35 session) in the back ground i am facing the issue"Field BSEG-DMBTR. does not exist in the screen SAPMF05A 0302"  Message no. 00349
    2. The system is ECC 6.0 recently upgraded from 4.7
    It would be great if any expert can help to resolve this issue.
    Thanks
    Anand

    Seems that your screen flow does not factor in the transaction currency. BSEG-DMBTR is only available for input when the transaction currency is different from the company code currency.
    Your program creating the BDC session needs rework, or better use SAP standard tools for document posting (e.g. RFBIBL00 or one of the BAPIs available )
    Thomas

  • Field BSEG-MEINS. does not exist in the screen SAPMF05A 0300

    Dear Expert,
    in cross-company sales process, issuing an IDoc to create a FI AP document, the IDoc was created and issued successfully by inter-compnay invoice, but in processing the IDoc to creat a FI AP document, there is a error message and that is "Field BSEG-MEINS. does not exist in the screen SAPMF05A 0300". i used the Units of Measurement"EA", and in the setting of Units of Measurement"EA" i already flagged the Units of Measurement"EA" as Primay code, but the error still appear again, please give me some useful advice!

    Hi
    Concerning message of "Fields BSEG-MEINS and MENGE are hidden in
    SAPMF05A 0300", it was recommended to check which G/L accounts were
    involved and to verify that fields BSEG-MEINS and MENGE were set to
    'optional' .Please check the field statuses in OB41/OB14 for the
    affected G/L accounts, whether the field as optional is set.
    regards,
    Ramana

  • Field BSEG-SKFBT. does not exist in the screen

    Hi,
    While doing FBV0 the document is not posting and it is showing the error message as below.
    Field BSEG-SKFBT. does not exist in the screen SAPMF05A 0302
    Message no. 00349
    Diagnosis
    The specified field does not exist on the screen.
    Procedure
    Check your batch input data.
    govind.

    Govind,
    The filed BSEG-SKFBT (Discount base), is not available in the screeen SAPMF05A 0302.
    This happens between Development, Quality and Productions cients. The sequence of fields differs with
    respective to client.
    In Development while recording (SHDB) field  BSEG-SKFBT might have appeared on screen SAPMF05A 0301 but in Production or quality it might appear on some other screens
    Ask Abaper to check this, as this might be available in SAPMF05A 0301 or SAPMF05A 0303 .
    Hope this helps.
    Regards
    Velu Mudaliar

Maybe you are looking for