Unable to Update PO Customerdata tab at Item level using BAPI_PO_CHANGE

Dear Experts,
I am unable  to Update PO customer tab data at item  level using BAPI :BAPI_PO_CHANGE.
I am passing the data structure  through  EXTENSIONOUT is refered with BAPIPAREX structure.
Can any one help on this.
Best regards,
Venkata Siva.

Hi Venkat,
Check this note 1033925.[Using Extension|Update EKKO table for the custom field through BAPI;
Regards,
Madhu.

Similar Messages

  • Inter company PO Shipping Tab in item level.

    Hi Everybody,
    I want to make Inter company PO but I am not getting the Shipping Tab in item level. All Sales view is maintained in Material Master for both the Plant and Material. Could anybody help regarding the Settings of Shipping point to get Shipping tab while creating the PO.
    If any Sales module setting if required please inform.
    Already for one Plant it is getting, but same I have to maintain for another Plants.
    At backend supply plant & receiveing Plant for Doc type is maintained and checking rule is also assinged.
    regards,

    have u dont the setting for shiping date for plants
    do the setting for the plant
    create a customer for a plant and assign in following
    spro-- mm-purcpur ordset up sto
    Define Shipping Data for Plants
    ur issue will be solved
    Message was edited by:
            Umakant Bhangale

  • Suppressing tabs at item level in sales order

    16.07.2008
    Hi friends,
    How do i suppress tabs like say the condition tab or the billing plan tab at item level for a Sales document type and for certain users when the user is using transaction code va02?. My requirement is certain users should not be able to change date in these tabs.
    Please suggest.
    Regards,
    Uday

    Hi,
    You can control it through user-exit USEREXIT_FIELD_MODIFICATION in program MV45AFZZ by using following coding. You have to create database table <ztable> where you will maintain user who are not allowed to change the billing date.
      tables: <ztable>
      case screen-name .
        when 'VBKD-FKDAT'.
          if vbak-vbtyp eq 'C'.
            select * from <ztable>
               where user_name eq sy-uname.
               if sy-subrc eq 0.
                  screen-input = 0.
               endif.
          endif.
      endcase.

  • Adding a new tab on item level in me21n tcode

    Hi all.
    i am adding a new tab on item level in me21n tcode.
    i want to make this tab to be shown on the screen when the order type is UB is stock purchase order.i dont know how to make this condition and where should i place it so that this tab can come in effect only when the stock purchase order appears.
    please help.thanks

    hi
    chk this
    Re: New tabs in the header tab-sheet of ME21N/ME22N/ME23N
    hope this helps
    regards
    Aakash Banga

  • User EXIT to suppress or disable  "Conditions" tab at item level in va02

    hi gurus,
    well i have very urgent requirement to suppress Condotion tab at item level in va02 based upon authority object, did you know where i can disable the function code "T\05" or suppress subscreen.
    my requirement is that when a user press on condotion tab he should not be able to see pricing detail data.
    will reward points for sure
    mandy

    Hi Mandy,
    I think you can do through SHD0 Transaction by creating transaction variants.
    If not possible there could be some customization from SPRO, consult with your functional guy.
    Check this enhancement MV45AFZZ
    PERFORM USEREXIT_FIELD_MODIFICATION, I think in this perform you may disable, check this
    Regards,
    Satish
    Message was edited by:
            Satish Panakala

  • Add additional tab on item level in contract for customer fields

    Hi Guys,
    Does anyone know if the following is possible in SRM 7.0, and if so can you please give a very short description how to accomplish this -
    In addition to the standard tabs available in the contract (general data, notes, conditions etc.), is it possible to add a new customer specific tab on item level, in a central contract and add some customer fields to this tab?
    I know it is possible to add customer fields in SRM, but I am curious if I can create a new tab for these fields, so that I can group all customer fields together in one place.
    Thx.
    Kind Regards,
    Skander

    Yes. it is possible but you have to take care of in the back end too and how these fields comes and sit in ECC. so that you may need to map in the IDOC or XI data . so that these information must be pssed to ECC and available  and accordingly you need to change in purchase order too since all these data will be copied into purchase order too.
    for example :- if you add one field in header level /item level of contract
    and it must be coppied into Backend contract as well as your next consecutive docuemnt like Purchase order must be taken care. hope you understand now.
    Muthu

  • Proble in VA01, cant see condition types in condition tab at item level

    Hi
    Well i am facing a strange problem in VA01, i am not able to see condition type whole grid under Condition tab at item level in VA01. actually i was given a project to hide pricing data from particular users based upon Authorization object value. initially i though it might be because of that so  i revert back all the changes but the problem remain Intact.
    well do you have any idea which user exit or enhancement may affact this or do you knoe if it can be because of  SD configuration changes.
    i mean can be hide condition type in VA01 through pricing condition.
    the other thing is its working fine in VA02.
    i made changes in following include
    MV45AFZZ
    MV45AFZB
    LV69AFZZ
    RV60FUS4
    any help will be highly appreciated .
    rewards for sure
    mandy
    Edited by: mandy on Jan 15, 2008 2:11 PM

    use this
    INCLUDE MV45AFZZ. include.
    u will find  FORM USEREXIT_PRICING_PREPARE_TKOMK  
    where u can change
    princing
    i am puting my code which i did
    ok
    DATA : WA_KOMV LIKE XKOMV,
           WA_ZPRICING LIKE ZPRICING1.
    IF SY-TCODE = 'VA01'.
    IF VBAK-AUART = 'YYOR'.
    LOOP AT XKOMV INTO WA_KOMV where KPOSN = VBAP-POSNR.
    IF WA_KOMV-KSCHL = 'ZABS'.
    SELECT SINGLE *
           FROM ZPRICING1
           INTO WA_ZPRICING
           WHERE VKORG = VBAK-VKORG
           AND VKBUR = VBAK-VKBUR
           AND VTWEG = VBAK-VTWEG
           AND MATNR = VBAP-MATNR.
    IF SY-SUBRC = 0.
    delete XKOMV.
    ENDIF.
    ENDIF.
    ENDLOOP.
    ENDIF.
    ENDIF.

  • Additional tab item level on MIGO supresses the excise tab at item level

    Hello Experts,
    I have used MB_MIGO_BADI to add an additional tab at item level.It is working properly.
    But now Iam facing a problem the additional tab supresses the excise tab that comes up dynamically at the item level,.
    Now how do i reslove this problem.
    Since excise details are entered later and the tab comes up dynamically my tab should not supress the excise tab at item level
    it should come after the excise tab.
    Now do I set this.
    Please help . highly appreciated. 
    Regards,
    Ranjith N

    Hi Balu,
    Thanks for your reply.
    I dint get you what you have explained.
    Hope you are clear with my problem.
    I have created a subscreen 'ZMIGOITEM' with screen number '9000'.
    In the PBO of BADI MB_MIGO_BADI I have displayed this subscreen.
    This is getting displayed at item level when I call Tcode 'MIGO'.
    After fillin up the details for performing GR..and when I check it it gives me a warning to fill in the excise details when I fill in the excise details at header level and check as per the standards an excise tab at item level should come up right ?
    Since i have added a additional tab the excise tab doesn't come up....the additional tab supress it ...
    Regards,
    Ranjith Nambiar

  • ME51n additional tab in item level after customer tab

    hi all,
    I have already added Customer data tab in me51n item level, using screen exit SAPLMEGUI in enhancement MEREQ001. Can i add one more tab after customer data .
    Regards
    Nitin

    Hi Nitin,
    You can implement BADI ME_PROCESS_REQ_CUST to add additional tab. Read example implementation by going into menue Goto>Sample Code>Display .
    Thanks & Regards,
    Faheem.

  • PCUI:Add REF_TO_HEADER to pcui(CRMD_BUS2000112) BILLPLAN TAB at item level

    Hi ,
    We are trying to add Header billing plan check box REF_TO_HEADER (Billplan Tab) TO pcui application service contract'S(CRMD_BUS2000112) BILLPLAN TAB AT item level.
    1.Append the structure CRMT_BSP_SRC_SERVICEDATA_2_IL  with REF_TO_HEADER field
    2.IN CRMC_MAP Txn(Table: CRMC_MAPPING) for structure CRMT_BSP_SRC_SERVICEDATA_2_IL we added entry
    UL Field:REF_TO_HEADER      Object:BILLPLAN     Object.Field REF_TO_HEADER
    3.Changed field group SRC_BILLPL_2 with new entry for REF_TO_HEADER as check box.
    4. It is showing correctly like same as in SAP GUI but it's not saving the data from PCUI.
    Please help us to trace the problem .We debugged Modify method of CL_CRM_BSP_AM_ITEMFM_1O class but we couldn't figure out the issue.
    Thanks,
    SAP FAN

    Hi ,
    The first thing to check in modify method is whether the correct value for the field REF_TO_HEADER  is being received by your MAC .
    If 'yes' then you have to make sure that this gets saved and when 'READ' is called then this field would have to be populated by you.
    Then the changed value will be visible in the browser.
    Note : When you change the value of a field and then press <enter> or SAVE or whatever .. there is a server roundtrip.The MODIFY method passes data from framework to application .The application saves this data and then sends it back to framework using the READ method.Then framework shows it on browser.
    Regards,
    Satyadeep

  • I am unable to update my album art since I commenced using match (and after upgrading to Yosemite).  How can I 'unembed' old cover art and replace?

    I am unable to update my album art on my iMac since I started using Match (and after upgrading to Yosemite 10.10.3).  A message advises that it's not possible to removed old artwork if it's embedded.  How can I 'unembed' old cover art and replace?

    Normally artwork recovered with iTunes is stored as a separate artwork file and iTunes refers to that file to display artwork when you click on a track.  However, if you then copy the file to another player the artwork file is left behind and the track will not display the artwork on the other player.  To get around this it is possible to embed the artwork in the music file itself so it always travels with the file.  Artwork can be embedded by you or files from third party sources may arrive with embedded artwork.  iTunes apparently now won't replace artwork for such files.  You can accomplish this by completely deleting artwork for a file or set of files in Get Info, then getting iTunes to fetch artwork which will then be set as a reference file rather than being embedded.
    I use an old iTunes so unless you are using an ancient iTunes it won't help for me to give you great details.  To erase artwork I simply get info on a series of files and check the box next to the artwork box without adding any artwork and close.  To do it for  single file I Get Info, go to the artwork display tab and click delete.  Here's a Windows reference for a newer iTunes (but the "old Get Info" reference is for early iTunes 12 and no longer works with newer):I cannot delete embedded album artwork in iTunes 12

  • Excise tab at item level in MIGO screen

    Dear Gurus,
    Am getting excise invoice tab at header level, but not at item level. Because of that I am facing so many problems like posting on assesable values, manually changing those values etc..
    Let me know what else required to be configured to get the same at item level.
    Satish

    Hello,
    Excise invoice tab will be available only in MIGO header during GR creation.
    Once Excise Part - 2 is done, details of the same will be available in the MIgo line item excise tab.
    Note: you should not change the value of the assessable value and all during GR at excise tab. (Only rounding off is advsed).
    if u r changing the values means, PO value is mismatching with the excise invoice value, here u need to ask the Buyer to change or amend thee Purchase order
    Regards
    Shenoi.

  • Updating Administrators(built-in) with item-level targeting on an enforced policy

    I need help with this. 
    In our Computers OU, we have an enforced GPO with a computer policy that adds local admins to the computers on our network. The policy is Computer Configuration >> Policies >> Windows Settings >> Security Settings >> Local Policies/User
    Rights Assignment >> Restricted Groups >> Group (BUILTIN\Administrators). For this example, we'll call this GPO #1.
    I need to add another user account as a local admin, but targeted to certain computers.
    I tried to edit GPO #1. I went into Computer Configuration >> Control Panel Settings > Local Users and Groups, and then added a Group with the settings >> Updating >> Administrators (built-in) & item-level targeting to the computers
    I wanted, but the setting always gets over-written by the setting that adds local admins. 
    I then tried to create a GPO with the Group update. Lets call this GPO #2. I enforced this rule, linked it to the OU, changed the order so that GPO #2 is above GPO #1, but this doesn't seem to be working.
    Is my inheritance order incorrect?
    1 is GPO #2
    2 is GPO #1
    Ideas anyone?

    > In our Computers OU, we have an enforced GPO with a computer policy that
    > adds local admins to the computers on our network. The policy is
    > Computer Configuration >> Policies >> Windows Settings >> Security
    > Settings >> Local Policies/User Rights Assignment >> Restricted Groups
    >  >> Group (BUILTIN\Administrators).
    Restricted Groups has 2 operation modes: Members and Member of. The
    first one clears out any existing members, and that's what you use right
    now. The second simply adds a group to another group and keeps all
    existing members, that's what you want to use for your additional computers.
     > I need to add another user account as a local admin, but targeted to
     > certain computers.
    To do so, you need to create a domain group that contains the related
    account(s). This domain group is "member of" local admins. And make sure
    this second GPO is linked higher (so it is processed _after_ the first
    one that clears out existing members).
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))
    Yes I know I can do this, but I can't use item-level targeting with this setup. I don't want the user account to be local admins for all computers. I only want it to be local admins for 4 of them.
    Wouldn't precedence take place in this OU if I have the GPO that adds another member as #1, and the GPO that deletes and adds as #2? It isn't working as I had thought it would.

  • Urgent:Tab and item level access not working

    Hi,I am on portal 9.0.2.0.1 version.I am trying enable security.I have made 5 groups.Added users to group.Those users have only basic view privileges.
    At my page group level I gave view access to all 5 groups.
    At page level gave view access to all 5 groups and checkmarked enable item level security.
    At tab level on one of tabs I gave view access only 4 groups.
    At item level on one of items I gave view access to only 4 groups.
    Now I log in as one of the users in 5 th group and the tab as well as te item both are visible.
    Is it a bug or am I missing somehting.
    Pls let me know urgently

    You asked:
    But if I do not assign any sort of privileges to my groups consisting of all my users then how will they view the page group also forget abt viewing page and tabs on it.
    If you don't assign view privilege on the page group, then you have to assign view privilege on every page that you want your users to see.
    As you discovered, the tabs and items override the page privilege (a tab or item can be hidden from a user who has view privilege on the page), although your users need a minimum of view privilege on the page to see any content.
    I don't understand your comment about groups - they work fine for managing privileges.
    Note that you can use bulk actions (and List View in 9.0.2.6) to manage privileges for multiple pages. You can also assign privileges to your page template to default the privileges on pages based on the template. And new pages will inherit the privileges of their parent if the page group property "Copy Parent Page Properties When Creating Page" is set.
    Regards,
    Jerry
    PortalPM

  • Steps to implement ME_GUI_PO_CUST ME21N to create custom tab at item level

    Dear Gurus,
    I have to create one Custom tab in ME21N item level beside Conditions.
    The Tab name is Customer. I'm very new to ABAP so after searching the forums I got ME_GUI_PO_CUST  badi is used to do that. In the Custom tab my required fields are
    PO NO1--                        PO NO2--
    PO Item NO1----
                     PO Item NO2
    Quantity----
                          Quantity
    SO NO1--                       SO NO2--
    SO Item NO--                 SO Item NO--
    any one provide me the sample code to implement this.
    Thanks!

    solved

Maybe you are looking for