In MB1B how to get Material description?

Gurus,
At the time of making 541 movement through MB1B referencing the PO, system should show the material Description also.Presently system shows only the Material Code but not the Material description.
How do I get the Material description in MB1B along with material Code.
SN

Dear,
Better to Use ME20, to issue stock to vender. It gives u Full Description of Issunig Material.
Reagrds,
Pardeep malik

Similar Messages

  • How to get material description from material number.

    Hello ABAP Pundits,
    I have got the material number MATNR.
    I need to get Material Description MAKTX using this material number.
    Now MAKTX is not a table that I can go and fetch it.
    What function module do I require to fetch that material description field ?
    Points will be surely awarded..
    Tushar.

    Do a select against <b>MAKT</b>.
    parmaters: p_matnr type mara-matnr.
    data: xmaktx type makt-maktx.
    Select maktx into xmaktx from makt
              where matnr = p_matnr
                and spras = sy-langu.
    Regards,
    Rich HEilman

  • How to get material number in smart form driver prog attached to MM01:NACE?

    Hi,
    I have attached driver program of smart form to MM01 usinfg nace.
    On save smart form should get generated.
    Can anybody guide me how to get material number from MM01 in driver program on saving MM01.
    as of now am not getting values in smart form.
    What additional lines to be coaded in driver program to get material number.
    Thanks.

    hi,
    use nast table in your import paramaters of smart forms.
    In the Nast table you can find a field with object key which holds the Material Number.
    Hope this helps.
    Thanks,
    subash

  • How to get Material Master Moving average price into Purchase Order

    Hi,
    How to get Material master moving average price into purchase order instead of Purchase Info record.
    Thanks,
    Sridhar

    Hi,
            I  cannot understand whether it is necessary .
           How about as following step?
                 1. create Purcahse requisition
                                Price come form moving average price in material master.
                 2. Create Purchase order reference Purchase  requisition
                                There is a setting  from the unit price of P/R onto the unit price of P/O.
      Regards,
         Gaito

  • How to stop material description changed after changing customer on SO

    I have updated material description on a SO. However after changing the Sold-to, the material description refreshed back to original.
    Anyone knows how to stop system to change material description back to default?

    Hi
    In standard SAP when we change sold to party in sale order system redetermine prices and taxes but this is new thing for me that system also redetermines material description. Amitesh Anand I have also chcked this in my system and material description is getting changed after changing the customer.
    Field is VBAP-ARKTX and you can ask your ABAPER to write the code in userexit MV45AFZZ and 
    USEREXIT_PRICING_PREPARE_TKOMP. I have checked this system is calling this exit. Give it a try and update the status.
    Thank$

  • HOW TO MAKE MATERIAL DESCRIPTION  FIELD IN SALES ORDER AS UNEDITABLE

    how to make the material description field as un editable in sales order , pls help me

    Through Transaction Variant <b>SHD0</b>
    Refer the thread
    /message/4083386#4083386 [original link is broken]
    Message was edited by:
            SHESAGIRI.G

  • How to bring material description in case of planned order in CM25 trnx?

    Hi All,
    On CM25 for Process Orders, the material description is what is displayed on the bars of work.  For Planned orders it displays the planned order number and material desciption filed remains empty. Is this SAP standard behaviour when it comes to planned order in CM25? How do I bring the description as well to Planned Order number#s?
    Any pointers would be a great help!!
    Thanks,
    Nitin

    Hi,
    Thanks for your reply. My requirement is to display "material description text" in the "Mat description field". This field is already exits in planning table. However i cannot see material description in case of planned order and just see planned order number, material no etx ;but in case of process order, i can see material description text in the same field...
    Thanks,
    Nitin

  • How to get material and plant by providing control key as input ?

    How to get the material and plant info based on control key values using a function module?
    kindly help..

    Hi,
    Check the FM
    K_VALID_PLANTS_OF_MATERIAL.
    Sandeep Kaushik

  • How to display material description in fbl3n report

    Hi friends,
    my reqirement is to disaply equipment no , equipment description ,and meterial description based on material number.
    so i added equipment no and equipment description .but i am adding material description from makt tabel mantr maktx based on RFPOSXEXT  struture component u_matnr but i am not getting any value from this structure before displaying
    lt_pos type standard table of rfposxext.
    select matnr maktx from makt
            into table gt_makt for all entries in lt_pos
            where matnr eq lt_pos-u_matnr
             and spras eq sy-langu.
          after i am using field symbole to assining this to it_pos[].
    call function 'FI_ITEMS_DISPLAY'
        exporting
          caller_repid  = c_repid_gl
          acctype       = c_koart_gl
          x_opvw        = x_gl_opvw
          x_change      = x_change
          i_u_save      = gd_alvsave
          is_u_variant  = gs_variant
          it_u_fieldcat = gt_fieldcat[]
          it_kontab     = it_accts[]
          it_slbtab     = it_comps[]
          it_t001       = it_h_t001[]
          it_skat       = it_h_skat[]
          it_skb1       = it_h_skb1[]
          x_grid        = x_grid
          x_inet        = pa_inet
        tables
          it_items      = it_pos.
    so please help me.
    regards,
    siva

    Solved by my self .
    thans
    siva

  • How to get Worksheet Description from SQL

    Hi,
    Can any one help me out. How to get Workbook and Worksheet Description from SQL. I have entered these descriptions from Discoverer Plus.
    Thanks in advance.

    check this !!!! at least it a starting point
    Thread: Where in the EUL schema can I find metadata on worksheets
    I followed this steps:
    Use the following steps to get the Trigger Working:
    1. Login as EUL owner EUL10
    Create a test table
    CREATE TABLE eul10.TRIG_TAB
    ACC_DATE DATE,
    sso_name varchar2(100)
    2. Create a function under the eul schema owner: eul_trigger$post_login
    Do not pass any argument to the function.
    Return a number from function.
    CREATE OR REPLACE FUNCTION EUL10.EUL_TRIGGER$POST_LOGIN
    RETURN NUMBER AS
    BEGIN
    insert into EUL10.TRIG_TAB(acc_date) values(sysdate);
    commit;
    RETURN 0;
    END;
    3. Login with Discoverer Administrator to EUL=EUL10.
    4. Check the Menu > Tools > Default EUL.
    Make sure this is set to EUL10
    If not then change the EUL10 and restart Discoverer Administrator.
    5. Now Register the trigger in Discoverer Administrator
    Menu >Tools > Register PL/SQL Function ...
    6. Click import
    7. Select the trigger EUL10.eul_trigger$post_login
    |8. Make sure the display name is eul_trigger$post_login (MUST BE lowercase or it will not work)
    Function name must be in uppercase: EUL_TRIGGER$POST_LOGIN
    9. Make sure the the return type is number and that no arguments get passed.
    10. Validate the Function by clicking on the Validate button.
    11. Click ok
    12. Connect with Discoverer desktop as EUL owner.
    13. We see entries in the table trig_tab with the current date.
    ...... metalink note : 372067.1 Subject: How To Get the EUL_TRIGGER$POST_LOGIN Trigger to Work

  • How to get Material attached to a change number

    Hi All,
    I have change number with me. I need to know lab/office field of the material attached to that change number.
    Can anybody suggest me how to get it?
    Thanks in advance.

    hi ,
    This thig u want in report or sap script .
    if in report u make it  through program and join with that field using for all entries .
    if in smartforms then check it in DDIC list and specify if not available then through program u call that fields.
    in script through program u can do that.
    Regards,
    Subash chandra Sahoo.

  • How to integrate Material Descriptions with Custom Language codes

    I am working on the materials integration - ECC to C4C.
    The material descriptions have additional custom language codes (Z1, Z2, etc) to store additional descriptions.
    1. How can we adjust our integration in C4C to take those additional descriptions ?
    2. Specifically,  can we even create custom language codes Z1, Z2, etc ?
    3. Will the integration (mapping, idocs, webservices) need any adjustment for extra language values to pass along ?
    Thanks ahead,
    TC

    Hi Tim,
    in the integration ECC to C4C only ISO language codes are supported. Furthermore custom language codes cannot be created in C4C. In your case you have to store the additional information in the C4C material master using extension fields.
    Regards,
    Sascha

  • How to get Material long text / Sales Text

    Hi,
    when I have created a service order I have enter Long text in Tab Item Details , i.e in sales Text I have entered some text , So can any one tell me how to get this text as I have to show this text in invoice printing
    Thanks
    Bobby

    600101202274700000001
    For a Particular Text name Of Item Level operations
    1st 3 character denotes client id in this case 600 +
    2nd 10 character denotes AFKO-AUFPL with respect to the production order  in this case
    1012022747 +
    last 8 character denotes the operation line item numebr

  • How to get material's last posting date of issuing to production order?

    Hi,
    In my scenario, I need to get material's last posting date of issuing to production order (e.g. mov. typ. 261).
    I tried to select the material documents whose movement type is 261, and restrict the posting date from month to month each time, until the first material document is selected.
    But this method seems quite inefficient.
    What kind of algorithm is more effient to do this?
    Thanks
    Wesley

    Hi,
    select max( budat )
      from mkpf
      into gv_budat
      where mblnr in ( select mblnr
                         from aufm
                        where aufnr = gv_aufnr "(Prod. Order)
                            and  matnr = gv_matnr "(Issued Material)
                            and bwart = '261' ).
    Edited by: Azeem Ahmed Matte on Mar 12, 2010 12:33 PM

  • How to get field description for custom field just like orgeh in SQ01 Repor

    Good Day Friends,
    I want to share one of my issue with you.Hope you will resolve it easily .
    I have enhaced standard infotype 0001 to maintain JOB CODE field, i also have maintained the
    JOB CODE, JOB CODE DESCRIPTION in one custom table  ( ZHR_JOBDISC ) .
    I have given farigen key relation between this custom table ( ZHR_JOBDISC ) and PA0001. i also have created one search help and assigned to the Field JOB CODE.
    But when i am trying to write the query in SQ01 . i am unable to fetch description.
    if you observe the standard fields position (PLANS), Organisational Unit (ORGEH).while writing query if you right click on PLANS will show the description of position, similarly  if you right click on ORGEH it will show the description org unit.
    but i am unable to get the description of my custom field.
    Please give clarification where i am doing wrong ?

    Good day Ravindra,
    Please, could you consider as reference notes 367585, 332842 and 491403.
    This is well described in the documentation for the interface of IF_TEXT_IDENTIFIER.
    Transaction SE24, enter IF_TEXT_IDENTIFIER, Display' function and check
    the 'Interface documentation'. Please choose "HR Class" upon executing for Text Recognition.
    Additionally check the following website:
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/d9/9958e0c50a11d396f80000
    e82de14a/frameset.htm
    Hope this information helps.
    Kind regards,
    Graziela

Maybe you are looking for

  • Media Encoder CC 2014.1 won't render Neat Video plugin

    Apply plugin in AE CC 2014.1 and sent to the Media Encoder CC 2014.1 it opens and nothing happens !!!! return back to the AE CC 2014 remove the plugin Neat Video and send it back to Media Encoder CC 2014 everything works fine !!!! What's the problem?

  • Custom clean install from recovery ?

    hello. want to clean install 10.8.3 using app store through recovery mode. my question: as i recall, i have access to disk utility before the new download, soooooooooo, will disk utility allow me to partition my mac's hard drive (after erasing) and T

  • Quality fast lossless AVCHD to MP4 converter recommendation?

    Snagged a Panasonic X920 3chip CMOS AVCHD format.     Recommend a RELIABLE , no-loss ( or little) AVCHD to MP4 converter? Ive got MacXDVD coverter. I dont wanna mess around all day looking for a quality converter. I ask the gods of video for a high r

  • I down loaded itunes to my computer but it wont open

    okay i tried to downlad it and reinstall it about 6 or 7 times and it still is not working.... please help mee

  • Accounts receivable posting Error: (00 344) No batch input data for screen

    Hello Folks, Can anyone tell me what this error message means?  Also for future reference, how do I identify why or what is causing this error message.  Typically I use SE16 but this transaction code is not telling me what is causing the error. Thank