Table for Free Item field in PO

Hi Experts,
Can any one tell me the table for field UMSON (Free Item) of Purchase Order. This filed is available in table WVFB but it is not updating in there.
Thanks in advance.
Regards,
Sree

Hi,
I found two tables which contain this field
TB2BJ
MWZDM07M2
For finding a table which contain particular field you can use the t-code SE84
ABAP Dictionary -> Fields -> Table Fields
Enter field name and execute you will get list of tables containing that field
Cheers
Bikas

Similar Messages

  • Free item field checked defaultly in PO for one specific vendor

    Hi,
    If we always send a free PO to a vendor, is there any place to configure that once we create PO to this specific vendor, the free item field is checked defaultly?
    Some posts on the web indicated that they succeeded in doing this by setting in vendor master, but I cannot find the field.
    Where to achieve this function?
    Thanks!
    Wesley

    Hi,
    try to maintain a free goods condition in tcode MBN1 with        
    Discount type NR00 and make this article as an Additional material free    
    goods which will be procured free of cost on purchase of some other        
    article. The system will not consider the Net price value maintained in    
    the purchasing view of the article master and you would find that the      
    net price is ZERO for this free item in the Purchase order. 
    Regards,
    Edit

  • Calculation of sales tax for free item

    Dear SAP B1 Experts
    I have query regarding sales tax calculation for free item .
    For EG.  I have two item for sales (A = 1000,  B = 100)   Sales tax is VAT4%
    But when i am doing sales, i am selling B for free of cost with A for Rs 1000/- 
    here my tax calculation is (1000 *4%)  = 1040/-
    but as per the govt sales tax rule, we are liable to pay the tax for free item as well
    So I this case, In SAP B1 how we will calculate the tax 4% for free item  .
    Please help me.
    Thanks

    i have checked, its working okay, but
    in Invoice print out unit price and line total is showing for free item.  How i make the unite price 0 .
    Tax only calculation is based on the Line total and the line total is based on the unit price.
    in that case when i give the invoice to the customer.
    It should show like this
    Item A       100   * 10         1000
      "    B           0   * 1              00
                                             1000
    4% tax                               44
    Doc Total             =           1044
    thanks
    Regards

  • Delivery proposal for free item

    Dear All,
    While creating sales order with free item the delivery proposal deactivated, how we can make it editble in case free items (in schedule lines)
    regards
    murthy

    Hello Murthy,
    Please check the delivery proposal setting for free item Sales Area.
    go to -- IMG>S&D>BF>Availability Check & TOR>Availability Check>ATP>Define Default Setting Check for Sales Area.
    i hope it may help ful to you.
    Regards,
    Srinivasa Rao.

  • Excise capture in import po for free item

    Dear Friends
    I am having an issue.
    I have created an import po for free item.
    As the item is free of cost,system will hide the conditions tab item details tab.
    But we are paying the all the duties like CVD,Import Duty ,cess etc for the free item.
    The item detail tab is hidden, I cannot enter the planned delivery costs for the item
    Please advise me how can I capture Excise Invoice for the free itme in import PO
    Thnks

    The only way to do it is to assign a small notional value (like 0.01 USD) to the item, so that the conditions tab does not disappear.
    The only problem will be that the GR/IR clearing account will have an open entry, which can be cleared via MR11 with minimum accounting impact.
    Regards,
    Aroop

  • How do I opt-out of recieving email receipts for free items from the store?

    Hello,
    Currently, when I download free apps from the store I will eventually receive weekly receipts from e-mail. While useful on purchased items, I treat this as spam for free items.
    How do I opt-out of this for free items?

    I'm not aware of any setting to prevent the Apple's receipt to be sent.
    If you bought a mix of purchase item and free item, the will appears on the same receipt. Instead of considering them as spam, you can consider them as "a way to recall which apps you dowloaded in case something wrong happen".
    Personally, I have created a folder called "receipts" and simply send these mails to this folder.

  • Table for  Open items of the customer

    Hi all ,
    In whch table can the open items of the customer are stored.
    thanks

    check BSID  table for open items and BSAD for cleared items
    alll the best

  • Master Table for Work Items from BSP Application

    hello guys,
    just want to ask if there is a master table for work items (and other details) from BSP application?

    Hi,
          Ya its true but i want to connect my customized application to UWL in Enterprise Portal and there after approval i want my workitems to be punched in R/3 system.Is there any source code available,so that my application directly contact UWL in sap enterprise Portal as a link or workitems where user should have an option to approve or reject.
    If u have any idea plz let me know.
    Thanks in Advance
    Regards
    Santosh Saraf

  • Find table for a structure field

    Hi,
    I need to find table for field Q0743-OFFR1. I tried using tcode SE15, but was not able to find any table where the field is used.
    Is there any other method of finding a table for a structure field.
    Any pointers in this regard would be helpful.
    Thanks,
    Saher

    Hi,
    when u open the structure , u will find the tab " Component " in that you
    will find "Data Element" column which hold the data element of the structure
    component , now double click on the respective "Data Element " and that will
    open up the Data Element Page in which u will find a "Where Used List" icon
    , click on that, this will now display you the list, select the TABLE LIST
    Check box and execute, which will subsequently display you all the the table
    names which has "specified" data element's component as field
    Hope this will Help you.
    Regards,
    Kiran

  • Table for Commitment Item Groups

    Does smbd. know a table for Commitment Item Groups and probably a function module which reads a commitment item group from a commitment item ?
    Kind Regards
    Alexey

    You can use FM K_HIERARCHY_TABLES_READ with e_class = '0311'.
    Rob

  • Table for user status field in CJ20n transaction project defination

    HI ALL,
    what is table for user status field in CJ20n transaction project defination creation. This field is in Basic Data tab.
    Thanks.

    Hi,
    Check following tables for Usre status:
    TJ30 - User status
    TJ30T - Texts for user status
    TJ20 - Status profile
    JEST - Object status
    JSTO- WBS status profile.
    Check this code:
    REPORT zps_get_userstatus .
    PARAMETERS: p_posid LIKE prps-posid.
    *-- Constants
    CONSTANTS: gc_yes(1)     TYPE c                 VALUE 'X',
               gc_no(1)      TYPE c                 VALUE ' '.
    *-- Variables
    DATA: l_objnr LIKE prps-objnr.
    *-- Internal tables
    DATA: BEGIN OF lit_jest OCCURS 0,
           objnr LIKE jest-objnr,
           stat  LIKE jest-stat,
         END OF lit_jest.
    DATA: BEGIN OF lit_jsto OCCURS 0,
           objnr LIKE jsto-objnr,
           stsma LIKE jsto-stsma,
          END OF lit_jsto.
    DATA: BEGIN OF lit_status OCCURS 0,       "Combination of JEST & JSTO
              objnr LIKE jest-objnr,
              stsma LIKE jsto-stsma,
              stat  LIKE jest-stat,
            END OF lit_status.
    DATA: BEGIN OF lit_usrsta OCCURS 0,       "Uer status for all wbs
             objnr LIKE jest-objnr,
             stsma LIKE jsto-stsma,
             stat  LIKE tj30t-estat,
             txt04 LIKE tj30t-txt04,
           END OF lit_usrsta.
    DATA: BEGIN OF lit_usrtxt OCCURS 0,       "User Status text - TJ30T
            stsma LIKE tj30t-stsma,
            stat  LIKE tj30t-estat,
            txt04 LIKE tj30t-txt04,
          END OF lit_usrtxt.
    * get WBS object number
    SELECT SINGLE
         objnr FROM prps
               INTO l_objnr
               WHERE posid = p_posid.
    * get WBS active status from table JEST
    SELECT
          objnr
          stat
               FROM jest INTO TABLE lit_jest
               WHERE objnr =  l_objnr AND
                     inact <> gc_yes.
    * get WBS status profile from table JSTO
    SELECT
          objnr
          stsma FROM jsto
                INTO TABLE lit_jsto
                WHERE objnr =  l_objnr.
    * combine JEST and JSTO table for user status
    LOOP AT lit_jest.
      IF lit_jest-stat CP 'E++++'.
        READ TABLE lit_jsto WITH KEY
                            objnr = l_objnr.
        IF sy-subrc = 0.
          lit_status-objnr = lit_jest-objnr.
          lit_status-stsma = lit_jsto-stsma.
          lit_status-stat  = lit_jest-stat.
          APPEND lit_status.
        ENDIF.
      ENDIF.
      CLEAR: lit_jsto, lit_status.
    ENDLOOP.
    *  get text for user status
    SELECT DISTINCT
             stsma
             estat
             txt04 FROM tj30t
                   INTO TABLE lit_usrtxt
                   FOR ALL ENTRIES IN lit_status
                   WHERE stsma = lit_status-stsma AND
                         estat = lit_status-stat  AND
                         spras = sy-langu.
    Let me know if you have any question.
    Regards,
    RS

  • Table for line items for parked documents

    Hello all,
    Do anyone know what is the table for line items for parked documents(fbv3)?
    Because I check bseg and these doc. aren't there.
    Thanks a lot!

    Hi,
    Please Check table "VBSEGS" you will get parked document ine items .please check below link it will clear...
    Find tables for GLs on Parking Documents by FB60
    Thanks in advance
    Chakri

  • What to know the master table for the following fields

    I want to know the master table for the following fields.
    Company code ( BUKRS )
    Chart of depreciation ( AFAPL)
    Main Asset Number  (ANLN1)
    Asset Sub Number ( ANLN2 )
    Asset Class ( ANLKL )

    hi,
    1) t001 (<b>for assets T093C</b>)
    2) t096
    3 and 4) anla
    5) anka
    rgds Andreas
    Message was edited by:
            Andreas Mann

  • Linkage for RSEG and BSIS tables for tax item

    Hi,
    How to find corresponding tax line item in BSIS or BSAS table for a RSEG line item. 
    In case of BSET table I could find the linkage by BSET-TXGRP and RSEG-BUZEI.

    The obvious link I can see is on bukrs/belnr/buzei/mwskz fields.
    All available in all tables.  The company code and accounting document number is normally enough but if there are multiple line items use the buzei fields as well.  The tax field on is MWSKZ. 
    Same on both BSIS/BSAS and RSEG. 
    BSAS is almost the same table as BSIS but has the clearing items as well.
    Message was edited by: Barry Neaves

  • Custom duty for Free items

    Here i receive free items from import vendor ,But how i maintained for custom duties in PO .beacuse when i mark free indicator ,condition tab (item level) gets automatically dissappear.Also there is tab for condition at Header level but no custom duty conditions there.Please suggest what can i do ?

    hi,
    follow the below steps
    1. make GRN by 501 or actiavte free receipt indicator in PO(note MAP of the material will get changed)
    2. capture excise invoice by J1ID-capture excise without PO/refer Material document
    3. Book the Customs duty by FB60.

Maybe you are looking for

  • Key Date a Customer Exit and Variant use

    Hello,   I have a query and it includes time dependent data. The key date uses a  variable that is filled with the current date in a customer exit. Works nicely when the query is executed. However, if I save a variant with various values for variable

  • How can I cancel my iCloud Storage Upgrade?

    I enthusiastically upgarded my storage to 100GB the other day, thinking that iCloud would suit my needs.  However, I am on Google Apps for my business and it seems that iCloud will not sync, and I am not willing to switch to all iCloud at this time.

  • ___Advice on how to print html from an applet___

    I have been working on this problem for a little while, but still can't find a good solution. I ask for any help/advice I can receive on this matter. Below is what I have already tried: 1) Place the HTML within a JEditorPane and print the graphics ob

  • Info on support patches

    Hi, Just need someone to point me in the right direction.  I remembered seeing SAP Notes on what bugs a particular patch will fix but I've been looking high and low in SAP Marketplace and can't seem to find it. Can someone point me in the right direc

  • Question - Sorting by a specified order that is neither Z to A, or A to Z -- is this possible and how?

    I need records sorted in a specified order using a text field where A to Z or Z to A won't work.  An example would be Orange, Banana, Cherry.  How do I make it happen?