Reg: issue raises while add the record in pp01

Hi experts,
  This is Prasanna. i have created customized relationship as "HAS TALENTED PARTICIPANT"  and evaluation path as "AZTI".i have assined this relationship between two object types that are D(course type) and P(person). In PP01 transaction i tried to save the record using this relationship.but there i am getting one issue that is showing below
"ERROR WHILE ADDING".
my evaluation path and relation ship showed successfully in ALLOWED RELATIONSHIP option.please help me to rectify this issue.
Thanks and Regards,
M.L.Prasanna

Hi,
Check transaction OOVK ,OOIT
Check table V_778U,T777E.
Check this link for the custom relationship creation and make sure all is done.
http://fuller.mit.edu/ehs/creating_relationships.htm
Cheers,
Manoj.

Similar Messages

  • Issue while Creating the records in OAF by disabling one field.

    Hi Experts,
    I am having the scenario like this.
    From the OAF page I want to create the record by omitting one field(it is disable for OAF).
    Consider the folowing scenario..
    I am having the following fields Empno,Empname,Salary,Job in the OAF page where I made the Job field alone as disable and the style i am using for job field is message text input and i have set the initial value as 'Manger'.
    I am facing issue while creating the records in OAF page without the job filed value ie 'Manager' then the records were not inserted into my tables. Whereas if I enable the job field in OAF page(meaning I gave the job as 'Manager' in OAF page) I am able to create the records from OAF page and able get inserted in the database.
    Could Anyone can suggest where I fail as it is my Priority issue.
    Any Suggestion will be a great help for me.
    Thanks,
    Murugesh.

    or you can default it in the controller by handling add row event
    if(vo.hasNext())
    vorow = vo.next();
    vorow.setAttribute("xxxx",3838);
    --Prasanna                                                                                                                                                                                                                                                                                                                                   

  • Issue in retrieving all the records from ADF Table with multiple row

    Hi,
    As per my requirement, I need to fill the table with multi selected LOV values and when user clicks on commit, I need to save them to database.
    I am using ADF 11g, Multi select table. Using the below ADD method, I am able to add the records but if user clicks on cancel, I need to remove those from view and clear the table as well.
    But the Issue I am facing is, in my cancel method, always I am getting half of the records. Lets assume table contains 100 records but in my cancel method, I am getting only 50 records.
    Please let me know what is the issue in my source code.
    ADD Method:
    public void insertRecInCMProcessParamVal(String commType, String processType, Number seqNumber){       
    try{
    Row row = this.getCmProcessParamValueView1().createRow();
    row.setAttribute("ParamValue7", commType);
    row.setAttribute("ProcessType", processType);
    row.setAttribute("CreationDate", new Date());
    row.setAttribute("CreatedBy", uid);
    row.setAttribute("ParamValueSeqNum", seqNumber);
    row.setAttribute("ProcessedFlag", "N");
    this.getCmProcessParamValueView1().insertRow(row);
    }catch(Exception e){           
    e.printStackTrace();
    Table Code:
    <af:table value="#{bindings.CmProcessParamValueView11.collectionModel}"
    var="row"
    rows="#{bindings.CmProcessParamValueView11.rangeSize}"
    emptyText="#{bindings.CmProcessParamValueView11.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.CmProcessParamValueView11.rangeSize}"
    rowBandingInterval="1"
    selectedRowKeys="#{bindings.CmProcessParamValueView11.collectionModel.selectedRow}"
    selectionListener="#{bindings.CmProcessParamValueView11.collectionModel.makeCurrent}"
    rowSelection="multiple"
    binding="#{backingBeanScope.backing_app_RunCalcPage.t1}"
    id="t1" width="100%" inlineStyle="height:100px;" >
    <af:column sortProperty="ParamValue6"
    sortable="true"
    headerText="#{bindings.CmProcessParamValueView11.hints.ParamValue6.label}"
    id="c1" visible="false">
    <af:inputText value="#{row.bindings.ParamValue6.inputValue}"
    label="#{bindings.CmProcessParamValueView11.hints.ParamValue6.label}"
    required="#{bindings.CmProcessParamValueView11.hints.ParamValue6.mandatory}"
    columns="#{bindings.CmProcessParamValueView11.hints.ParamValue6.displayWidth}"
    maximumLength="#{bindings.CmProcessParamValueView11.hints.ParamValue6.precision}"
    shortDesc="#{bindings.CmProcessParamValueView11.hints.ParamValue6.tooltip}"
    id="it3">
    <f:validator binding="#{row.bindings.ParamValue6.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="ParamValue7"
    sortable="true"
    headerText="Comm Type"
    id="c2">
    <af:inputText value="#{row.bindings.ParamValue7.inputValue}"
    label="#{bindings.CmProcessParamValueView11.hints.ParamValue7.label}"
    required="#{bindings.CmProcessParamValueView11.hints.ParamValue7.mandatory}"
    columns="#{bindings.CmProcessParamValueView11.hints.ParamValue7.displayWidth}"
    maximumLength="#{bindings.CmProcessParamValueView11.hints.ParamValue7.precision}"
    shortDesc="#{bindings.CmProcessParamValueView11.hints.ParamValue7.tooltip}"
    id="it4">
    <f:validator binding="#{row.bindings.ParamValue7.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="ParamValue8"
    sortable="true"
    headerText="#{bindings.CmProcessParamValueView11.hints.ParamValue8.label}"
    id="c3" visible="false">
    <af:inputText value="#{row.bindings.ParamValue8.inputValue}"
    label="#{bindings.CmProcessParamValueView11.hints.ParamValue8.label}"
    required="#{bindings.CmProcessParamValueView11.hints.ParamValue8.mandatory}"
    columns="#{bindings.CmProcessParamValueView11.hints.ParamValue8.displayWidth}"
    maximumLength="#{bindings.CmProcessParamValueView11.hints.ParamValue8.precision}"
    shortDesc="#{bindings.CmProcessParamValueView11.hints.ParamValue8.tooltip}"
    id="it2">
    <f:validator binding="#{row.bindings.ParamValue8.validator}"/>
    </af:inputText>
    </af:column>
    </af:table>
    Backing Bean Code:
    DCBindingContainer dcBindings=(DCBindingContainer)getBindings();
    DCIteratorBinding dcIterator=dcBindings.findIteratorBinding("CmProcessParamValueView1Iterator");
    RowSetIterator rs = dcIterator.getRowSetIterator();
    System.out.println("In Cancel Row Count is : "+ rs.getRowCount());
    if (rs.getRowCount() > 0) {
    Row row = rs.first();
    row.refresh(Row.REFRESH_UNDO_CHANGES);
    row.remove();
    while (rs.hasNext()) {
    int count = rs.getRowCount();
    System.out.println("Count is : "+ count);
    Row row = rs.next();
    System.out.println("Row === "+ row);
    if(row != null){                   
    row.refresh(Row.REFRESH_UNDO_CHANGES);
    row.remove();
    Thanks.

    Issue resolved.
    remove selectionListener and selectedRowKeys....
    code to get all the selectedRows.
    RowSetIterator rs = dcIterator.getRowSetIterator();
    RowKeySet rks = this.t1.getSelectedRowKeys();
    Iterator rksIter = rks.iterator();
    while (rksIter.hasNext()) {
    List l = (List) rksIter.next();
    Key key = (Key)l.get(0);
    Row row = rs.getRow(key);
    Thanks.

  • Error while saving the records in the database

    Hi,
    I am running into a wierd error.
    I have built a new page which contains the information about the employees. Some of the fields are updatable fields. The page shows the details of the person who logs into the page.
    I am not using EO in this page. The data is queried from the database from VO and displayed in the page and when the records are updated, they are saved in the databased using pl/sql procedure which is
    being called from AM. So i am basically not using VO to save the records in the database.
    The error which i am getting is,
    If 2 users are trying to update the page at the same time, user A's details are updated in user B's page.
    This is really causing the issue. Any help is greatly appreciated.
    Thanks in advance.
    PK

    I have posted the code used along with the dialog page. Please review.
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"Pavan, Start1",OAFwkConstants.STATEMENT);
    if (pageContext.getParameter("XYZBack")!=null)
    pageContext.setForwardURL("OA.jsp?OAFunc=OAHOMEPAGE"// OAWebBeanConstants.RETURN_TO_MENU_URL also tryed this , same error
    ,null
    ,OAWebBeanConstants.KEEP_MENU_CONTEXT
    ,null //not needed as we are retaining menu context
    ,null // no parameters are needed,true //retain AM,OAWebBeanConstants.ADD_BREAD_CRUMB_YES
    ,true
    ,null
    ,OAWebBeanConstants.IGNORE_MESSAGES);
    if(pageContext.getParameter("XYZUpdate") !=null)//The fields and their values are loaded as soon as the update button is clicked. We do this before calling the oadialog page so that the values are not lost
    OAViewObject EmpDetailsVO3 = (OAViewObject)OAAppl.findViewObject("XYZPersInfoVO");
    OARow EmpDetailsRow3 = (OARow)EmpDetailsVO3.first(); //Bringing the control over to the first row which is nothing but the displayed row.
    if(EmpDetailsRow3 !=null)
    s_workphone = EmpDetailsRow3.getAttribute("WorkPhone").toString();
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"workphone is: "+s_workphone,OAFwkConstants.STATEMENT);
    s_fax = EmpDetailsRow3.getAttribute("WorkFax").toString();
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"Fax is: "+s_fax,OAFwkConstants.STATEMENT);
    s_building = EmpDetailsRow3.getAttribute("Building").toString();
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"Building is: "+s_building,OAFwkConstants.STATEMENT);
    s_room = EmpDetailsRow3.getAttribute("Room").toString();
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"Room is: "+s_room,OAFwkConstants.STATEMENT);
    s_box = EmpDetailsRow3.getAttribute("Box").toString();
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"Box is: "+s_box,OAFwkConstants.STATEMENT);
    s_preferedname = EmpDetailsRow3.getAttribute("KnownAs").toString();
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"Preferred name is: "+s_preferedname,OAFwkConstants.STATEMENT);
    OAException OAExcep1 = new OAException("PER","XYZ_UPDATE_DETAILS");
    OAException OAExcep2 = new OAException("PER","XYZ_UPDATE_MESSAGE");
    OADialogPage OADialogPG1 = new OADialogPage(OAException.WARNING,OAExcep1,OAExcep2,
    OADialogPG1.setOkButtonToPost(true);
    OADialogPG1.setNoButtonToPost(true);
    OADialogPG1.setOkButtonLabel("Yes");
    OADialogPG1.setNoButtonLabel("No");
    OADialogPG1.setOkButtonItemName("DoOk");
    OADialogPG1.setNoButtonItemName("DoNo");
    OADialogPG1.setPostToCallingPage(true);
    pageContext.releaseRootApplicationModule();
    pageContext.redirectToDialogPage(OADialogPG1);
    else if(pageContext.getParameter("DoOk") != null)
    OAApplicationModule EmpDetailsAM = pageContext.getApplicationModule(webBean);
    Class[] paramtypes = {String.class, String.class, String.class, String.class,String.class,String.class,String.class};
    Serializable[] params = {s_personid,s_workphone,s_fax,s_building,s_room,s_box,s_preferedname};
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"personid is :"+s_personid,OAFwkConstants.STATEMENT);
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"workphone is :"+s_workphone,OAFwkConstants.STATEMENT);
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"workfax is :"+s_fax,OAFwkConstants.STATEMENT);
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"building is :"+s_building,OAFwkConstants.STATEMENT);
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"room is :"+s_room,OAFwkConstants.STATEMENT);
    if(pageContext.isLoggingEnabled(OAFwkConstants.STATEMENT))
    pageContext.writeDiagnostics(this,"preferredname is :"+s_preferedname,OAFwkConstants.STATEMENT);
    pageContext.releaseRootApplicationModule();
    OAAppl.invokeMethod("TransactionCommit",params,paramtypes);
    OAAppl.invokeMethod("initDetails");
    throw new OAException("The Building and Phone Information have been saved successfully"
    ,OAException.INFORMATION);
    thank you

  • Problem while creating the record in IT0080 from background

    Dear All,
    I have a requirement to Create the record for Maternity Leave in IT0080 from background, whenever applied from ESS.
    Once the leave gets aaproved, while posting the documents from tcode PTARQ ( Program - RPTARQPOST), in the BADI PT_ABS_REQ, in method IF_EX_PT_ABS_REQ~POST_VIA_BLOP for the implementation, I am trying to submit the program in which the actual record is created in IT0080.
    In this program through BDC i have created the BDC data and have used CALL transaction, as internally IT 2001 also needs to be updated, which gets calculated  indirectly...
    But when executed, it gives error of Employee cannot be locked... as the Document which is posted through PTARQ, have several locks... I tried to dequeue the same...
    but cannot resolve the problem...
    Secondly i tried to create the Job also... which would be executed after some time... but still its not getting updated...
    Any help... will be highly appreciated...
    Regards,
    Heena

    Hello s.s
    I'm not understand exacly what is your problem?
    Field can have both values at the same time(Time Stamp and User stamp)  only if that field calculated
    Maybe you told about two different fields?
    User stamp field return username only it's standart functionality
    Create stamp - return date/time combination
    Remote key is avialable when you repository configured to work with some remote systems
    All records from repository (LUT, taxonomy attributes ets.) you can map to corresponding Destination items
    Regards
    Kanstantsin

  • Out of memory exception while reading the records in crystal report

    hi..
    im using sap crystal report version 13.0.2000.0.
    i've 27,000 records to be printed but when i run my application
    the exception error is displayed "Out Of Memory"..
    i've my appliation in VS2010 and OS is server 64bit
    and 4GB RAM..
    i dont know what to do ...

    Ok. So this is a brand new report created in CRVS2010(?).
    I'd like you to go to the database menu and select "Set Data Source Location". Expand the "Poperties" node and tell me what you see next to "Database Type"
    Also, I've also got a bit of a confusion on my part. In the inital post you say:
    i've 27,000 records to be printed but when i run my application
    the exception error is displayed "Out Of Memory"..
    But a bit later on you say:
    if there are 8000 records it'll take around 2 minutes
    to display the records..
    but there are 27000 records it will take more
    amount of time and the browser hangsup..
    So, is the issue when printing, or viewing?
    - Ludek

  • APP-PER-289974 while saving the record

    Hi All,
    When trying to save the record. user is getting the below error.
    APP-PER-289974: There has been an error processing this person.
    The error encountered is ORA-2001: HZ_SYNC_SQL_EXCEP: N, PROC..........
    ORA-06508: PL/SQL.........
    I have recently upgraded the apps from 12.1.1 to 12.1.3.
    Os : Oracle solaris sparc
    I need your assistance on this.
    Thanks in advance,
    Jatin

    Please check if you have any errors in the database log file.
    Do you have any invalid objects that could be relevant?
    Have you tried to generate the form via adadmin and see if it helps?
    Also, please see these docs.
    PERWSHRG: Cannot Create Employees, Errors with: ORA-20001: HZ_SYNC_SQL_EXCEP [ID 271918.1]
    Unable To Add New Employee in Enter Person Form; App-Per-288974 [ID 270972.1]
    Form Perwstem Error Ora-20001 Hz_sync_sql_excep When Clicking on Reverse Termination [ID 266951.1]
    Thanks,
    Hussein

  • Foreign Key updation in DB while updating the records in referenced table

    Hi
    I am having 2 DB Tables.
    1.Employees
    ID
    FirstName
    LastName
    AddressID
    2.Address
    ID
    City
    State
    Country
    The ID's are generated through Sequences and Triggers.
    I created a VO, and created a form in UI,
    the UI has following inputText
    FirstName
    LastName
    City
    State
    Country
    I entered the information and the data was saved sucessfully in Employees and Address Table.
    But the ForeignKey(AddressID) in Employees Tables which maps between Employees and Address is not set.
    Can anybody let me know how to achieve that?
    Do I need to use Triggers or is there any way to that ?
    If so, It will be more helpful If you can explain me or guide me.
    Thanks

    I have Associations and the viewlink specified.
    Its like the Referencial constraint..
    I am having a Employee and Location details in a VO
    I dragged it in my JSF as a form..
    Employee table has EmployeeID(PK) and AddressID(FK)
    Address table has AddressID(PK)
    now from UI, I can insert the Data like FirstName,LastName,City,State using my VO
    FirstName,LastName --- > Employee Table
    City,State --> Address Table
    For the EmployeeId(PK) and AddressId(PK) I am using Sequence.
    While inserting the data from the UI, through the inputText - FirstName,LastName,City,State-- a row is created in Employee Table and Address Table..
    but the AddressId(FK) in the Employee table is null, because I dint write anything there so as to update AddressID(FK) column in employee table,,, once I get a new row in AddressTable..
    how to acheive this ?
    please guide me..
    Thanks

  • Error while updating the records through a DB link

    Hi ,
    I am getting the below error while updating around 15 thousands records, i suspect it to be timeout but not sure.Please can you let me know what solutions needs to be taken.
    Not Found
    The requested URL /pls/htmldb/wwv_flow.show was not found on this server.
    Not Found
    The requested URL /pls/htmldb/wwv_flow.show was not found on this server.
    Oracle-Application-Server-10g/10.1.2.0.0 Oracle-HTTP-Server Server at htmldb.oraclecorp.com Port 80
    Object Type TABLE Object GWB_GRN_GRP_COUNTRIES_LU
    Table Column Data Type Length Precision Scale Primary Key Nullable Default Comment
    GWB_GRN_GRP_COUNTRIES_LU NAME Varchar2 720 - - - - - -
    ALIAS Varchar2 720 - - - - - -
    ACTIVE Varchar2 3 - - - - - -
    REGION Varchar2 300 - - - - -
    1 - 4
    Thanks & Regards,
    Ramu

    Hi Sangu,
    See if the following notes help you:
    Error when calling API from SQL*Developer, eg. ORA-01403 in API OE_ORDER_PUB.PROCESS_ORDER (Doc ID 1054295.1)
    Cancellation Of Transfer Orders Is Not Possible - ORA-01403: no data found in Package OE_Order_PVT Procedure Process_Order (Doc ID 391307.1)
    Thanks &
    Best Regards,

  • Regarding Memory issues((error) while scheduling the job

    Hi Friends
    I am  facing memory issue while rerunning BODS jobs in production.As we have rapid mart when jobs got failed i rerun the
    job suddenly job got failed and  in logs i found Memory issue
    please help me what i have to do in steps
    Thanks

    I think there is no one solution to buffer pool issue. Buffer pool issue happens due to many reasons like how you design the data flow, requirement of push down or even insufficient memory in the running environment.
    You can check by checking 'collect statistics for optimization' during running the job. Also in the data flow, try changing from pageable cache to memory cache by right clicking and selecting properties.  The below link give some details on caching, might be helpful.
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CachinginDI
    Arun

  • Problem while updating the records. IN clause no. of items

    We have an issue in updating a table when the inside IN more than 1000 numbers are passed ,
    it throws error message - ORA-01795 : maximum nunbers of experssions in a list is 1000. Is there any workarround (wihtout using ARRAYs).
    experssions list is passed from java.
    update <table> c
    set c.data='test'
    where c.id in (123,345,.... 25,0000 records);We tried this way , it throws error.
    DECLARE
    txt  varchar2(32000):= <Text size 30000>
    BEGIN
    update <table> c
        set c.data='test'
      where c.id in (select To_number(REGEXP_SUBSTR (txt, '[^,]+', 1, level))  from dual
                         connect by level <= regexp_count(txt,',')+1
    );thanks in advance..

    Hi,
    you can use WITH refactoring clause and UNION like shown below:
    with gen1 as (select level x from dual connect by level <= 1000),
    gen2 as (select level+1000 x from dual connect by level <= 1000),
    gen3 as
    (select * from gen1
      union
    select * from gen2)
    select * from dual where 1 not in (select x from gen3);Best regards,
    Nikolay

  • Update Error while saving the record

    Hi All,
    I am facing an 'Unable to update record' error when I save the form.
    The error Detail is: Unable to update :block.field1 to null.
    In fact I am printing that particular field before calling APP_STANDARD.EVENT('KEY-COMMIT'); in Key-commit trigger which has a value, but the field becomes null as soon as I click on Save button.
    Can any one tell me what I am doing wrong?
    Thanks,
    Neeraja
    P.S: I am using Forms 6i version

    Thanks for your response.
    I have an update on the issue.
    This particular field which becomes null on saving is actually a context field for descriptive flexfield.
    And it gets saved when the context is defined in the DFF definition. But it becomes null for those whose attributes are not defined and is not part of the DFF definition.
    Is there any way to handle this when it is not a part of DFF definition.
    Thanks again!
    Neeraja

  • Exception raised while extract the xpath by reading the xmlschema

    Hi All,
    I am getting the exception when I am trying extract the xpaths by reading the following xmlschema :
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="urn:http.service.announcements.portlet.liferay.com" xmlns:intf="urn:http.service.announcements.portlet.liferay.com" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://model.announcements.portlet.liferay.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://model.announcements.portlet.liferay.com">
        <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
        <xsd:complexType name="AnnouncementsFlagSoap">
            <xsd:sequence>
                <xsd:element name="createDate" nillable="true" type="dateTime"/>
                <xsd:element name="entryId" type="long"/>
                <xsd:element name="flagId" type="long"/>
                <xsd:element name="primaryKey" type="long"/>
                <xsd:element name="userId" type="long"/>
                <xsd:element name="value" type="int"/>
            </xsd:sequence>
        </xsd:complexType>
    </xsd:schema>
    Exception Raised ....Unable to resolve Schema corresponding to namespace 'http://schemas.xmlsoap.org/soap/encoding/'.
    org.exolab.castor.xml.schema.SchemaException: Unable to resolve Schema corresponding to namespace 'http://schemas.xmlsoap.org/soap/encoding/'.
         at org.exolab.castor.xml.schema.reader.ImportUnmarshaller.<init>(ImportUnmarshaller.java:125)
         at org.exolab.castor.xml.schema.reader.SchemaUnmarshaller.startElement(SchemaUnmarshaller.java:604)
         at org.exolab.castor.xml.schema.reader.Sax2ComponentReader.startElement(Sax2ComponentReader.java:255)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanStartElement(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.exolab.castor.xml.schema.reader.SchemaReader.read(SchemaReader.java:301)
         at XmlSchemaReader.main(XmlSchemaReader.java:131)

    Issue identified. The datatypes of the stream order id and the one from the tables differ.
    The Long could not be casted to the bigint format of CQL.
    On changing the datatype of ORDER_ID in the CorpInterfaceEvent to int, the join is successful.

  • The exception 'CX_RSR_X_MESSAGE' was raised while loading the data

    Hello SDNERS,
    I am lworking in PA module, I have loaded the master data successfully, while loading th transaction data in 0PA_C01, it is taking too much time, when i debgug I am getting below Exception :-
    The exception 'CX_RSR_X_MESSAGE' was raised, but it was not caught anywhere
    along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program 'SAPLRRMS' has to be
    terminated.
    Kindly suggest.
    Thanks
    Shalini

    Hi Shalini
    I have the same problem.
    Note 1157796 apply for SAP BI release 700 and 710 only . what do you use SAP BI Release?
    I install BI Release 701, so i solve the problem not yet.
    Please help me the solution for this error.
    Thanks

  • Error 'MDSYS.SDO_GEOM_TRIG_INS1' while reentering the record in USER_SDO_GE

    Hi ,
    I am trying to use Georaster table with Oracle map viewer. I followed the instructions to “prepare Georaster Data for use with a Georaster theme”
    I created the Georaster table “gri_raster_sst “and the corresponding raster data table.
    After that I called the trigger
    call sdo_geor_utl.createDMLTrigger('gri_raster_sst', 'georaster');
    and I inserted following entry in USER_SDO_GEOM_METADATA .
    INSERT INTO USER_SDO_GEOM_METADATA VALUES
    ( 'gri_raster_sst',
    'georaster.spatialextent',
    SDO_DIM_ARRAY(
    SDO_DIM_ELEMENT('X', 1052681, 5657889, 0.000005),
    SDO_DIM_ELEMENT('Y',6320581,1657189, 0.000005)
    2000002
    I had entered wrong SRID , therefore I deleted this entry in USER_SDO_GEOM_METADATA table .
    When I am trying to execute following query
    INSERT INTO USER_SDO_GEOM_METADATA VALUES
    ( 'gri_raster_sst',
    'georaster.spatialextent',
    SDO_DIM_ARRAY(
    SDO_DIM_ELEMENT('X', 1052681, 5657889, 0.000005),
    SDO_DIM_ELEMENT('Y',6320581,1657189, 0.000005)
    2000002
    I get following error
    ORA-00001: unique constraint (MDSYS.UNIQUE_LAYERS) violated
    ORA-06512: at "MDSYS.SDO_GEOM_TRIG_INS1", line 27
    ORA-04088: error during execution of trigger 'MDSYS.SDO_GEOM_TRIG_INS1'
    But as of now there is no entry in USER_SDO_GEOM_METADATA cooresponding to
    Georaster table 'gri_raster_sst' .
    What should I do ?
    Can I directly drop the trigger 'MDSYS.SDO_GEOM_TRIG_INS’

    Hi,
    just do the complete process from scratch i mean drop the table and recreate and call dml trigger and insert record.
    hope it helps
    Kabeer

Maybe you are looking for

  • Help with Wake Options!

    Hi there, So, I've been having this reoccurring issue that when I get back after an hour or two my iMac seems to have woken up from a screen saver mode (or even display sleep or sleep). I've got a sneaking feeling that's been happening since Wake for

  • HT4847 Photo Stream Backing Up To iCloud as Camera Roll

    I have photostream enabled on my iPhone and iPad plus my Macbook. I'm showing all the photos I took on my phone in photo stream and the camera roll on my ipad under the camera and in photo stream under photos. I curious if backups to icloud are inclu

  • What's the best way for reading this binary file?

    I've written a program that acquires data from a DAQmx card and writes it on a binary file (attached file and picture). The data that I'm acquiring comes from 8 channels, at 2.5MS/s for, at least, 5 seconds. What's the best way of reading this binary

  • How To Make Links In A .PDF Open In A New Window

    Hello, I am using Acrobat Pro 10 to create a fillable employment application. At the top of the main application, I want people to be able to click and be redirected to another .PDF file I have hosted on my site that they will need to fill out in add

  • Can not convert MSWord to PDF

    I am using Acrobat 7 with Word 2003, and Windows 7. When I want to convert a file, I hit the Adobe PDF tab on top of Word. It then asks me "Save PDF as" and it generally has the file name that I just saved. I click on "Save" and it starts converting