What tables we have to include  to display sales order for paricular order

what tables and fields we have to include  to display sales order for particular order and paricular customer?

Sales order detials are stored in VBAK ,VBAP tables,
U can have selection screen for customer, and upon entering the customer name, u can extract the data from the above two tables.
Regarding order, is it Purchase order? if so, u cant extract based on perticular order, coz, these orders are not generated in SAP, they come from Customer and can be registered in Sales order for only reference.
Regards,
Sujatha.

Similar Messages

  • How can I tell what table(s) have the most transactions against them

    Hello, in Oracle 11.2.0.3, RHEL 6 x86-64, how can I tell what tables have the highest transaction activity?
    Picked "Objects" because I could not find a space related to performance tuning
    Humbly,

    What version of Oracle are you running (standard or enterprise)?
    Easist system is to run an AWR or statspack report. If you run either of these you will see sections on segments (so segments by logical reads, physical reads) which is easily digestible.
    v$segment_statistics will also give you a breakdown on segment access.

  • Is there any soln to display production line for process order in COOISPI?

    HI,
    When we run COOISPI for planned orders, the field  MDV01 "Production Line" populates correctly (based on the value in the production version associated with the planned order).  However, you run COOISPI for process orders, that same field is now blank.
    Any pointer on how to display MDV01 in case of Process order.
    Thanks in advance

    Thanks for your reply. my requirement is to populate the field value of production line in the CIOISPI report. I have production line assigned to production version. It does display if you see the results for Planned order but not for process order and the 'production line' field remains blank. More importantly i am trying to display the results for the same production version in case of process order,
    Can you plz provide me any pointers or the way we can have production line value if want to display COOISPI for process order.
    Regards,
    Nitin

  • What do I have to modify on below query to keep same order?

    here is my original post
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/1edac5ae-8c61-4dcf-9a15-b01df5cad617/how-to-remove-next-and-previous-record-if-amount-0?forum=transactsql#982b368a-bc6a-461a-9be2-37b3a7331dd8
    if I add an ID column to assign row order, what do I need to modify in the below query to keep that order
    CREATE TABLE #Temp(
    [id] [int] identity(1,1),
    [SHCOMP] [char](2) NOT NULL,
    [SHCRTD] [numeric](8, 0) NOT NULL,
    [SHCUST] [numeric](7, 0) NOT NULL,
    [SHDESC] [char](35) NOT NULL,
    [SHTYPE] [char](1) NOT NULL,
    [SHAMT] [numeric](9, 2) NOT NULL,
    [SHCRTT] [numeric](6, 0) NOT NULL,
    [CBLNAM] [char](30) NOT NULL,
    Query
    ; With cte As
    (Select *, 
         Row_Number() Over(Partition By SHCOMP, CBLNAM, SHDESC, SHAMT Order By ID) As rn, Abs(SHAMT) As AbsAmt
    From #Temp) 
    Select c1.* into #t1
    From cte c1
    Left Join cte c2 On c1.SHCOMP= c2.SHCOMP
      And c1.CBLNAM = c2.CBLNAM 
      And c1.SHDESC = c2.SHDESC
      And c1.SHAMT = -1 * c2.SHAMT
      And c1.rn = c2.rn
    Where c2.SHCOMP Is Null
    order by ID
    Original data
    SHCOMP     CBLNAM       SHDESC    SHAMT     SHTYPE    ID
    123         cust1       desc1      45          F       1
    123         cust1       desc1     -45          T       2
    123         cust1       desc1      45         F        3
    123         cust1       desc1     -45        T         4
    123         cust1       desc1      45         F        5
    123         cust1       desc1      -35         T       6
    234         cust3       desc2     -60          F       7
    234         cust3       desc2      60          T       8
    234         cust3       desc2      30          F       9
    234         cust3       desc2     -30         T        10
    234         cust3       desc2      30         F        11
    Results I want
    SHCOMP      CBLNAM      SHDESC    SHAMT      SHTYPE     ID
    123         cust1       desc1      45         F         5   
    123         cust1       desc1      -35         T        6
    234         cust3       desc2      30         F         11
    That query is changing my ID, instead of keep 5,6,11 it is assigning other numbers. For example
    SHCOMP      CBLNAM      SHDESC    SHAMT      SHTYPE     ID
    123         cust1       desc1      -35         T        4
    123         cust1       desc1      45         F         7 
    234         cust3       desc2      30         F         9

    Declare @Sample Table(ID int identity, SHCOMP int, CBLNAM varchar(30), SHDESC varchar(10), SHAMT int, SHTYPE char(1));
    Insert @Sample(SHCOMP, CBLNAM, SHDESC, SHAMT, SHTYPE) Values
    (123 ,'cust1', 'desc1', 45, 'F'),
    (123 ,'cust1', 'desc1', -45, 'T'),
    (123 ,'cust1', 'desc1', 45, 'F'),
    (123 ,'cust1', 'desc1', -45, 'T'),
    (123 ,'cust1', 'desc1', 45, 'F'),
    (123 ,'cust1', 'desc1', -35, 'T'),
    (234 ,'cust3', 'desc2', -60, 'F'),
    (234 ,'cust3', 'desc2', 60, 'T'),
    (234 ,'cust3', 'desc2', 30, 'F'),
    (234 ,'cust3', 'desc2', -30, 'T'),
    (234 ,'cust3', 'desc2', -30, 'F');
    ; With cte As
    (Select SHCOMP, CBLNAM, SHDESC, SHAMT, SHTYPE, ID,
    Row_Number() Over(Partition By SHCOMP, CBLNAM, SHDESC, SHAMT Order By SHAMT, ID) As rn
    From @Sample)
    Select c1.SHCOMP, c1.CBLNAM, c1.SHDESC, c1.SHAMT, c1.SHTYPE, c1.ID
    From cte c1
    Left Join cte c2 On c1.SHCOMP = c2.SHCOMP
    And c1.CBLNAM = c2.CBLNAM
    And c1.SHDESC = c2.SHDESC
    And c1.SHAMT = -1 * c2.SHAMT
    And c1.rn = c2.rn
    Where c2.SHCOMP Is Null
    Order By c1.ID;
    Tom

  • What is the formatted search to auto display sales employee mobile?

    Hi,
    Customer is using SAP2005A PL23. Each BP master are attached with sales employee. The sales employee is tagged inside Employee Master Data where customer key in mobile number.
    Customer had created a UDF in Sales Quotation. If a Business Partner code is selected in Sales Quotation, sales employee will appear automatically(base on setup in BP master data) and same time sales employee mobile(get from Employee master data) will appear in U_MobileNo.
    May I know how to write the query?
    Regards
    Thomas

    Hi
    Try this Query,
    SELECT T0.[mobile] FROM OHEM T0 where T0.salesprson = $[OQUT.SlpCode]
    Regards,
    Reno

  • Sales order - net price value - what table

    In what table is stored the Net Price Value (Sales order item level, Conditions tab, column Amount, name Net price Value ( structure KOMV-KBETR)
    Thanks.

    Hello,
    You have to check KONV with Condition record no = VBAK-KNUMV.
    Then match the line item number with KONV-KPOSN to get all the price conditions for each item (Note KINAK = space will get only active price conditions)
    If you need the total sum of amount for all line items then you can check VBAP-NETWR.
    Hope this helps,
    Regards
    Shiva

  • I made an in app purchase and did not receive it, what do I have to do to fix this?

    I made an in app purchase and did not receive it, what do I have to fix this?

    To petition for refunds, you need to go to expresslane.apple.com > itunes > itunes store > billing and accounts
    I would suggest that you contact the developer of the app to see what exactly you purchased, because itunes store support can get you the refund, but they can't tell you exactly what you purchased. They just handle the money, they don't necessarily dictate what the app's devloper sells

  • CM25--display sale order number

    Hi all
    With transaction code: CM25 and overall profile: SAPSFCG011. We can display: Planning Table: SAPSFCG011 Finite scheduling forw./all functs.activ. 
    then there will be three sections, in the left of the bottom section "orders (pool)", there will be disaplay field "Sql" material" "Prio" "order" "operation" "work center" etc. but I would like to display "sale order number", because our production style is make to order. so when planner pull the production order and dispatch it, the planner needs to know the sale order number. Could be sale order number displayed here?
    thanks in advance!
    DanDan

    This is entirely possible... please see my post from a previous post with a similar question... what you would need to do is add field KDAUF (for planned orders) or field KDAUF_AUFK (for production orders).
    The configuration for manipulating the profiles and columns is a bit confusing in the IMG.
    However.. if you use transaction OPD0 you can open up the configuration for the default profile that you are using in production. For instance... overall profile SAPCRPG001 uses planning table profile SAPSFCL010. If you click the button to the right of the planning table profile entry it will take you to the planning table profile configuration screen. Double click on profile SAPSFCL010.
    In this transaction you will note there is an entry for Layout ID which is (if you have not changed the default config) SAPSFCLA10. If you click the button to the right of this entry it will take you to the list of Layout ID's available for you. Locate the Layout ID SAPSFCLA10, select it and double click on the "Definition of charts" option.
    In this case the graphical planning table is using three different sections. Select the section that you wish to manipulate the column headings for and double click on Grouping Names option. Select the option that shows up in the next screen then click on the Grouping Names option.
    Listed here should be the layout keys used in this section of the layout ID. Make note of the layout key(s). Execute transaction CY38. Input the Layout Key you wish to manipulate. From here you can select any field you would like to add/remove from the current listing.
    You can click the Sequence/Heading button to manipulate the specific order of the columns and how large you want those columns to be as well as what text is displayed as the heading.
    My suggestion if you are going to make changes like this is to copy the existing profiles to Z********* profiles so that you have a golden copy to work with.
    Hope that helps.
    Rachael

  • Displaying sales order from other system

    Hi Experts,
    I have a requirement of displaying sales order from other system. I will be fetching sales orders through a RFC call and displaying it in an ALV. on clicking of the sales order displayed from the ALV, I need to display it from the other system.
    How can I go about this?
    Please help.
    Regards,
    Rohan

    rohan,
    you already have answered most part of your question.
    - displaying SO from other system through RFC:
    create a remote enabled function in that target system. call this FM from your current system. (for RFC calls check this: [RFC help|http://help.sap.com/saphelp_nw04/helpdata/en/22/0425f2488911d189490000e829fbbd/content.htm]
    displaying SO by double clicking in ALV:
    --ALV's comes with a event USER_COMMAND. in this event you can pass your subroutine and in your subroutine you can do your coding... take help from sdn searches like :About FM ALV user_command Event
    hope these helps
    Somu

  • Standrard program/BAPI/FM to display days taken for PO

    Hi Experts,
    I have a requirement to display days taken for PO of given month interval ( from creation date to release ).
    Is there any Standard program or BAPI or FM is there to achieve the same.
    For example, in selection screen user entered 022008 to 062009.
    Output should be
    Days taken   022008       032008    042008     052008   062008 ..............062009
    0                     4                   1                              3             9     
    1                     3                 3               2              1              5
    2                     7                5                3             5               2
    and so on...
    means 0 days taken PO's in 022008 is 4 and in 032008 is 1
               1 day   taken PO's in 022008 is 3 and in 032008 is 3 and so on....
    Please let me is there any standrard program or BAPI is there to achieve the same.
    Regards
    Shaik

    Resolved

  • What does mean You can include static and dynamic tables into a Smart Form?

    Hi guys,
    If you check the official documentation for Smart forms in the Internet you will read that the initial pharagraphs of the text tell you "Tables - You can include static and dynamic tables into a Smart Form. Dynamic tables enable you to display tables whose size is determined only at the moment of their output by the number of the table items to be displayed". The link is the following: http://help.sap.com/saphelp_nw04/helpdata/en/a5/de6838abce021ae10000009b38f842/frameset.htm
    I was wondering if this means that I can use field symbols with dynamical number of columns to print a smart form. Because it would be great since the customer wanted a dynamical report depending on the week day it was (If Monday, there was only 12 columns, but if Friday, it will be 52 columns (1 column more for every day elapsed in the current week)). I had to create 5 different forms, but I think using field symbols I had spent less effort. Do you know if it is really possible? If not, then what does mean "You can include static and dynamic tables into a Smart Form"?
    Thank you in advance

    Hi ,
    The concept of static and dynamic tables in smartforms, means you can use template- ( static table as no of rows and columns is fixed). Also you can use table- dynamic as the no of rows will depend on your line items.
    Hope this will help you to close this thread.
    Also, try to find this answer in posted forums. Creating a new forum everytime just increases the network traffic. So please try to avoid it.
    Regards,
    Vinit

  • What is the table contains Function module include program name

    Hi,
    What is the table contains Function module include program name
    Regards,
    Raja

    Try this FUNCTION_INCLUDE_INFO to get the include number to which function module belongs to.From this u ll get only the particular include name.
    or
    if u need the all the includes used in the function group u have use INNER JOIN on TFDIR and D010INC table
    <b>Select binclude into itab from trdir as a inner join d010inc as b on apname = bmaster where apname = fmodname.</b>
    I hope this will help u.
    Thanks & Regards
    Santhosh
    Message was edited by:
            santhosh ds

  • HT5299 i have an apple cinema display circa 2005. what thunderbolt adapter do i need in order to be able to plug it into a current mac mini?

    I have an apple cinema display circa 2005. What Thunderbolt adapter will I need in order for it to work with a current model Mac Mini?

    see > I have an Apple Cinema Display ADC. What adapters do I need to hookup my ADC connected monitor to my Mac Mini.
    or > Using Older Apple ADC Displays with Mac Pro - The Mac Observer
    and > Thunderbolt and ADC: Apple Support Communities

  • I downloaded Mountain Lion in my  i have macbook pro retina display last month.  but I don't get airplay the option on my macbook.  I went to display preferences, but the airplay is not available.  What is the next step?

    I downloaded Mountain Lion in my  i have macbook pro retina display last month.  but I don't get airplay the option on my macbook.  I went to display preferences, but the airplay is not available.  What is the next step?

    You also need:
    Apple TV (2nd or 3rd generation) with software update v5.0 or later.

  • What table and fileds we have to use to develop a report for blocked

    what table and fileds we have to use to develop a report for blocked invoices?

    VBRK-RFBSK
    <b>     Error in Accounting Interface
    A     Billing document blocked for forwarding to FI
    B     Posting document not created (account determ.error)
    C     Posting document has been created
    D     Billing document is not relevant for accounting
    E     Billing Document Canceled
    F     Posting document not created (pricing error)
    G     Posting document not created (export data missing)
    H     Posted via invoice list
    I     Posted via invoice list (account determination error)
    K     Accounting document not created (no authorization)
    L     Billing doc. blocked for transfer to manager (only IS-OIL)
    M     Analyst Approval refused (only IS-OIL)
    N     No posting document due to fund management (only IS-PS)</b>
    Regards
    prabhu

Maybe you are looking for

  • Finder - list view font color is grey, why can it not be changed?

    Since upgrading to Mavericks, the font color in list view of Finder is a greyish color, not the classic black. the file name is still black font, but all other options (date modified, created, size, etc), are in a grey color, and it is hard to read.

  • Available vehicle status

    Is there any standard setting of the shipment, where if I trigger shipment start button, system automatically trigger the vehicle status from available vehicle to vehicle movement is in progress. Currently we have manually status of the vehicle, and

  • MMSC Changes cannot be reversed

    Dear Experts, I have excluded storage location from MRP for a material in MMSC. After saving, the field "Exclude Storage location from MRP" is  Greyed out in MMSC. Now, how can I reverse this change Please help me out Thanks, Shetty

  • Weblogic.transaction.internal.TimedOutException

    Weblogic transactions are defaulted to time out after 300 seconds and when we make multiple calls to the process(JPD), the response time of the call pushes us over the 300 seconds. I get TimeedOutException           Is there Any option to solve this

  • Lightroom 5 performance issue

    when I open a photo, I need to wait for about a 2-3 seconds, then the photo became sharp. When I use spot healing brush, the brush seems frozen and hard for me to move. My system config: window 8 8 g ram Core i5 compared with lightroom 4, lightroom 5