Error in BAPI_ACC_GL_POSTING_POST due to empty BUZEI field.

Hi All,
I am getting an error in BAPI_ACC_GL_POSTING_POST while posting, since the BSEG-BUZEI field is not getting filled. I suppose am missing to pass some parameter to the BAPI. But not sure which one. check the code below.
*-execute FI postings
      documentheader-username    = sy-uname.
      documentheader-obj_type    = 'BKPFF'.
      documentheader-obj_key     = '$1'.
      documentheader-obj_sys     = t000-logsys.
      documentheader-header_txt  = text-h01.
      documentheader-comp_code   = gs_output1-rbukrs.
      documentheader-doc_date    = lf_date.
      documentheader-pstng_date  = lf_date.
      documentheader-trans_date  = lf_date.
      documentheader-doc_type    = 'SA'.
      APPEND documentheader.
*-->"G/L account item
      CLEAR ls_bapiacgl09.
      ls_bapiacgl09-itemno_acc = '1'.
      ls_bapiacgl09-gl_account = lf_racct_cr.
      ls_bapiacgl09-item_text  = 'G/L'.
      ls_bapiacgl09-doc_type   = 'SA'.
      ls_bapiacgl09-comp_code  = gs_output1-rbukrs.
      ls_bapiacgl09-pstng_date = lf_date.
      ls_bapiacgl09-costcenter = lf_kostl.
      ls_bapiacgl09-profit_ctr = gs_output1-rprctr.
      ls_bapiacgl09-bus_area   = lf_bus.
      APPEND ls_bapiacgl09.
*-->"G/L account item
      CLEAR ls_bapiacgl09.
      ls_bapiacgl09-itemno_acc = '2'.
      ls_bapiacgl09-gl_account = lf_racct_db.
      ls_bapiacgl09-item_text  = 'G/L'.
      ls_bapiacgl09-doc_type   = 'SA'.
      ls_bapiacgl09-comp_code  = gs_output1-rbukrs.
      ls_bapiacgl09-pstng_date = lf_date.
      ls_bapiacgl09-bus_area   = lf_bus.
      APPEND ls_bapiacgl09.
*-->"G/L account item
      CLEAR ls_bapiacgl09.
      ls_bapiacgl09-itemno_acc = '3'.
      ls_bapiacgl09-gl_account = lf_racct_cr.
      ls_bapiacgl09-item_text  = 'G/L'.
      ls_bapiacgl09-doc_type   = 'SA'.
      ls_bapiacgl09-comp_code  = gs_output1-rbukrs.
      ls_bapiacgl09-pstng_date = lf_date.
      ls_bapiacgl09-costcenter = lf_kostl_off.
      ls_bapiacgl09-profit_ctr = gs_output1-sprctr.
      ls_bapiacgl09-bus_area   = lf_bus_off.
      APPEND ls_bapiacgl09.
*-->"G/L account item
      CLEAR ls_bapiacgl09.
      ls_bapiacgl09-itemno_acc = '4'.
      ls_bapiacgl09-gl_account = lf_racct_db1.
      ls_bapiacgl09-item_text  = 'G/L'.
      ls_bapiacgl09-doc_type   = 'SA'.
      ls_bapiacgl09-comp_code  = gs_output1-rbukrs.
      ls_bapiacgl09-pstng_date = lf_date.
      ls_bapiacgl09-bus_area   = lf_bus_off.
      APPEND ls_bapiacgl09.
*-to change the currency sign
      CLEAR lf_amt.
      lf_amt = gs_output1-hsl.
      CALL FUNCTION 'BKK_GL_SIGN_TO_FI_ACCOUNT'
        EXPORTING
          i_shkzg  = 'H'
        CHANGING
          c_amount = lf_amt.
*-->"Currency Items
      CLEAR ls_bapiaccr09.
      ls_bapiaccr09-itemno_acc = '1'.
      ls_bapiaccr09-amt_doccur = gs_output1-hsl.
      ls_bapiaccr09-currency   = t001-waers.
      APPEND ls_bapiaccr09.
*-->"Currency Items
      CLEAR ls_bapiaccr09.
      ls_bapiaccr09-itemno_acc = '2'.
      ls_bapiaccr09-amt_doccur = lf_amt.
      ls_bapiaccr09-currency   = t001-waers.
      APPEND ls_bapiaccr09.
*-->"Currency Items
      CLEAR ls_bapiaccr09.
      ls_bapiaccr09-itemno_acc = '3'.
      ls_bapiaccr09-amt_doccur = lf_amt.
      ls_bapiaccr09-currency   = t001-waers.
      APPEND ls_bapiaccr09.
*-->"Currency Items
      CLEAR ls_bapiaccr09.
      ls_bapiaccr09-itemno_acc = '4'.
      ls_bapiaccr09-amt_doccur = gs_output1-hsl.
      ls_bapiaccr09-currency   = t001-waers.
      APPEND ls_bapiaccr09.
*-autoposting
      CALL FUNCTION 'BAPI_ACC_GL_POSTING_POST'
        EXPORTING
          documentheader = documentheader
        TABLES
          accountgl      = ls_bapiacgl09
          currencyamount = ls_bapiaccr09
          return         = return
          extension1     = extension1.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
Please advice.
Regards,
S K.

Hi Mohammed,
Please find the code below.
execute FI postings
      documentheader-username    = sy-uname.
      documentheader-obj_type    = 'BKPFF'.
      documentheader-obj_key     = '$1'.
      documentheader-obj_sys     = t000-logsys.
      documentheader-header_txt  = text-h01.
      documentheader-comp_code   = gs_output1-rbukrs.
      documentheader-doc_date    = lf_date.
      documentheader-pstng_date  = lf_date.
      documentheader-trans_date  = lf_date.
      documentheader-doc_type    = 'SA'.
      APPEND documentheader.
*-->"G/L account item
      CLEAR ls_bapiacgl09.
      ls_bapiacgl09-itemno_acc = '0000000001'.
      ls_bapiacgl09-gl_account = lf_racct_cr.
      ls_bapiacgl09-item_text  = 'G/L'.
      ls_bapiacgl09-doc_type   = 'SA'.
      ls_bapiacgl09-comp_code  = gs_output1-rbukrs.
      ls_bapiacgl09-pstng_date = lf_date.
      ls_bapiacgl09-costcenter = lf_kostl.
      ls_bapiacgl09-profit_ctr = gs_output1-rprctr.
      ls_bapiacgl09-bus_area   = lf_bus.
      APPEND ls_bapiacgl09.
*-->"G/L account item
      CLEAR ls_bapiacgl09.
      ls_bapiacgl09-itemno_acc = '0000000002'.
      ls_bapiacgl09-gl_account = lf_racct_db.
      ls_bapiacgl09-item_text  = 'G/L'.
      ls_bapiacgl09-doc_type   = 'SA'.
      ls_bapiacgl09-comp_code  = gs_output1-rbukrs.
      ls_bapiacgl09-pstng_date = lf_date.
      ls_bapiacgl09-bus_area   = lf_bus.
      APPEND ls_bapiacgl09.
*-->"G/L account item
      CLEAR ls_bapiacgl09.
      ls_bapiacgl09-itemno_acc = '0000000003'.
      ls_bapiacgl09-gl_account = lf_racct_cr.
      ls_bapiacgl09-item_text  = 'G/L'.
      ls_bapiacgl09-doc_type   = 'SA'.
      ls_bapiacgl09-comp_code  = gs_output1-rbukrs.
      ls_bapiacgl09-pstng_date = lf_date.
      ls_bapiacgl09-costcenter = lf_kostl_off.
      ls_bapiacgl09-profit_ctr = gs_output1-sprctr.
      ls_bapiacgl09-bus_area   = lf_bus_off.
      APPEND ls_bapiacgl09.
*-->"G/L account item
      CLEAR ls_bapiacgl09.
      ls_bapiacgl09-itemno_acc = '0000000004'.
      ls_bapiacgl09-gl_account = lf_racct_db1.
      ls_bapiacgl09-item_text  = 'G/L'.
      ls_bapiacgl09-doc_type   = 'SA'.
      ls_bapiacgl09-comp_code  = gs_output1-rbukrs.
      ls_bapiacgl09-pstng_date = lf_date.
      ls_bapiacgl09-bus_area   = lf_bus_off.
      APPEND ls_bapiacgl09.
*-to change the currency sign
      CLEAR lf_amt.
      lf_amt = gs_output1-hsl.
      CALL FUNCTION 'BKK_GL_SIGN_TO_FI_ACCOUNT'
        EXPORTING
          i_shkzg  = 'H'
        CHANGING
          c_amount = lf_amt.
*-->"Currency Items
      CLEAR ls_bapiaccr09.
      ls_bapiaccr09-itemno_acc = '0000000001'.
      ls_bapiaccr09-amt_doccur = gs_output1-hsl.
      ls_bapiaccr09-currency   = t001-waers.
      APPEND ls_bapiaccr09.
*-->"Currency Items
      CLEAR ls_bapiaccr09.
      ls_bapiaccr09-itemno_acc = '0000000002'.
      ls_bapiaccr09-amt_doccur = lf_amt.
      ls_bapiaccr09-currency   = t001-waers.
      APPEND ls_bapiaccr09.
*-->"Currency Items
      CLEAR ls_bapiaccr09.
      ls_bapiaccr09-itemno_acc = '0000000003'.
      ls_bapiaccr09-amt_doccur = lf_amt.
      ls_bapiaccr09-currency   = t001-waers.
      APPEND ls_bapiaccr09.
*-->"Currency Items
      CLEAR ls_bapiaccr09.
      ls_bapiaccr09-itemno_acc = '0000000004'.
      ls_bapiaccr09-amt_doccur = gs_output1-hsl.
      ls_bapiaccr09-currency   = t001-waers.
      APPEND ls_bapiaccr09.
autoposting
      CALL FUNCTION 'BAPI_ACC_GL_POSTING_POST'
        EXPORTING
          documentheader = documentheader
        TABLES
          accountgl      = ls_bapiacgl09
          currencyamount = ls_bapiaccr09
          return         = return
          extension1     = extension1.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
Thanks,
S K.
Edited by: Sravan Kumar on Jul 27, 2009 11:17 AM
Edited by: Sravan Kumar on Jul 27, 2009 11:18 AM

Similar Messages

  • Error Every Single Time I Buy a Book: "Empty text field detected in book"

    I have the latest greatest Aperture and it STILL has NO WAY to tab through all text boxes so that I can find the offending "empty" text fields -- I see one other user had this issue in 2007 (without any resolution) and the problem STILL exists to this day.
    I don't know exactly how we do it but I'd sure like to find those empty text fields and skip that warning with every book purchase.
    Don't tell me about the search HUD because that apparently ignores all text boxes.
    Okay, that's it for my rant.

    I have it happen too, and, with you, think that Aperture's software developers surely can let you know, at least, what page that offending "Empty Text Field" is on. The value of it (I'm presuming here) is that they're alerting you to the possibility you may have overlooked or forgotten to put an entry in; that said, if it's empty and you can't see it, it also won't appear in the finished book so it's not really a problem that will result in a badly appearing page.

  • Error when deleting a record:  "FRM-40202 Field must be entered"

    Dear all, please I need your help in this little problem.
    I am using Forms 10g , and I am having an issue when deleting a record at runtime. It is giving "FRM-40202 Field must be entered".
    I have reviewed the code but still cannot guess what could be the reason.
    Any idea please. Thanks
    Edited by: user562674 on 02/05/2011 12:35 ص

    Hi
    This error is caused due to the NOT NULL constraint u have in ur db for that item...
    u have 2 options to use ...
    1.Either u set the Required property of that item to > no
    2.Or u give it an intial value...
    To get ride of this error message...
    Hope this helps...
    Regards,
    Ammatu Allah.

  • Getting Error in java mapping: Parsing empty source. Root element expected!

    Hi Experts,
       I am using java mapping for schema validation of input message. I have followed all the standard procedures and implemented the java class in the interface mapping.
    My interface mapping is like this:
    OrderData --->Java Class ---SchemaValidate
                         Mesg Map ---OrderData_to_BAP --->BAPI Msg
    So first I want to validate the schema of the input message. If the input message is invalid then XI should throw an exception. Then I use the actual message mapping to map the input order data to the BAPI input parameters.
    In the java code I am using xerces parser.
    The java code works fine when I run it as a standalone application.
    The interface mapping also works fine if I don't include the java mapping. Ofcourse schema validation does not happen.
    But when I test the interface mapping by including the java mapping then I am getting the error:
    Call method execute of the application Java mapping SchemaValidate
    Java mapping SchemaValidate completed. (execute() of SchemaValidate
    com.sap.aii.utilxi.misc.api.BaseRuntimeException: Parsing an empty source. Root element expected!
    What am I doing wrong? Why it is not getting the root element?
    My Java code is as follows:
    import com.sap.aii.mapping.api.StreamTransformation;
    import com.sap.aii.mapping.api.StreamTransformationConstants;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import java.io.*;
    import java.util.Map;
    import javax.xml.parsers.*;
    import org.xml.sax.helpers.*;
    import org.xml.sax.*;
    import org.apache.xerces.jaxp.*;
    Sample mapper for SAP-XI
    @author Gopal
    public class SchemaValidate implements StreamTransformation {
        //Constants when using XML Schema for SAX parsing.
         static final String JAXP_SCHEMA_LANGUAGE =
         "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
         static final String W3C_XML_SCHEMA =
         "http://www.w3.org/2001/XMLSchema";
         static final String JAXP_SCHEMA_SOURCE =
         "http://java.sun.com/xml/jaxp/properties/schemaSource";
    Injection of mapping parameters
    from integration engine
    @param map Map with configuration data
        public void setParameter(Map map) {
    Mapping implementation
    @param inputStream Input data from integration engine
    @param outputStream Output data to integration engine
        public void execute(InputStream inputStream,
                            OutputStream outputStream)
          throws StreamTransformationException {
            try {
                  // obtain an object of class javax.xml.parsers.SAXParser,
                  SAXParserFactory spf = SAXParserFactoryImpl.newInstance();
                  spf.setNamespaceAware(true);
                  spf.setValidating(true);
                  SAXParser sp = spf.newSAXParser();
                  // setup the schema file
                  sp.setProperty(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA);
                  sp.setProperty(JAXP_SCHEMA_SOURCE, new File("IOReqMsgSchema.xsd"));
                  //parse the input xml using the given schema
                  sp.parse(inputStream, new ParseErrorHandler());
            catch(SAXException se) {
              se.printStackTrace();
            catch ( Exception e ) {
              throw new StreamTransformationException( e.getMessage() );
    My input message is :
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:OrderCreate_request xmlns:ns0="mynamespace">
       <ORDER>HTEST1234567</ORDER>
       <ORDER_TYPE>z001</ORDER_TYPE>
       <ORDER_NAME>Test Order</ORDER_NAME>
       <CO_AREA>INTC</CO_AREA>
       <CCTR_POSTED>1234567890888888888</CCTR_POSTED>
       <CURRENCY>USD</CURRENCY>
       <PERSON_RESP>12345679</PERSON_RESP>
    </ns0:OrderCreate_request>
    Kindly help! please this is urgent!!!!!!
    Thanks
    Gopal
    Edited by: gopalkrishna baliga on Feb 28, 2008 9:34 AM

    Hi Stefan,
       I did the code changes to return output stream and the java code works perfectly in standalone mode in my PC.
       But when I use the same in the Java mapping with XI then It throws an error "Getting Error in java mapping: Parsing empty source. Root element expected!".
    My XI J2EE server has JDK1.4.3.11.
    Is there any limitation of using SAX parser in XI? If Yes, then which parser should be used for schema validation in XI?
    I have included the XSD file for schema validation along with class files in the .jar file. This jar file is then imported in XI repository. Is the XI engine not able to read the XSD file?
    Do I have to handle reading XSD file differently? Any suggession how?
    Is this parser error due to some security access?
    Kindly help me! I have been struggling with this problem since 2 weeks. I will be greatfull to you if you can help me.
    Thanks
    Gopal

  • How to handle empty Dats field received from SAP RFC response

    Hi All,
    I am invoking a SAP RFC which gives me a Dats field in response.
    A valid dats fields is successfully received by my pipelines.
    But when an empty Dats field is received, My pipeline fails and i get error.
    How to handle the empty Dats field from SAP

    Hi Anant,
    This is because the legacy SAP adapter accepted RFC messages with date field empty. In the new version, the same call results in an error. WCF-SAP adapter doesn't allow blank XML nodes.
    You need to use the below custom pipeline component as a workaround.
    Refer:
    Pipeline component for enabling legacy behavior in WCF-SAP adapter.
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Error:widget: CFGRID: Response is empty

    I've an error on the Coldfusion Ajax logger : "error:widget:
    CFGRID: Response is empty". The headings of the cfgrid appear but
    the contents not.
    Here the Coldfusion Ajax logger answer :
    - info:widget: Data loaded for grid, id: refTableau
    - error:widget: CFGRID: Response is empty
    - info:http: CFC invocation response:
    - info:widget: Creating window: cf_window1191833821003
    - info:widget: Created grid, id: refTableau
    - info:http: HTTP GET
    /bulte/admin/produits/gridDataManager.cfc?method=getData&returnFormat=json&argumentCollec tion=%7B%22page%22%3A1%2C%22pageSize%22%3A5%2C%22gridsortcolumn%22%3A%22%22%2C%22gridsortd irection%22%3A%22%22%2C%22idTableau%22%3A%22772%22%7D&_cf_nodebug=true&_cf_nocache=true&_c f_clientid=59BF758DB52E56355D649B34E232903B&_cf_rc=0
    - info:http: Invoking CFC:
    /bulte/admin/produits/gridDataManager.cfc , function: getData ,
    arguments:
    {"page":1,"pageSize":5,"gridsortcolumn":"","gridsortdirection":"","idTableau":"772"}
    - info:LogReader: LogReader initialized
    - info:global: Logger initialized
    Here my cfm page code:
    <cfparam name="URL.id" default="">
    <cfquery name="qRec" datasource="#APPLICATION.db#">
    SELECT *
    FROM Produits
    WHERE id=<cfqueryparam cfsqltype="cf_sql_integer"
    value="#URL.id#">
    </cfquery>
    <cfset FORM.refTableau=qRec.refTableau>
    <cfset MyXmlCode=FORM.refTableau>
    <cfset mydoc = XmlParse(MyXmlCode)>
    <cfset nbcolumns =
    ArrayLen(mydoc.table.tr.XmlChildren)>
    <cfset numLines = ArrayLen(mydoc.table.XmlChildren)>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <title>fdgdfgdfgdfg</title>
    <link rel="stylesheet" href="../admin.css" />
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    </head>
    <cfwindow width="900" height="600" center="true"
    resizable="false" draggable="true" initshow="true"
    closable="false">
    <cfform name="editForm" action="ifr_refTableau.cfm"
    method="post" format="html">
    <cfgrid format="html"
    name="refTableau"
    pagesize="5"
    sort="yes"
    selectmode="edit"
    delete="yes"
    bind="cfc:gridDataManager.getData({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgri dsortdirection},'#URL.id#')"
    onchange="cfc:gridDataManager.editData({cfgridaction},
    {cfgridrow}, {cfgridchanged})">
    <cfloop from="1" to="#nbcolumns#" index="k">
    <cfgridcolumn name="Col_#k#" header="#k#" display="yes"
    />
    </cfloop>
    </cfgrid>
    </cfform>
    </cfwindow>
    </body>
    </html>
    My cfc code :
    <cfcomponent>
    <cfset THIS.dsn="clients">
    <cffunction name="getData" access="remote"
    output="false">
    <cfargument name="page" required="yes">
    <cfargument name="pageSize" required="yes">
    <cfargument name="gridsortcolumn" required="no">
    <cfargument name="gridsortdirection" required="no">
    <cfargument name="idTableau" required="yes">
    <cfquery name="qRec" datasource="#THIS.dsn#">
    SELECT refTableau
    FROM Produits
    WHERE id=<cfqueryparam cfsqltype="cf_sql_integer"
    value="#ARGUMENT.idTableau#">
    </cfquery>
    <!--- Convert file to XML document object --->
    <cfset MyXmlCode=qRec.refTableau>
    <cfset mydoc = XmlParse(MyXmlCode)>
    <cfset numItems =
    ArrayLen(mydoc.table.tr.XmlChildren)>
    <cfset numLines = ArrayLen(mydoc.table.XmlChildren)>
    <!--- Process the order into a query object --->
    <cfset listHeader="">
    <cfloop from="1" to="#numItems#" index="i">
    <cfset listHeader=ListAppend(listHeader, "Col_#i#")>
    </cfloop>
    <cfset queryDatas = QueryNew(listHeader)>
    <cfset temp = QueryAddRow(queryDatas, numLines)>
    <cfloop index="i" from="1" to ="#numLines#">
    <cfloop from="1" to="#numItems#" index="j">
    <cfset temp = QuerySetCell(queryDatas,
    ListGetAt(listHeader, j), mydoc.table.tr
    .td[j].XmlText, i)>
    </cfloop>
    </cfloop>
    <cfquery name="qReturn" dbtype="query">
    SELECT *
    FROM queryDatas
    <cfif ARGUMENTS.gridsortcolumn neq "" or
    ARGUMENTS.gridsortdirection neq "">
    ORDER BY #ARGUMENTS.gridsortcolumn#
    #ARGUMENTS.gridsortdirection#
    </cfif>
    </cfquery>
    <cfreturn QueryConvertForGrid(qReturn, ARGUMENTS.page,
    ARGUMENTS.pageSize)>
    </cffunction>
    <cffunction name="editData" access="remote"
    output="false">
    <cfargument name="gridaction">
    <cfargument name="gridrow">
    <cfargument name="gridchanged">
    </cffunction>
    </cfcomponent>
    <body>
    I don't understand why the return is empty.

    I have the same problem. When the function is removed, the
    query return many line of data, but when the queryconverforgrid is
    added, the grid has the same number of line but all fields are
    empty. Can someone please help???

  • How do I fix this error, Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Modal session requires modal window'?

         I have been trying to start up my Batman: Arkham City game recently and it says that it cannot open and gives me this error;
                   "Terminating app due to uncaught exception 'NSInternalInconsistancyException', reason: 'Model session requires model window'"
         I have played the game for about 13 hours before this error started to pop up and I was wondering if anyone knew of a way to fix it.  Any information would be greatly appreaciated.

    Yesterday I had the same problem.
    I installed the game and played for five hours with no problem but in the last execution my iMac show me that error. I tried to uninstall and install the game again but always show me the error. I did the same with the Steam client with no solution.
    Finally I fixed the error deleting a folder.
    Go to Macintosh HD/Users/[username]/Library/Caches/com.feralinteractive.bmac
    and delete the folder named "com.plausiblelabs.crashreporter.data"
    Try to launch the game again.
    Good luck.

  • How do I fix the error: Terminating app due to uncaught exception 'NSInvalidArgumentException'

    Help!
    I have a 3rd party application that used to work perfectly until this morning. The problem is not do to an update of that program nor of updating the Mac OS. This came out of the blue. When I try to open the application, it won't open and I get the error: Terminating app due to uncaught exception 'NSInvalidArgumentException'
    I looked around the forum and read it might be because of a bad font? But I don't find detailed instructions on how to delete or fix the corrupted font.
    I have tried deleting the application, then downloading a new copy and installing that - same problem.
    Please don't respond with I should go call the programmer of the 3rd party application. If you know where the problem is in my MacBook Air, please help me fix it.
    I have a MacBook Air running OSX version 10.6.8
    Thanks for your help

    Here's the full error report in case anyone who reads this has the same problem and figured out an answer:
    Process:    
    MacSecret [332]
    Path:       
    /Applications/MacSecret.app/Contents/MacOS/MacSecret
    Identifier: 
    de.tv-apathy.macsecretie
    Version:    
    1.2.1 (1.2.1)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [217]
    Date/Time:  
    2012-09-18 11:56:03.870 +0300
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    327588 sec
    Crashes Since Last Report:      
    82
    Per-App Interval Since Last Report:  1598253 sec
    Per-App Crashes Since Last Report:   83
    Anonymous UUID:                 
    2A3539ED-99F7-419E-8635-7FB629526BC3
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSKeyedUnarchiver initForReadingWithData:]: incomprehensible archive (0x62, 0x70, 0x6c, 0x69, 0x73, 0x74, 0x30, 0x30)'
    *** Call stack at first throw:
    0   CoreFoundation                 
    0x9a0396ca __raiseError + 410
    1   libobjc.A.dylib                
    0x911895a9 objc_exception_throw + 56
    2   CoreFoundation                 
    0x9a0393f8 +[NSException raise:format:arguments:] + 136
    3   CoreFoundation                 
    0x9a03936a +[NSException raise:format:] + 58
    4   Foundation                     
    0x917bdf31 -[NSKeyedUnarchiver initForReadingWithData:] + 3722
    5   Foundation                     
    0x91806bae +[NSKeyedUnarchiver unarchiveObjectWithFile:] + 151
    6   MacSecret                      
    0x00013380 -[MainController(Private) _getDBName:EntryCount:activeState:fromDB:] + 46
    7   MacSecret                      
    0x0000e074 -[MainController databases] + 461
    8   Foundation                     
    0x917cd850 -[NSObject(NSKeyValueCoding) valueForKey:] + 413
    9   Foundation                     
    0x917d117c -[NSObject(NSKeyValueCoding) valueForKeyPath:] + 204
    10  AppKit                         
    0x996636d6 -[NSBinder _valueForKeyPath:ofObject:mode:raisesForNotApplicableKeys:] + 841
    11  AppKit                         
    0x99663301 -[NSBinder valueForBinding:resolveMarkersToPlaceholders:] + 188
    12  AppKit                         
    0x99821b2a -[NSArrayDetailBinder _refreshDetailContentInBackground:] + 430
    13  AppKit                         
    0x996624b9 -[NSBinder _performConnectionEstablishedRefresh] + 85
    14  AppKit                         
    0x99654bc4 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 721
    15  AppKit                         
    0x99700bdf -[NSNibBindingConnector establishConnection] + 156
    16  AppKit                         
    0x9963008f -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1249
    17  AppKit                         
    0x9962e1a4 loadNib + 257
    18  AppKit                         
    0x9962d59c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 228
    19  AppKit                         
    0x9962d4ad +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    20  AppKit                         
    0x9962d3f8 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
    21  AppKit                         
    0x9962a1fd NSApplicationMain + 434
    22  MacSecret                      
    0x000020a5 start + 53
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation 
    0x9a084a37 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib          
    0x911895a9 objc_exception_throw + 56
    2   com.apple.CoreFoundation 
    0x9a0393f8 +[NSException raise:format:arguments:] + 136
    3   com.apple.CoreFoundation 
    0x9a03936a +[NSException raise:format:] + 58
    4   com.apple.Foundation     
    0x917bdf31 -[NSKeyedUnarchiver initForReadingWithData:] + 3722
    5   com.apple.Foundation     
    0x91806bae +[NSKeyedUnarchiver unarchiveObjectWithFile:] + 151
    6   de.tv-apathy.macsecretie 
    0x00013380 -[MainController(Private) _getDBName:EntryCount:activeState:fromDB:] + 46
    7   de.tv-apathy.macsecretie 
    0x0000e074 -[MainController databases] + 461
    8   com.apple.Foundation     
    0x917cd850 -[NSObject(NSKeyValueCoding) valueForKey:] + 413
    9   com.apple.Foundation     
    0x917d117c -[NSObject(NSKeyValueCoding) valueForKeyPath:] + 204
    10  com.apple.AppKit         
    0x996636d6 -[NSBinder _valueForKeyPath:ofObject:mode:raisesForNotApplicableKeys:] + 841
    11  com.apple.AppKit         
    0x99663301 -[NSBinder valueForBinding:resolveMarkersToPlaceholders:] + 188
    12  com.apple.AppKit         
    0x99821b2a -[NSArrayDetailBinder _refreshDetailContentInBackground:] + 430
    13  com.apple.AppKit         
    0x996624b9 -[NSBinder _performConnectionEstablishedRefresh] + 85
    14  com.apple.AppKit         
    0x99654bc4 -[NSObject(NSKeyValueBindingCreation) bind:toObject:withKeyPath:options:] + 721
    15  com.apple.AppKit         
    0x99700bdf -[NSNibBindingConnector establishConnection] + 156
    16  com.apple.AppKit         
    0x9963008f -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1249
    17  com.apple.AppKit         
    0x9962e1a4 loadNib + 257
    18  com.apple.AppKit         
    0x9962d59c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 228
    19  com.apple.AppKit         
    0x9962d4ad +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 158
    20  com.apple.AppKit         
    0x9962d3f8 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 383
    21  com.apple.AppKit         
    0x9962a1fd NSApplicationMain + 434
    22  de.tv-apathy.macsecretie 
    0x000020a5 start + 53
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x9003c382 kevent + 10
    1   libSystem.B.dylib        
    0x9003ca9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib        
    0x9003bf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib        
    0x9003bcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib        
    0x9003b781 _pthread_wqthread + 390
    5   libSystem.B.dylib        
    0x9003b5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib        
    0x9003b412 __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x9003b9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib        
    0x9003b5c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x91189585  ecx: 0xa0014540  edx: 0x0000003b
      edi: 0xa00f3ab0  esi: 0x00184720  ebp: 0xbffff238  esp: 0xbffff220
       ss: 0x0000001f  efl: 0x00000282  eip: 0x9a084a37   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x000ec000
    Binary Images:
    0x1000 -
    0x34fff +de.tv-apathy.macsecretie 1.2.1 (1.2.1) <BD63BA22-34C9-3C03-8609-AC3C6B45E10E> /Applications/MacSecret.app/Contents/MacOS/MacSecret
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90008000 - 0x90008ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90015000 - 0x901bcff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x901fe000 - 0x902bafff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9032b000 - 0x90368ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90369000 - 0x90411ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90561000 - 0x90561ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90562000 - 0x90576ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <644540B0-8335-6254-054B-9828E40CBC93> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90577000 - 0x905caff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90707000 - 0x9070aff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90855000 - 0x90855ff7  com.apple.Cocoa 6.6 (???) <27B791CF-F704-6AEF-A354-65416A7032A3> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90a2b000 - 0x90a7afe7  libTIFF.dylib ??? (???) <D0EB31DC-40E6-9A97-64D3-9867605DC3DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90a94000 - 0x90aa6ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90aa7000 - 0x90b27feb  com.apple.SearchKit 1.3.0 (1.3.0) <507768AB-240E-D4C3-333F-C4F715DDC8DE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90be7000 - 0x90ffdff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9100e000 - 0x9102cfe7  libPng.dylib ??? (???) <45185287-25AD-C239-AA58-8FA53DF55B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91066000 - 0x91103fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91143000 - 0x9117effb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9117f000 - 0x9122cfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x91269000 - 0x91322fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x91323000 - 0x9132cff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <63DF2017-C618-8EBD-9377-BD536C5E5BE1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9132d000 - 0x9146afe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91687000 - 0x9173ffeb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x91743000 - 0x917acfe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <190291DA-68A6-4AEA-39CC-D51FD4A721BF> /usr/lib/libstdc++.6.dylib
    0x917ad000 - 0x91a1efef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91a63000 - 0x91ab0feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91ab1000 - 0x91ab5ff7  libGIF.dylib ??? (???) <5D29E5F4-30B9-5A24-55E7-BCBA30499093> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ad4000 - 0x91af0fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91af3000 - 0x91b19ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91fd6000 - 0x922f6ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x922f7000 - 0x92371fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x92372000 - 0x92380ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92381000 - 0x92387fff  com.apple.CommonPanels 1.2.4 (91) <79B07686-EAE6-3E23-75EE-F29D08C5EF51> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92391000 - 0x923a2ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x923e5000 - 0x923e5ff7  com.apple.ApplicationServices 38 (38) <E6D15675-952B-8BC9-85D1-12D83A052CB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x92427000 - 0x9246aff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x933ef000 - 0x933f3ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x933fc000 - 0x9347effb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93620000 - 0x93648ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x93649000 - 0x938afff7  com.apple.security 6.1.2 (55002) <E999CCEF-B769-4355-3E68-6003FCF6FE2B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x938b0000 - 0x9395eff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9395f000 - 0x9396fff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <CDD943B2-72DD-A926-616D-30D4A2C04D9A> /usr/lib/libsasl2.2.dylib
    0x93970000 - 0x93a3bfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93a3c000 - 0x93a48ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x93a7e000 - 0x93ab8ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x93c1c000 - 0x93ddffeb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <87750C2B-193F-56A6-AB97-0842A2D02092> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93e1e000 - 0x93e28ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93f25000 - 0x93f94ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94010000 - 0x94028ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94029000 - 0x94818557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94819000 - 0x94827fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x94828000 - 0x94829ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9577e000 - 0x9579dff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9579e000 - 0x9587efe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9587f000 - 0x95d91feb  com.apple.RawCamera.bundle 3.14.0 (646) <27962422-EA30-43CF-2B3E-E662BB4C46C7> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95d92000 - 0x95d92ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95d93000 - 0x961c8ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9622a000 - 0x9624afe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9624b000 - 0x9624bff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96282000 - 0x962b5fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9650c000 - 0x96510ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96562000 - 0x965fafe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x965fb000 - 0x96606ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96849000 - 0x9684cff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9684d000 - 0x9686efe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9686f000 - 0x96872ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96924000 - 0x96924ff7  liblangid.dylib ??? (???) <6874F829-12F5-DD31-F1A6-A5FC042F77C1> /usr/lib/liblangid.dylib
    0x96925000 - 0x9696bff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x9696c000 - 0x9696dff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x969b6000 - 0x96cdafef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96d1c000 - 0x96d79ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e30000 - 0x96f32fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x97039000 - 0x9707dfe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x970cc000 - 0x971ccfe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x971cd000 - 0x971effef  com.apple.DirectoryService.Framework 3.6 (621.14) <A24C9308-4EB3-456D-1691-43DDB6F9A79F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97291000 - 0x972e1ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x974bf000 - 0x97523fff  com.apple.htmlrendering 72 (1.1.4) <F8B66675-31DA-BBB9-E9E3-A6E3B9F3CE9C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x975af000 - 0x975b4ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x975df000 - 0x975dfff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x975e0000 - 0x9768cfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9779a000 - 0x977a1ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x977a2000 - 0x9783dfe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9783e000 - 0x978d0fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9791a000 - 0x97927ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97928000 - 0x97a56fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97a57000 - 0x97a9bff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x97ca4000 - 0x97db0fe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97db1000 - 0x97db3ff7  libRadiance.dylib ??? (???) <98EC06D5-1A02-EDEF-BF9D-2C986761AD54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9879d000 - 0x987a3fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x98837000 - 0x98841fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <66D6E63D-4D57-AD5C-DFF7-C222F22FC836> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98842000 - 0x989c4fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x994fb000 - 0x99506ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9957f000 - 0x995e0fe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x99603000 - 0x99627ff7  libJPEG.dylib ??? (???) <5F2343E4-C268-B9AE-1BC3-466F5A614648> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x99628000 - 0x99f0bff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x99f65000 - 0x9a0e0fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9a0e1000 - 0x9a114ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9a115000 - 0x9a117ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9a118000 - 0x9a11bfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9a11c000 - 0x9a15fff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9a19b000 - 0x9a1affe7  libbsm.0.dylib ??? (???) <3CDD5E51-2940-D03C-D62D-ABD8BA0FB255> /usr/lib/libbsm.0.dylib
    0x9a1bd000 - 0x9a1eeff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9a1ef000 - 0x9a2c9fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9a2ca000 - 0x9a30cff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9a30d000 - 0x9a322fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9a552000 - 0x9a8bdff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookAir3,2, BootROM MBA31.0061.B01, 2 processors, Intel Core 2 Duo, 1.86 GHz, 2 GB, SMC 1.66f55
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD1), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en0
    Serial ATA Device: APPLE SSD TS256C, 233.76 GB
    USB Device: FaceTime Camera (Built-in), 0x05ac  (Apple Inc.), 0x850a, 0x24600000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x04500000 / 3
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821b, 0x04530000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x023f, 0x04300000 / 2

  • How to give error message for the screen element text field when wrong i/p

    How to give error message for the screen element text field when wrong i/p
    when wrong input given
    eg. 
    I have a text box with SBOOK-CARRID
    so when user give wrong entry in text box i.e LG
    then I should give some error stating that the the input is invalid or not available ,
    now it showing the error of standard messages,
    i want manual message to be displayed when error comes.
    Thank you,
    Regards,
    Jagrut Bharatkumar Shukla

    Hi all,
    Thank you for your valuable reply,
    but the thing is that its a screen field,
    i.e text box not a selection screen
    i created in screen layout
    with name sbook-carrid
    now i want to get error message display if wrong i/p is given
    thank you.
    Regards,
    Jagrut bharatkumar Shukla,

  • Error while running due to tabletype

    Hi All,
    I am getting error while runnning procedure but it compiled successfully.
    ORA-00932: inconsistent datatypes: expected - got -
    I have created a Object Type and by referring that tobject type, i have created a table type. then i have created a variable of that table type.
    But when i am using that vairiable in Cursor's fetch statement, it throws the above error at runtime.
    The code is something like this:
    create or replace procedure PROC_SP_MASTER_UPLOAD(p_Return Out Number) is
    -- Creating Table Type
    -- ot_sp_master is Object Type
    Type tt_ot_sp_master is Table of ot_sp_master;
    --creating Cursor
    TYPE c_ref_cursor IS REF CURSOR;
    --Declaring Variables
    old_cursor_sp c_ref_cursor;
    v_tt_ot_sp_master tt_ot_sp_master := tt_ot_sp_master();
    v_sql_existing_instrument varchar(1000):= ' SELECT T_INSTRUMENT_ID,T_INSTRUMENT_ANALYSIS_GROUP,T_ASSET_LIABILITY_ID,T_REGION_ID,T_INSTRUMENT_STATUS,
    T_INSTRUMENT_WEB,T_APPROVED_INVESTMENT FROM T_MASTER_SP WHERE T_INSTRUMENT_ID IS NOT NULL ';
    Begin
    Open old_cursor_sp for v_sql_existing_instrument;
    Loop
    Fetch old_cursor_sp Bulk collect into v_tt_ot_sp_master LIMIT 5000; // throws error at this line
    ForAll i in v_tt_ot_sp_master.first..v_tt_ot_sp_master.last
    Update MST_INSTRUMENT mst set
    mst.region_id =TREAT(v_tt_ot_sp_master(i) as ot_sp_master).region_id,
    mst.issuer_country =TREAT(v_tt_ot_sp_master(i) as ot_sp_master).issuer_country,
    mst.asset_liab_id =TREAT(v_tt_ot_sp_master(i) as ot_sp_master).asset_liability_id,
    mst.instrument_web =TREAT(v_tt_ot_sp_master(i) as ot_sp_master).instrument_web,
    mst.instrument_analysis_group =TREAT(v_tt_ot_sp_master(i) as ot_sp_master).instrument_analysis_group,
    mst.approved_inv =TREAT(v_tt_ot_sp_master(i) as ot_sp_master).approved_investment
    Where mst.instrument_id=TREAT(v_tt_ot_sp_master(i) as ot_sp_master).instrumentid;
    Exit When old_cursor_sp%NOTFOUND;
    End Loop;
    End PROC_SP_MASTER_UPLOAD;
    I don't know why it is throwing this error, may be due to object type......
    Thanks

    may be try this, make sure the mappining in update set column is correct
    CREATE OR REPLACE PROCEDURE PROC_SP_MASTER_UPLOAD (
      p_Return          OUT NUMBER)
    IS
      CURSOR cur
      IS
        SELECT T_INSTRUMENT_ID,
               T_INSTRUMENT_ANALYSIS_GROUP,
               T_ASSET_LIABILITY_ID,
               T_REGION_ID,
               T_INSTRUMENT_STATUS,
               T_INSTRUMENT_WEB,
               T_APPROVED_INVESTMENT
          FROM T_MASTER_SP
         WHERE T_INSTRUMENT_ID IS NOT NULL;
      TYPE tt_ot_sp_master IS TABLE OF cur%ROWTYPE;
      v_tt_ot_sp_master tt_ot_sp_master;
    BEGIN
      OPEN cur;
      LOOP
        FETCH cur
        BULK COLLECT INTO v_tt_ot_sp_master LIMIT 5000;                                                                   
        FORALL i IN v_tt_ot_sp_master.FIRST .. v_tt_ot_sp_master.LAST
          UPDATE MST_INSTRUMENT mst
             SET mst.region_id = v_tt_ot_sp_master (i).T_REGION_ID,
                 mst.issuer_country = v_tt_ot_sp_master (i).T_issuer_country,
                 mst.asset_liab_id = v_tt_ot_sp_master (i).T_ASSET_LIABILITY_ID,
                 mst.instrument_web = v_tt_ot_sp_master (i).T_INSTRUMENT_WEB,
                 mst.instrument_analysis_group = v_tt_ot_sp_master (i).T_INSTRUMENT_ANALYSIS_GROUP,
                 mst.approved_inv = v_tt_ot_sp_master (i).T_APPROVED_INVESTMENT
           WHERE mst.instrument_id = v_tt_ot_sp_master (i).T_INSTRUMENT_ID;
        EXIT WHEN old_cursor_sp%NOTFOUND;
      END LOOP;
    commit;
    END PROC_SP_MASTER_UPLOAD;added commit which was missing in original post
    Message was edited by:
    devmiral

  • Getting Error when adding a Message Input Text field

    Hi
    Can someone help with this please. I'm not developing and not a OAF guy, but, an offshore team is and they are getting this error after they added Message Input Text field to the iProcurement Receiving page to capture additional information.
    What does this error mean?
    oracle.apps.fnd.framework.OAException: No data found for region (/oracle/apps/icx/por/rcv/webui/XXPAIcxPorRcvSrchPG.Tag_input).
    at oracle.apps.fnd.framework.webui.JRADWebBeanMetaData.getDefaultValue(JRADWebBeanMetaData.java:480)
    at oracle.apps.fnd.framework.webui.OAWebBeanTextInputHelper.setMetaDataProperties(OAWebBeanTextInputHelper.java:92)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.setMetaDataProperties(OAMessageTextInputHelper.java:89)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.createWebBean(OAMessageTextInputHelper.java:61)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1263)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.addAkChildren(OAWebBeanTableHelper.java:182)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OATableHelper.setMetaDataProperties(OATableHelper.java:282)
    at oracle.apps.fnd.framework.webui.OATableHelper.createWebBean(OATableHelper.java:202)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.addAkChildren(OAQueryHelper.java:470)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.setMetaDataProperties(OAQueryHelper.java:344)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.createWebBean(OAQueryHelper.java:242)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.addAkChildren(OAPageLayoutHelper.java:703)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.setMetaDataProperties(OAPageLayoutHelper.java:257)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.createWebBean(OAPageLayoutHelper.java:208)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1415)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:1300)
    at oracle.apps.fnd.framework.webui.OAPageBean.createRootWebBean(OAPageBean.java:4374)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2131)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1710)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
    at oa_html._OA._jspService(_OA.java:88)
    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._OA._jspService(_OA.java:98)
    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._OA._jspService(_OA.java:98)
    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 ##
    Exception:
    oracle.adf.mds.MetadataDefException: Unable to find component with absolute reference = /oracle/apps/icx/por/rcv/webui/XXPAIcxPorRcvSrchPG.Tag_input, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
    at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1374)
    at oracle.adf.mds.MElement.findElement(MElement.java:97)
    at oracle.apps.fnd.framework.webui.JRADWebBeanMetaData.getDefaultValue(JRADWebBeanMetaData.java:477)
    at oracle.apps.fnd.framework.webui.OAWebBeanTextInputHelper.setMetaDataProperties(OAWebBeanTextInputHelper.java:92)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.setMetaDataProperties(OAMessageTextInputHelper.java:89)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.createWebBean(OAMessageTextInputHelper.java:61)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1263)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.addAkChildren(OAWebBeanTableHelper.java:182)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OATableHelper.setMetaDataProperties(OATableHelper.java:282)
    at oracle.apps.fnd.framework.webui.OATableHelper.createWebBean(OATableHelper.java:202)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.addAkChildren(OAQueryHelper.java:470)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.setMetaDataProperties(OAQueryHelper.java:344)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.createWebBean(OAQueryHelper.java:242)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.addAkChildren(OAPageLayoutHelper.java:703)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.setMetaDataProperties(OAPageLayoutHelper.java:257)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.createWebBean(OAPageLayoutHelper.java:208)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1415)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:1300)
    at oracle.apps.fnd.framework.webui.OAPageBean.createRootWebBean(OAPageBean.java:4374)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2131)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1710)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
    at oa_html._OA._jspService(_OA.java:88)
    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._OA._jspService(_OA.java:98)
    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._OA._jspService(_OA.java:98)
    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)
    Exception:
    oracle.adf.mds.MetadataDefException: Unable to find component with absolute reference = /oracle/apps/icx/por/rcv/webui/XXPAIcxPorRcvSrchPG.Tag_input, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
    at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1374)
    at oracle.adf.mds.MElement.findElement(MElement.java:97)
    at oracle.apps.fnd.framework.webui.JRADWebBeanMetaData.getDefaultValue(JRADWebBeanMetaData.java:477)
    at oracle.apps.fnd.framework.webui.OAWebBeanTextInputHelper.setMetaDataProperties(OAWebBeanTextInputHelper.java:92)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.setMetaDataProperties(OAMessageTextInputHelper.java:89)
    at oracle.apps.fnd.framework.webui.OAMessageTextInputHelper.createWebBean(OAMessageTextInputHelper.java:61)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1263)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAWebBeanTableHelper.addAkChildren(OAWebBeanTableHelper.java:182)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OATableHelper.setMetaDataProperties(OATableHelper.java:282)
    at oracle.apps.fnd.framework.webui.OATableHelper.createWebBean(OATableHelper.java:202)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.addAkChildren(OAQueryHelper.java:470)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.setMetaDataProperties(OAQueryHelper.java:344)
    at oracle.apps.fnd.framework.webui.OAQueryHelper.createWebBean(OAQueryHelper.java:242)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1149)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:740)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:720)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.addAkChildren(OAPageLayoutHelper.java:703)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:200)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.setMetaDataProperties(OAWebBeanContainerHelper.java:126)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.setMetaDataProperties(OAPageLayoutHelper.java:257)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.createWebBean(OAPageLayoutHelper.java:208)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanUsingHelper(OAWebBeanFactoryImpl.java:1483)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBeanFromCustomTables(OAWebBeanFactoryImpl.java:1415)
    at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.createWebBean(OAWebBeanFactoryImpl.java:1300)
    at oracle.apps.fnd.framework.webui.OAPageBean.createRootWebBean(OAPageBean.java:4374)
    at oracle.apps.fnd.framework.webui.OAPageBean.processRequest(OAPageBean.java:2131)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1710)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:501)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:422)
    at oa_html._OA._jspService(_OA.java:88)
    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._OA._jspService(_OA.java:98)
    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._OA._jspService(_OA.java:98)
    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)
    Thank you!

    You need to provide more details with respect to what you are doing step by steps.
    --Shiv                                                                                                                                                                                       

  • ERROR: No connect due to DbSl Load Lib Failure

    Hi Everyone,
    I am working on EHP 7 upgrade and currently at Extraction phase of SUM tool. There are numerous issues i have faced and resolved one by one. now i got stuck in this error
          Severe error(s) occurred in phase PREP_INPUT/CONFCHK_IMP!
          Last error code set: Calling 'D:\usr\sap\<SID>\DVEBMGS01\exe/tp' failed
          with return code 249, check D:\usr\sap\<SID>\SUM\abap\log\TOOLOUT.LOG for
          details
    Toolout:
    iles\Microsoft SQL Server\110\Tools\Binn\;D:\usr\sap\<SID>\SYS\exe\uc\NTAMD64
        ENV: SAPSYSTEMNAME=<SID>
        ENV: dbs_mss_schema=<sid>
        ENV: rsdb_ssfs_connect=0
    EXECUTING D:\usr\sap\RES\DVEBMGS01\exe\tp.EXE "pf=D:\usr\sap\<SID>\SUM\abap\var\DEFAULT.TPP" getdbinfo SID
    TRACE-INFO: 1:  [     dev trc,00000]  Mon Aug 11 20:14:06 2014                                                       104676  0.104676
    TRACE-INFO: 2:  [     dev trc,00000]  DlLoadLib success: LoadLibrary("dbmssslib.dll"), hdl 0, count 1, addr 00007FFABDAD0000
    TRACE-INFO: 3:                                                                                                            7  0.104683
    TRACE-INFO: 4:  [     dev trc,00000]      using "D:\usr\sap\<sid>\DVEBMGS01\exe\dbmssslib.dll"                              7  0.104690
    ERROR: No connect due to DbSl Load Lib Failure
    ERROR: Possible reasons are:
    ERROR:  - The value set for dbms_type ('mss') is invalid.
    ERROR:  - Cannot find the DLL dbmssslib.dll in path
    ERROR:  - problems when loading DB-dependent DLLs
    ERROR: Connect to <SID>failed (20140811201406).
    SAPup> Process with PID 3224 terminated with status 249 at 20140811201406!
    R3trans -d returns following error (note: everything is normal at MMC and i am able to login SAP asusuall)
    This is r3trans version 6.24 (release 741 - 10.06.14 - 20:14:07).
    unicode enabled version
    2EETW169 no connect possible: "connect failed with DBLI_RC_LOAD_LIB_FAILED."
    r3trans finished (0012).
    i have checked/ tried the following things but did not help
    1. dbms_type is correct and check other parametrs aswell
    2. downloaded latest dbmssslib.dll and tried replacing but did not help
    3.replaced r3trans and TP with new patch level
    4.checked scn for similar posts
    please help me resolve this issue
    thanks,
    Shiv

    getting following error now
    Checks after phase PREP_IMPORT/TOOLIMP_TOOLDEL_PRE were negative!
    Last error code set: Detected 1 aborted activities in 'PHASES.ELG'<br/> Calling 'D:\usr\sap\<sid>\DVEBMGS01\exe/tp' failed with return code 12, check D:\usr\sap\<sid>\SUM\abap\log\SAPup.ECO for details
    ERROR: Detected the following errors:
    # D:\usr\sap\<sid>\SUM\abap\log\LM1I000099.<sid>: 4 ETW000 > parallel 3 4 ETW000 > 4 ETW000 > excluding 'R3TRDDDD','R3TRDOMA','R3TRDTEL','R3TRENQU','R3TRMACO','R3TRMCID','R3TRMCOB','R3TRSHLP','R3TRSQLT','R3TRTABL','R3TRTTYP','R3TRUENO','R3TRVIEW' 4 ETW000 R3trans was called as follows: D:\usr\sap\<sid>\DVEBMGS01\exe\R3trans.exe -u 26 -w D:\usr\sap\<sid>\SUM\abap\tmp\LM1I000099.<sid> D:\usr\sap\<sid>\SUM\abap\tmp\LM1KK000099.<sid> 4 ETW000 active unconditional modes: 26 2EETW169 no connect possible: "connect failed with DBLI_RC_LOAD_LIB_FAILED."
    thanks,
    Shhiv

  • I am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    i am trying to generate purchase order and i create a BAPI also which is active.
    But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    Hi,
    Yeah i tried my Z_BAPI in R3 and then giving some ERROR.
    This is my CODE-
    FUNCTION ZBAPIPOTV2.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(POHD) TYPE  ZPOHD OPTIONAL
    *"     VALUE(POITEM) TYPE  ZPOITEM OPTIONAL
    *"  TABLES
    *"      RETURN STRUCTURE  BAPIRET1 OPTIONAL
    data: ls_pohd type bapimepoheader,
             ls_pohdx TYPE bapimepoheaderx,
             lt_poit TYPE TABLE OF bapimepoitem,
             lt_poitx TYPE TABLE OF bapimepoitemx,
             ls_poit TYPE bapimepoitem,
             ls_poitx TYPE bapimepoitemx.
       MOVE-CORRESPONDING pohd to ls_pohd.
       MOVE-CORRESPONDING poitem to ls_poit.
       ls_pohdx-comp_code = 'x'.
       ls_pohdx-doc_type = 'x'.
       ls_pohdx-vendor = 'x'.
       ls_pohdx-purch_org = 'x'.
       ls_pohdx-pur_group = 'x'.
       ls_poit-po_item = '00010'.
       APPEND ls_poit to lt_poit.
       ls_poitx-po_item = '00010'.
       ls_poitx-po_itemx = 'x'.
       ls_poitx-material = 'x'.
       ls_poitx-plant = 'x'.
       ls_poitx-quantity = 'x'.
       APPEND ls_poitx to lt_poitx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
       EXPORTING
         POHEADER                     = ls_pohd
        POHEADERX                    =  ls_pohdx
    *   POADDRVENDOR                 =
    *   TESTRUN                      =
    *   MEMORY_UNCOMPLETE            =
    *   MEMORY_COMPLETE              =
    *   POEXPIMPHEADER               =
    *   POEXPIMPHEADERX              =
    *   VERSIONS                     =
    *   NO_MESSAGING                 =
    *   NO_MESSAGE_REQ               =
    *   NO_AUTHORITY                 =
    *   NO_PRICE_FROM_PO             =
    *   PARK_COMPLETE                =
    *   PARK_UNCOMPLETE              =
    * IMPORTING
    *   EXPPURCHASEORDER             =
    *   EXPHEADER                    =
    *   EXPPOEXPIMPHEADER            =
      TABLES
        RETURN                       = return
        POITEM                       = lt_poit
        POITEMX                      = lt_poitx
    *   POADDRDELIVERY               =
    *   POSCHEDULE                   =
    *   POSCHEDULEX                  =
    *   POACCOUNT                    =
    *   POACCOUNTPROFITSEGMENT       =
    *   POACCOUNTX                   =
    *   POCONDHEADER                 =
    *   POCONDHEADERX                =
    *   POCOND                       =
    *   POCONDX                      =
    *   POLIMITS                     =
    *   POCONTRACTLIMITS             =
    *   POSERVICES                   =
    *   POSRVACCESSVALUES            =
    *   POSERVICESTEXT               =
    *   EXTENSIONIN                  =
    *   EXTENSIONOUT                 =
    *   POEXPIMPITEM                 =
    *   POEXPIMPITEMX                =
    *   POTEXTHEADER                 =
    *   POTEXTITEM                   =
    *   ALLVERSIONS                  =
    *   POPARTNER                    =
    *   POCOMPONENTS                 =
    *   POCOMPONENTSX                =
    *   POSHIPPING                   =
    *   POSHIPPINGX                  =
    *   POSHIPPINGEXP                =
    *   SERIALNUMBER                 =
    *   SERIALNUMBERX                =
    *   INVPLANHEADER                =
    *   INVPLANHEADERX               =
    *   INVPLANITEM                  =
    *   INVPLANITEMX                 =
    ENDFUNCTION.
    i am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)". 

  • Why Due Date is necessary field

    Hi
    When i entering FI document via F-02, I had a problem with Due Date.
    First Style : (Next screen due date is must field)
    Document Type: KA
    Posting Key: 29
    Special G/l : 0
    Account: [Vendor Account]
    Second Style : (Next screen due date is hide)
    Document Type: KA
    Posting Key: 29
    Special G/l : 1
    Account: [Vendor Account]
    There is only one field changed for this situation. And this changes the accounts used!
                   Reconsolidation Acc.    Account    
    for Special G/L 0 :        320    336
    for Special G/L 1 :        320    196
    I checked this transactions.
    1- OBA7 [Document Type] This is related for just Reference text and Document Header Text
    2- OBC4 [Field Status Groups]
    3- OB41 [Posting Key Field Status]
    All field status groups sets the Due Date field suppressed. But For the First Syle, It is required field and not hidden.
    And I could not find out How it can be.
    Any help please...

    Hi,
    Please check any "Validation" is there or not.
    If message starts with z then it is validation issue
    regs
    sunoj

  • IDoc Error 51 - Make Entry in All Required Fields

    hi,
    I am using a scenario where an idoc is being posted into an R/3 system from a legacy application. For some reason I keep getting Idoc error 51 (Document not posted).
    Once I drill down further, the specific error states "Make entry in all required fields". Have checked to make sure all mandatory fields have been mapped and proper constant values have been specified.
    But cannot seem to get rid of the problem. Could anybody help out in determining how else to troubleshoot this and identify the possible cause?
    thx,
    Manpreet

    Manpreet,
    What IDoc Type you are trying to post ? One way is debugging the inbound function module using WE19. The second option is talking to a functional consultantor who worked, what fields are needed for that particular IDoc.
    I wouldn't care much about whether the IDoc is posted or not because, it is the ABAP ALE/EDI consultant's job to do that. The only way XI Developer is concerned is when it is not posting, ABAPer would tell what's missing.
    Hope this info helps.
    regards
    SKM

Maybe you are looking for

  • How to deal with the Error-89130 about the DAQ assistant?

    Once prss the "test" button of the DAQ assistant, the "Error-89130 occurred at DAQ Assistant" show up. It`s no doublt that the labview programme with a DAQ assistant  can`t be run and instead  the " Error-88303 occurred at DAQMx star Task Vi:1" or " 

  • Creating text for scroll in another program?

    I've got lotsa text to scroll, i.e., credits. Can I create 'em in another program without having to spend the next WEEK using the unfriendly 'control' tab? Does FCP recognize returns, centering etc as far as text goes? Is there a better way to do thi

  • SAP xi3.0 install on redhat 9.0 ...

    Hi I want to install the sap xi3.0 on redhat9.0 server. already download following s/w.. 51030362.zip ( Oracle 9.2 dvd) 51030721.zip (Exports dvd) 51030723_4.zip     (xi3.0) 51030723_5.zip (Xi3.0 connecter pack kit) 51030724_11.zip (j2ee) 51030763_8.

  • Upgrade from CS3 to CS5

    Hi, this is my first post here. I just successfully installed CS5. It was an upgrade from CS3 Extended. I notice that CS3 is still on my drive and would like to remove it to free up hard drive space. Should I insert the CS3 disc and look for a uninst

  • Print Production order Confirmation

    Hi Gurus, We have already configured OPK8 transaction for Confirmation slip. We added a sapscript form and the print program we have created but still there is no spool or print generated. may i know if i have forget to set up some other configuratio