Maintain separate table for these  fields

I want to maintain separate table for this fields.
1. Sales order number
2.item number
3.material
4.qty pricing date price change date if u user changes price manually.
5. Order price
6.sales value
Where will we get these fields  from which table.

Hi,
1. Sales order number = VBAK-VBELN
2.item number = VBAP-POSNR
3.material = VBAP-MATNR
4.qty pricing date price change date if u user changes price manually.
Qty from VBAP-KWMENG
Price date = VBKD-PRSDT
Change Date = VBAK-AEDAT
5. Order price = VBAK-NETWR
Thanks,
Mandar

Similar Messages

  • Use 'SDPARTNERLIST' as a table for pick fields

    Hi Experts,
    can we use 'SDPARTNERLIST' as a table for pick the fields paertenr function, partner and name1 in scripts,
    or is any reference table for these fields,,, if any could u tell me fields and tables
    Edited by: Alvaro Tejada Galindo on Feb 25, 2008 5:46 PM

    Hi,
    You acn code your select in the following no>
    select single vorna nachn from PA0002 into
                       (gv_vorna , gv_nachn )
    where pernr = ......
              subty = ...... and
              OBJPS = ...... and
              SPRPS = ......and
              ENDDA = ......and
              BEGDA = ......and
              SEQNR = ........
    Whatever key fields data available you can pass it in the where clause of the select query.
    Then after the select query, you can pass in the same variables in the script gv_vorna , gv_nachn to print the data.
    Hope this helps.
    Regards,
    JLN

  • Table for Screen Field Properties

    Hi Guys,
    I have strange requirement.
    Lets say i have designed 5 fields in the Dialog Program. 2 fields belongs to Group1,another 2 fields belongs to Group2 and 3rd field is belongs to group3.
    Where can i find those values (I mean which table). I belive it should be Program,screen no and data type.
    Note : Groups you can set in Attributes of the field in Dialog Program.
    Thanks
    Poorna

    Setting Screen Field Attributes
    Every screen field has attributes that you set in the Screen Painter when you define the
    screen. At runtime, you may want to change these attributes, depending on what
    functions the user has requested in the previous screen. At runtime, attributes for each
    screen field are stored in a memory table called SCREEN. You do not need to declare
    this table in your program. The system maintains the table for you internally and updates
    it with every screen change.
    The memory table SCREEN contains the following fields:
    Name Length Description
    NAME 30 Name of the screen field
    GROUP1 3 Field belongs to field group 1
    GROUP2 3 Field belongs to field group 2
    GROUP3 3 Field belongs to field group 3
    GROUP4 3 Field belongs to field group 4
    ACTIVE 1 Field is visible and ready for input
    REQUIRED 1 Field input is mandatory
    INPUT 1 Field is ready for input
    OUTPUT 1 Field is for display only
    INTENSIFIED 1 Field is highlighted
    INVISIBLE 1 Field is suppressed
    LENGTH 1 Field output length is reduced
    DISPLAY_3D 1 Field is displayed with 3D frames
    VALUE_HELP 1 Field is displayed with value help
    To activate a field attribute, set its value to 1. To deactivate it, set it to 0. When you set
    the ACTIVE attribute to 0, the system suppresses the field and turns off the ready for
    input attribute. The user can neither see the field nor enter values into it.
    Note
    You can define values for each of these attributes in the Attribs. for 1 field section in
    the field list of the Screen Painter. If you need more information about attribute
    meanings, see BC ABAP/4 Workbench Tools.
    Modifying the Screen SAP AG
    Setting Screen Field Attributes
    32u20134 May 1997
    As an example of modifying the screen dynamically, start with transaction tz50
    (development class SDWA).
    The transaction consists of two screens. In the first screen the user can enter flight
    identifiers and either request flight details (by pressing a Display pushbutton) or press the
    Change pushbutton to change the data of screen 200.
    The field attributes are now set dynamically, according to whether the Display button or
    the Change button was selected. In both cases the same screen is now called, but with
    different field attributes.
    If the same attributes need to be changed for several fields at the same time, these fields
    can be grouped together. For example, in order to change the fields in screen 200
    dynamically, we assign these fields in the Screen Painter to the group MOD. You can
    specify up to four modification groups for each field. The contents of the Groups field
    are stored in the SCREEN table.
    The changes to the attributes of the fields in this group can be implemented in a PBO
    module:
    SAP AG Modifying the Screen
    Setting Screen Field Attributes
    May 1997 32u20135
    MODULE MODIFY_SCREEN OUTPUT.
    CHECK MODE = CON_SHOW.
    L0OP AT SCREEN.
    CHECK SCREEN-GROUP1 = u2019MODu2019.
    SCREEN-INPUT = u20190u2019.
    MODIFY SCREEN.
    ENDLOOP.
    ENDMODULE.
    The memory table SCREEN contains each field of the current screen together with its
    attributes.
    The LOOP AT SCREEN statement puts this information in the header line of this system
    table.
    In this example taken from transaction tz50, if the user chooses Display then SCREENINPUT
    is set to u20190u2019 and all fields belonging to the MOD group thus become display-only
    fields.
    Because attributes have been changed, the MODIFY SCREEN statement is used to write
    the header line back to the table.
    Modifying the Screen SAP AG
    Changing Screen Field Attributes with the Function Field Selection

  • Need report for these fields

    HI,
    need to write a report for these fields.
    PO number (EKPO_EBELN), Article number (EKPO_MATNR), Vendor part number (EKPO_MFRPN), Description (MAKT_MAKTX), Quantity in Base unit of Measure (EKPO_MENGE) and Quantity in BuyPack unit of measure and Net price (EKPO_BPRME).
    Give me it ASAP.
    Regards,
    Chow.

    Naidu,
    DATA : Begin of  I_EKPO  occurs 0,
                  MATNR LIKE  EKPO_MATNR,
                   MFRPN LIKE  EKPO_MFRPN,
                   MENGE LIKE EKPO_MENGE ,
                  BPRME LIKE  EKPO_BPRME ,
                  MAKTX LIKE  MAKT_MAKTX,
                End of I_EKPO.
    select EKPO~EBELN
    EKPO~MATNR
    EKPO~MFRPN
    EKPO~MENGE
    EKPO~BPRME
    MAKT~MAKTX
    from ( ekpo inner join makt on
    ekpomatnr = MAKTmatnr )
    into table I_ekpo
    where ebeln in s_ebeln.
    Don't forget to reward if useful..

  • Table for BETRG Field

    Hi Experts,
    I am working on an ESS MSS project. Currently I am working on a report in which I have to find the expenses of an employee.
    The field BETRG gives me the expenses for that employee. but I am unable to find a table for this field.
    Does anybody know how to extract field

    Hi Mukul,
    Goto SE11 and give this  data element and try a where used list.
    U can get list of tables which uses this field.
    Here are some list of tables which uses this field.
    HRP1501(DB Table for Infotype 1501)
    HRP1502(DB Table for Infotype 1502)
    PA0021(For infotye 0021)
    PA0052(Wage maintainence)
    I thnk u shuld use these tables since ur looking for employee expenses.Still there are many PA tables associated with it .
    Chk which table suits ur requirement.
    P01CBF
    P01CEF
    P01CGP
    P01CSL
    P01CSO
    P01Y15
    Regards,
    Lakshman.

  • How to extract data for these fields from R/3 ?

    Hi frnds,
    My requirement is to extract the following fields which
    are related to MM: Condition type, condition
    value, Bill of lading, Qty in external delivery note,
    Different invoicing party, Invoicing document from R/3 to
    BI. But i found that they are not in any purchasing
    datasources or inventory datasources ( Except different
    invoicing party but the values are not picking up through
    standard extractors ).
    Anyone please tell me are there any standard datasources for extracting these fields ?
    If not, if i want to enhance datasources for these fields
    which datasource do i need to enhance i.e
    2lis_02_itm,2lis_02_scl,2lis_02_s012 or 2lis_03_bf,
    2lis_03_um ?
    Full points will be assigned.
    Regards,
    Bhadri M.

    Hi.......
    I think you have filled the set up table..........and you have replicate the datasource also.......and after replicating you have activated in the BI side........
    Then it should extract the data............
    Are you in BI 7.0...........
    You try one thing...............
    Replicate the datasource again............and then activate the transfer rules using program : RS_TRANSTRU_ACTIVATE_ALL...........
    Also check the selection tab of your Infopackage........may be you are giving some selection.........also check if it is coming till PSA..........if it is coming till PSA.....then check your transformation and DTP.......
    It may help you...........
    Regards,
    Debjani..........
    Edited by: Debjani  Mukherjee on Sep 21, 2008 11:18 AM

  • R/3 tables for the fields of  0fi_gl_40

    How to find the r/3 tables for the fields of the datasource 0FI_GL_40.For example this datasource has ANLN1(Asset),ANLN2(Asset Subnumber) and AUFNR(Order)
    fields.Is there any tcode or table that gives the r/3 tables for the the fields of the above datasource?

    Sometimes the help really does provide the information
    http://help.sap.com/saphelp_nw70/helpdata/EN/88/3c36861f874739a916df63ab6d7ca0/content.htm

  • How to find the Check table for a field ?

    Hello All,
            I have the filed name f1.
    Now I want to know the check table of this field programatically and if this field has a configuration table then I need that table also.
    eg: if werks is the field the Master         Table is : MARC
                                    and Configuration Table is : T001W.
    Is this possible first of all programatically ?
    If yes can anyone help me out ?
    Regards,
    Deepu.K

    Hi again,
    1. I don't know the master table for the field werks
    A field is never independent. It is always linked to a table,
    otherwise the information is only half.
    2. So incase if we do not know the tablename,
       its best to query the table DD03L with WERKS,
      and filer out CHECKTABLE with *,
      and take any one record.
    regards,
    amit m.

  • Need tables for the fields

    Hi,
            I want to know the tables where these fields can be available...
         Field “SERNR1”  -  Serial Number
    •     Field “MATNR1” – Assy Matl
    •     Field “SERNR” – Assy Serial NO
    •     Field “ARKTX” – Assy Description
    Pls let me know as soon as possible..

    Hi,
    check table vbap / VBRP/ LIPS , in those tables you can get
    ARKTX,MATNR,SERNR  fields.
    But there is no field with the name sernr1 in standard databse tables. May be that you can find in customized tables created specific to your project.that we cant see .
    but about matnr1 you can get in the following tables.
    VCRSELA_RES      Cross Selling Analysis: Results     
    HBSRLS           Affected Building List              
    Regds
    Sivaparvathi
    Please reward points if helpful...
    Edited by: Siva Parvathi on Dec 20, 2007 11:34 AM

  • Master table for the field BSART

    hi friends
    pls tell me, which is the master table for the field BSART.
    because i want to get the search help fo that field....

    Hi babu,
    If u want know what the table and where the fields are resued go to T-code SE15. u can find ...
    Regards,
    Bharani.

  • Maintain F4  help for a  field

    Hi friends,
    I need  to maintain F4(search help)  help for a field which is in one standard transaction code.
    Tcode: CA01..  field : LTXA1(description)
    steps to show that field .
    goto tcode CA01
    1> maintain inputs.  press enter  .  we will  get   create routing overview.
    2> select one task list  and press operation (F7)
    3> then we will get   create routing: operation overview.
    in the description field i want search help.
    how can maintain search help for this field.
    can you please suggest me how can handle this .
    Regards,
    sateesh.

    Hi Sateesh,
    You can check for the standard screen on which that field resides to which you want to add F4 help. Add another routine on it as "Process on value-request" for that field by doing modifications on standard screen and add routine for it under it for F4 help. Sample code will look like :
    Process on value-request.
    Fields : <field> module <name>.
    Let me know if it helps.
    Gouri.

  • Function Module/Table to retrieve check table for standard fields

    Hi,
    Is there any function module or database table that holds the check table for standard field? Ex. BUKRS = T001.

    Hi MArc,
    Goto DD03L table
    Enter fieldname and tablename, you will get check table in CHECKTABLE field.
    e.g. fname - MATNR, tbname MARD then CHECKTABLE - MARA
    Reg,
    Sachin

  • There are no PSA tables for these selection criteria

    Guys,
    I am facing this problem while loading Master data hierarchies.I see the below error in Details tab
    "There are no PSA tables for these selection criteria ".
    Pls advice.

    Hi ,
    1. Check first in source system that whether the extractor is active or not .
        Best wayout to check from RSA3.
         Hierachy datasources sometime gives error in RSA3 , you can also check froim RSA1HCAT in source system .
    2. If extractor is active and while loading it gives error , you need to activate the transfer rules again and try to extract the data from r3 .
    With Regards
    Ankit Vaish

  • Thread: There are no PSA tables for these selection criteria - RSAODS209

    Hello,
    i'm trying to run an infopackage (0GL_ACCOUNT_T011_HIER_ME_FULL_R3) to load complete upload of hierarchy (0GL_ACCOUNT-HIERARCHIES 0GL_ACCOUNT )  extraction via PSA and then in corresponding info object. The load seems to work fine between ECC and PSA but it doesn't:
    I lok at PSA and the monitor-request-status is RED and the message: "There are no PSA tables for these selection criteria - RSAODS209". 
    these are the messages:
    Processing (data packet): Errors occurred
    Data Package 1 ( 2370 Records ) : Errors occurred
    Update PSA ( 2370  Records posted ) : Errors occurred
    Data save in PSA started
    2370 records written in PSA
    There are no PSA tables for these selection criteria
    I've created a new package only for loading the PSA (not the final object)  but the same error appears.
    I have also see this thread but I have no solution yet...
    There are no PSA tables for these selection criteria - RSAODS209
    thanks for your help!!

    Hi Marcel,
    Check whether you have any RED requests in your PSA--> If so delete them
    Make sure your DS, transfer rules/Transformation are active.
    Also once replicate your DS & activate. Also activate transfer structure. Then try loading.
    Hope it helps!
    Regards,
    Pavan

  • There are no PSA tables for these selection criteria - RSAODS209

    Hello,
    i'm trying to run an infopackage (0GL_ACCOUNT_T011_HIER_ME_FULL_R3) to load complete upload of hierarchy (0GL_ACCOUNT-HIERARCHIES 0GL_ACCOUNT)  extraction via PSA and then in corresponding info object. The load seems to work fine between ECC and PSA but it doesn't:
    I lok at PSA and the monitor-request-status is RED and the message: "There are no PSA tables for these selection criteria - RSAODS209". 
    these are the messages:
    Processing (data packet): Errors occurred
    Data Package 1 ( 2370 Records ) : Errors occurred
    Update PSA ( 2370  Records posted ) : Errors occurred
    Data save in PSA started
    2370 records written in PSA
    There are no PSA tables for these selection criteria
    I've created a new package only for loading the PSA (not the final object)  but the same error appears.
    I have also see this thread but I have no solution yet...
    There are no PSA tables for these selection criteria - RSAODS209
    thanks for your help!!

    Duplicate thread

Maybe you are looking for

  • Save As PDF bugs

    Hi All, In the past, I've always printed to PS via the Distiller instance, but now we have new branding with spot colors used in the FM templates, so now Save As PDF is a must. I am finding what I think to be a bug, because it is consistently reprodu

  • How do you save videos from iPhoto to a USB flash drive?, How do you save videos from iPhoto to a USB flash drive?

    Hello! Could someone please help me? I am trying to save vidoes from iPhoto to a USB flash drive. After I export them, I open my flash drive to play them back and they are all zero seconds long in Quick Time Player. What am I doing wrong?

  • Monitoring WebLogic Timer in WL 8.1

    Can Timers be monitored and tracked using WLST or from a JMX console. Under what circumstances would a timer stop publishing notifications: under load, OutOfMemory errors, internal errors etc.? Thanks!

  • My ipod nano appears to be dead

    Theres nothing on the screen even after charging for a few hours, I've tried toggling the switch and holding the menu and select buttons. The odd thing is when it was plugged into the computer I can find all the music on the ipod path?? suggesting th

  • Zen Micro Basic Help Plea

    Ok, I read the ENTIRE manual that came on the install CD. This is ALL I want to know: How do I STOP a song from playing say at mid-song? I don't want to switch to a different song, I just want to stop it. Not pause it and have it resume again later.