Degree Date not mapped into Peoplesoft HCM 9.2

We have installed PeopleSoft HCM 9.2 and People Tools 8.53.We are using PeopleSoft HCM 9.2 Demo database in our test environment.We have integrated our Resume Parsing solution with PeopleSoft HCM 9.2.Our Parser is capable of extracting degree date from the resume content.We are finding issue with Mapping "Degree Date" into respective field.
We are trying to Map the "Degree date" as field in Degree section in Poeplesoft HCM system using HR XML mapping  as per Recruiting_Solutions_9_2_Integrations_Setup.pdf documentation.
XML LOCATION                 : Candidate.Resume.StructuredXMLResume.EducationHistory.SchoolOrInstitution.Degree.DegreeDate
DATA OBJECT LOCATION  : CandidateItems.. JPM_DATE_6
RECORD LOCATION           : HRS_APP_ITEMS. JPM_DATE_6
Oracle Recruiting solution document says "Degree Date" is mapped to "HRS_APP_ITEMS.JPM_DATE_6" field in Peoplesoft HCM 9.2 Application. (Please Refer page no 65 ).
We are finding that this mapping is not happening as expected
Does anyone know how to resolve the issue ?

As stated in the following doc, this issue has been solved in PeopleTools 8.53.04 patch
E-SES: Problems Deploying Search Definition With PeopleTools 8.53 And Oracle SES 11.1.2.2.0 [ID 1558997.1]

Similar Messages

  • How to load data from Quikbooks into PeopleSoft General Ledger module ?

    Folks,
    Hello.
    My client's data is currently stored in Quikbooks.
    After install PeopleSoft FSCM 9.0, I need to load the data from Quickbooks into PeopleSoft General Ledger module. But I don't know how to use PeopleSoft Integration Broker to integrate with Quikbooks.
    Can any folks tell me how to load data from Quikbooks into PeopleSoft General Ledger module ?

    Hi,
    If the data load is one time process, then you can use PL/SQL or datamover to load the data to PeopleSoft application.
    If you want to load the data in real time, then you need to create In-bound and out-bound nodes to perform the transaction.
    Thanks
    Soundappan

  • Item line data not flowing into SAP Adobe form layout

    Hello Gurus,
    I am currently working on adobe form layout for a sales document in SAP, i have created a master page
    as well as a couple of pages in the design view. Data at the header level are working properly, but the item data
    are not flowing into the layout, as nothing appears in the print preview for the item level of the sales document.
    I have done all the necessary binding with all the right field names, my subform to the best of my knowledge seems to be well
    defined, but yet to no avail.
      I would like to know what yet could be the reason for this issue and how i can go about fixing it.
    Thank you.
    Ahm.

    Hi Vijai,
    In our project, we have the same requirement but I am one step behind than you. I am able to generate the PDF form but not able to generate the data. Means all the fields are coming as disabled fields.
    Can you please send your code as a sample code so that I can have a look at that and check where I am doing wrong/missing. My id is sandeep.kamdar in gmail
    Thanks & Regards,
    Sandip Kamdar

  • Aperture 3 Places Data not Imported Into iPhoto

    I tagged the location of a set of photos in Aperture 3 using Places. Then i went to iPhoto, and used the import from Aperture function to bring the whole set into iPhoto in a single move. One of the 24 images carried the Places data with it; the rest had no location associated with them. I suppose this is a bug, but if anyone else had this experience or has a suggestion for a fix, please weigh in. Thanks.

    Ok, just discovered that it's not an issue with the handling of zero's in GPS coordinates, but a problem with filename or file paths containing invalid characters - I've had folders such as "FA Cup final (mum's photos)".
    So I've picked up a tiny amount of apple script and tweaked the code some more. PLEASE CAN I STRESS I KNOW VERY LITTLE ABOUT APPLE SCRIPT SO USE AT YOUR OWN RISK; it does work fine for me though!
    All credit to Juri Pakaste at http://juripakaste.fi/cgi/pyblosxom.cgi/iphoto-geodata-applescript.html
    -- This applescript will geotag the selected photos with the
    -- location information set in iPhoto.
    -- You must have exiftool installed; by default it's loaded from
    -- /opt/local/bin, where MacPorts installs it from the package
    -- p5-image-exiftool.
    -- Author: Juri Pakaste (http://www.juripakaste.fi/)
    -- Based on the Set Geo Data.scpt script by
    -- Andrew Turner (http://highearthorbit.com)
    property exifToolOriginal : "_original"
    property exifToolPath : "/usr/bin/exiftool"
    on extract_decimal(realnum)
    log "extracting decimal from " & realnum
    repeat while realnum > 1
    log "realnum now " & realnum & ", subtracting 1"
    set the realnum to realnum - 1
    end repeat
    realnum
    end extract_decimal
    on roundFloat(n, precision)
    set x to 10 ^ precision
    (((n * x) + 0.5) div 1) / x
    end roundFloat
    on d2s(degs)
    log "enter d2s"
    if the degs < 0 then
    set the degs to degs * -1
    end if
    set the degrees to round degs rounding down
    set the minssecs to extract_decimal(degs)
    log "minssecs: " & minssecs
    set the minssecs to minssecs * 60
    set the mins to round minssecs rounding down
    set the minssecs to extract_decimal(minssecs)
    log "minssecs 2: " & minssecs
    set the secs to minssecs * 60
    "" & degrees & "," & mins & "," & roundFloat(secs, 2)
    end d2s
    on exportCoords(image_file, lat, lng, alt)
    set the northSouth to "N"
    set the eastWest to "E"
    if the lat is less than 0 then
    set the northSouth to "S"
    set the lat to the lat * -1
    end if
    if the lng is less than 0 then
    set the eastWest to "W"
    set the lng to the lng * -1
    end if
    log "calling d2s on " & lat
    set the latstr to my d2s(lat)
    set the lngstr to my d2s(lng)
    set exifCommand to exifToolPath & " -GPSMapDatum=WGS-84 -gps:GPSLatitude='" & latstr & "' -gps:GPSLatitudeRef='" & northSouth ¬
    & "' -gps:GPSLongitude='" & lngstr & "' -gps:GPSLongitudeRef='" & eastWest ¬
    & "' -xmp:GPSLatitude='" & latstr & northSouth & "' -xmp:GPSLongitude='" & lngstr & eastWest & "' -xmp:GPSMapDatum='WGS-84'" & " -xmp:GPSVersionID='2.2.0.0'" & " \"" & image_file & "\""
    -- display dialog of ("running: " & exifCommand)
    set output to do shell script exifCommand
    -- display dialog of output
    do shell script "rm \"" & image_file & "\"" & exifToolOriginal
    end exportCoords
    tell application "iPhoto"
    activate
    try
    copy (my selected_images()) to these_images
    if these_images is false or (the count of these_images) is 0 then ¬
    error "Please select one or more images."
    repeat with i from 1 to the count of these_images
    set this_photo to item i of these_images
    tell this_photo
    set the image_file to the image path
    set lat to the latitude
    set lng to the longitude
    set alt to the altitude
    end tell
    if lat < 90.1 and lng < 180.1 then
    my exportCoords(image_file, lat, lng, alt)
    else
    display alert ("No location set for " & name of this_photo)
    end if
    log "read image, lat: " & lat & ", lng: " & lng
    end repeat
    display dialog "Geo Exif write complete."
    on error error_message number error_number
    if the error_number is not -128 then
    display dialog of ("failed on: " & image_file)
    display dialog error_message buttons {"Cancel"} default button 1
    end if
    end try
    end tell
    on selected_images()
    tell application "iPhoto"
    try
    -- get selection
    set these_items to the selection
    -- check for single album selected
    if the class of item 1 of these_items is album then error
    -- return the list of selected photos
    return these_items
    on error
    return false
    end try
    end tell
    end selected_images

  • Data not pipulating into table

    Hi sdns,
    i have dreated 2 classes:-  1)main
                                            2)sub
    <h5>code of main:-</h5>
    public class main {
         Collection plist = new ArrayList();
         Connection conn = null;
         Statement st;
         public void get_details()
         try
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");     
    conn = DriverManager.getConnection( "jdbc:microsoft:sqlserver://10.10.30.25:1433;databaseName=TrackingSystem","sa","sa" ) ;
    st = conn.createStatement();
    String str = "select * from [Project Table]";
    ResultSet rs = st.executeQuery(str);          
    String a = rs.getString(1);
    String b = rs.getString(2);
    String c = rs.getString(3);
    while(rs.next())
    pdetails rec = new pdetails();
    rec.setEname(a);
    rec.setRname(b);
    rec.setDid(c);
    plist.add(rec);
    catch(Exception e)
    public Collection getPlist() {
    return plist;
    public void setPlist(Collection collection) {
    plist = collection;
    <h3>code of pdetails</h3>
    public class pdetails {
    private String Ename;
    private String Rname;
    private String Did;
    public pdetails()
    Ename = new String();
    Rname = new String();
    Did = new String();
    public pdetails(String Ename,String Rname,String Did)
    this.Ename = Ename;
    this.Rname = Rname;
    this.Did = Did;
    public String getDid() {
    return Did;
    public String getEname() {
    return Ename;
    public String getRname() {
    return Rname;
    public void setDid(String string) {
    Did = string;
    public void setEname(String string) {
    Ename = string;
    public void setRname(String string) {
    Rname = string;
    I have created a jar file for this classes And imported as a model in my web Dynpro Application.
    And mapped it to component controller.
    And from there to view controller.
    I had a view with a table .
    I created the table by using template of table.
    And Binded it to the context of the view.
    And the code i have written in the WDDOINIT() method is:-
    IWDMessageManager msg = wdComponentAPI.getMessageManager();
    try
    Collection c;
    c= new ArrayList();
    main m = new main();
    m.get_details();
    c = m.getPlist();
    wdContext.nodePdetails().bind(c);
    wdContext.nodePdetails().invalidate();
    catch (Exception e) {
    // TODO: handle exception
    msg.reportWarning("Sorry");
    But data is not getting populated in my table.Anything i have to add to my code.
    Or else have i done anything wrong in my code
    Please help me in this Regard.

    What I mean is replace these 2 lines:
    wdContext.nodePdetails().bind(c);
    wdContext.nodePdetails().invalidate();
    with this code:
    wdContext.nodePdetails().invalidate(); // erase previous search results
    for (int i=0; i<c.size(); i++) { //iterate
    SomeObject o = (SomeObject) c.get(i);  // store record in temp variable
    PdetailsElement e = wdContext.nodePdetails.createPdetailsElement(); //create context element
    e.setPropA(o.getPropA()); // set properties of context element
    etc. // set properties of context element
    wdContext.nodePdetails.add(e); // add context element to context node
    I assume that you have bound the table to nodePdetails, andt that this node has cardinality 0..n.
    Also, the elements of this node contain the 3 strings that you want to display in the table.
    So when you iterate over the collection that is the result of your query,
    you create a new element of the context structure (Pdetail) and set the 3 string values.
    Finally add each context element that was created to the context node (add).
    Hope this helps, good luck.

  • Data not getting into internal table

    Hi experts,
    I have a query as given below:
      IF equipment_number IS NOT INITIAL.
        SELECT        eqart
                            equnr
                            invnr
      FROM  equi INTO table lt_equi
        FOR ALL ENTRIES IN equipment_number
        WHERE equnr = equipment_number-equipment_number.
        IF lt_equi[] IS NOT INITIAL.
          SELECT kunnr name1
            FROM kna1
          INTO CORRESPONDING FIELDS OF TABLE lt_kna1
          FOR ALL ENTRIES IN lt_equi
          WHERE kunnr = lt_equi-kunde.
        ENDIF.
    No data is coming in lt_kna1 table,
    I have changed the data declaration of lt_kna1. Earlier it was declared sa TYPE SATNDARD TABLE of kna1,
    and I changed it to:
      types: begin of ty_kna1,
              name1 type kna1-name1,
              kunnr type kna1-kunnr,
             end of ty_kna1.
    data: lt_kna1  TYPE TABLE OF ty_kna1 with header line,
    After doing this change, the problem started coming. Earlier the data was coming correct in it_kna1.
    How to solve this issue?
    Thanks,
    Ajay.

    Hi Ajay,
    Your field declaration is not in the sequence of the database table in KNA1.  Please correct it & also refer to domain directly instead of referring to field. Just do as below :-
    types: begin of ty_kna1,
    KUNNR type KUNNR,
    NAME1 type NAME1_GP,
    end of ty_kna1.
    Also check the value of the field KUNDE in lt_equi-kunde . It migh be because of CONVERSION EXIT .
    Bohn
    As to answer yuor query KUNDE in EQUI is same as KUNNR in KAN1.
    Regards
    Abhii

  • Data not inserted into database from jsf..

    hello..
    m developing ma project with 2 separate module-EJB and WEB .in which web module contains JSF managed bean and jsf-jsp pages.
    my application is running well.bt didn't give output to the database for inserting data.
    m giving ma simple test application ...plz tell me whr m going wrong.
    //Emp.java---entity file in ejb module
    package entity;
    import java.io.Serializable;
    import javax.persistence.Basic;
    import javax.persistence.Column;
    import javax.persistence.Entity;
    import javax.persistence.Id;
    import javax.persistence.NamedQueries;
    import javax.persistence.NamedQuery;
    import javax.persistence.Table;
    @Entity
    @Table(name = "emp")
    @NamedQueries({
        @NamedQuery(name = "Emp.findAll", query = "SELECT e FROM Emp e"),
        @NamedQuery(name = "Emp.findByName", query = "SELECT e FROM Emp e WHERE e.name = :name"),
        @NamedQuery(name = "Emp.findByAddress", query = "SELECT e FROM Emp e WHERE e.address = :address")})
    public class Emp implements Serializable {
        private static final long serialVersionUID = 1L;
        @Id
        @Basic(optional = false)
        @Column(name = "name")
        private String name;
        @Column(name = "address")
        private String address;
        public Emp() {
        public Emp(String name) {
            this.name = name;
        public Emp(String name, String address) {
            this.name = name;
            this.address = address;
        public String getName() {
            return name;
        public void setName(String name) {
            this.name = name;
        public String getAddress() {
            return address;
        public void setAddress(String address) {
            this.address = address;
        @Override
        public int hashCode() {
            int hash = 0;
            hash += (name != null ? name.hashCode() : 0);
            return hash;
        @Override
        public boolean equals(Object object) {
            // TODO: Warning - this method won't work in the case the id fields are not set
            if (!(object instanceof Emp)) {
                return false;
            Emp other = (Emp) object;
            if ((this.name == null && other.name != null) || (this.name != null && !this.name.equals(other.name))) {
                return false;
            return true;
        @Override
        public String toString() {
            return "entity.Emp[name=" + name + "]";
    //empsession.java--session file in ejb module
    package session;
    import entity.*;
    import javax.ejb.Stateless;
    import javax.persistence.EntityManager;
    import javax.persistence.PersistenceContext;
    @Stateless
    public class empsession implements empsessionRemote {
        @PersistenceContext(unitName = "EJBmodulePU")
        private EntityManager em;
        public void addemp(String name, String address) {
            Emp objemp=new Emp(name,address);
            em.persist(objemp);
    //empsessionRemote.java--remote file for sessionbean
    package session;
    import javax.ejb.Remote;
    @Remote
    public interface empsessionRemote {
        void addemp(String name, String address); 
    //empMB.java--managed bean file in web module
    package mbean;
    import javax.faces.bean.ManagedBean;
    import javax.faces.bean.RequestScoped;
    import javax.naming.InitialContext;
    import session.empsessionRemote;
    @ManagedBean(name="empMB")
    @RequestScoped
    public class empMB {
        private String name;
        private String address;
        public String getAddress() {
            return address;
        public void setAddress(String address) {
            this.address = address;
        public String getName() {
            return name;
        public void setName(String name) {
            this.name = name;
        /** Creates a new instance of empMB */
        public empMB() {
        public void empadd()
            try
            InitialContext ic = new InitialContext();
            empsessionRemote esr=(empsessionRemote)ic.lookup(empsessionRemote.class.getName());
            esr.addemp(name, address);
            catch(Exception ex)
    }//AddEmp.jsp --jsf page in web module
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>JSP Page</title>
    </head>
    <body>
    name:
    <h:inputText id="txt1" value="#{empMB.name}"></h:inputText>
    address:
    <h:inputText id="txt2" value="#{empMB.address}"></h:inputText>
    <h:commandButton id="btnadd" value="submit" action="#{empMB.empadd}"></h:commandButton>
    <h1><h:outputText value="Hello World!"/></h1>
    </body>
    </html>
    </f:view>
    //faces-config.xml
    <faces-config version="2.0"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd">
    <managed-bean>
    <managed-bean-name>empMB</managed-bean-name>
    <managed-bean-class>mbean.empMB</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <from-view-id>/AddEmp.jsp</from-view-id>
    <navigation-case>
    <from-outcome>AddEmp</from-outcome>
    <to-view-id>/index.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    m using toplink provider and mysql db
    wating for positive reply..
    thanks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    I think this question would be more appropriate in a forum devoted to database or JPA topics.

  • Color XML Data Not Importing Into FCP

    When I finish rendering my clips in color and I send them to FCP, FCP says importing XML data and the progress bar stays at 50% and doesn't move. Anybody have any clue on what to do??

    You will have to troubleshoot the round trip for something illegal that you exported from the FCP timeline. A hung return XML indicates that it has corrupted because of an ambiguous instruction that COLOR hasn't been able to understand -- it may not even have anything to do with the media and how its constructed on the timeline.
    Unfortunately, the number of things that this could be is a somewhat lengthy list. You didn't encounter any obstacles with strange things happening on the COLOR timeline, apparently. Without the actual FCP timeline and what kinds of things are stacked on it -- impossible to say.
    But here's an example of a known behavior: A graphic still (like a Jpg) with a filter or effect applied to it will cause the rest of the media on the remaining timeline to be lost. It just won't come back on the FCP timeline, as opposed to hanging the import. Stuff like that, that doesn't usually get discussed under the "just hit the easy button" workflow.
    jPo

  • Data not uploaded into the ods characteristic(MD)

    higuys,
    i have an ODS that has as data fields some masterdata infoobjects,
    when i upload the data from the PSA to the ODS and i activate the data of the ODS,
    looking to the ODS data only the fields related to the masterdata infoobjects are not filled
    why?
    the masterdata infoobjects are active and full of data,
    the PSA contain the data
    i don't retrieve any error durin the DTP process and during the activation
    what could be?
    uploading data for the same infoobjects MasterData used in a different ODS using a different datasource everything go right
    thanks in advance

    Hi,
    In your infopackage under the tab UPDATE if you selected "Do not update data if no master data exits for a characterstic" then it will update only the with respect to master data. Or otherwise you choose the 1st option i.e. "Always update data even if no master data exists for the data" depends on your requirement. Try and see.
    Regards
    Srini

  • Inserted partition key does not map to any partition

    getting error while importing data from non-partition table to partition table
    structure of non-partition table
    CREATE TABLE APP_HOLD
    RCN_ID VARCHAR2(18 BYTE),
    CRD_NUM VARCHAR2(23 BYTE),
    TRN_TYP VARCHAR2(30 BYTE),
    TRN_DTE DATE,
    REF_NUM VARCHAR2(23 BYTE),
    TRN_CRR VARCHAR2(3 BYTE),
    TRN_AMT NUMBER(24,2),
    BLL_CRR VARCHAR2(3 BYTE),
    BLL_AMT NUMBER(16,2),
    BSN_DTE DATE,
    BRN_S VARCHAR2(10 BYTE),
    ACC_NUM_S VARCHAR2(24 BYTE),
    BRN_D VARCHAR2(10 BYTE),
    ACC_NUM_D VARCHAR2(24 BYTE),
    SRL_NUM VARCHAR2(23 BYTE),
    DVI_TYP VARCHAR2(8 BYTE),
    ORG_MSG_TYP VARCHAR2(6 BYTE),
    ACQ_CDE VARCHAR2(15 BYTE),
    ACQ_BIN VARCHAR2(11 BYTE),
    REV VARCHAR2(1 BYTE),
    DBCR_FLG VARCHAR2(1 BYTE),
    ATM_FEE NUMBER(16,2),
    ATM_ID VARCHAR2(16 BYTE),
    INT_FEE NUMBER(16,2),
    TRM_ID VARCHAR2(10 BYTE),
    MCN_CDE VARCHAR2(15 BYTE),
    MCN_INF VARCHAR2(40 BYTE),
    PNT_RCN_ID NUMBER(12),
    FGN_KEY VARCHAR2(18 BYTE),
    ERR_CDE VARCHAR2(200 BYTE),
    JNK VARCHAR2(50 BYTE),
    CRD_USED VARCHAR2(10 BYTE),
    RES_CDE VARCHAR2(3 BYTE),
    REA_CDE VARCHAR2(4 BYTE),
    PRC_CDE VARCHAR2(10 BYTE),
    MCC VARCHAR2(4 BYTE),
    APP_CDE VARCHAR2(8 BYTE),
    ISS_INS_ID VARCHAR2(11 BYTE),
    ACQ_INS_ID VARCHAR2(11 BYTE),
    ACQ_NET_CDE VARCHAR2(20 BYTE),
    ISS_NET_CDE VARCHAR2(20 BYTE),
    INST_ID VARCHAR2(60 BYTE),
    FIID1 VARCHAR2(20 BYTE),
    FIID2 VARCHAR2(20 BYTE),
    SWT_FLE VARCHAR2(50 BYTE),
    VIS_FLE VARCHAR2(50 BYTE),
    VIS_FLE_MCHDTE DATE,
    VIS_FLE_EODDTE DATE,
    VIS_FLE_RCNTYP NUMBER(2),
    VIS_FLE_ACNTID VARCHAR2(35 BYTE),
    MAS_FLE VARCHAR2(50 BYTE),
    MAS_FLE_MCHDTE DATE,
    MAS_FLE_EODDTE DATE,
    MAS_FLE_RCNTYP NUMBER(2),
    MAS_FLE_ACNTID VARCHAR2(35 BYTE),
    TIE1_FLE VARCHAR2(50 BYTE),
    TIE1_FLE_SRC VARCHAR2(50 BYTE),
    TIE1_FLE_MCHDTE DATE,
    TIE1_FLE_EODDTE DATE,
    TIE1_FLE_RCNTYP NUMBER(2),
    TIE1_FLE_ACNTID VARCHAR2(35 BYTE),
    TIE2_FLE VARCHAR2(50 BYTE),
    TIE2_FLE_SRC VARCHAR2(50 BYTE),
    TIE2_FLE_MCHDTE DATE,
    TIE2_FLE_EODDTE DATE,
    TIE2_FLE_RCNTYP NUMBER(2),
    TIE2_FLE_ACNTID VARCHAR2(35 BYTE),
    TIE3_FLE VARCHAR2(50 BYTE),
    TIE3_FLE_SRC VARCHAR2(50 BYTE),
    TIE3_FLE_MCHDTE DATE,
    TIE3_FLE_EODDTE DATE,
    TIE3_FLE_RCNTYP NUMBER(2),
    TIE3_FLE_ACNTID VARCHAR2(35 BYTE),
    TIE4_FLE VARCHAR2(50 BYTE),
    TIE4_FLE_SRC VARCHAR2(50 BYTE),
    TIE4_FLE_MCHDTE DATE,
    TIE4_FLE_EODDTE DATE,
    TIE4_FLE_RCNTYP NUMBER(2),
    TIE4_FLE_ACNTID VARCHAR2(35 BYTE),
    TIE5_FLE VARCHAR2(50 BYTE),
    TIE5_FLE_SRC VARCHAR2(50 BYTE),
    TIE5_FLE_MCHDTE DATE,
    TIE5_FLE_EODDTE DATE,
    TIE5_FLE_RCNTYP NUMBER(2),
    TIE5_FLE_ACNTID VARCHAR2(35 BYTE),
    TIE6_FLE VARCHAR2(50 BYTE),
    TIE6_FLE_SRC VARCHAR2(50 BYTE),
    TIE6_FLE_MCHDTE DATE,
    TIE6_FLE_EODDTE DATE,
    TIE6_FLE_RCNTYP NUMBER(2),
    TIE6_FLE_ACNTID VARCHAR2(35 BYTE),
    EJ_FLE VARCHAR2(50 BYTE),
    EJ_FLE_MCHDTE DATE,
    EJ_FLE_EODDTE DATE,
    EJ_FLE_RCNTYP NUMBER(2),
    EJ_FLE_ACNTID VARCHAR2(35 BYTE),
    BTH_FLE VARCHAR2(50 BYTE),
    BTH_FLE_MCHDTE DATE,
    BTH_FLE_EODDTE DATE,
    BTH_FLE_RCNTYP NUMBER(2),
    BTH_FLE_ACNTID VARCHAR2(35 BYTE),
    BRN_ISS_FLE VARCHAR2(50 BYTE),
    BRN_ISS_FLE_MCHDTE DATE,
    BRN_ISS_FLE_EODDTE DATE,
    BRN_ISS_FLE_RCNTYP NUMBER(2),
    BRN_ISS_FLE_ACNTID VARCHAR2(35 BYTE),
    BRN_ACQ_FLE VARCHAR2(50 BYTE),
    BRN_ACQ_FLE_MCHDTE DATE,
    BRN_ACQ_FLE_EODDTE DATE,
    BRN_ACQ_FLE_RCNTYP NUMBER(2),
    BRN_ACQ_FLE_ACNTID VARCHAR2(35 BYTE),
    TRNACC_ID VARCHAR2(21 BYTE),
    PRT_TRNACC_ID VARCHAR2(35 BYTE),
    PROCESS_ID VARCHAR2(20 BYTE),
    SWT_VCH1_NUM VARCHAR2(100 BYTE),
    SWT_VCH2_NUM VARCHAR2(100 BYTE),
    SWT_VCH3_NUM VARCHAR2(100 BYTE),
    SWT_VCH4_NUM VARCHAR2(100 BYTE),
    SWT_VCH5_NUM VARCHAR2(100 BYTE),
    SWT_VCH1A_NUM VARCHAR2(100 BYTE),
    SWT_VCH2A_NUM VARCHAR2(100 BYTE),
    SWT_VCH3A_NUM VARCHAR2(100 BYTE),
    SWT_VCH4A_NUM VARCHAR2(100 BYTE),
    SWT_VCH5A_NUM VARCHAR2(100 BYTE),
    SWT_VCH1B_NUM VARCHAR2(100 BYTE),
    SWT_VCH2B_NUM VARCHAR2(100 BYTE),
    SWT_VCH3B_NUM VARCHAR2(100 BYTE),
    SWT_VCH4B_NUM VARCHAR2(100 BYTE),
    SWT_VCH5B_NUM VARCHAR2(100 BYTE),
    SWT_VCH1C_NUM VARCHAR2(100 BYTE),
    SWT_VCH2C_NUM VARCHAR2(100 BYTE),
    SWT_VCH3C_NUM VARCHAR2(100 BYTE),
    SWT_VCH4C_NUM VARCHAR2(100 BYTE),
    SWT_VCH5C_NUM VARCHAR2(100 BYTE),
    SWT_VCH1D_NUM VARCHAR2(100 BYTE),
    SWT_VCH2D_NUM VARCHAR2(100 BYTE),
    SWT_VCH3D_NUM VARCHAR2(100 BYTE),
    SWT_VCH4D_NUM VARCHAR2(100 BYTE),
    SWT_VCH5D_NUM VARCHAR2(100 BYTE),
    SWT_VCH1E_NUM VARCHAR2(100 BYTE),
    SWT_VCH2E_NUM VARCHAR2(100 BYTE),
    SWT_VCH3E_NUM VARCHAR2(100 BYTE),
    SWT_VCH4E_NUM VARCHAR2(100 BYTE),
    SWT_VCH5E_NUM VARCHAR2(100 BYTE),
    SWT_VCH1F_NUM VARCHAR2(100 BYTE),
    SWT_VCH2F_NUM VARCHAR2(100 BYTE),
    SWT_VCH3F_NUM VARCHAR2(100 BYTE),
    SWT_VCH4F_NUM VARCHAR2(100 BYTE),
    SWT_VCH5F_NUM VARCHAR2(100 BYTE),
    SWT_VCH1G_NUM VARCHAR2(100 BYTE),
    SWT_VCH2G_NUM VARCHAR2(100 BYTE),
    SWT_VCH3G_NUM VARCHAR2(100 BYTE),
    SWT_VCH4G_NUM VARCHAR2(100 BYTE),
    SWT_VCH5G_NUM VARCHAR2(100 BYTE),
    SWT_VCH1H_NUM VARCHAR2(100 BYTE),
    SWT_VCH2H_NUM VARCHAR2(100 BYTE),
    SWT_VCH3H_NUM VARCHAR2(100 BYTE),
    SWT_VCH4H_NUM VARCHAR2(100 BYTE),
    SWT_VCH5H_NUM VARCHAR2(100 BYTE),
    SWT_VCH1I_NUM VARCHAR2(100 BYTE),
    SWT_VCH2I_NUM VARCHAR2(100 BYTE),
    SWT_VCH3I_NUM VARCHAR2(100 BYTE),
    SWT_VCH4I_NUM VARCHAR2(100 BYTE),
    SWT_VCH5I_NUM VARCHAR2(100 BYTE),
    VIS_VCH_NUM VARCHAR2(100 BYTE),
    MAS_VCH_NUM VARCHAR2(100 BYTE),
    TIE1_VCH_NUM VARCHAR2(100 BYTE),
    TIE2_VCH_NUM VARCHAR2(100 BYTE),
    TIE3_VCH_NUM VARCHAR2(100 BYTE),
    TIE4_VCH_NUM VARCHAR2(100 BYTE),
    TIE5_VCH_NUM VARCHAR2(100 BYTE),
    TIE6_VCH_NUM VARCHAR2(100 BYTE),
    EJ_VCH_NUM VARCHAR2(100 BYTE),
    BTH_VCH_NUM VARCHAR2(100 BYTE),
    BRN_ISS_VCH_NUM VARCHAR2(100 BYTE),
    BRN_ACQ_VCH_NUM VARCHAR2(100 BYTE),
    PAR_DTE DATE,
    EOD_DTE1 DATE,
    EOD_DTE2 DATE,
    FILLER1 VARCHAR2(4000 BYTE),
    FILLER2 VARCHAR2(4000 BYTE),
    FILLER3 VARCHAR2(4000 BYTE),
    TRN_MM VARCHAR2(2 BYTE),
    TRN_YY VARCHAR2(4 BYTE),
    PURGE_FLAG NUMBER DEFAULT 0
    );

    The error message is self explanatory. One or more of the rows being attempted to be inserted has a value for a partition key column that does NOT map into the defined partition keys on the target table.
    Since you have not shown the definition of the Partitioned table, we cannot help with any advice to you.
    Hemant K Chitale

  • Data not populating after DS enhancement

    HI pros,
    i have made Data source enhancement.
    i wrote the code in include program.
    when '0FI_GL_40'.
      CHECK NOT c_t_data[] IS INITIAL.
      LOOP AT c_t_data ASSIGNING <fs_data5>.
      SELECT SINGLE matnr FROM bseg INTO <fs_data5>-ZZMATNR
                             where BUKRS eq <fs_data5>-BUKRS and
                                   BELNR eq <fs_data5>-BELNR and
                                   GJAHR eq <fs_data5>-GJAHR and
                                   BUZEI eq <fs_data5>-BUZEI.
    endloop.
    but the data not populating into the report, the Multi provider is real time
    krish..

    Hi,
    Syntax
    ASSIGN mem_area TO <fs> casting_spec range_spec.
    Effect
    This statement assigns the memory area specified using mem_area to the field symbol <fs>. You can assign a data object or a memory area calculated from the address of a data object. After the assignment, the field symbol refers to the assigned memory area and can be used in operand positions. When used in a statement, it behaves like a dereferenced data reference, meaning that the statement works with the content of the memory area.
    The data type with which the assgigned memory area is treated, depends on the specifications in casting_spec. You can either execute an explicit casting or the field symbol takes on the data type of the data object specified in the assignment. A field symbol to which a memory area is assigned, has this data type after the assignment and behaves like a data object of this type.
    The assigned memory area mem_area must be at least as long as the data type specified in casting_spec and must have the same alignment. If the data type determined in casting_spec is deep, the deep components with their type and position must appear in the assigned memory area exactly like this.
    Use the specifications in range_spec to restrict the memory area that can be assigned to the field symbol.
    You have to assign it back to internal table to modify the content.
    Check in debug mode if you have still doubt.
    regards,
    Raju

  • Is field Mara-Behvo mapped into CRM?

    Hi all
    I'd like to set a control into sales order over the values of BEHVO-MARA field.
    Am I wrong or it is not mapped into CRM?
    Thank you
    Pierluigi

    Solved myself

  • I can not map field after changing data source location

    Hi
    I have a small problem that I got a report file and database from my customer, after that I setup database, open the file and change data source to my setting. but some filed can not map. The field mapping widonw does not display all field in the table. Of course I have checked the missing fields are existing in the table.
    OS:Windows7
    DB:Oracle11
    CR:XI Release 2
    Does anyone have an idea?

    hi,
    In Map Fields window, there is an option "Match Type".
    Please Unchek that option, so that you will be able to see all the fields from that table.
    Also, while mapping please verify the datatypes of source and target fields.
    Regards,
    Vamsee

  • Required delivery date not to be cpoied into sales order from quotation

    My requirement is that required delivery date should not be copied when i create a sales order with reference to quotaion,
    In the sales document types i have unchecked propose delivery date .it works fine while creating quotaion but then when i create sales order with ref to quotation the required delivery date is copied into the sales order which i dint want.
    Kindly guide me on this

    Hi,
    I think if u dont want to copy only required delivery date from QT to OR  you need to write the routine and has to assign in VTAA -Coping requirements.
    if u assign 502 it ill not copy quantiy in schedule lines i think.
    Just ask your ABAPer about 502 , if it work then assign the same to ur document types in VTAA.
    Hope this will helps u
    Regards,
    Ramesh
    Edited by: Ramesh on Mar 30, 2009 11:25 AM

  • Data from a file need to be read and mapped  into a custom table of R/3

    Hello all,
    This is related to inbound to  SAP ECC via SAP PI.
    There is a requirement concerning PI part that data from a file need to be read and mapped  into a custom table of R/3.
    To have this scenario developed , do we have any other  option than the Proxy ?
    My understanding is as follows : File --> SAP PI --> Proxy
    You suggestions are welcome.
    Regards,
    Rachana

    Hi Ravi,
    As suggested by Inaki, you can use proxy communication in recever.
    but you can also use the below
    FILE -----> PI -------> PROXY
                                  RFC
                                  IDOC
    to communicate to ECC system.
    Regards
    srinivas

Maybe you are looking for

  • Dual monitor use on MacBook with BootCamp

    I have a Client using the new 24" LED Display with his MacBook. He only want to use the External display and close the notebook when he is in the office. This works OK in OS X, he closes the lid so the laptop sleeps, and then wakes it again from the

  • Dynamic PL/SQL Region

    Hi, i'm having some trouble with PL/SQL regions (or rather with function htp.p)... The first problem is: i want to allocate a variable with the current user and call this variable in htp.p. So i wrote: DECLARE BEGIN v_user := :P1_USER; HTP.p (v_user)

  • Updating ipod/itunes issue

    I added many songs to itunes that I didn't want on the ipod. I unchecked the boxes but when the ipod was connected it automatically updated the ipod and included all of the songs. Was there another step I was supposed to do? Thanks, JIm

  • Why can't I install iMovie 10 on my 2008 Mac Pro?

    I am running Mavericks 10.9 and really like it. I tried to install iMovie 10 on my Mac Pro  Quad-Core Intel Xeon 2.8 GHz and it says my video card is not compatible. Huh? I have a ATI Radeon HD 2600 XT with 256mb vram. Thanks! Rich

  • MAJOR PROBLEM - Wireless Mice spontaneously stop working!

    I have gone through three wireless mice now. The kind with USB recievers, I mean. The first was a Kensington Slimblade, which stopped working back in March. It would not work on either of my family's iMacs, OSX or Boot Camp. I had it sent back under