Can't we add new dates automatically via MDIS- unmapped values- ADD

Hi,
I have a qualified table with non qualifier as Date(TYPE: Literal Date).
and Qualifiers as Valid from and valid to.
We have 4 dates currently in Date field.
Our incoming file will have New dates init, So want these new dates to be added automaticaly via Import map.
I have set the Date field property as MDIS unmapped fields as - ADD.
But it is not adding new dates.
When i have Date field with Type TEXT and not 'Literal Date'  then the new dates from Incoming file are added automatically.
Is this Normal that MDIS unmapped value - ADD will not add date Type fields???
Please Help
KR
John

Hi,
the incoming date format is MM/DD/YYYY.
In configutration parameters it is mentioned as MM/DD/YYYY format.
If the incoming file has Existing dates in MDM then it updates Fine.
But if the Incoming file has a new date then it failes with value exception..
'error message : Type mismatch. Invalid field values.<LF/></Trace>
cant understand this behaviuor of Literal date Field...
Can anyone please help...
KR
John

Similar Messages

  • MDIS Unmapped Values ADD is not Working Throws errors

    Hi Experts,
    I have a Qualified table where the Non qualifier is a Lietaral Date field.
    Qualified Update -> Update
    New links -> Create
    Existing Links -> All mapped Fields
    MDIS unmapped values -> ADD
    All is working well,When the Incoming file has exactly the same NOn qualifier as in Data manager,  But when the incoming file has some New non-qualifers then it fails with a value Exception...
    1166657856 2011/09/27 16:29:16.326 GMT Importing: 'Samplee_27sep[1].xml.MDM_DATA' Table --> 'CostCentre.CostCentre' Table.
    1166657856 2011/09/27 16:29:16.341 GMT Could not create lookups. Source record number: -10, error message : Type mismatch. Invalid field values.
    1166657856 2011/09/27 16:29:16.346 GMT Import failed. Could not create lookups. Source record number: -10, error message : Type mismatch. Invalid field values.
    Import action: Update (All Mapped Fields)
    Source record no: 1
    But ideally it should NOT fail as the MDIS Unmapped fields are set to ADD..
    I would expect it to Add any new NON qualfiers to QT and add that Link to that Record.
    But it is throwing error...
    Did anyone face this issue till date???
    Kind Regards
    Eva
    Why is this behaviour..

    Hi,
    In the Import map as the Non qualifier is the literal date field and in DM i can see they are stored in MM/DD/YYYY format.
    The incoming value from the File is also the same format but the Config parameters date format in Import map is different, is this the problem for not adding New dates even though the MDIS unmapped fields are set to ADD..
    Also, are Config parameters Specific to Map or Repository Or server!!
    i.e if i change a config parameter and save the map.
    will the config parameters in all import maps be changed automatically??
    Kind Regards
    Eva

  • Can "SPML Web Service Complex Data Type field" take multiple values ?

    In Generic Technology Connector's -SPML design parameters section, Can we give multiple values in SPML Web Service Complex Data Type field?
    If not, how can i call methods directly instead of calling them through a values of the "name" attribute of the "complexType" element in SPML Web Service Complex Data Type?
    I need 'SPML Web Service Complex Data Type' to hold multiple values.And based on the request it has to initiate appropriate method of action.
    Presently i have three methods add,modify and delete which i am calling through a single value of the "name" attribute of the "complexType" element in SPML Web Service Complex Data Type.
    I want to replace this single value with multiple menthods , so that a direct interaction between the method,OIM and target can be established.
    Edited by: 821054 on 16/02/2011 04:23

    Thanks Robert.
    You'll need to create your own interface to the webapp database for those kind of data operations
    by this, are you speaking of the internal BC database which stores web app schema data? That would be great if it were possible to update that programmatically because I need to use the List (Checkbox List) field type (for the search functionality), but I need to supply the checkbox options from a web app rather than by manually updating the list entered in the Fields view of the web app settings (shown below).
    I'm curious if anyone else has tried this?
    Again, my reason for needing to use the List (Checkbox List) field type is that the page which processes searches knows to expect a comma separated list for this field type and then appears to be parsing out the individual values for searching out web app items with 1 or more matching values. You're right that text fields (string and multiline) just check for 'string contains' matches, and this would be ok if I was only ever needing to search just one value at a time. Here's an example of what I might do:
    Web App item field value (as recorded against the List (Checkbox List) field type:
    8294877,8294878
    Web App Search value (for this same field):
    8294879,8294877,8294885
    The search would return this web app item because the field contains 2 (1 or more) individual values even though they were entered into the search field in a different order. If this web app item were just a Text (string or multiline) field, the searched value is not a substring of the web app item's stored value, so it would not find a match. Hence the need to use Checkbox List field type.
    The web app will have thousands if not 10s of thousands of records, so dumping them all into one big array or object and searching on the front-end won't be practical (though it works great on smaller datasets).

  • On the mini iPad Callander, how can all the uk holiday dates automatically be entered in - Christmas, Easter etc?

    On the mini iPad how do I get the uk holidays to automatically appear - Christmas Easter st Patrick's day etc?

    Google is your friend
    https://itunes.apple.com/us/app/uk-holidays-2012-2014/id395135018

  • I have changed my credit card. How can I enter my new credit card data to purchase Apps or iTunes music? Thanks. Philippe

    I have changed my credit card. How can I enter my new data to purchase Apps and music on i Tunes? Thanks. Philippe

    Tap  -  Settings/iTunes & App Store/Apple ID
    In the next window tap view Apple ID and enter password and click okay.
    You are now securly linked to your itunes account - tap Payment information and change the credit card details and then done/done.

  • I can't read in a date from a txt file

    Im not sure of the code needed to read in a date from the text file, this is an example of the text file:
    1
    2
    2003
    ie,
    day
    month year
    I have to read in this date, this is the set method for the date:
    public void setPurchaseDate (int d, int m, int y)
    new Date(d,m,y);
    And this is the code that I have tried using to readin the date:
      PurchaseDate=(Integer.parseInt(line),Integer.parseInt(line),Integer.parseInt(line));now i know its wrong, I just dont know what the code should be!!
    Cheers

    ok, I am going to go through it and see what values I can and cant read in, here is the code i am trying to use:
    private void addx()
           FileReader fin;
           int noBooks;
           int itemNum;
           String title;
           String subject;
           double costNew;
           double costPaid;
           String isbn;
           double sellingPrice = 0;
           int noAuthors;
           int day;
           int month;
           int year;
            String seperator = "#";
            Book[] book = new Book[9];
            try
                fin = new FileReader("Books.txt");
                BufferedReader buff = new BufferedReader(fin);
                String line = buff.readLine();
                int count= 0;
                //read in Number of books
                noBooks=Integer.parseInt(line);
                while( line != null)
                    //Read in item number
                    itemNum = Integer.parseInt(line);
                    //Read in title
                    title = buff.readLine();
                    //Read in number of authors
                    noAuthors=Integer.parseInt(line);
                    //Read each line in as an author until number of authors reached
                    ArrayList authors = new ArrayList();
                    for(int i=0; i < noAuthors ; i++)
                        authors.add(buff.readLine());
                    //Read in cost new
                    costNew = Double.parseDouble(line);
                    //Read in subject
                    subject = buff.readLine();
                    //Read in ISBN
                    isbn = buff.readLine();              
                    //Read in purchase day
                    day = Integer.parseInt(line);
                    //Read in purchase month
                    month=Integer.parseInt (line);
                    //Read in purchase year
                    year = Integer.parseInt (line);
                    //Read in cost paid
                    costPaid = Double.parseDouble(line);
                    line = buff.readLine();
                    //Pass date, month and year values to array
                    Date purchaseDate =new Date(day,month,year);
                    //Pass values to constructor
                    if (line.equals(seperator))
                        book[count++] = new Book(itemNum, title, authors, subject, purchaseDate,costNew,costPaid,isbn, sellingPrice,noAuthors);
                  // line = buff.readLine();
                System.out.println(book.toString());
            catch(Exception ex)
                System.out.println(ex.toString());
             }

  • Can time machine backups and data live on the same external drive?

    I have a 1TB drive, more than enough for my data and backups. Question is, I already have it partitioned as Mac OSX extended (Journaled), and when I plugged it in my new mac with my old data, it said, do you want to use this as a backup drive. I selected yes, not thinking anything. But then I wondered, can I continue saving new data on this drive (music, videos, photos, etc) AND use it as a time machine backup drive, or is it either or? Hope this question makes sense. Thanks!

    To expand on Lyssa's answer a bit, it really depends on what other data you want to put there.
    If it's something like "scratch" space for editing video, etc., then no problem, except perhaps some contention for the drive while TM backups are running. Be sure to exclude the partition from TM, via TM Preferences > Options.
    But if it's important data that's not backed-up elsewhere, then you can let TM back-up that other partition along with your internal HD. That's better than no backup of it at all, but not much.
    So, consider backing it up separately, either to another external HD or (especially if it's something like photos or videos that don't change a lot) to DVDs (that you can take off-site for extra security).
    But whatever you do, don't put other data in the TM partition. That will probably bite you sooner or later!

  • Can't sync my new 8530 with Outlook Calendar

    I have used this phone for 2 years but had to get a replacement because of a cracked screen.  Now the replacement phone won't sync via Blackberry Desktop software  with my Windows.  First time it doubled most, not all, of my appts on my phone.  Next time, nothing posted on phone transferred to Outlook.  I have checked and rechecked the preferences on the Organizer sync.  I really need to get a paper copy of my calendar from the Outlook but can't get the new dates transferred.  I am tech jinxed.

    Hi mtines,
    Welcome to the Support Community!
    Can you please verify that the appointments you are trying to synchronize from your BlackBerry® Curve™ 8520 smartphone are in the calendar that is selected as default in Options > Advanced Options > Default Services?
    You can check this setting as well as which appointments are stored in each calendar by following this KB article. "Using the Calendar application on a BlackBerry smartphone that supports multiple CICAL service books" http://bbry.lv/TXo3MR
    If you have entries in multiple calendars on your BlackBerry® Curve™ 8520 smartphone, you can merge them inot one calendar for synchronization. Please see this KB article for instructions. "How to merge multiple calendars into one calendar on the BlackBerry smartphone" http://bbry.lv/TXoarO
    Hope this helps.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • Population o batch manufacturing date automatically through process mesages

    Hi gurus,
    We sre using control recipe to download data into MES system and uploading data through process message to do the confirmation and goods receipt. We are using batch management and calculating shelf life expiration date at the time of confirmation using manufaturing date + shelf life. Now the issue is, through process message we are not able to populate batch manufacturing date automatically and getting confirmation error after sending the process message to SAP. In process messgae category we are using characterics PPPI_END_DATE,PPPI_EVENT_DATE, PPPI_START_DATE as a date field.
    Can anybody suggest how can we populate batch manufacturing date automatically through process mesages.
    With thanks
    Rajib Pathak

    thanks

  • New data lost

    Hi. Last night, when I connected my new iPhone 5 to my Macbook, I accidentally registered the new iPhone as the old iphone backup. Now, it has all the old data from my old iphone but not the new data since I started using the new iPhone 5. how can I restore the new data?

    choose restore to factory settings in the itunes iphone content menu

  • How do I erase a CD read/write disc on my macbook so I can add new data

    help!
    How do I erase a CD read/write disc on my macbook so I can add new data. If a disc is a RW, I shouldn't i be able to write to it after it already has some data on it?
    I get a screen note saying I can't add anything because something is already on the disc... but it's only one little 3 meg file. But apple i info. shows no room on the cd.
    How can I erase the cd and reuse it? I find no erase command and when I try to drag the file to the trash, i get another note saying i don't have permission... even tho I've check off the permission box.
    sheesh.

    Open Disk Utility, choose the CD on the left side and click "Erase" on the right.
    Matt

  • TS3988 I just bought a Iphone 5 -- my Iphone 4 and my ipad used to automatically sinc calendars via the Icloud whenever I entered anything on either device -- I can not get the new phone to do this.I have  check the settings on both devices and they seem

    I just bought a Iphone 5 -- my Iphone 4 and my ipad used to automatically sinc calendars via the Icloud whenever I entered anything on either device -- I can not get the new phone to do this.I have  check the settings on both devices and they seem to be t

    There are only two things that you must do to connect a device to calendars:
    1)  In settings>icloud, you must log in, WITH THE CORRECT ID/PASSWORD, and
    2)  Turn on calendars on the same page.
    You said that the iphone 4 and ipad **used** to automatically sync.  Do they no long sync?

  • Can I set top site to not add new sites automatically?

    Can I set top site to not add new sites automatically? It is annoying to have to throw out sites I don't want to retain on my startup page.

    Your homepage is set in Safari > Preferences > General
    Everytime you visit a site in your TopSites, that refreshes the page automatically but there might be a workaround for you here >  How to manage Safari's Top Sites | Macworld

  • How can a webpage refresh automatically if some new data has entered the da

    hi,
    How can a webpage refresh automatically if some new data has entered the database.
    with thanks
    jp reddy

    There have been several discussions on related topics. HTTP/HTML is not a "push" protocol and therefore is not well suited for this type of application. I would recommend setting a reasonable refresh rate using a META tag or switching to another technology (i.e. Applets) that can provide a push environment.

  • ITunes can no longer add new apps on my ipad2 and/or stuck on "waiting"

    My iTunes can no longer add new apps to my iPad. On iTunes, it shows as having been downloaded and installed on the iPad whilst on the iPad, it shows the app icon reflected as "Waiting".
    Apps downloaded on the iPad sync correctly to the computer (iTunes) but apps downloaded via iTunes can't sync to the iPad. 
    I  did everything possible, well except for restoring. I'm hoping someone could help me. Please, please, tell me there's another way aside from restoring. Heres a recap of what i did so far. So I rebooted(several times), deleted every app in the multitask and rebooted, restored to original settings, changed my password, changed my payment info, turned off my restriction, turned on my 'automatically sync new apps, etc., finished all incomplete downloads in my pc, synced and still nothing happened, what's so bad is the fact that it's downloading in my pc but not syncing/installing in my iPad2. I'm literally going nuts over this.. PLEASE HELP! Hoping somebody out there have the answer. Pleeeeaaaaseee.. Thanks you so much.  

    You don't download iTunes to the iPod.  You download it to your PC or Mac.  Are you connecting the iPod with the same computer your originally set up the iPod up with?
    What happens when you try to sync your iPod Touch with iTunes?
    Why can't you just redownload the App directly from your iPod Touch?
    B-rock

Maybe you are looking for

  • Why does the Point Stick on Dell Laptops suck so bad?

    I have a Dell Latitude E6540 and a couple 7440's where the mouse will float if I use the pointing stick. I will use it for moving the mouse around and it is constantly moving after I stop. Let's say I want to close a window by clicking on the X. If I

  • Wifi on VPN

    I am at a condo that uses a wifi manager and every unit has their own name and password. My first couple days it worked fine I would open safari and it would have a log in page pop up and I would enter the username and password and be fine. For some

  • MyRIO templates are not showing up

    Hi everyone.  I'm a new myRIO user, and I'm trying to install the myRIO software on my home computer.  My problem is that the templates that I need aren't showing up, and I'm wondering what I need to do to get them installed.   Just to be clear, this

  • Recent update affecting location services

    So my Galaxy S3 did a firmware update two days ago, and now Google maps location services isn't working. Even though I have all location options checked, it still won't find my location, and prompts me to enable said services. Has anyone else noticed

  • Multiple setProperty does not work in 5.1 anymore?

    I have a jsp page with a multiple selection list. In weblogic server 4.51 the multiple selection were set in the bean as string with the selections separated by commas. With weblogic server version 5.1 (sp3) I get only the first selection. I have a t