API's for PO and INV modules

Hi,
Can anybody tell me what are the API's for PO and INV modules in
11i and R12?
Regards,
Bharathi.

Post it in this forum
Discrete Manufacturing

Similar Messages

  • Interview Questions and Answers for Pricing and Shipping Modules!!!!

    Please let me know the Interview Questions and Answers for Pricing and Shipping Modules?

    http://www.google.co.in/#hl=en&tbo=d&sclient=psy-ab&q=interview+questions+in+oracle+pricing+and+shipping&oq=interview+questions+in+oracle+pricing+and+shipping&gs_l=hp.3..33i21.1169.38878.0.39096.61.45.10.6.6.4.4004.21813.2-21j9j6j3j2j1j1j1.44.0.les%3B..0.0...1c.1.jEq3EQIj8vA&pbx=1&bav=on.2,or.r_gc.r_pw.r_qf.&bvm=bv.1357700187,d.bmk&fp=cedcde5e8e6bc792&biw=1280&bih=619
    HTH
    Mahendra

  • Debugging Tips for Mapping and Validation modules

    Hi,
    I am new to CRM, anybody can send the dubuging tips for  Mapping and Validation modules and the list of tables which I have to check before loading.
    (Intilal load & delta load)
    Regards
    KHM

    KHM,
    The first thing you need to make sure is that all queues are deregistered on both systems.  Check the settings in SMQR and SMQS on your systems.  The next step is that your middleware connection user must be a dialog user in order to debug the middleware properly.
    If you have those two steps done, then for an initial load you can actually go into to the queues and debug the entries from each queue.  For a delta load you will need to put a break point in the transaction before the middleware trigger, and then turn on update debugging(if you want to go through the full process).
    The only other key is looking up the correct function modules for the adapter objects to determine what is being called.  Once you know these and have done the steps above you can in general debug.
    Validate the information above in your system and then let me know where you are getting stopped in your debug process.  We can then try to figure out why the debugger is not being called.
    Good luck,
    Stephen

  • My requirement is to update 3 valuesets daily based on data coming to my staging table. What is the API used for this and how to map any API to our staging table? I am totally new to oracle and apps. Please help. Thanks!

    My requirement is to update 3 valuesets daily based on data coming to my staging table. What is the API used for this and how to map any API to our staging table? I am totally new to oracle and apps. Please help. Thanks!

    Hi,
    You could use FND_FLEX_LOADER_APIS.UP_VALUE_SET_VALUE to upload them from staging table (I suppose you mean value set values...).
    You can find a sample scripts if you google around.
    What do you mean "how to map any API to our staging table" ?
    You should do at least the following mapping (which column(s) in the staging table will provide these information):
    - the 3 value sets name which you're going to update/upload (I suppose these are existing value sets or which have been already created)
    - the value set values and  description
    Try to start with something and if there is any issues the community could then help... but for the time being with the description of the problem you have provided, that's the best I can do...

  • API's for email and SMS

    Hi,
    Does anyone know of there are any API's to open and read SMS and email messages?
    Also, are there any API's to do with turning off the audiable alert upon receipt of SMS and emails.
    The final API I am interested is one that makes an audiable alert.
    Please could anyone throw any light on what I am after.
    Many thanks in advance.
    Richard Thomas.

    Richard,
    While still in the specification phase,
    look for JSR120 Wireless Messaging API.
    This is being done through the JCP Process.
    See:
    http://www.jcp.org/jsr/detail/120.jsp
    Siemens is the Spec Lead, with nearly
    every wireless player and Java technology
    player in the expert group. This API was
    conceived to address the lack of a standard
    and open API for SMS Messaging, among other
    things.
    I don't know the specifics about time tables
    for this to become available (either spec,
    api, or implementation), but you can bet
    that all of the handset makers on this
    JSR have implementations ready to go.
    Good luck.
    David
    Hi,>
    Does anyone know of there are any API's to open and
    read SMS and email messages?>
    Also, are there any API's to do with turning off the
    audiable alert upon receipt of SMS and emails.>
    The final API I am interested is one that makes an
    audiable alert.>
    Please could anyone throw any light on what I am
    after.>
    Many thanks in advance.>
    Richard Thomas.

  • Query for SO and INV Tracking

    Hi guys.
    I have another problem now. I was asked to help to create a query that can track SO and INV independently (which means the absence of INV will not affect the presence of SO on the query). I have tried to code it out and it seems that it works perfectly fine. Just that I ain't that sure whether my code is a correct one as I doesn't want to cause my colleague to make mistakes on her report. So, I need you guys to check the code below and if possible, suggest some improvement that could be made to it.
    SELECT T0.[DocNum] as 'S/O No.', T0.[DocStatus],T0.[DocDate],  T0.[CardCode], T0.[CardName], T4.[DocNum] as 'INV No.'
    FROM ORDR T0 INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN DLN1 T2 ON T1.DocEntry = T2.BaseEntry AND T1.LineNum = T2.BaseLine
    LEFT JOIN INV1 T3 ON T2.DocEntry = T3.BaseEntry AND T2.LineNum = T3.BaseLine
    LEFT JOIN OINV T4 ON T3.DocEntry = T4.DocEntry
    ORDER BY T0.[CardName]
    The main reason I link them via LineNum is because in some of the older database, JobNo were not input into the A/R Invoice form and thus I can't directly link SO with INV. Thus, I link it via DO row level. Please advice whether this way is a correct way, or its a big mistake.
    Thanks !!!

    Hi Gordon.
    There is a problem now. The joining that we use on the code above involves SO, DO and INV. However, the piority is on INV No and SO No. There are some issue now, in which some SO were directly copied into INV without DO. Thus the linking that we use on top doesnt work for these SO or INV - it wouldnt query them out.
    I know we can join these documents via linenum or job no, but using job no is out of the question as in the past practice or even now, some of these SO and INV doesn't have any job no entered. Thus, I can only depend on linenum. I have done another query by using linenum only. 
    SELECT Distinct T0.[DocNum] as 'S/O No.', T0.[DocStatus],T0.[DocDate],  T0.[CardCode], T0.[CardName], T0.[DocTotal] as 'SO Doc Total', T3.[DocNum] as 'INV No.'
    FROM ORDR T0 INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    LEFT JOIN INV1 T2 ON T1.DocEntry = T2.BaseEntry AND T1.LineNum = T2.BaseLine
    INNER JOIN OINV T3 ON T2.DocEntry = T3.DocEntry
    ORDER BY T0.[CardName]
    It is working fine, but I afraid that this way it will overlook any SO or INV with DO ?

  • Tables common for OM and PO modules

    Hi,
    When the internal purchase order of our organization is converted to Sales order then how can i get the data from backend tables. I want to know the link columns of the tables in PO and OM modules.
    Thanks & Regards,
    KalpanaVenkat....

    The join between om and po for Internal reqs is as follows
    oe_order_headers_all.source_document_id = po_requisition_headers_all.requisition_header_id
    Hope this answers your question
    Sandeep Gandhi
    Independent Consultant
    513-325-9026

  • How to identify EBS Source tables for SC and OM modules?

    Hi,
    I need to identify EBS source tables for Supply Chain and Order Management module.
    What prefix I should check in EBS tables?
    Is there any document on this?
    Regards
    Sudipta

    Check etrm.oracle.com
    For order Management you should check with OE
    Purchasing PO and inventory INV and I guess for ASCP MSC
    Mahendra

  • Syntax check for tables and function modules

    Hi,
    I am writing a program that perform syntax check on object such as executable programs , function modules and tables.
    Syntax check works fine for programs, but not for tables.
    How can I perform syntax check on my tables or structures?
    I get my data from the table TADIR. But I don't get my function modules from there. What is the table for this.
    Thanks 4 ur replies.
    Parvez

    hi
    good
    generally in sap while creating a table or structure we get the error and we solved them,but like reports during runtime it is not possible to check the syntax of a table or structure.
    thanks
    mrutyun^

  • When we go for Views and Function Modules for Generic Extraction

    Hi Experts,
    Can you please explain when we go for extracting the data using Views and when we got using Function Modules using Generic Extraction from R/3 system to BW with examples. And also can you explain when we go for delta for the above both scenarios.
    Thanks for you help in advance
    Rohith

    Hi,
    Scenario for Extarction using FM
    Imagine the scenario where you need to extract data from
    tables having no common field between them and thereby preventing you from creating a view on top of those tables..
    Or simply consider tables that are highly unrelatd in terms of fields, but you have a requiremnt to extract data from them.
    Also Refer.
    create generic extractor based on 2 tables
    Generic Extraction via Function Module
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    Steps.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0f46157-e1c4-2910-27aa-e3f4a9c8df33
    http://help.sap.com/saphelp_nw04/helpdata/en/86/1c8c3e94243446e10000000a114084/frameset.htm
    Scenario for Extraction using View
    If there are more number of tables and data in those tables can be represented using joins then we can use this type of extraction
    For more info Refer these links
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    For GEneric Delta refer these links
    [generic with delta;
    [https://forums.sdn.sap.com/click.jspa?searchID=11388803&messageID=5164737]

  • Retina Display Support for Slideshow and Web Modules?

    Hello,
    I have been working on a set of images from a recent vacation and created a web gallery to display them.  I am using a Retina MacBook Pro and I noticed that when loaded in the browser (Safari), the gallery images look slightly blurry - similar to "non-retina" prepared images.  I also created a slideshow in the slideshow module and they look the same.
    Can someone tell me if this is due to the fact that Lightroom is not rendering the preview images to be compatible with retina (HiDPI) support?
    I'm very disappointed that I have invested in such an expensive piece of hardware and I'm getting such blurry looking images.
    Thanks for the help.

    Retina-display compatible image is just a fancy term for high resolution image. It looks blurry because of the upscaling. If you want it to look good, export it at higher resolution, for example 2048×1536px for the ipad screen size.

  • How about a new API look for you and yours?

    Here the new Sun Java2 API:
    http://java.sun.com/j2se/1.5.0/docs/api/index.html
    Here my new stylesheet version for the SDK 1.4.1:
    http://geocities.com/delfidin/docs/api/index.html
    See, if you like it, read the green message to download the stylesheet on the page.
    Cheer~z!

    Here the new Sun Java2 API:
    http://java.sun.com/j2se/1.5.0/docs/api/index.html
    The style sheet is the same as its ever been, clear simple and easy to read
    Here my new stylesheet version for the SDK 1.4.1:
    http://geocities.com/delfidin/docs/api/index.html
    See, if you like it, read the green message to
    download the stylesheet on the page.
    Do you want the diplomatic answer or the plain blunt truth?
    Cheer~z!
    Errm, we'll call you OK?

  • PRZNT and SUMME modules for indirect valuation

    What are the different variants for SUMME and PRZNT modules? Please explain me the meaning of all of the variants of these modules.

    o     TARIF: module uses pay scale data that it takes from the pay sacle groups and levels you entered in Basic pay.
         Variant A- valualtion  is based on the pay scale group & level
         Variant B- valuation is based on the pay scale group/ level and specific wage type
         Variant C- valuation does not depend on pay scale level
         Variant D u2013 valuation does not depend on pay scale group or level
    o     PRZNT:- calculates certain wage types as a percentage of other wage types. It is based on how you set up the base wage type valuation table T539J
         Variant B- we have to mention the base wage type ininfotype 8 on which the value of third wage type needs to be indirectly evaluated along with the %
         Variant D- the value of wage type  to be valuated  is calculated by multiplying  the basis pay  by the percentage specified for the wage type to be valuated.
         Variant I u2013 No need to maintain the  base wage type in infotype 00008 on which the value of third wage type needs to indirectly valuated
    o     SUMME:- calculates certain wage types as a percentage of other wage types. It is based on how you set up the base wage type valuation table T539J
         Same as the PRZNT only the difference is there is no need to maintain the percentage in the info type
    o     ARBPL:- uses the object type and the position number entered in info type 0001 to calculate the wage type amount
    o     Reduction Methods:- the values are as follows:
    o     Blank or 1:- No reduction
    o     2:- reduction using the capacity utilization level (%) stored in .0008.
    o     3. Reduction based on relationship between individual std weekly working time and std weekly working time
    o     4. Reduction based on relationship between individual hours per week taken from info type 0007 and the individual std weekly working time
    o     5. Reduction based on relationship between individual std weekly working time minus  and std weekly working time
    o     Rounding type
    o     A u2013 amount is rounded down
    o     B u2013 amount is rounded UP/DOWN
    o     C- amount is rounded UP

  • Readonly Access to AR and AP Modules

    Hi,
    I need to give readonly access for AR and AP modules for a database user (TEST)
    and
    I need to give readonly access for the above modules for Application User (TEST)
    How can I give readonly access

    You can change the query in Step 3 so it selects only AP/AR related tables and views. For example:
      FOR p_rec IN (SELECT *
                    FROM   all_objects
                    WHERE  owner in ('AR','RA','AP'))And you would need to run it separately to include APPS objects like this:
      FOR p_rec IN (SELECT *
                    FROM   all_objects
                    WHERE  owner = 'APPS'
                    AND    object_name LIKE 'AR%')For your readonly application user, definitely create inquiry responsibilities. It's supported and can be reused for other users.

  • Q&A database for MM and PP

    Hi Experts,
    I am looking for the ASAP Q&A database for MM and PP modules. Can anyone send me the documentation please?
    Fotso

    Hello,
    Refer the below link for your reference.
    http://dev.fyicenter.com/Interview-Questions/SAP-1/What_is_SAP_.html
    http://www.esnips.com/web/ndpanchal-SAPMaterials/
    http://www.geekinterview.com/Interview-Questions/SAP-R-3/Modules
    http://www.sap-img.com/materials/common-sap-mm-questions.htm
    http://www.sap-img.com/mm015.htm
    http://www.sap-img.com/materials/sap-mm-self-test-questions.htm.
    http://www.daypo.net/test-sap-mm.html
    Regards,
    Sarthak

Maybe you are looking for

  • How do I download videos from iCloud to my ipad

    I placed videos from my iPhone to iCloud.  I want to download those videos to my iPad using the same iCloud account

  • Error rendering form in Workspace ES2 ALC-WKS-007-040

    After adding some OLEDB-bound data dropdown lists to my form, it no longer renders in Workspace.  Error is "An error occurred creating the form (task 27, form 0). (ALC-WKS-007-040)".  Do I have to do something (reader extend?) in my process to enable

  • File does not begin with '%Pdf-' in Persona to take a Print

    Dear all, What would be the reason for the error " File does not begin with '%Pdf-' when its trying to open in adobe reader in Persona. Does persona support any KMC content management ? please resolve this error. Find the attached screenshot. And we

  • Iphone 4 to Ipad 2 Tethering

    Hi there i will be receiving my Ipad 2 next week which is a 32gb Wifi version. Can i Tether my 3G signal from my Iphone using Bluetooth? Basically i would be looking to to get some sort of internet connection if i am not in a Wifi zone. If BT is not

  • Acrobat 8 Pro with FormDesigner crashing

    Have a user running Acrobat 8 Professional who is attempting to create a form with the FormDesigner, but when she clicks over to the Preview tab, an error pops up stating that Acrobat.exe has encountered an error and needs to close. The FormDesigner