Is there APIs for Oracle Quality Module - Collection Plan, Specifications ?

We are converting Collection Plan, Specifications etc and was wondering whether there exists API?
Thanks

I have found packages to create Collection Plans (QA_PLANS_PUB) and Specifications (QA_SPECS_PUB). Both allow you to add elements to the Plan or Spec.
However, both assume that the Collection Element already exists so that it can be added to the Plan or Spec. And I can't find an API or package to create the Collection Elements. Does such a package exist?

Similar Messages

  • Oracle Quality Module - Collection Plan name

    The collection Plan name field in Orcale quality module - collection plan form (QLTPLMDF) does not accept special characters. Why is this so and what is the rationale behind this?
    Here is the wording from Oracle Quality user Manual
    Collection plan names can include alphanumeric characters and spaces. Collection
    plan names can have up to 30 characters, and the first 25 characters must be
    distinctive. The only special characters that can be included in a collection plan name
    are the underscore (_) and the single quotation mark (’). any special
    I am working with a customer who wants to use decimals (Example: 35.24.101) so that search will be easier. Some screens does not allow searching by description so need to have these in the collection name/code
    Any solution you can think of?
    Thanks

    Hi,
    When you create the collection Plan , actually you are creating the name of the table with required column names as collection elements in the data base.
    This is the reason you are not allowed to do so as per your query.
    thanks,
    Raja

  • Traning for oracle sales module

    can any one guide me for traning in oracle sales module in hyderabad , i am having 4+ yrs. of exp. in sales and marketing working with Havells' India Ltd. cousumer goods company. and completed traning in financials11i
    plz. help me out

    The short answer is very soon.
    Please contact me at rohit.x.agarwal at oracle.com with your project details and we can discuss in detail.
    Regards
    Rohit

  • Grants for non-apps user to view APIs in oracle application module browser

    Hi,
    Im trying to make a connection with E-Business Suite using the Oracle Applications Adapter and the Enterprise Service Bus. I follow all the steps for creating the connection pools, connection data sources and connection factories using the standar apps user. After setting up the environment I can drag the oracle applications adapter to a ESB project and choose from all the modules available the especific functionality I want.
    The problem comes when I try to use a user different from apps. When I try to set the connection with other user no E-Business Suite modules are display in the Adapter wizard.
    Are there any specific privileges I should set up to this database user (non-apps) to give him acces to API, XML Gateways, Tables/views,Business Events, etc??.

    Could you let me know the procedure/steps to assign privileges and/or responsibilities for new oracle apps userI understand this is for an application user.
    when I am trying to import a journalAgain, you have to run this as an application user.
    Same import is working fine with default Oracle applications 11i "APPS" user.APPS is a database user (NOT an application user). So, the Application user you want to create and assign him responsibilities has nothing to do with the database user. If you assign the same responsibilities which the other user has (the one which you use to import journals) to the new application user, then you should be able to do the task successfully.

  • Jdbc oci interface and xdb API for oracle 9.2.0.7

    I have a Java application that uses the jdbc oci interface to connect to an Oracle database and insert some XML into an XMLType column using the XDB APIs provided in xdb.jar.
    OS : IBM AIX version 5.1
    JVM : IBM 32-bit SDK pour AIX, Java 2 Technology Edition, version 1.4.2
    libraries used :
    ojdbc14.jar
    nls_charset12.jar
    xdb.jar
    xmlparserv2.jar
    libocijdbc9.so
    with Oracle 9.2.0.1 the application worked correctly. However we have just upgraded from Oracle 9.2.0.1 to Oracle 9.2.0.7 and now the JVM crashes when the XMLType.createXML(java.sql.Connection, java.lang.String) API is called. The error message is :
    JVMDG217: Dump Handler is Processing Signal 11 - Please Wait.
    JVMDG303: JVM Requesting Java core file
    JVMDG304: Java core file written to /<snip>/javacore2375690.1152115549.txt
    JVMDG215: Dump Handler has Processed Exception Signal 11.
    start.shl: 2375690 Segmentation fault(coredump)
    In the javacore file we find the lines :
    1XHSIGRECV SIGSEGV received at 0xdd7b7d6c in /<snip>/libocijdbc9.so. Processing terminated.
    ... <snip> ...
    "Thread-2" (TID:0x3030B4D8, sys_thread_t:0x75A8B128, state:R, native ID:0xA0C) prio=5
    4XESTACKTRACE at oracle.xdb.XMLType.createXMLTypeFromStringNative(Native Method)
    4XESTACKTRACE at oracle.xdb.XMLType.<init>(XMLType.java:518)
    4XESTACKTRACE at oracle.xdb.XMLType.createXML(XMLType.java:593)
    Does anyone have any ideas? Changing the version from 9.2.0.7 is not an option.
    Thanks,
    Dave Gosling.

    The 9.2.0.5 patchset, and all patchsets, are available for download from Metalink.
    There should be a rather large variety of JDBC drivers that will connect to an 9.2.0.5 database if that's what you're asking about.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • View for Oracle Payroll Module

    I am working on a drilldown Report where by I need to generate ALL detailed transaction for a particular period.
    I found some views useful for some modules like XLA_AR_INV_AEL_GL_V,XLA_AR_INV_AEL_GL_V a,XLA_AR_REC_AEL_SL_V etc .
    I am not able to locate the view for PAYROLL transactions. Please can any one help me with this ? It is very URGENT.
    Thank You.

    Okay, so you're looking for actual amounts paid - which means run results or balances.
    You won't find any such view for payroll because the question is a bit like asking for a "List of names." Names of what? People, countries, restaurants? List where? Local, globally, other criteria?
    Payroll just isn't that simple and you'll find that there are a whole bunch of functional questions you'll need to answer before you can get the right results:
    1. What types of payroll actions should be included (regular, supplementary, retro etc)
    2. What types of elements and input values are needed
    3. Do you only want elements and values that feed certain balances (such as those that might feed gross taxable pay)
    4. Blah blah
    Here is a very lame SQL query that gets all monetary run result values for all active employees:
    SELECT papf.full_name
    ,papf.employee_number
    ,papf.email_address
    ,ppa.date_earned pay_period
    ,ppa.action_type
    ,ppa.action_status
    ,pet.element_name
    ,piv.name input_name
    ,piv.uom
    ,rrv.result_value pay_result
    FROM per_all_people_f papf
    ,per_all_assignments_f paaf
    ,pay_element_types_f pet
    ,pay_input_values_f piv
    ,pay_assignment_actions paa
    ,pay_payroll_actions ppa
    ,pay_run_results rr
    ,pay_run_result_values rrv
    WHERE papf.person_id = paaf.person_id
    AND nvl(papf.current_employee_flag, 'N') = 'Y'
    AND paaf.assignment_type = 'E'
    AND paaf.assignment_id = paa.assignment_id
    AND paa.payroll_action_id = ppa.payroll_action_id
    AND paa.assignment_action_id = rr.assignment_action_id
    AND rr.element_type_id = pet.element_type_id
    AND rr.run_result_id = rrv.run_result_id
    AND rrv.result_value IS NOT NULL
    AND rrv.input_value_id = piv.input_value_id
    AND piv.uom = 'M'
    AND piv.element_type_id = pet.element_type_id
    AND trunc(sysdate) BETWEEN
    papf.effective_start_date AND papf.effective_end_date
    AND trunc(sysdate) BETWEEN
    paaf.effective_start_date AND paaf.effective_end_date
    AND trunc(sysdate) BETWEEN
    pet.effective_start_date AND pet.effective_end_date
    AND trunc(sysdate) BETWEEN
    piv.effective_start_date AND piv.effective_end_date
    ORDER BY papf.full_name, ppa.date_earned;
    It touches many of the tables you might be interested in but any payroll expert will be able to point out it's numerous flaws (eg, it doesn't exclude certain payroll action types, or exclude errored actions). Don't expect this SQL to be fast (if it finishes at all!) - it hits some of the biggest tables across EBS. You'll want to filter on Employee Number or something like that to play around.

  • Is there support for the Statechart Module 1.0.1 for MacOS X?

    I need to use the Statechart Toolkit but I can't seem to find if there is support for it on the MacOS platform. Can someone tell me a definitive yes or no on this???
    Just as a sidebar: it's very disconcerting to see the lack of support for MacOS. Yes, I know Windoze is ubiquitous, but there are some of us who use a Mac in our daily work and this "half-support" is getting to be problematic. Either FULLY support the platform or don't! Sorry...rant over.
    Thanks for your assistance!
    Michael

    The predecessor to the Statechart Module was the State Diagram Toolkit. Its not as powerful as the Statechart Module, but it appears that it is(or was) available for the Mac and PC. You might contact your sales rep and ask if the State Diagram Toolkit is available for Mac users...
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Issue in notification API for oracle workflow

    Hi,
    I am facing issue in sending oracle workflow notification. i have created a simple workflow with a process.
    I wrote one package which is creating adhoc role and sending the notification through api I(wf_notification.send).
    I am able to get the notification as well as email notification but without attribute values. My workflow attributes are getting replaced by null, but message body is appearing.
    Please help me, its urgent.
    Thanks
    Rajni

    I doubt that Oracle 7 DB is not supported. You may consider raising a SR with support.
    Regards,
    Anuj

  • AME Line Level Approval -- Oracle Quality

    Hi All,
    In Oracle Quality module I have create one parent plan and a child plan is associated with it. After multiple lines are entered in the child plan (Approver details is stored as one of the collection result in this plan) and later when the parent plan is saved, line level AME approval based on the approvers in the child plan should initiated. The final e-signature status should be at the header level, such that once all the lines have been approved i.e. parallely approved, the header record status should change to "APPROVED".
    I had tried the header level approval approach, but in this case the approval flow for approvers could be done, but the only issue is that it was done serially.
    Is there a way to achieve this in AME? Kindly help.
    Thanks.

    Apologies for the late response, have only just spotted the question.
    You will need to register "line-item job-level chains of approval" under payables transaction type before you can select it from the picklist:
    Setup\Action Types\"Use Existing Action Type" button, then select action type and continue.
    Hope this helps (if you haven't already resolved yourself)
    James

  • Multiple Receiving Quality Collection Plans

    I am trying to setup collection plans to capture results when receiving a PO. I am able to see only 1 collection plan and i don't see my new collection plan, is there any profile option or setup to enable multiple receiving collection plans ?
    Thanks,
    Aarti

    Hi,
    We have an OPM template ( TEMPLATE OPM RECEIVING INSPECT ) from which you have to build your own collection plan.
    I have some old notes from the past which I will share with you here.
    RECEIVING INSPECTION AND OPM QUALITY AND COLLECTION PLAN ERROR DEBUGGING INFORMATION
         Steps Required Prior to Executing Test
    1.     In Oracle Quality, new Quality collection elements and collection plan have been seeded.
    2.     In Oracle Inventory, item is Process Quality enabled.
    3.     In OPM Quality System Parameters, set Lot Optional to Yes and Delayed Lot Entry to No.
    4.     In OPM Quality, optionally set up an OPM sampling plan for incoming inspection.
    5.     In OPM Quality, create an approved item specification and a supplier specification validity rule associated with the sampling plan.
    6.     a) In Oracle Quality, create a collection plan (e.g. call it OPM RECEIVING INSPECTION and copy elements from the seeded collection plan from 1 above called TEMPLATE OPM RECEIVING INSPECT ) with seeded collection elements that correspond with the OPM Quality sample group.
    The Collection Plan will be setup by the end-user with Collection Triggers so that, only for specific conditions allowed by the collection triggers for the Inspection transaction, will this collection plan be applicable during RCV Transaction (aka enabling)
    .e.g. for Quality Collection Transaction. ‘Inspection Transactions (Oracle Purchasing) set up Collection trigger of ‘Item’ Condition ‘equals’ and From value of ‘9010’.
    7.     After the plan has been copied over, please verify if all the elements and actions are correctly copied over. The details of elements and actions are listed out in the Technical Design document for reference. For example, verify that actions for assigning a value to the Sample Disposition Code, Quantity, Inspection Result are present. Verify that the Action on Inspection Result for Accept and Reject are correct etc. Please verify the element settings such as Mandatory-flag, read-only flag etc are as per the Technical Design document .
    8.     Also, navigate to Quality à Setup à Collection Elements form and verify the Sample Disposition Code seeded element is correctly seeded – Refer to Technical Design document for reference.
    9.     In Oracle Quality, the profile option QA: PO Inspection set to “Oracle Quality” instead of “Oracle Purchasing”.
    10.     In Purchasing Receiving Options, set Receipt Routing to ‘INSPECTION REQUIRED’
    User Implementation Guide consideration for Receiving Inspection.
    1. It is recommended that the total receipt line quantity be recorded as either the amount of material accepted or rejected based on the final sample group disposition, since partial quantities typically do not apply to Process items.
    i.e If the Inspection result is “Accept” then Accepted Quantity must be equal to Quantity and Rejected Quantity must be zero. If the Inspection result is “Reject” then Rejected Quality must be equal to Quantity and Accepted Quantity must be zero.
    2. With reference to the ‘Reject the Input’ action with an error message to prevent recording inspection when sample disp is Pending or Cancel etc., there is one point to note, viz. - When you have a ‘Reject the Input’ action, there is a corresponding error message this column is not a Translated column.. Hence the Quality Manager who manages collection plans setup, can alter this message content to suit their needs as appropriate during implementation.
    3. It was also clarified that in Oracle Quality, user can enter more than one row of result in the collection plan. In the OPM scenario, most of the times, user will enter only one row of result and this is the recommendation.
    4. To ensure that the tie-up between the quality records and the sample inspection in the OPM data model for future usage is operative, then please make sure that Oracle Alerts sub-system in functioning.
    Debgging information
    1. If get error
    APP-QA-16135: Quality Results cannot be entered because no Collection Plans apply" in the Receiving Transaction form.
    a,. Add a transaction named "Inspection Transaction" to this plan
    b, . Don't setup a spec for this collection plan in Oracle Quality - so under the Specification pushbutton, the 'No specifications used' radio button will be selected
    2. Is the receiving option receipt routing set to ‘Inspection required”
    3.The design does not allow for accept or reject of partial quantities – is the ct using partial quantities ?
    4.This is a one shot deal on the collection plan entering of quality results. Is the ct trying to re-enter results in the collection plan again?
    5. Receiving inspection requires the sample group to be at a final disposition. Is the customer using single sample, sample groups or multi-sample sample groups when this occurs? Is the automatic single sample disposition workflow set to auto or manual?
    Because neither the quantity or sample result is being picked up, maybe the sample group for the sample(s) is not at a final disposition. This may explain why this is being regarded as intermittent.
    6. Note bug 5300577
    Once a sample or sample group has been assigned a final disposition of Accept, Accept with Variance, Reject, or Cancel, it should not be updateable to another disposition. Please check what is the customer's scenario that allows them to change from the Reject disposition to Accept with Variance. Are they entering a second sample against the same receipt and sample group as the first sample? Or perhaps the second sample belongs to a different sample group than the first sample?
    7. To clarify . When you open the screen to enter results in Oracle Quality, it will reflect whatever is the current sample group disposition that corresponds to the item/receipt. I believe collection plans in Oracle Quality only allow data to be entered and saved once. After this point, the user cannot go back to this screen from Oracle Purchasing. If the user does not save any data, then s/he can re-enter the form multiple times and see the up-to-date sample group disposition automatically populated.
    8. In Oracle Quality, user can enter more than one row of result in the collection plan. In an OPM scenario, most of the times, user will enter only one row of result.

  • JDBC2 support for Oracle 8i Lite

    Hi,
    I was just wondering if the JDBC driver included with Oracle 8i Lite supports JDBC2, and if not, is there a newer version that does (I couldn't find anything on the downloads page).
    Thanks,
    Raj.

    Just wondering if any one has been able to write a CodeWarrior project that connects to a database through ODBC. I've been having problems compiling my CodeWarrior project file. I am trying to use my existing code which connects to a DB2 Everywhere database, but instead replacing it with an Oracle 8i Lite database.
    If any one has had experience with this, e-mail me at [email protected]
    Thanks for your help.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Alvin Chin ([email protected]):
    Mark,
    The SQL functions being undefined in my C file are as follows:
    SQLAllocEnv
    SQLAllocConnect
    SQLFreeEnv
    SQLConnect
    SQLFreeEnv
    SQLFreeConnect
    SQLAllocStmt
    SQLDisconnect
    SQLPrepare
    SQLBindParameter
    SQLExecute
    SQLFetch
    SQLGetData
    SQLFreeStmt
    Is it a correct assumption that since I used these ODBC functions from DB2 Everywhere (which were in the DB2e library and header files), that I can still use these functions with Oracle 8i Lite? Isn't the ODBC API for Oracle Lite standard for all ODBC applications? Or does Oracle Lite implement these differently. What header files and library files am I missing?
    I tried to do a search for the SQLAllocEnv function and the only files that contain this are:
    sqlapi.h
    odbc.h
    odbc.lib
    olod2040.lib
    olsql40.lib
    I tried to include the olod2040.lib and olsql40.lib files but I after compiling, I got "illegal file object data'.
    So what files am I missing in order to compile?
    Thanks.
    <HR></BLOCKQUOTE>
    null

  • Newbie who want to use Java API for OLAP

    Hi all,
    I'm trying to learn how to use Java API for Oracle 10.2 OLAP. I went through the Java OLAP API user guide and I'm getting even more confused. Can somebody guide me to some good online materials?
    Many thanks!
    - Andrew

    Hi there,
    Did you see the examples in the Reference doc? :- http://download.oracle.com/docs/cd/B19306_01/olap.102/b14348/toc.htm
    Thanks,
    Stuart Bunby
    OLAP Blog: http://oracleOLAP.blogspot.com
    OLAP Wiki: http://wiki.oracle.com/page/Oracle+OLAP+Option
    OLAP on OTN: http://www.oracle.com/technology/products/bi/olap/index.html
    DW on OTN : http://www.oracle.com/technology/products/bi/db/11g/index.html

  • Critical patches for oracle enterprise linux

    Hello, I'm very new to this so here I go. Where do I go to find out all the critical patches there are for oracle enterprise linux. Please provide the link, so I can read about all the critical patches. Thanks a million for your time.

    Cross post already answered here:
    Re: linux critical patches
    Sergio

  • Attunity CDC for Oracle Service - Oracle 12c Support

    For the Attunity CDC for Oracle service that is bundled with SQL Server 2012 SP1, is there support for Oracle 12c?  Or, will there be updates in the near future to support Oracle 12c?  If not, are there other solutions for incremental changes between
    Oracle 12c and SQL Server?

    Attunity is not bundled with SQL it is a separate item you need to download and pay for (unless you are on the Enterprise edition of SQL Server).
    Regarding the rest of the info: http://www.attunity.com/products/attunity-connect/ssis-connectors-for-oracle-and-teradata says Oracle 6 or HIGHER, so yes, for the updates: Attunity now supports SQL Server 2014.
    I am not aware of any other solutions from the Microsoft solution stuck side of the view.
    Arthur
    MyBlog
    Twitter

  • API for Approved Supplier List

    Hi all,
    Is there API for Approved supplier list??
    Thanks

    Hello,
    We were not able to find the API for Approved Supplier List, during our implementation. How ever we have done direct insert in the tables PO_APPROVED_SUPPLIER_LIST and PO_ASL_ATTRIBUTES to get the approved supplier list working. Please suggest if you need any help in building similar logic.

Maybe you are looking for

  • How to convert number datatype to raw datatype for use in data warehouse?

    I am picking up the work of another grad student who assembled the initial data for a data warehouse, mapped out a dimensional dw and then created then initial fact and dimension tables. I am using oracle enterprise 11gR2. The student was new to orac

  • Windows Folder icon instead of Officejet 6500a Plus E710n icon in Devices and Printers

    Can anyone help me to get the OfficeJet 6500a Plus e710n printer icon to display properly in Devices and Printers? I recently reinstalled Windows 8.1.  However, when I installed my printer, instead of the printer icon appearing in Devices and Printer

  • Apple mobil device failed start

    I was working in iTunes today and was asked if I wanted to install the latest update. I did and then my iTunes shut down and I am not getting an error message that says The progam can't start because MSVCR80.dll is missing from your computer. Try rei

  • Song stuck in my iphone

    A while ago I downloaded a song to my phone through the iPhone's iTunes store... Now it's stuck in my Library. I've tried checking and un-checking synced lists I've tried directly deleting it, the red delete button doesn't show up when I slide I've t

  • Pls -00371 error (problem in multiple declaration )

    function code: //start create or replace function salinc(si number default 10) return number is number sinc; number bef; number aft; begin select sum(sal) into bef from emp where deptno=si; update employees set sal=sal+200 where deptno=si; select sum