How to enclude multip item type in impdp

Hi Experts,
I try to impdp a dump file with error.
Based on message I need to exclude one table and all table contraint and index in export dump file.
Does my option works as
EXCLUDE=TABLE:'sale',CONSTRAINT, INDEX
it does not work.
my source database as 10.2.0.4 in 64 bit linux and target DB is 32 bit 10.2.0.4
Thanks for help!!
JIm

Hi,
I think you have a couple of parameters confused.
When you use the exclude or include parameter and you want to supply a list of objects to include or exclude, the objects need to be in the form of an expression. "in ('TABLEA', 'TABLEB')" OR "= 'TABLEA'" OR "like 'TABLE%'".
When you are specifying a table mode import you can just supply the list: tables=table1,table2
So, since you are using the exclude filter, you need to express the objects as an expression.
Dean

Similar Messages

  • How to change a item type dynamically?

    Is it possible to change a item type dynamically?
    For example.
    I've got a page with 2 items. The first is a select list and the second is a date picker. The select list contains two values, 1 and 2.
    If value 1 is selected the second item needs to remain a date picker. If value 2 is selected the second item needs to become a Text Field (disabled saves state).
    Anyone got an idea?
    Thx. Frank.

    Frank,
    It's not possible to change the item type dynamically as you describe it below. However, to achieve a similar effect you could do the following:
    1) Make the Select List a Select List With Submit.
    2) Have a Date Picker AND a Text Field on the page.
    3) Make the display of the Date Picker item conditional on the relevant value having been chosen from the Select List.
    4) Make the display of the Text Item conditional on the other value having been chosen from the Select List.
    Andy
    http://atulley.wordpress.com/

  • Item  Type and Service Type in Sales Order

    Hi All,
    How do i enter Item Type and Service Type in single sales order..?
    Any suggestion please...

    Hi
    If you select the Item type you have choose the list of Items else  it is service type you can give service description and choose belongs to G/L Acc.
    Or You can create a service as a Item with Item group as Service.
    Hope it helps you.
    By
    Kalai

  • Delete item type definition

    Hi,
    Can someone please tell me how to delete an item type definition from database (including the history of it)? Is there a script?
    Thanks
    CL

    Oracle Workflow provides a script to delete the item type definition including its history. It completely wipes out the workflow without even a trace of it. Please note that this script is STRICTLY NOT ALLOWED ON PRODUCTION whatsoever without approval from Oracle Support.
    Please find the script $FND_TOP/sql/wfrmitt.sql in Oracle Apps and $ORACLE_HOME/wf/admin/sql/wfrmitt.sql in Oracle Workflow Standalone.
    Once again, this script wipes off the workflow without a trace and you should not use this in PROD.
    Thanks
    Vijay

  • How to set the default value of an item type DATE PICKER to the day of yest

    Hi
    How to set the default value of an item type DATE PICKER to the day of yesterday ?
    Thank you very much !
    Christian.

    Hi Christian,
    Have a look at this thread Re: Default the Date Picker to Today
    It covers this issue in detail.
    Regards
    Paul

  • How to print #ITEM.TYPE# DISPLAYNAME in an html/dynamicpage portlet.

    Hi, I want to print the item type displayname. The available placeholder is #ITEM.TYPE# but it prints the NAME column in
    WWSBR_ITEM_TYPES. I want the DISPLAY_NAME column that makes more sense IMHO. Any ideas?
    And if this can't be done, any idea how to get the current item id in PLSQL and try to find it with a custom query?
    Thanks

    This piece of code does the job, OK!
    <oracle>
    begin
    for c2 in (
    select name, display_name, language from portal.WWSBR_ITEM_TYPES where name= '#item.type#' and caid = '#item.pagegroupid#' and language='el'
    loop
    htp.p(c2.display_name);
    htp.br;
    end loop;
    end;
    </oracle>

  • Discoverer item type - how to apply style

    Hi.
    On OracleAS 10.0.04, we have links to disco portal & viewer (added an item, chose Discoverer as item type, and typed "viewer" / "plus" in the DiscoItem section).
    These to links does not seem to change according to style changes - always the same font (Time new roman), same size and same color.
    How can we modify this?
    Thanks,
    Dovi.

    This is by no means a good technique for this problem but it
    could work.
    If you can leave a space beween the list item and the anchor
    this will give you a selectable region.
    Then write a JS function which looks through the document on
    page load and removes any spaces at the beginning of li nodes.
    As I said it ain't pretty and you'd best try to alter your
    style sheet to work around your problem, but the above would work
    if you have no other options.

  • How to create a notification mailer that handles only some of Item Types

    Hi All,
    we are currently try to create another notification mailer to handle ONLY some of the workflows.
    I have been browsing the internet (oracle site and none) as well as looking for an answer here but I was unable to find a solution/detailed documentation.
    The only reference I was able to find is in the Oracle Workflow Admin's Guide where it's written "you can create a notification mailer that processes only messages that belong to a particular workflow item type" but it does not explain how.
    Can anyone help me?
    Thank You, Pier Paolo.

    You may use Correlation ID parameter of the mailer to specify the Itemtype that your mailer should process. This information should be available in the Workflow Admin Guide or Oracle Apps Admin Guide.

  • How to write a query on a component-item-type properties

    hi
    For the following sample repository definition file.
    <item descriptor name ="student" idcolumn="id">
    <property name="name" data-type="string"/>
    <property name="department" component-item-type="department" data-type="list" />
    </item descriptor>
    <item descriptor name ="department">
    <property name="name" type="string"/>
    <property name="HOD" data-type="string" />
    </item descriptor>
    If I get a view of the student Itemdescriptor and will I be able to query on the department item descriptor in the same rql ?

    Nitin,
    Thanks for the mail.
    I am getting below error.
    Attempt to create a sub-property query expression for the property: "department", which is not a RepositoryItem. Only properties that are RepositoryItems can have sub-properties.*
    atg.repository.RepositoryException: Attempt to create a sub-property query expression for the property: "department", which is not a RepositoryItem. Only properties that are RepositoryItems can have sub-properties
    For more clarity PFB how the ItemDescriptor looks like
    <item-descriptor name="student" display-property="displayName">
    <property name="isActive" data-type="boolean" default="false"/>
    <table name="student" type="auxiliary" id-column-names="student_ID">
    <property name="studentId" display-name="student" column-name="student_id" data-type="string" required="true"/>
    </table>
    <table name="student_department" type="multi" id-column-name="student_ID" multi-column-name="sequence_id">
    <property name="department" display-name="department" column-name="department_id" data-type="list" component-item-type="departmentl" />
    </table>
    </item-descriptor>
    <item-descriptor name="department" super-type="superDepartment" sub-type-value="department" display-property="name" display-name="departmentname">
    <table name="department" type="auxiliary" id-column-name="department_id">
    <property category="Basics" name="location" data-type="int" column-name="location" display-name="Location" required="true" default="1">
    <attribute name="propertySortPriority" value="-5"/>
    </property>
    <property category="Basics" name="name" display-name="name" column-name="name" data-type="String" />
    <property category="Basics" name="HOD" display-name="HOD" column-name="HOD" data-type="String"/>
    </table>
    </item-descriptor>
    Thanks
    Shobby

  • How to find the UWL work item types source system?

    Hi Gurus,
    How to find the Universal Work List work item types source system?
    Thanks in Advance,
    Dharani

    Hi Dharani,
    You can achieve this by personalizing the view for UWL.
    Click on right side context menu of iView, click on personalize view
    Here you will get list of Available Attributes not Displayed select System ID in that.
    Save your settings and now you can see the task is from which system.
    This will solve your problem.
    Regards
    Kedar Kulkarni
    Reward points if useful

  • How to get po item condition type according schema group

    hi experts,
    i want to get po item condition type according schema group.
    for example, in xk03, if the "schema group, vendor"in purchasing data view is set to 'Z3', in the purchase order which is made for this vendor, the po item's gross price condition type is hwxx.
    if the "schema group, vendor" is set to 'Z2', the po item's gross price condition type is pbxx.
    my question is : how to get po item condition type according schema group?
    hunger for ur advice and thanks a lot!

    several steps you need to go
    1. you need to get the purcahsing group schema against your purchasing group from table T024E.
    2. get the vendor group schema from vendor master data table LFxxxxxx
    3. get the pricing schema from table TMKS via the selection criteria purchasing group schema and vendor group schema
    4. go to the table T683S via inputing Usage, application and pricing determination procedure.
    5. now you got it.

  • How to know item type in a .fmt???

    My problem is that I don't know item type when I read a .fmt
    Please, Help Me.
    Thank You

    The FMT format is not designed to be readable - use the Forms Object list report instead. If you are trying to make changes by changing the FMT, this is not supported. Look at the Forms C api in 6i and 9i or the Java API (JDAPI) in 9i to do this kind of operation.

  • How can I display custom item type icon?

    portal 10.1.4
    when I try to show the icon of a custom item type, there is no way to show the type of the uploaded archive. Anybody?
    Thanks in advance

    Yup, possible using system variables that can track time and conditional advanced actions.

  • How to not select an invoice if a certain line item type is present?

    Hi,
    I've created a report that lists all invoices that have a particular line item type on it.  For example, I wanted to produce a revenue report by item type, "P-Tank". So, the invoice table links to the invoice line items table. Each line item record has a "resource id" on it. The resource id links to the resource type table. So, if invoice #8 has, say, three line items and one of them has a resource type of "P-Tank" then I report on it.  Basically, I'm making a report grouped by Resource ID and the Resource ID must by of Resource Type 1, 2 or 3.  So, this report I've solved.
    Now, I want to report on those invoices that do not have either a resource type 1, 2 or 3 item on it.  If I use a formula:
    "Not ({resource_type.resource_type_id} in [1, 2, 3]) that doesn't work because it just omits the line item that is of resource type 1, 2 or 3....but still leaves the invoice on the report with the other line item types. * I want to identify any and all invoices that do not have either a line item resource type 1, 2, or 3 on it.*
    Any help is much appreciated!
    thx,
    Mark

    Hi Abhilash,
    That didn't seem towork.  I'll simplify the example to see if we can find the answer easier this way.
    I'm using two tables: invoice; and invoice_items
    An invoice can have many items on it.
    I don't want my query to select any invoices that have a Tank item on it (Tank has a resource id = 8).
    So, I'll join the invoice table to the invoice_items table:
    invoice.invoice_id = invoice_items.invoice_id.
    The result set looks like the following:
    Invoice #        Invoice Item #     Invoice Resource ID
    22                              1                               8
    22                              2                               9
    23                              1                               5
    So, because Invoice #22 has a line item with resource id = 8 on it I do not want Invoice #22 to appear on the report at all, regardless of what other items and resource id's are on it.
    I have tried joining the two tables in every manner (e.g. inner, outer, not enforced, enforced, etc) and even when I put the condition, invoice_items.resource_id <> 8, it still brings up Invoice #22 but just omits the one line item and leaves the record with resource id 9 (in the example above).  I don't want Invoice #22 to appear at all in the report.
    Does that help clarify the problem?
    thx,
    Mark

  • How to default Valuation class from Item Type

    Hi,
    Is there a way to assign Valuation class to Item type, so that when a new material is created is created with a certain Item type, automatically the system pics the aluation class?

    Hi,
    Account can be defaulted from Account Assignment Category, not from Item category (if this is what you were asking?)
    In the case of items with account assignment with a material master record, the valuation class from the accounting view is used.
    In the case of items with account assignment without a material master record, the valuation class of the material group (see following graphic) or the valuation class ' ' is used.
    Hope this helps!!
    Reetesh

Maybe you are looking for

  • Why can I no longer open images with Photoshop CS3, running on Mac OS 10.4.11?

    Why can I no longer open images with Photoshop CS3, running on Mac OS 10.4.11?

  • Use of DBX and shared libraries with SparcWORKS 5.0

    We've been trying without much success to debug customer core files using SparcWORKS 5.0 on Solaris 7. Regardless of what we try (including recommended 'fixes' or 'workarounds' we get this message; <pre> core file header read successfully Reading ld.

  • Transfer messages in nokia suite to another comput...

    Hi, would anyone please tell me if it is possible to transfer all the SMSes stored in nokia suite into another computer, via an external hard disk. if it is not possible, is there any other way to do it? thank you! Solved! Go to Solution.

  • Java DB like logging via oracle auditing?

    Please help me, i'm new to oracle and don't know how to achive my goal. In derby my log files presents me all the information i need for researching purposes. The same can be achived via auditing in oracle i guess. So my starting point is: I activate

  • Storing PDF and JPEG docs in SAP

    Hi Friends, I need to store PDF and JPEG docs into SAP system from either Application server or external server. This storing will be done in background. How do  i store them and retrieve to show them in say in a report. Any help in this regard is hi