Item catagory field in PO (me23n)

i want table name and field name for item catagory and account assignment of a PO.
Message was edited by: Madan Gopal Sharma

HI madan
you can get it from EKPO table whisch contains the item data.
check ATTYP
<b>hi madan
try checking PSTYP in EKPO which show the item category.
it has values 0-9 but there will be conversion exit which will show the meaningful data.</b>
regards
kishore.
Message was edited by: Harikishore Sreenivasulu

Similar Messages

  • Item catagory field display in sales order lin item

    Hi experts,
    I would like to have your view points to gray out item catagory field at sales order item level.
    In our scenario, company has outsourced sales order creation to third party vendor. Also we have restricted sales order creation for these user's via role creation for certain document types.
    Even after these settings, now they have access to item catagory field to modify. We want to gray out this field so that they will not be able to update it to another item catagoroy.
    Thanks in adavance for your reply.
    Regards,
    Prabhaharan

    I have a suggestion, which can act as a work around through configuration. Maintain only one default Item category & do not maintain any alternative item category, which can be changed manually. this will serve the purpose of not changing the Item Category & even if user tries to change, it will not accept any other item category.
    Menupath: SPRO --> Sales and Distribution --> Sales --> Sales Documents --> Sales Document Item --> Assign Item Categories
    Regards,
    Rajesh Banka
    Reward points if helpful.

  • Item catagory field reference

    Dear All,
        Where we have assign field reference for item catagory
    like for  item catagory L-subcontract on third header -material data -component field comes
    ,for item catagory k-consignment trere is no invoice & condition
    can any one give the details setting for itemcatagory
    Regards
    Amin

    The path is SPRO-MM-Puchasing- PO- Define Screen Layout at Document Level.
    Here PT** Field references are for different Item categories. For Consignments it is PT2F and for subcontracting it is PT3F.

  • Item category field in sale order screen to be greyed out

    Dear Friends
                        While creating sale order I have a requirement to make item category field to be uneditable i.e greyed out .
    How can I do that ?
    Regards
    Mahesh.

    Hi,
    Once there is any subsequent document to sales order item catagory field is going to be grayed out, till that time u can change ur item category. OR if u do nlt maintain manual item categories in the item category determination  to ur sales document type it is not possible to change the item category other than the one u specified in the determination.
    Regs,
    Ravi Duggirala

  • Add item detail field into items overview table on ME2xN transactions

    Hi all and happy new year !
    We want to add an item detail field (manufacturer part number = MEPO1321-MFRPN) into items overview table
    on ME21N, ME22N and ME23N transactions.
    Does someone know if it's possible with a badi or other kind of exit ?
    thanks for your help
    Eric

    Hello Eric,
    If you want to system to show  Mfr Part Number you must not maintain the "MPN Profile" in materail master.
    But if you are using a material with profile, you will only get these fields pooulated  if you order the MPN material, and not the internal one. See also information in note 615722.
    Regards,

  • Item Catagory in Order/Delivery

    Hi Experts,
    when we create an order ,the Line item in that order will behave according to Item catagory. Hence If we create Delivery with reference to that Order , same Line item will be copied from Order to delivery. So If this is the Case, why do we need to define Item catagories for Delivery.Can anybody please explain with simple example.
    Thanks,
    Kanna Palle
    Edited by: kanna palle on Dec 9, 2008 7:02 AM

    Dear Kanna,
    Check with, T. Code: 0VLP (zero-VLP)
    There, select an Item Category and Read the description for every Field. This will give the information about the behaviour of that Item category, within the Delivery-Doc.
    Some Key-Points are:
    1. It ensures, whether the Item is relevant for pcking or not.
    2. Relevant checks for Delivery Qty. from Order Qty. ( i.e. checks for overdelivery)
    3. Automatic Batch Determination
    4. Controls whether it makes sense to enter an item in the SD document with this item category without specifying a material.
    Best Regards,
    Amit
    Note: Related Threads:
    [Delivery Item Cat.|Sales & Delivery item category]
    [Del. Item Cat.|delivery item category]

  • For Z Po order type - Item category field is  greyed out.

    Hi MM Experts,
    I am an ABAper working on PO creation with respect to PR( PR with account assignment N)  for Z order type . The requirement includes to update item category of PO with B , But for this Z order type both PO transaction Create/Change(ME21/ME22) the field item category has been greyed out ( Non editable). I checked the SPRO setting for this order type ( SPRO-MM->Purchasing-PO->Define Screenlayout at document level .The field item category has been made as optional.
    Please let me know why this field ( item category still showing in display mode) and How to make it as editable .I need it as editable in ME22 to implement the new requirement of updating that field with item ategory B.
    Thanks in Advance
    Pravee.

    Hi All,
    Since I was creating a PO with respect to PR - after running through all the screens the item category field was becoming non editable, But during the create in one of screen the field item category was still editable, so I updated the item category with B during the create and created the PO, I have used BDC to do the same and its working fine. Thanks for all your inputs.
    Thanks
    Pravee.

  • WebPart is raising the following error "Invalid data has been used to update the list item.The field you are trying to update may be read only"

    I have created a farm solution and then i deploy it to SharePoint server, the code looks as follow, and i use it to update a page info values (as the current page values represents old info):-
    [ToolboxItemAttribute(false)]
    public partial class VisualWebPart1 : WebPart
    // Uncomment the following SecurityPermission attribute only when doing Performance Profiling using
    // the Instrumentation method, and then remove the SecurityPermission attribute when the code is ready
    // for production. Because the SecurityPermission attribute bypasses the security check for callers of
    // your constructor, it's not recommended for production purposes.
    // [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode = true)]
    public VisualWebPart1()
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    InitializeControl();
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["Pages"];
    web.AllowUnsafeUpdates = true;
    foreach (SPListItem items in list.Items)
    items["Author"] = "SharePoint";
    items["Created"] = "01/08/2014 01:44 PM";
    items.Update();
    list.Update();
    web.AllowUnsafeUpdates = false;
    protected void Page_Load(object sender, EventArgs e)
    but when i try adding this web part to a page i got the following error:-
    Invalid data has been used to update the list item.The field you are trying to update may be read only
    so can anyone advice?

    i only changed lines bitween 
    web.AllowUnsafeUpdates = true;
    and
    web.AllowUnsafeUpdates = false;
    and other parts of code remains without change
    so it will updates all pages in current web
    yaşamak bir eylemdir

  • Make Item level field Non-Editable in VA01

    Dear Experts,
            I have a requirment to make ITEM Category field in item level of VA01
            make Non-editable based on the value of Sale order Type in the main screen
      i am using Program MV45AFZZ to make necessary changes i am able change any thing on the header level but i am not geting the control of item level Please suggest me how to change or make fields non-editable in Item level.

    Hi,
    Try writing code in FORM userexit_field_modification.
    *** Lock field pricing date in SO if delivery occured
      IF   screen-name = 'VBAP-PSTYV'  AND
           sy-tcode NE 'VA01' AND l VBAK-AUART EQ 'your document type'.
          screen-input = 0.
      ENDIF.
    ENDFORM.                    "USEREXIT_FIELD_MODIFICATION
    KR Jaideep,

  • Item status Field in FIAR

    Dear All
    We are using Standard business content to extract FIAR Data. We have not written any rules for Item status field for AR.
    We are getting wrong item status field. For some customerseven if document is cleared and moved to BSAD table, The document shows Open in my FIAR cube. What could be problem in this case
    Regards,
    Saurabh.

    Hi
    It shows only Open Item as the partial payments can not be maintained through the Info Cubes. Because Info Cubes always Addition concept.(Hope you are using Reverse/inversion field here for fetching the data to BI side)
    You can Use DSO for this purpose as it has the Over write functionality but still your problem is not solved because it shows the Open here also, But can trace the changes through Change log table.
    Try to use 2 Info Objects to map with both the Open and Clear because you have partial payment concept is one way OR
    Take functional Team help to create one more Item as Partial Concept would be the Best option in your case to report correctly either by Cube/DSO.
    Hope it helps and clear

  • For a PO with item catagory S user exit was not triggering

    HI SDN,
    I wrote a code for invoicing plan in EXIT_SAPLMRMP_001 for block the payment with INVOICE VERIFICATION block .
    it is working fine for a PO with item catagory Blank
    and not working for item catagory S.
    please suggest me is there any solution for this?

    y

  • With Oracle Portal 11g Item Text field there is no limit 32k?

    I have a question to O, then Oracle Portal 11g Item Text field there is no limit 32k? Because the version old is limited to 32k for fieldText Item Text. When i add Item text than 32k have error :
    http://btcportal.btc/portal/pls/portal/PORTAL.wwv_add_wizard.edititem
    400 Bad Request
    Unable to process request. Please check the log file for more details.
    thanks!

    Text items are still limited to 32k in Portal 11g. Check the Portal Online Help section 'Add/Edit Text-Based Item' for documentation of this limitation.
    Thanks,
    Erik Janssen

  • Is it possible to change the VBAP-ADRNR item address field value?

    Hi,
    Is it possible to update the VBAP-ADRNR item record field value?
    I am trying to update this field value from BAPI_SALESORDER_CHANGE but it is not changing the value.
    I am only able to change the corresponding address for that address number.
    But I need to change the address number( I want to replace with header address number) itself.
    If any ideas please let me know.
    Thanks,
    Mohan.

    ajitabap wrote:
    Hi
    >
    > Schedule Lines related Data USING BAPISDORDER_GETDETAILEDLIST Then Pass them to BAPI_SALESORDER_CHANGE Then It work and update the field.
    >
    > Regards
    > AJIT
    eh????
    What's the relevance of schedule lines and ADRNR?
    @OP: Don't. There is a reason why SAP gives out a new ADRNR. And manually changing the value of a primary/foreign key is never a good thing to do.

  • From line item text field in Fi not posted to COPA characteristic field?

    How do you create the link from the Line item Text field in FI to a characteristic field in COPA?
    I tried to create a characteristic field Text. from the domain VBELN in COPA.
    Although I can post from CRM the contract number to the Line itemText field in FI posting,
    I can't get this contract number to post to a characteristic field in COPA.
    Thanks,
    Sony

    program a bdc to tcode fb09
    A.

  • Fill BSEG-LIFNR and LFA1-NAME1 in line item text field of Bank GL line item

    Hi all,
    I need to develop a program to populate the Vendor Number (BSEG-LIFNR) and Vendor Name (LFA1-NAME1) in the line item text field of Bank GL line item.
    The UI design will have the input data as:
       - Company Code
       - Posting Dates (both from and to date)
       - Execute Icon
    Please let me know how to proceed on this.
    Thanks and regards,
    Anishur

    program a bdc to tcode fb09
    A.

Maybe you are looking for

  • [SOLVED] Black screen after GRUB

    Hello everyone I was setting up a machine with E17 and was trying various DM's since none seemed to work. After attempting to use LightDM, I get a black screen after GRUB. I was trying to read the various logs at /var/log/ but I cannot understand the

  • Web browser ...need help

    hello everyone..i have built a simple web browser using java..i can go to google.com or facebook.com but whenever i want to search something or want to login providing necessary information it doesnt work..can anyone tell me whats wrong here??nd how

  • Deleting an entire IS project

    Hi, What is the fastest way to delete an IS project with all its childs (rules,bindings,scorecards, ... etc) all at once? without deleting them one by one. Even from CMC, you can't delete a project unless you clear all its childs. Please help as dele

  • Where has the Calendars, Contacts check boxes page gone in iTunes 11.1.2

    Since the new update with Maverick, the page has gone so my ipad isn't syncing Calendars and its Contacts have been deleted. I back up to computer and not ICloud

  • How can I make a table cell liquid?

    Let me explain... I have a table on one of my photo pages. It consists of 3 columns, the first which is merged all the way through, and 5 rows. The last 2 columns house my thumbnails, and the 1st column acts as the "container" of the selected thumbna