Table names (for quotes, the quote lines and price breaks)

Hi Experts,

What are the names of tables for the quote, the quote lines and quotes price breaks.

Thank you

MPH

Quotes and POs share the same tables.
The type_lookup_code in po_headers_all identifies the type of the document.

Quotations > po_headers_all (or you can use PO_HEADERS_RFQQT_V)
lines-online po_lines_all (or you can use PO_LINES_RFQQT_V)
price breaks-online po_line_locations_all (or you can use PO_LINE_LOCATIONS_V)

Hope that answers your question,
Sandeep Gandhi

Tags: Oracle Applications

Similar Questions

  • SQL to bring the last line and the just previous row in the table

    Hi all

    I have a table of orders, where a serial number can be booked with different number several times over several days.

    Requirement is to bring the last order (based on the date of creation) number associated with this serial number and just previous order number and data in the format below.

    Last order numberSerial numberReservation locationNo bookingPrevious order numberSerial numberReservation locationNo booking

    It is essentially to generate the report that a reserved serial number with how many times with different orders and report must contain details of order two in a line.

    Kind regards

    You asked for the last line, and you have not provided data of the example or the expected results, so you get what you asked for.

    You may be looking for data to be partitioned on another value, for example

    SQL > ed
    A written file afiedt.buf

    1. Select deptno, ename, empno, mgr, hiredate, prev_empno, prev_ename, prev_mgr, prev_hiredate
    2 starting at)
    3. Select deptno, ename, empno, mgr, hiredate
    lag (empno) 4, over (partition by deptno arrested by hiredate) as prev_empno
    lag (ename) 5, over (partition by deptno arrested by hiredate) as prev_ename
    lag (mgr) 6, over (partition by deptno arrested by hiredate) as prev_mgr
    lag (hiredate) 7, over (partition by deptno arrested by hiredate) as prev_hiredate
    8, case when hiredate = max (hiredate) on (deptno partition) then 1 0 otherwise fine as max_hiredate
    9 of PEM
    10       )
    11 * where max_hiredate = 1
    12.

    DEPTNO EMPNO, ENAME MGR HIREDATE PREV_EMPNO PREV_ENAME PREV_MGR PREV_HIRED
    ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------
    10 7934 MILLER 23/01/1982 7782, 7839 KING 17/11/1981
    20 7876 ADAMS 7788 23/05/1987 7788 SCOTT 7566 04/19/1987
    30 7900 JAMES 7698 03/12/1981 7654 MARTIN 7698 28/09/1981

    who is the last disc, by Department, as well as the previous within the same Department.

  • For loops with the cursor line and indexing

    Hi all

    I have a question about the loops with the cursor, line and indexing.

    How can I scan via a cursor with an iterator?

    I would use an iterator as

    Whole LoopIndex;
    Whole LoopIndex2;

    for LoopIndex at the beginning of the cursor at the end of the cursor
    loop
    line =: cursor [LoopIndex];
    for LoopIndex2 of LoopIndex at the end of the cursor
    etc...
    end loop;

    I need to use an iterator because I need to use a nested for loop.



    OR


    How can I solve the following problem?

    Class name % ofClass average test Score
    1 Niobe 7 8 8.4
    1 alena 4 7 7.5
    1 9 7 8.9 Estia
    1 Lilly 10 8 9.8
    1 Sandra 6 8 8.3
    1 Melanie 8 8 8.1
    Nadia 2 8 3 4.4
    Sayuki 2 9 8 8.4
    Diasy 2 7 8 8.0
    Flower 2 7 8 6.5
    Diana 2 6 8 7.3
    3 Flora 7 8 5.8
    Sukiya 3 4 8 8.4
    Samantha 3 10 8 7.7
    Roxanne 3 7 8 6.9
    Eline 3 8 8 7.4

    I need to
    -By class, I need to recalculate each average people
    -By class, I need to calculate the % of class score (sum averages / people in the class)

    So it can be done in a nested for loop?
    Or do I just step by step?

    Well, based on this information it would be something like...

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select 1 as Class, 'Niobe' as Nm, 7 as Score, 8 as Tests, 8.4 as Average from dual union all
      2             select 1, 'Alena', 4, 7, 7.5 from dual union all
      3             select 1, 'Estia', 9, 7, 8.9 from dual union all
      4             select 1, 'Lilly', 10, 8, 9.8 from dual union all
      5             select 1, 'Sandra', 6, 8, 8.3 from dual union all
      6             select 1, 'Melanie', 8, 8, 8.1 from dual union all
      7             select 2, 'Nadia', 3, 8, 4.4 from dual union all
      8             select 2, 'Sayuki', 9, 8, 8.4 from dual union all
      9             select 2, 'Diasy', 7, 8, 8.0 from dual union all
     10             select 2, 'Blossom', 7, 8, 6.5 from dual union all
     11             select 2, 'Diana', 6, 8, 7.3 from dual union all
     12             select 3, 'Flora', 7, 8, 5.8 from dual union all
     13             select 3, 'Sukiya', 4, 8, 8.4 from dual union all
     14             select 3, 'Samantha', 10, 8, 7.7 from dual union all
     15             select 3, 'Roxanne', 7, 8, 6.9 from dual union all
     16             select 3, 'Eline', 8, 8, 7.4 from dual)
     17  --
     18  -- END OF TEST DATA
     19  --
     20  select class, nm as "NAME", score, tests, average
     21        ,round(((average*tests)+score)/(tests+1),1) as avg_person
     22        ,round((average / sum(average) over (partition by class))*100,1) as class_average
     23  from t
     24* order by class, nm
    SQL> /
    
         CLASS NAME          SCORE      TESTS    AVERAGE AVG_PERSON CLASS_AVERAGE
    ---------- -------- ---------- ---------- ---------- ---------- -------------
             1 Alena             4          7        7.5        7.1          14.7
             1 Estia             9          7        8.9        8.9          17.5
             1 Lilly            10          8        9.8        9.8          19.2
             1 Melanie           8          8        8.1        8.1          15.9
             1 Niobe             7          8        8.4        8.2          16.5
             1 Sandra            6          8        8.3          8          16.3
             2 Blossom           7          8        6.5        6.6          18.8
             2 Diana             6          8        7.3        7.2          21.1
             2 Diasy             7          8          8        7.9          23.1
             2 Nadia             3          8        4.4        4.2          12.7
             2 Sayuki            9          8        8.4        8.5          24.3
             3 Eline             8          8        7.4        7.5          20.4
             3 Flora             7          8        5.8        5.9            16
             3 Roxanne           7          8        6.9        6.9          19.1
             3 Samantha         10          8        7.7          8          21.3
             3 Sukiya            4          8        8.4        7.9          23.2
    
    16 rows selected.
    
  • What is the life line and why am I charged $26.99 for something or other on my purchased iCloud account?

    What is the life line and why am I charged $26.99 for something or other on my purchased iCloud account?

    There is a life saver app in the App store (p 79) and several vital services on Google.   If you are unsure about a receipt, there's an invitation on the bottom to "report a problem".   Report your problem.

  • I have problems with the form widget. When I created my forms, I need to leave out the line, one email because my client does not want the message line and two because those who have tried to fill the online form cannot submit because that box "email".

    I have problems with the form widget. When I created my forms, I need to leave out the line, one email because my client does not want the message line and two because those who have tried to fill the online form cannot submit because the 'email' box keep rejecting their email address valid. And I just tried to remove the line in my form and it does not allow me to delete or to mark it as not necessary either.

    Currently, there is no way around the field email forms of the Muse. Another option is to have a look at Jotforms or another third-party provider of shape that Muse has widgets for.

  • How can I increase the space of name display in the form, material and specification of the nutritional profile?

    Problem:

    1. How can I increase the space of name display in the form, material and specification of the nutritional profile?

    2. how to increase display space for the name of the sheet in the history section at the top of the screen?

    Thank you

    Hello Nefertari,

    You try to view more characters in these areas?

    Each of these locations is plugable using custom plugin extensions.

    For example, you can go into extensions/config/CustomPluginExtensions file and add the following nodes under the node FormatPlugins.

    
    
    
    

    I think that the default values for the sites are set to 50 characters, so I had to be up to 100 characters (note NameMaxLength = parameter in the attribute FactoryURL 100).

    It will be applicable to all specifications, if you need something more specific, you will have to create your own class where you can check the type of technique.

    Make your own judgment in what concerns how enough will be the look on the screen after you increase the length to a large number, but you can always control the formatting in your own class.

    See this older post for more information https://community.oracle.com/thread/2562965

    Is that what you're looking for?

    Dmitriy

    .

  • How can I know because of what table in database, causing the chaining line

    Hello


    Please help me that how can I know because of what table in database, causing the chaining line?

    Hello

    hope that you have already created the table utlchain. Or otherwise create as below.

    SQL > @?/rdbms/admin/utlchain.sql

    And try to run the script again.

    I tried with the following example in the following link.

    http://psoug.org/reference/chained_rows.html

    His works very well and it will list the tables.

    Or try the row chaining and Migration of line [ID 122020.1]

    It has all the necessary steps to do so.

    Thank you
    Rognard

  • HI everyone, I paid almost 10 days ago, my supcripcion to plan for all the app elements, and after u date of my latest plan, any program is runing, always appear, your time taking, is late, please by the app with my adobe ID works correctly?

    HI everyone, I paid almost 10 days ago, my supcripcion to plan for all the app elements, and after u date of my latest plan, any program is runing, always appear, your time taking, is late, please by the app with my adobe ID works correctly?

    Photoshop Elements and Premiere Elements are NOT part of the cloud... you buy a serial number, not a subscription, and you enter the serial number during installation

    If you don't want to say things, read below

    Your subscription to cloud shows correctly on your account page?

    If you have more than one email, you will be sure that you use the right Adobe ID?

    https://www.adobe.com/account.html for subscriptions on your page from Adobe

    .

    If Yes

    Some general information for a subscription of cloud

    Cloud programs don't use serial... numbers you, connect you to your cloud account paying to download & install & activate... you may need to sign out of the cloud and restart your computer and log into the cloud for things to work

    Sign out of your account of cloud... Restart your computer... Connect to your paid account of cloud

    -Connect using http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html

    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html

    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html

    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp

    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html

    .

    If no

    This is an open forum, Adobe support... you need Adobe personnel to help

    Adobe contact information - http://helpx.adobe.com/contact.html

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    -Select your product and what you need help with

    -Click on the blue box "still need help? Contact us. "

  • I'm trying to sign several documents and I have my saved signature under "fill &amp; sign" the organization that generated the forms highlighted the signature lines and when I try to put my signature, it is pushed outside the signature.

    I'm trying to sign several documents and I have my saved signature under "fill & sign" the organization that generated the forms highlighted the signature lines and when I try to put my signature, it is pushed outside the signature.

    Hi katepell,

    You can simply drag the signature to the desired place by holding it with the mouse.

    Thank you

    Abhishek

  • How to add a space between the currency symbol and price?

    Hello

    Can you please guide me how to add a space between the currency symbol and price?

    Support told me this question in the forums because it is done with JavaScript and it is not covered in the official documentation.

    Any who have done this? I would like to turn 20 at 13.20 RON RON13 or 32, 90 to 32,90 USD.

    Thank you!

    Hello.

    I test and it works.

    If any who need it, this is how I did it.

    I changed the models of Modules-> page layouts of the shop online-> overall layout.

    I added at the end of the HTML code, the code following JS:

    The result can be seen here: http://magazindepiese.worldsecuresystems.com/accesorii/chimice?Page=1&Items=12

    Instead of PRICE: RON22, 62, now it's READY: 22,62 RON that is correct for the Romania.

    Thank you Mario!

  • Possibility to change the BA, TABLE name for a report, and then keep putting in the form

    Hi all

    I have a report from a custom folder of BA1 xx_test1... Now, I want to modify the workbook to use the custom file BA2 xx_test2.
    The custom folders have the same exact columns.

    Is it possible because I dione a lot of formatting and donot want to redo everything again. ?

    Thank you
    VJ

    Hi Vj
    Let me explain a few things about Discovererw workbooks.

    All the code needed to run than a workbook is embedded in the workbook. There is no record of SQL that you can go change the code. Discoverer incorporates the name of the file and identify as well as the name of any joint used. You can change the name of a folder without causing any problem as long as you do not modify the identifier as well. When the workbook opens then he will still find the folder. You should save the workbook again at this time so that the appropriate folder name is saved too.

    Interestingly, the corporate domain names are not included in the workbook. If the Finder can locate records is any accessible business while the workbook is open.

    So here's what I'd do:

    1. get the new SQL for the custom folder and replace the SQL in your existing folder

    2. rename the folder in the name you want to use. DO NOT modify the identifier and DO NOT change the names of all the joints.

    3 try to open your workbooks. They will find the file and continue working

    With regard to a new BA, here's my recommendation.

    1. create a master BA for all folders

    2 use folders to manage in the Admin tool, I'd share any files with this master BA - then you have an area for maintenance

    3. create a new empty BA

    4 use folders to manage again, sharing folders, you need the new BA - the joints will get too shared

    5 using the tools | Security, grant users access to this new BA and remove access to any former

    That's all. The workbooks will find records in the new BA and continue as before.

    I'm really sorry about planning. This is an option you should use really. It sounds like your business might need a discoverer health check, to make sure that you use it properly. Have a look here: http://ascbi.com/consulting.htm

    I hope my answers above help
    Best wishes
    Michael

  • monitor the DML operation for a table, that is, monitor the type time and DML operation

    Hello expert,

    I want to follow the DML operation for a table, i.e. monitor the time to type and the DML operation. you tell please how do I get that?

    Thank you very much

    See if this can help you:

    http://Oracle-Apps-DBA.blogspot.com/2007/07/monitoring-DML-operations.html

    Kind regards

  • for the combined line and conditional formatting bar graph

    Hi all

    I have a combined line and bar chart, bars showing the values of the CDA in different exercise, as well as the lines that appear from year to month values in the different financial year, how set up the conditional formatting to do the same exercise, the same color - isn't serious CDA (BAR) or the year (line)?

    Thank you
    Ling

    Check the image at the Point # 5 of the link
    http://obieetraining11.blogspot.com/2012/08/OBIEE-11g-adding-graph-to-analysis.html

    Who has the possibility of conditional formatting.

    check if help

  • Table names changed from the CF6/7 to CF 8/9?

    < < edit > > I could have just answered my question, sort of.  I had already exported the data from the hosted SQL 2000 DB to my local SQL 2000 DB and then backed up and restored it to an empty DB in SQL 2008 Express.  The tables have the dbo. prefix rather than the prefix "xx." in the DB else who went from SQL 2000 to SQL 2008.  The site runs with the dbo. prefix.  All links to articles/videos/summaries of simple differences between version always appreciated. "< < / edit > >

    I built a site CF6/7 founded about 5 years ago and I am trying to move to the current versions of MSSQL (2008R2 Express) and CF9.  I think that the DB SQL is very well, I installed the site on the local server and receive the following error message when you try to view a page that access the DB.

    [Macromedia] [SQLServer JDBC Driver] [SQL Server] Invalid object name 'client_info.

    I exported data from the live DB Server DB in my local SQL 2008 Express and tables now have names like "xx.client_info" is correct to assume that there is a new naming convention so that you can easily access multiple DBs access tables?  I simply rename the tables to exclude the "xx." at the beginning?  Or he would advise to export data to SQL 2000 and then save/restore the DB SQL 2008 Express?

    Thanks for any help, and if you want a video or link simple differences/improvements to the CF of the 6/7 or 8/9 any link would be greatly appreciated.

    It is not associated with CF, it is one thing to SQLServer. In SQL 2008, they introduced the concept of schemas, which I think is what you see here. Instead of dbo.tablename, you now schema.tablename.

    I don't know the details to be honest, but that's what you have to look.

    O.

  • My move slider to the other lines and paragraphs and letters when typing e-mails and do their homework.

    As a first step, if you see letters where they aren't suppose to be, I'll put this word in brackets. If you don't see everything, it happens sometimes. I've had this laptop for 18 months. Motherboard has been replaced three times. Cursor and letters move to other lines and paragraphs themselves. This problem is annoying, especially when I do the assignments in class. Is their a fix for this problem, or what?

    Please help, my time is precious.

    Uncle Midgy

    Your laptop has a touchpad?  Chances are good that you are accidentally in touch with her all by tapping and activating the latter and that moves the cursor (and before you notice it, you typed a letter whenever the cursor moves towards).  This happened to me until I bought a separate mouse and disable the touchpad - then the problem has disappeared.

    Some touchpad controls (usually located under the start menu / control panel / mouse have commands to disable the touchpad while typing.)  See if that is the case with yours and if so, activate the function, and it can be useful.  If you do not have the service contact the computer manufacturer to obtain the latest device drivers touchpad and install (and update the drivers for the keyboard while you're there just in case it is the source of the problem, but I think it is the touchpad) - they contain the function as an upgrade.  Go to the Device Manager by going to start / find and type Device Manager and enter and then double-click on the program icon that appears.  Check each device to a red x, yellow! or white?  These identify devices with problems probably (drivers, but also of conflict or something else).  Click on each for more details and troubleshooting tips.  If you need to get drivers (and you do it for your keyboard and touchpad), get the computer dealer or the manufacturer of the device (NOT of Microsoft Updates).  In fact, you must disable automatic updates in Windows Update driver as follows: http://www.addictivetips.com/windows-tips/how-to-disable-automatic-driver-installation-in-windows-vista/. Follow these steps to get the drivers: http://pcsupport.about.com/od/driverssupport/ht/driverdlmfgr.htm.  Once you have the drivers, you can install them via the Manager device as follows: http://www.vistax64.com/tutorials/193584-device-manager-install-driver.html.

    I hope this helps.

    Good luck!

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

Maybe you are looking for

  • I can't find new app after upgrading to ios 9.3?

    I have got all the other features of IOS 9.3 but can't able to find the news application?

  • HP Pavilion 15 (I think? (Idk): "not found boot device."

    When I start my laptop it says:"Boot device not found.Please install an operating system on your hard drive. »My hard drive constantly ejects and when I put it back in it cannot read it all of a sudden. I am Orient correctly. I tried everything, I do

  • Jam clip will not play my aac/m4a files.

    HelloI bought a Jam of SansaDisk Clip.It is a pure piece of kit, but it does not play aac/m4a files.Sansa will be able to fix this with a firmware update? These files play OK on my iPod Shuffle before he shuffled off the coast of this death spiral.It

  • At the top of my screen where it should say "file, edit,

    At the top of my screen where it should say 'File, Edit, View, Favorites, help etc'... all this has disappeared.  I don't know how to obtain the rank of ' click on ' back.  Any ideas?  I already did a restore of the system.  No luck.

  • Add task sheet to retain App 10.3 for example

    I am trying to use the functionality of worksheet to add a task that BlackBerry provided in their application do not forget that I think is simply superb. I am referring to the way that once you type a title or additional Notes, field reduced Hint te