Customize iw13 for Material Descriptions for one time buys

Hello,
I'd like to make a customer report zpmiw13 using iw13.  I'd like it to do everything the same as iw13 except I'd like it to get the material description for the one time buys to show up on the report. 
I'm pretty sure this has been done before so I was hoping someone has a code sample I could look at to do this.
Somewhere in the code I need to do a select statement to find the Material Description in EKPO(?) when the Material Number field is blank (one time buy = no material master record).
Any help?
Thanks,
Matt

In this case we are going to use iw12 to show the data.
Thanks,
Matt

Similar Messages

  • Different material description in one language for single material

    Hi folks,
        Is it possible to maintain different material descriptions (In one language-english) for a single material.
    if it so how can u provide me steps.
    Thx in advance,
    Neelima.N

    Hi,
    For a single material code maintaining multiple text in the same language is not possible,
    this contradicts the basic principle of consistancy.
    Howevery you are free to do R&D, if sucessful please let me know.
    Regards
    Bikas

  • How to prevent error message for material description in MDG material detail screen, when user click on check action

    Dear Experts,
    I have a requirement for making material description as non mandetory in change request view of mdg material screen.
    I have done that using field usage in get data method of feeder classes, but still message is displaying.
    This message 'Material description is mandatory is displaying with check action only, but not with save or submit after i anhance field property as not mandetory.
    How to prevent error message for material description in MDG material detail screen, when user click on check action.
    Thanks
    Sukumar

    Hello Sukumar
    In IMG activity "Configure Properties of Change Request Step", you can completely deactivate the reuse area checks (but will then loose all other checks of the backend business logic as well).
    You can also set the error severity of the checks from Error to Warning (per CR type, not per check).
    Or you provide a default value for the material description, e.g. by implementing the BAdI USMD_RULE_SERVICE.
    Regards, Ingo Bruß

  • Display mode for Material Description in MM02 for Partucular User/UsrGroup

    Dear friends,
    I required to set: Display mode for Material Description in MM02. (Configured thruu2019 Maintain field selection to data screen)
    For Particular User / User group, it should be Change mode. How to achive this. Please advice.
    Thanks and regards,
    RAMAN

    Hi,
    I don't think you can realize it, because in SAP system there are 6 influncing factors:
    Material Type
    Plant
    Industry sector
    Transaction
    Procurement indicator
    SAP Delivery
    Field selection is controlled by field references. You can assign field references to the influencing factors material type, plant, and industry sector in Customizing. SAP maintains the assignment of the field reference to the transaction codes, to the procurement types, and for the SAP delivery. You cannot change this assignment of these field references in Customizing.
    So from my point of view, you can't use the factors of material type, plant and industry sector to distinguish different users' authorization.
    Good day
    Tao

  • Reset SAP GUI passwords for number of users one time

    Dear,
    i need your help in how to Reset SAP GUI passwords for number of users one time, as we have non-SAP users, only ESS users that they are currently using Portal ESS, but we need to reset thier GUI passwords so that they will not be accessing the GUI.
    we need to do it one shot, one time for more than 600 users.
    is there any way?
    thank you

    You can also create an ABAP program which can be used to do a mass user password change.
    Here are the functions that will do what you need
    SUSR_GENERATE_PASSWORD - Generates a Password. Use this function only if you want to do random passwords. Otherwise you can upload your own password.
    BAPI_USER_CHANGE - You can use this BAPI to change just the password of a user
    Here is an example of some abap code. There may be some syntax errors and possible other issues. I just typed this out and didnt check it. You upload a comma delimited file which is the username,password. If the password field is blank the program will generate its own. Hope this helps
    constants: con_comma TYPE c VALUE ','.
    data: it_tab TYPE filetable,
    gd_subrc TYPE i,
    v_filename_string TYPE string,
    p_npass like XU400-NEWCODE.
    DATA: BEGIN OF itab OCCURS 0,
    dLine(40) type c,
    END OF itab.
    DATA: begin of it_Users occurs 0,
    UserID like BAPIBNAME-BAPIBNAME,
    Password Like XUBCODE,
    end of it_Users.
    parameters: p_file like rlgrap-filename default 'c:\users.txt' LOWER CASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    *& FILE_OPEN_DIALOG METHOD *
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
    EXPORTING
    window_title = 'Select File'
    default_filename = '*.txt'
    multiselection = ' '
    CHANGING
    file_table = it_tab
    rc = gd_subrc.
    LOOP AT it_tab INTO p_file.
    ENDLOOP.
    v_filename_string = p_file.
    START-OF-SELECTION.
    *& GUI_UPLOAD function *
    Upload file to internal table
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    FILENAME = v_filename_string
    FILETYPE = 'ASC'
    HAS_FIELD_SEPARATOR = 'X'
    TABLES
    DATA_TAB = ITAB
    EXCEPTIONS
    FILE_OPEN_ERROR = 1
    FILE_READ_ERROR = 2
    NO_BATCH = 3
    GUI_REFUSE_FILETRANSFER = 4
    INVALID_TYPE = 5
    NO_AUTHORITY = 6
    UNKNOWN_ERROR = 7
    BAD_DATA_FORMAT = 8
    HEADER_NOT_ALLOWED = 9
    SEPARATOR_NOT_ALLOWED = 10
    HEADER_TOO_LONG = 11
    UNKNOWN_DP_ERROR = 12
    ACCESS_DENIED = 13
    DP_OUT_OF_MEMORY = 14
    DISK_FULL = 15
    DP_TIMEOUT = 16
    OTHERS = 17.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Loop through internal table and split the comma delimited file
    LOOP AT ITAB.
    SPLIT ITAB-dLINE AT con_comma INTO it_Users-UserID
    it_Users-Password.
    APPEND it_Users.
    ENDLOOP.
    LOOP AT it_Users.
    if it_users-Password is initial.
    CALL FUNCTION 'SUSR_GENERATE_PASSWORD'
    IMPORTING
    PASSWORD = p_npass
    else.
    p_npass = it_users-Password.
    endif.
    CALL FUNCTION 'BAPI_USER_CHANGE'
    EXPORTING
    USERNAME = it_users-userid
    PASSWORD = p_npass
    PASSWORDX = 'X'
    TABLES
    RETURN = it_ret2.
    Loop at it_ret2.
    if it_ret2-number = 039.
    write: / 'password changed'.
    else.
    write: / it_ret2-message.
    endif.
    endloop.
    Write: / ''.
    refresh it_ret2.
    ENDLOOP.

  • Is it possible to pay for more than one year of membership in advance? Would I be able to pay for 3 years at one time?

    Is it possible to pay for more than one year of membership in advance? Would I be able to pay for 3 years at one time?

    In individual CC the maximum purchase can be done for 1 year,
    However: An Enterprise Term License Agreement (ETLA) is ideal for organizations that manage large deployments of Adobe software and prefer a direct relationship with Adobe. An ETLA provides custom software licensing options and pricing for volume purchases, access to advanced customer support programs, and streamlined IT administration tools to package and deploy Adobe apps and services across the enterpris with an agreement of three years.
    Business Enterprise Term License Agreement | Adobe Buying Programs
    http://www.adobe.com/volume-licensing/education/enterprise-term-license-agreement.html
    Regards
    Rajshree

  • Infoset for material description

    Plese tel me any infoset for material short description ??
    Regards
    Nikhil

    Hi
    Use MAKT for material description
    Join this infoset MATNR field with the other infoset MATNR field and use it in the query
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • How can I enlarge the window for writing descriptions for pictures in iphoto 11?

    How can I enlarge the window for writing descriptions for pictures in iPhoto 11?

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    LN

  • No valid task list for material ""  plant "" for selection criteria

    I am getting the following error while creating a production order:
    No valid task list for material ""  plant "" for selection criteria
    Does anyone know how to fix this?
    thanks,
    Scott

    Dear,
    1. Check in Order type dependent parameter - OPL8, select your Plant & Order type. In this check the task list, it should be N. then selection priority in OPJF settings
    2. Chek the routing valid from date for this material by CA02. The production order start date must be between valid date.
    3)Kindly check the routing header.Whether it is for usage 1 and Release status '4'
    4) Task list we maintain in OP8B please check and come back.
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Nov 19, 2008 9:57 AM

  • Hide views in MM01 for all material type in one time

    Hi,
    I have a requirement to hide the views for all material type at at time.
    i tried with OMS2 , it is allowing me to do for one matrial type.
    could any one tell me how to hide the views for all material type in one short.
    Thanks in adv..

    Hi Rakesh,
    Up to my knowledge it is not possible to do view setting for all material type in one shot simply because it is material type dependent.
    If trying to change fields in material master then use OMS9. This also material type linked to field reference group. And we can change the setting of field selection group in one shot. This will affect the material types linked to it.
    Hope it helps
    sBk

  • Material description for different language

    Hi SAP Gurus,
    Please advise how to pull material description maintained in different language ?
    I need to download this material descriptions maintained in all languages for a certain type of materials of one plant.
    Thanks for your help.
    Regards,
    Manoj

    you either create a quickview by joining MARC and MAKT tables for this.
    or much easier. you press F4 in a material number field.
    then you go to search help W plant material.
    there you erase the language from the selection pop-up and execute
    in the hitlist do a right mouse click and you can directly download

  • In PM order, can we change the material description for item category N?

    Hi,
    In Plant Maintenance work order, is there a way to change the material description while purchasing material (item category N) using a material master number? In config. the material description field is open for input. However on the work order components screen it becomes grey as soon as one enters a material master number.
    Background: We want to maintain generic material master records in the system and use them for purchasing materials (item category N) on work orders so that the purchasing data defaults from the material master. But we need to be able to change the description per the specific requirement.
    Similar functionality works on sales orders. Are we missing anything?

    Hi there,
    One solution would be to have some generic materials created and used them during work order processing. These generic materials needs to be extended to all the required plants.
    Hope this works,
    Cheers !!!

  • Customization for Material Usage for Brazil Country

    Dear Experts,
    Is it possible to define new Material Usages (apart from 0,12 & 3) in customization? Where in SPRO we can define this. Or atleast is it possible to change the description of the Material Usages in SPRO. We have business requirement to change the description of this Material Usage printed in PO Print out using SmartForms.
    Thanks in advance for your solutions for this.
    Regards
    Basavaraj Patil

    Hi Basavaraj.
    It is not possible. Give me an example what do you want to print? It is related to material usage or the business want to use for another purpose?
    Regards
    Eduardo Chagas

  • Routine for Material Description in language DE instead of EN in report o/p

    Hi all,
    We need to display material description/text in terms of DE language insted of EN at o/p the report.
    It's a masterdata(0material) info object.There are many fields at report level,Only for this perticular field text only they want in DE language,remaining all in EN only.
    How can we do langualge translations in BI.How can we achive this?
    If any body implimented with routines plz share the information.
    Regards,
    VS.

    Hi Varun ,
    Please follow these steps :
    go to RSA1-> Translation ->infoobject ->select object ->Create a piece list for Translation ->Create a Object List Go to transaction LXE_MASTER. In the evaluations tab, choose Object List->in the object List dialog box, choose create option ->Assign the Piece List->Generate the Object List.->
    Schedule the background job which will generate the object list
    Once the job for generating the object list is finished, please go to se63 ->Check your Default settings ->select Source Language and Target Language ->
    Access your personal work list ->Enter target Language texts for BI objects in the Worklist ->Run the program RSO_AFTER_TRANSLATION ->Verify the translation in the respective object maintenance screen.
    Regards,
    Jaya

  • Different material description for RG1 register

    Dear Experts,
    I have a client requirement for change in material description (materialmaster) to a different description.
    The description maintained in material master is for viz
    SS CT BT 200mm-123-093MKO
    But excise need description
    SS BILLET
    Where to maintain this additional description in material master and fetch the same for RG1 register.
    Let me know any stranded user exit is available. If the above case is possible than also let me know what would be the bad implications on processes (like stock will not match with description).
    Regards,
    RB
    Edited by: RB on Feb 26, 2009 6:18 PM

    you either create a quickview by joining MARC and MAKT tables for this.
    or much easier. you press F4 in a material number field.
    then you go to search help W plant material.
    there you erase the language from the selection pop-up and execute
    in the hitlist do a right mouse click and you can directly download

Maybe you are looking for