Api or open interface for ABC class

Hi All,
Is ther any api or open interface available for mass updating items with new ABC class ?
Regards,
Sam

There is no api. So recently, I had to use the following unsupported way to achieve this.
There are no other relationships for this table so you can do a straight insert.
insert into MTL_ABC_ASSIGNMENTS
(select v.inventory_item_id, g.assignment_group_id,c.abc_class_id,sysdate,11531,sysdate,11531,null,null,null,null
from MTL_ABC_ASSIGNMENTS_V v,MTL_ABC_ASSIGNMENT_GROUPS g, MTL_ABC_ASSGN_GROUP_CLASSES_V c
where v.ASSIGNMENT_GROUP_NAME = 'OLD GROUP'
and g.assignment_group_name='NEW GROUP'
and c.abc_class_name= substr(v.abc_class_name,1,1) -- the new group is the first character of the old group
and g.assignment_group_id = c.assignment_group_id
--and inventory_item_id!=18895
Hope this helps,
Sandeep Gandhi

Similar Messages

  • Is there an API or Open Interface to convert Price Lists?

    Hi,
    Is there an API or Open Interface to convert Price Lists?
    What are the additional setups needed to do implement Price Lists ?
    Im new to Advnaced Pricing and Order Managment.
    Thanks and Regards,
    MPH

    There is the Price List Setup API (QP_Price_List_PUB.Process_Price_List) which you'll find details for in the Order Management APIs manual and the Price List Bulk Loader which is detailed in the QP user guide plus there's lots of good info and example scripts on My Oracle Support.
    Apart from qualifying your price list header as per your business requirement (in other words, restricting its use to particular OUs, customers, products, order types etc.), in the simplest case the price list itself can be just a simple list of discrete items with their associated prices. However, you may also need to consider:
    <li> Multicurrency - do you want to have multiple price lists, one for each currency, or one price list in a base currency with multicurrency conversions in the background? (the latter being much the easiest to maintain).
    <li> Is your business requirement best served by pricing by discrete inventory item codes? by item categories? by pricing attributes? (this being the mapping of some properties of your data to a named pricing attribute, the value being collected from a lookup, entered at order entry, or derived via custom PL/SQL),
    <li> Consider using secondary price lists if this allows your pricing information to be structured better
    <li> Do you intend to enter a fixed value against each price list line or to calculate a price by way of a dynamic or static formula?
    Regards,
    Jon

  • How to create new cost groups in inventory org using API or open interface?

    Hi,
    I would be very kind of you if you can provide me with a solution to my question below.
    I have a requirement of copying all the cost groups from one inventory org and creating the same cost groups in another inventory org using programmatically. Is there any API or Open interface that can be used to create the cost groups in the new inventory organization? If not can you suggest any other way of fulfilling this requirement?
    I would highly appreciate your help.
    Thanks,
    Ranajit

    hi,
    think, it's not possible.
    look here:
    http://help.sap.com/saphelp_47x200/helpdata/en/4f/71e05a448011d189f00000e81ddfac/frameset.htm
    "The field groups and their respective fields are defined in system tables"
    kind regards
    Andreas

  • Is there any API or Open Interface to import Trading Partners?

    Hi,
    Is there any API or Open Interface to import Trading Partners?
    Thanks in advance.

    Hi user;
    Please check:
    http://www.oracleappsblog.com/index.php?ACT=33&fid=27&aid=54_xNjHKqlfFIZZQjy1iytr&board_id=1
    http://download.oracle.com/docs/cd/A60725_05/html/comnls/us/ec/import.htm
    http://download.oracle.com/docs/cd/A60725_05/html/comnls/us/ec/tp.htm
    http://www.scribd.com/doc/3186838/Oracle-Apps-Payable
    Hope one of them could helps u
    Regard
    Helios

  • Open interface for physical stock counts

    Dear All,
    I need to know whether there are any open interface available for physical stock counts.
    Version 11.5.10.2
    Regards,
    MPH

    Hi MPH
    The Cycle Count API is a public API & it takes a cycle count interface row that has been passed through the p_interface_rec parameter and processes it based on the values of the parameter fields. The Cycle Count API includes the public procedure import_countrequest.
    Cycle count API Parameters are as below
    p_api_version_number
    p_init_msg_list
    p_commit
    p_validation_level
    x_return_status
    x_msg_countx_msg_data
    p_interface_rec
    Hope this will help.
    Regards,
    S.P DASH

  • Open interface for creating/updating orgs

    Is there an open interface/API for creating and/or updating organizations representing plants/distribution centers/warehouses etc in EBS?? If not is there any way to load such information beside the UI.

    Have a look at the Human Resources product on iRep. There ara API's for organizations and i thing classification also.

  • Open Interface for Approved Supplier Lists and Sourcing Rules

    Hi All,
    Is there an open interface or an API available for Appeoved Supplier Lists and Sourcing Rules.
    Thanks and Regards,
    MPH

    Hi sandeep,
    I prefer to use the API mentioned.
    However this is in Oracle Manufactirung and we dont use that module instead I want to define them in Oracle Purchasing.
    can I still do it in Purchasing using the same API.
    Further as per the document there are 3 entities
    01) Sourcing Rule/Bill of Distribution
    02) Receiving Organization
    03) Shipping Organization
    Do I need to define all 3 in order to make it work?
    Thanks and Regards,
    MPH

  • ALE interface for Sposnored Class in grants management

    Hi All,
    Is there any standard interface (ALE/IDOC/PROXY) provided by SAP for sponsored class in Grants Management module.
    Thanks,
    Swapnil Pawar

    Swapnil,
    Please see the Function Module GM_SPONSORED_CLASS_CREATE and determine if it works for you.
    Thanks
    Shyam

  • Creating an Interface for a class: error

    Hi there,
    I'm new to Java as you'll see from the question.
    I created a class "Bicycle" and then went on to create an interface for it "InterBicycle" only I get the following error:
    bad class file: C:\Documents and Settings\Melanie\Bicycle\src\bicycle\InterBicycle.java
    file does not contain class bicycle.InterBicycle
    I checked in the bicycle folder and the "InterBicycle.java" file is there.
    Does anyone know where I am going wrong?
    Butterfly82

    Hey, thank you for that petes.
    Silly mistake on my part, I was just reading about Inheritance and then went on to reading about Interfaces.
    Changing this I came up with another error for each of the methods implemented by Bicycle.java:
    C:\... applyBreaks(int) in bicycle.Bicycle cannot implement applyBreaks(int) in bicycle.InterBicycle; attempting to assign weaker access privileges; was public
    Here is the code I have (Taken from The java Tutorial):
    package bicycle;
    class Bicycle implements InterBicycle {
        int cadence = 0;
        int speed = 0;
        int gear = 1;
        void changeCadence(int newValue) {
            cadence = newValue;
        void changeGear(int newValue) {
            gear = newValue;
        void speedUp(int increment) {
            speed = speed + increment;
        void applyBreaks(int decrement) {
            speed = speed - decrement;
        void printStates() {
            System.out.println("Cadence: " +cadence+ " Speed: " +speed+ " Gear: " +gear);
    package bicycle;
    interface InterBicycle {
        // List of the methods that the Bicycle class holds/implements
        void changeCadence(int newValue);
        void changeGear(int newValue);
        void speedUp(int increment);
        void applyBreaks(int decrement);
    }

  • Automation interface for specified class cannot be obtained

    I am trying to use a TestStand UI Expression Edit Control in LabVIEW to undertake an Expression.Evaluation, but I feel I must be missing something. I have a TestStand UI ExpressionEdit Control on the LabVIEW front panel, and when i try to evaluate it, or anything else (properties or methods) for that matter, the error is always the same:
    "Automation Interface for the specified class cannot be obtained. Check if the automation refnum type is the correct class for this operation" Error Code 3008; User defined error code.
    Any help tips or pointers would be appreciated.

    Hi
    To help resolve this issue can you post the VI which gives you this error.
    Regards
    Anand Jain
    National Instruments.

  • Open Interface for OM to Contracts in R12

    Hi,
    I am facing an issue regarding with OM to Contracts interface, in R12 Warranty contracts are created with standard coverage and having no line for coverage in table OKC_K_LINES_B. Can anyone let me know how we can insert the actaul coverage line into table OKC_K_LINES_B.
    Thanks,,,
    Parminder S.

    As far as I know there is no interface for it.
    Check if you can use EGO_ITEM_AML_PUB.Implement_AML_Changes.
    If that does not work, you can do a straight insert into the MTL_MFG_PART_NUMBERS
    The main columns are manufacturer_id , organization_id, inventory_item_id , and mfg_part_num.
    Oracle validates only the first 3. And it does not allow duplicates of the first 4 columns.
    Hope this helps,
    Sandeep Gandhi

  • Using Receiving Open Interface for DELIVER Trans after RECEIVE trans

    I am currently using the ROI to import RECEIVE transactions and create the header receipt for POs. I now want to use the ROI to import the DELIVER piece of the exisitng receipt. Has anyone done this before? I thought I could reference the transaction_id and header_interface_id of the RECEIVE transaction, but the DELIVER transaction fails to import. This is for Standard Receipts as we don't use Direct Delivery. Any help is appreciated. Thanks!

    You need to refer SHIPMENT_HEADER_ID and SHIPMENT_LINE_ID of the Receipt that you have created earlier.
    Thanks,
    PS.
    user3977462 wrote:
    I am currently using the ROI to import RECEIVE transactions and create the header receipt for POs. I now want to use the ROI to import the DELIVER piece of the exisitng receipt. Has anyone done this before? I thought I could reference the transaction_id and header_interface_id of the RECEIVE transaction, but the DELIVER transaction fails to import. This is for Standard Receipts as we don't use Direct Delivery. Any help is appreciated. Thanks!

  • APIS FOR RECEIVING OPEN INTERFACE

    Hi all,
    Can any one help me regarding APIS for receiving open interface for ASN(Advanc shipment notice)
    regards
    SREE

    For 11i, all public APIs are listed at http://irep.oracle.com
    For R12, use the Integration Responsibility responsibility to look up the APIs
    HTH
    Srini

  • Importing outside of API / Open Interface supported?  Partial Workflow ?

    Hi there
    I've been asked to find out if importing data not using the API or Open API is supported by Oracle?
    There is a proposal to import orders into Order Management from a legacy database. Some of these orders may be partially through the workflow chain.
    As far as I can see, Oracle doesnt provide an API to import Orders which are part the way through the workflow, so if we were to import them, it would have to be custom code.
    I want to know if this is supported or doable (I'm hoping not!)
    Thanks
    Scott

    Hi;
    Please check below notes which could be helpful for your issue:
    How To Import Orders With Skipped Lines Using Process_Order API [ID 746172.1]
    Where Can I Find a List of APIs Supported by Data Pump? [ID 759150.1]
    Oracle Order Management Suite White Papers [ID 113492.1]
    Also check:
    Order Import and Prerequisites for order Import
    http://oracleebusinesssuite.wordpress.com/2007/11/07/order-import-and-prerequisites-for-order-import/
    Oracle Order Management APIs and Open Interfaces Manual, Volume 1
    download.oracle.com/docs/cd/A91130_01/acrobat/115omapi.pdf
    Regard
    Helios

  • Open Interface Table for iExpense Template

    Where can I find the table name of the Open Interface for uploading master records of GL, AR, AP, FA? I can only find the name to upload journal entries and AR, AP Invoice. Can someone advise me where can I find the open interface tables list for master records?
    In particular, I would like to upload the Expense Item Template for Internet Expense of AP. I want to update the items by SQL Loader. (not the entries or transactions but master records of existing item code in the Expense template)
    Thank you very much.

    Hi;
    Please review:
    Oracle Trading Community Architecture User Guide
    Regard
    Helios

Maybe you are looking for