Is it possible to import data based on filter condition?

HI All,
Is it posisble to import data based on fillter condition? Suppose I have following data
Name,City
A,HYD
B,HYD
C,MUM
D,DEL,
E,DEL
F,HYD
Now I want to import only records where city is HYD, is it possible through import manager?
Thanks
Rajeev

Hi Rajeev,
You can filter records during import if one of the Matching field is of type Lookup.
In your case if you create City as flat lookup table in MDM & maintain lookup values in DM(Just as an example), then you can import only records where city is HYD.
Map Name & City, Then in Match Records tab select both the fields (Combination)
then right click on it & select Filter.. option.
Now new pop up will open where you be able to see ur Lookup table values, from there select HYD and Add
Now in default Import Action, set Create Action for None/None (All other will be skip)
This way you will import only HYD records.
But this is possible only on Lookup fields & not foe Text fields
Hope this will help you
Thanks & Regards,
Mahi

Similar Messages

  • Is it possible to regroup data based on attribute value of a tag?

    is it possible to regroup data based on attribute value of a tag?

    Hi Rajeev,
    You can filter records during import if one of the Matching field is of type Lookup.
    In your case if you create City as flat lookup table in MDM & maintain lookup values in DM(Just as an example), then you can import only records where city is HYD.
    Map Name & City, Then in Match Records tab select both the fields (Combination)
    then right click on it & select Filter.. option.
    Now new pop up will open where you be able to see ur Lookup table values, from there select HYD and Add
    Now in default Import Action, set Create Action for None/None (All other will be skip)
    This way you will import only HYD records.
    But this is possible only on Lookup fields & not foe Text fields
    Hope this will help you
    Thanks & Regards,
    Mahi

  • Is it possible to import data into a Reader Extended PDF created in Livecycle?

    Hi there,
    I make a lot of Reader Extended forms for my company. When I issue form updates, sometimes staff have to re-copy or re-type records into forms with repeating subforms.  I'd like to be able to jumpstart their process by importing from an old, filled-out form, into my new updated form.
    I've found I can do this by making an XML data file of the data from the old form, but I can't import into an Extended from using Adobe Reader. Most of our staff don't have Acrobat, so they aren't able to save data into non-extended forms.
    Is this clear, what I'm asking? Import XML data into Reader Extended form.
    Thanks for any help you can give,
    Laura

    Hi,
    It's indeed possible to import data in a reader enabled form with Reader.
    Here's a sample:
    LiveCycle Blog: XML per Skript in Adobe Reader importieren//Import XML via Script into Adobe Reader

  • Is it possible to import data into Captivate 5?

    Is it possible to import data back into a Captivate 5 lesson, that was  stored to a server or database from earlier in the Captivate 5 lesson?   We would like to redisplay data from one screen to another.  Some if it  is quiz results, some just responses to questions we ask the user and we  sould like to show it again for discussion on the next screen or in an  entirely separate lesson.  Thanks.

    You can easily store data in user variables that will persist for the duration of the user's browser session for a given Captivate lesson.  But if you want to have the same data persist over multiple browser sessions you need to write this data to cookies on the users PC or else write it to a database somewhere online and pull it back from there in later modules.
    The first option using variables is quite easy to do with Advanced Actions.
    The second option using an external database is much more difficult and would require ActionScript programming skills as well as database programming skills for the specific database technology you use and the scripting technologies used to write and retrieve data from it.  If you don't have these skillsets yourself, you're going to need to put together a project with a budget to hire the designers and developers required to pull it off.

  • Is it possible to import data into an existing table?

    Hi.. everyone.
    Is it possible to import data into an existing table
    by using import utility?
    The exported table and the existing table have the same name
    and table schema.
    I want to append "new data(exported from oracle8.0.5)" to
    "an existing partitioned-table" by using "oracle 9i import utility".
    Thanks in advance.
    Have a nice day.
    Ho.

    SQL> select index_name
    2 from user_indexes
    3 where table_name = 'IMPORTPK';
    INDEX_NAME
    SYS_C007610
    SQL> create view importpk_view as select * from importpk;
    View created.
    SQL> disconn
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Pr
    oduction
    With the Partitioning, OLAP and Data Mining options
    SQL> exit
    C:\>exp userid=oracle/oracle tables=importpk
    Export: Release 10.1.0.2.0 - Production on Tue Sep 5 08:30:50 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Produc
    tion
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    . . exporting table IMPORTPK 10 rows exported
    Export terminated successfully without warnings.
    C:\>imp userid=oracle/oracle tables=importpk ignore=y
    Import: Release 10.1.0.2.0 - Production on Tue Sep 5 08:31:12 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Produc
    tion
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.01.00 via conventional path
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    . importing ORACLE's objects into ORACLE
    . . importing table "IMPORTPK"
    IMP-00019: row rejected due to ORACLE error 1
    IMP-00003: ORACLE error 1 encountered
    ORA-00001: unique constraint (ORACLE.SYS_C007610) violated
    Column 1 1
    Import terminated successfully with warnings.
    C:\>sqlplus/nolog
    SQL*Plus: Release 10.1.0.2.0 - Production on Tue Sep 5 08:33:20 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    1.No
    Note : if table content primary key and index.
    SQL> conn oracle/oracle
    Connected.
    SQL> create table withoutcons ( no number);
    Table created.
    SQL> insert into withoutcons select * from importpk;
    10 rows created.
    SQL> create view withoutcons_view as select * from withoutcons;
    View created.
    SQL> disconn
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Pr
    oduction
    With the Partitioning, OLAP and Data Mining options
    SQL> exit
    C:\>exp userid=oracle/oracle tables=withoutcons
    Export: Release 10.1.0.2.0 - Production on Tue Sep 5 08:36:05 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Produc
    tion
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    About to export specified tables via Conventional Path ...
    . . exporting table WITHOUTCONS 10 rows exported
    Export terminated successfully without warnings.
    C:\>imp userid=oracle/oracle tables=withoutcons ignore=y
    Import: Release 10.1.0.2.0 - Production on Tue Sep 5 08:37:17 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Produc
    tion
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.01.00 via conventional path
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    . importing ORACLE's objects into ORACLE
    . . importing table "WITHOUTCONS" 10 rows imported
    Import terminated successfully without warnings.
    2. Yes
    If table content no unique constraints
    Message was edited by:
    user526020

  • Is it possible to import data values to be used in barcode creation?

    I have a list of UPCs in an xml file, and would like to import the data to be converted into barcodes by Designer.  Is this possible?  Could anyone lead me to documentation? Thanks.
    Al

    You can import data from an XML file by creating a new data connection and you'll need to use the Paper Forms barcode. Be aware that use of the paper forms barcode requires LiveCycle Barcoded Forms (separate license required, according to the pop up when I place the field in a form). Once you set the data connection it's just a matter of writing a script to sift through the XML values one at a time to get the barcode.

  • How to hide one block of data based on Filter selections

    Hi,
    I have a requirement where I should show only one block based of filter selections provided at the Query Level.
    How can I achieve that?
    Regards
    Shirley

    Lets say you have a optional filter and you want to show block 1 if value are inserted and block 2 if no value selected.
    For this You can create a variable status =IsPromptAnswered("") it will return 1 if prompt is answered.
    In block property go to the hide if below formula is correct and for block 1 give   status =1 and block 2 give status=0
    I hope this will help.

  • Importing Data based on 2 variables?

    What if I want to do something like this, where I want to input the pay amount in the top table based on what age and league it is.  So it will look in the second table for the correct dollar amount based on the league and age.  If I have ages U14G and U14B can it recognize that both of those are categorized under the U14 pay category?
    This questions is geared towards using 2 variables in one table to determine the correct input from another table.

    Gender does not matter for pay, but it is important for other purposes, so it does need to be included.  You were right on the 14 error, it should be "U14".  That was my mistake.  The "U" just represents "under".  Soccer classifies age groups by how old the players are.  So a U16 team has players age 16 and under.
    I set up what you did above (and adding more pay categories).
    This is what I have:
    I think you added the "-2" in the formula to compensate for the missed age groups?  I didn't see why this was nescessary, so I deleted it in mine above.
    I have:
    K5=MATCH(B5, Table 3 :: $A)
    L5=MATCH(F5,Table 3 :: $1:$1)
    J5=???
    I did what you did for your J3 in my J5, but it didn't work.  The 4 and the 11 are referring to the correct $80 dollar pay value, but I'm not sure how to insert the pay value (into J5) using those values.
    Is there a way to write a formula that does all this in one cell?  I would imagine there would be, but I have no idea how to do it.

  • Need multiple variables to select data based on OR condition not AND condit

    Hello All,
    We have a requirement where we want the user to enter a variable 1X.  Then based on this entry select from the InfoCube to check multiple fields where this value could potentially be.  If we put variables on each characteristic in the query and let them input the same value for each, the system tries to find a record where all characteristics have this value.  Our situation is that we don't know if field1, field2, field3 will have this value.  So an OR condition, not an AND needs to be generated.
    We are stuck.  Has anyone tried this before?
    Thanks!

    You can create 3 restricted Key Figures.
    RKF1 : KF restricted by var1 on Char A
    RKF2 : KF restricted by var2 on Char B
    RKF3 : KF restricted by var3 on Char C
    Make var1, var2 and var3 as ready for input. Don't use variables in Free Characteristic

  • How do i export the table data based on some condition for backup

    Is is syntax correct
    exp scott@orcl92 file=emp_29aug.dmp tables=emp
    query=\"where emp_no in (1,2,3,4) \".
    How do i take the backup of more than one table?
    what is the syntax for that
    Thans

    Thanks for your response
    If i want to add more than one condition in the query, then how do i do that
    exp scott/tiger@orcl file=scott.dmp tables=(emp, dept) query=\"where deptno = 30\" and emp_no in (1,2,3,4);
    how do i do that

  • Filtering View Data Based on Location Value

    Hi,
         I have a mangers view in my list.
    we have some cluster values like this:
    AP/AU/MK
    BD/CO/EN/MV
    BE/CR/LH
    BO/KM/KG
    BP/BU/GR/WC
    DM/KT/WM
       I wrote CAML query for fetching data based on filter condition(i.e. Cluster value)
    <Query>
    <Where>
    <Eq>
    <FieldRef Name="Cluster"/>
    <Value Type="Text">AP/AU/MK</Value>
    </Eq>
    </Where>
    </Query>
       But i getting only "AP/AU/MK" cluster data only.I want manuvally w/o hot coding cluster value.
    Help me.
    Thanks

    Hi,
         I wrote that code in SharePoint designer under <Query>
    Now i am able to filter AP/AU/MK cluster data.Because i hotcode AP/AU/MK cluster in Query.
    <Query>
    <Where>
    <Eq>
    <FieldRef Name="Cluster"/>
    <Value Type="Text">AP/AU/MK</Value>
    </Eq>
    </Where>
    </Query>
        if again i want BE/CR/Lh cluster data.i need to change that query. i don't want like that. we want manuvally
    thanks:

  • Import Data/Populate fields in pdf from Excel

    I'm not sure if I am using the correct terms, but I would like to set up text fields in a pdf that can import data from specific fields in an excel file.  I found the import data form in the properties of the text field, but it will only allow me to select pdf files.  Is it possible to import data an excel file to a text field?  I would like to do the following
    1. create a excel table that includes kids last name, first name, and Grades (Q1, Q2, E1, S1 etc...)
    2. I have a pdf form that already has text fields that correspond to the fields mentioned above.
    3. Set up the pdf to import the data and generate a page for each student.
    I specifically mentioned excel because everyone at my school has excel.  However, it would also work if I could design another pdf with a table that I could import data from.

    Something like this?
    // Import the first row of data from "myData.txt".
    this.importTextData("/c/desktop/myData.txt", 0)
    if (typeof cnt == "undefined") cnt = 0;
    this.importTextData("/c/desktop/textdata.txt", cnt++ % 4)
    // Specify the name of the template
    var template_name = "Student Information Sheet";
    // Get a reference to the template
    var t = getTemplate(template_name);
    // Add a new page based on the template
    if (t !== null) {
        t.spawn({
        nPage: numPages,      // Add the new page to end of document
        bOverlay: false,      // Create a new page, not an overlay
        bRename: true         // Rename the fields
    } else {
       app.alert("The template named \'" + template_name + " does not exist in this document.", 1);
    But how would I tell the new page to take the second row from the chart, and will I have to click the button for each one of the fields in the data?

  • Error while Importing Data in UDO.

    Hello,
    I had created one User defined table with Master Datatype.
    I register this Table and creating Master type of UDO.
    I created template for this UDO throgh DTW.
    I am using Following Filed in the template.
    Code, Name, Field 1 and Field 2.
    While i am importing data using this template through DTW using, i got following error.
    Master Data Type user Table can not add row65171.
    Regards,
    Arpit Shah

    Dear,
    Please see the Note 804685 for information about how to
    import data into user defined tables linked to an object type.
    It is not possible to import data into UDO tables via the DTW.
    Regards
    Apple

  • Importing data to table from excel

    hi,
    Is it possible to import data from excel to an oracle table using a stored procedure?
    database used : Oracle 11g
    Joseph

    Hello Joseph,
    the database (server) usually has no access on your PC (client).
    I recommend that you transfer the file to the server via FTP and then you can use heterogeneous services to read directly from the file.
    If your server is running on Windows too you can use ODBC to connect
    Re: Read CSV/XLS file to insert into Oracle database.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:4406709207206
    http://jiri.wordpress.com/2010/01/04/load-ms-excel-file-to-oracle-database/
    If this does not help you, then please show us your requirements as detailed as possible.
    Regards
    Marcus

  • Import data in After Effects

    hello,
    is it possible to import data from other sources by using scripts in AE? I would like to generate a composition that uses a var "name" that would be taken in a list of names in a database or a source out of AE.
    Thks,

    ExtendScript does have the capability of doing file I/O. It's described in the JavaScipt Tools Guide. From the ExtendScript Editor: Help > JavaScript Tools Guide CS6.
    Dan

Maybe you are looking for

  • Can no longer Burn purchased or private files since upgrade to 7.4.1

    I've read and ran diagnostics - results below. On purchased music I get error 4500 or 4000. I have read several posts where this has happened, HAS ANYONE had this error resolved and How? I can't live like this!!! All this since I upgraded!!! Bloody A

  • Mouse hover doesn't show URL since I installed Firefox 4.0

    Since I installed Firefox 4.0, when I hover the mouse over a link I don't see the URL anymore. All I see is a small empty white box under the pointer. I've tried uninstalling FF4, installing the older version, disabling hardware acceleration, and sev

  • "JVM heartbeat .. dead" in trace file - how to diagnose it?

    One of our customers reported, that Java applet hosted on our website (running in Java Plug-In 1.6.0 update 23, Mozilla Firefox 3.6.13) seems to terminate in the same situation each time. This is a signed applet, which is about to estabilish a HTTPS

  • Can't get Ringtones Icon to display in iTunes

    I've got iTunes 7.5 but despite following the View -> View Options Instructions to select the Ringtone Icon, it's not even there to select? Help please! Any advice gratefully received. Thanks

  • IPhone 4 - Text distribution lists?

    Hi all First post on here, and apologies if this has already been discussed but can't find it anywhere. Any idea if the iPhone 4 enables users to create text distribution lists? I've seen the comments regarding how to get around the problem for the 3