Purchase Requisition for asset services

Hello,
I have a task to modify a purchase requisition (tcode:me51n) with item category (service) and account assignment (asset services) for filing automatically the asset field (ESKN-ANLN1) based on specific service-activity number (ESLL-SRVPOS). These fields are at items details screen and asset number at account assignment tab.
Until now I have achieved to link an asset with specific service in service master through classification. This information is stored at AUSP. Also, I am taking the activity number using a field symbol and asset number with select from AUSP. The problem is that the asset value doesn’t have an export at screen. I have tried user exits EXIT_SAPLMLSK_001 from enhancement SRVESLL, exits from enhancement mereq001 and the exit EXIT_SAPLKACB_002 from ACCOBL01 and also the badi ME_PROCESS_REQ_CUST, but I couldn’t achieve to pass the asset number as export to screen .
Could any expert help me to this ? 
Thanks a lot

Dear,
we can maintained below combination of account assignment and item category as per the business requirement and as per the selected combination of account assignment and item category PO document type gets differs.
Account assignment- Blank and Item category -Blank - PO type will be standard PO (for Domestic Vendor)
Account assignment- Blank and Item category -Blank - PO type will be Import PO (for Foreign Vendor)
Account assignment- F (Internal Order) and Item category -Blank - PO type will be standard PO
Account assignment- F (Internal Order) and Item category -D(Service) - PO type will be Service PO
Account assignment- A(Asset) and Item category -Blank - PO type will be capital PO
Account assignment- A (Internal Order) and Item category -D(Service) - PO type will be Capital PO / Service PO
Account assignment- K(Cost Center) and Item category -Blank - PO type will be standard PO
Account assignment- K(Cost Center) and Item category -D(Service) - PO type will be Service PO
In all account assignment ,G/L account will be mandatory field along with selected account assignements in PR/PO.
create services from AC01 (similar as Material Master) to keep unique records in system . and then select these service codes while creating PR.
Use below steps:
1 ) Select account assignment
2) Select Item Category
3) Enter Short text as service specification ( same as material description) ( Example - Main Service specification - Floor Cleaning)
4) Qty is always 1
5) Select UOM
6) Select Service Material Group
7) Fill up all mandatory details
8) Under Service Tab , you need to now provide all service specifcations one by one. ( Example- sub services 1st Floor Cleaning ,2nd Floor)
9) then you have to provide Price
10) Required Qty ( In case of you giving salary to workers for month ,then Qty will be 30/31 as per month ,and UOM will be Day)
Hope this will clear to you.
Regards,
Sandesh Sawant
Edited by: Sandesh Sawant on Sep 18, 2011 1:25 PM

Similar Messages

  • Purchase requisition for service activity / element cannot be generated

    Dear SAP MM Experts,
    This is a service Creation from the PM order to Purchase Sercive Requisition.
    The Error Message Is Generated :Purchase requisition for service activity / element cannot be generated
    Diagnosis
         Due to the system settings, the system is trying to generate a purchase
         requisition for a service activity or a service activity element.
    No service package has been created for the activity/element.
    As a result, the system cannot generate a purchase requisition.
    The activity/element is created or released, but the indicator for
    generating a purchase requisition is not set.
    Create a service package for the activity/element and then generate a
    purchase requisition.
    regards,
    A S

    Solved From PM side

  • PURCHASE REQUISITION FOR SERVICE

    HELLO
    IN THE TRANSACTION ME21N FOR PURCHASE REQUISITION FOR SERVICE. IN THE SERVICE VIEW AT ITEM LEVEL, THERE IS A LIST DISPLAYED, SO I NEED TO ADD A FIELD WITH INFORMATION OF THE MATERIAL GROUP.
    ANYBODY KNOW HOW TO DO THAT?
    THANK YOU
    ELENA

    Hi,
    ME21N is the transaction for a PO creation.
    On the full screen services view you can enter either a service number (if you have maintained service masters in transaction AC01) or  you can enter just a short text to describe your service.
    There is also the column material group (ESLL-MATKL) available to fill in your material group (screen SAPLMLSP 0201). You can also enter your material group by selecting the service line and going to the detail view (popup "display service details", tab "basic data" (screen SAPLMLSP 0220).
    What do you mean by "list"? Have you switched on the outline view for your services? You can turn on and off this outline overview by hitting F6.
    Regards,
    Edit

  • Attach the file for purchase requisition using BSP service

    Hi All,
    I have Requirement Attach the any file like(PDF,TXT,PPT) to Purchase requisition using BSP service.Could please provide me any function module or BAPI for this functionality.
    Thanks in advance.
    Regards,
    Rajesh.

    Hi All,
    REPORT ZTESTJLG3 . .
    parameter p_mandt like sy-mandt default '120' .
    parameter p_equi type equnr default '1000007' .
    parameter p_path like IBIPPARMS-path memory id AD_LOCAL_PATH .
    parameter p_name(30) default 'Test attach 100007' lower case .
    " nom attachement .
    data w_prog like sy-repid .
    data w_dynnr like sy-dynnr .
    data w_attachement type borident .
    initialization .
    w_prog = sy-repid .
    w_dynnr = sy-dynnr .
    " test jean luc recuperer le code de
    fucntion module 'GOS_EXECUTE_SERVICE'
    data lo_container TYPE REF TO cl_gui_container .
    *call method lo_container->get_container_type .
    at selection-screen on value-request for p_path .
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    PROGRAM_NAME = w_prog
    DYNPRO_NUMBER = w_dynnr
    FIELD_NAME = 'P_PATH'
    IMPORTING
    FILE_NAME = p_path .
    start-of-selection .
    if sy-mandt ne p_mandt .
    write 'Erreur mandt ' .
    exit .
    endif .
    data ws_borident like borident .
    ws_borident-OBJKEY = p_equi.
    ws_borident-OBJTYPE = 'EQUI'.
    data w_document like SOOD4 .
    data : begin of wt_files occurs 0 .
    data fname(128) .
    data end of wt_files.
    wt_files-fname = p_path .
    append wt_files .
    data folder_id like SOODK .
    call function 'SO_FOLDER_ROOT_ID_GET'
    EXPORTING
    region = 'B'
    IMPORTING
    folder_id = folder_id
    EXCEPTIONS
    others = 1.
    w_document-foltp = folder_id-objtp .
    w_document-folyr = folder_id-objyr .
    w_document-folno = folder_id-objno .
    append document to documents.
    w_document-objdes = p_name .
    w_document-objnam = p_name .
    data w_h_data like sooD2 ..
    data w_fol_data like sofm2.
    data w_rec_data like soos6 .
    w_h_data-objdes = p_name .
    CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER'
    EXPORTING
    METHOD = 'IMPORTFROMPC'
    OFFICE_USER =
    REF_DOCUMENT = w_document
    NEW_PARENT =
    IMPORTING
    AUTHORITY =
    TABLES
    OBJCONT =
    OBJHEAD =
    OBJPARA =
    OBJPARB =
    RECIPIENTS =
    ATTACHMENTS =
    REFERENCES =
    FILES = wt_files
    CHANGING
    DOCUMENT = w_document
    HEADER_DATA = w_h_data
    FOLMEM_DATA = w_fol_data
    RECEIVE_DATA = w_rec_data .
    if w_document-okcode = 'CREA' or w_document-okcode = 'CHNG'.
    w_attachement-objtype = 'MESSAGE'.
    w_attachement-objkey = w_document(34).
    CALL FUNCTION 'BINARY_RELATION_CREATE_COMMIT'
    EXPORTING
    OBJ_ROLEA = ws_borident
    OBJ_ROLEB = w_attachement
    RELATIONTYPE = 'ATTA'
    IMPORTING
    BINREL =
    TABLES
    BINREL_ATTRIB =
    EXCEPTIONS
    NO_MODEL = 1
    INTERNAL_ERROR = 2
    UNKNOWN = 3
    OTHERS = 4
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endif .
    For above requirement i am trying like above code.
    working fine but which transaction i can find the attach file.I am trying to fine using ME52N transaction but i c't find this file.
    Please suggest me how can i find this one
    Thanks in advance,
    RajeshV.

  • MRP creating additional purchase requisitions for the existing sales order

    Hi,
    We have scenario where we switch materials from POD material to ARP material. POD material is just like make to procurement which creates purchase requisition and purchase order upon saving the sales order. ARP (Auto replenishment) material creates purchase requisition based on sales order and re-order point while running MRP.
    When the material is POD title, it created purchase requisition and purchase order (example: 4500000110) while saving the sales order (example: 1000000010) for the quantity 10. After some time this material is switched to ARP and it has open sales order (1000000010) and purchase order (4500000110).
    We have special MRP run for ARP materials based on MRP type, which creates purchase requisition.. What is happening is when we run MRP; it is creating new purchase requisition for the old sales order (1000000010) for the quantity 10. But old sales order (1000000010) is already having purchase order (4500000110) to fulfill. So we donu2019t want to create new purchase requisition for the old sales orders. It should create purchase requisition only for new sales orders.
    Please advise
    Thanks in advance
    Srinivas

    Mangesh,
    If the components are Inhouse production then you can think of using collective orders by assigning special procurement key 52. If raw material exists then your requirement cannot be met..as i think your scenario is of assembly processing. The idea of assembly processing is that component materials will always be available and only assembly will be done based on Sale Order.
    Regards,
    Prasobh

  • Business Package for Asset Services, implementation & integration

    Hello,
    We have installed Business Package for Asset Services in EP6.0 and integrated it with back-end system. The package works fine but on some iViews (equipmentpartners, functionallocationpartners, equipment, functionallocation, configurationshow) we have following runtime error:
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.portal.migrated/ep_5.0/roles/com.sap.pct.eservice.operator/eservice/nf/InstallationManagm/com.sap.pct.eservice.partners.equipmentpartners
    Component Name : null
    Page could not create the iView.
    See the details for the exception ID in the log file
    I’m novice in SAP EP and need help, can anyone help me please?
    Best Regards
    Raka

    Dear Ranko and others,
    The problem lies in the lowercase and uppercase of the specific shared ressources within the deployed file default.properties of the business partner. Also the link to the PDV isnt the same anymore.
    I had the same problems and by analyzing the logs of the nwa I found this solution. Donwload the files and replace the names with lowercase and making the reference to th PDV as well. Then upload this packaged PAR file again.
    Best regards
    Henrik Koch

  • Purchase order for external service

    Dear experts,
    I tried creating a purchase order for a service, with account assignment unknown U, with item category D, but after entering the item details in the item overview, it keep saying " ACCOUNT ASSIGNMENT UNKNOWN NOT ALLOWED WITHOUT GOOD RECEIPT", i would like to know why this message is coming up, and how to rectify it, thanks for your anticipated contribution

    Hi,
    You can not use Account assignment unknown U in the creation of service order as system need a cost object with a G/L account during saving of service order which help system to post to required G/L account automatically on further transaction MIGO & MIRO posting.
    You can create contract(ME31) with   Account assignment unknown U & item category D as you do not know from which account or cost object specific  the contract going to be used,so as the contract can be used for all department/cost center./project related in future.And then you can create a release order/call off/service order(ME21N)  with Account assignment unknown K(in case of cost center) & item category D wrt contract  with entering all likes cost object u2013 cost center  , G/L account related with other input data.
    Check any user exit which not allow to create with  Account assignment unknown U & item category D.
    NOTE: if you create service order  with  Account assignment unknown U & item category D,then during SES, you need to enter cost object ( K or P or C  etc) with a G/L account.
    Regards,
    Biju K

  • Planned Order and Purchase Requisition for total Plan

    HI
    As per my client requirement whenever i am giving a plan in Demand Management in MD61 say for quantity 100. System should create purchase requisition for quantity 40 and Planned Order of 60.
    Please let me know if it is possible.
    Regards,
    Anand

    HI
    Thanks a lot. Its working with quota arrangement.
    Regards,
    Anand.

  • Purchase Requisition for Order BOM components ?

    Dear Members :
    Can I generate purchase requisition for Order BOM components from VA01 ? Mine is TAQ - the header itm cat and TAE for sub-items (finished prod) . While navigating within Sales Order and branching to a particular component's shced. line - the pruch req col is blank. The schedule line cat for the sub-item is CT.
    Could someone please explain the configuration steps I need to maintain for the above ? What I am expecting is when I save the Sales Order it should create Purch Req for the components which do not have enough stock.
    Thanks
    Atanu

    Hi :
    Thanks for your advice. Couple of things :
    1. In my system in auto acc assignment, I already have consumption acc under posting key GBB. Now I am getting error in VA01 - which states that "The system was not able to determn a consumption acc for purchase order item with acc assignment" and also suggesting to address "GBB posting key". I made the following changes for CT :
        movt : 101
        order type : NB
        item cat : 0
        acc assignment cat : F/C
    2. Obviously SAP is expecting a consumption GL acc, which though is there under GBB-AUF from my existing setup. For generating purch req this is strange becoz I haven't yet gone upto PO generation step nor released the supposed to be Purch Req.  for BOM component - and this is before I save the Sales Order .
    3. In spro->acc grouping for mov type; I don't see the following combination in SAP  ie,
    101(MvT) - B (MvT) - GBB (TEKey) - AUF. I need B instead of F which is already there and is for production order but the BOM comp has to be for PO but the combination is not there.
    Do you think this could be the reason that SAP couldn't find the GL acc ?
    4. Also my purpose was not just to raise a purch req every time the sales order is created for the BOM components - only if there is shortage in stock - but then again for CT once I assign the above, it doesn't allow to check the boxes like Availbility , Requrmnt etc. (??)
    Am I clear and could you please suggest me what I am missing or doing wrong ? What movement type do you siggest to enter in CT fields.
    Thanks so much for your time.
    Atanu

  • How to create a Purchase Requisition for a material component in WBS or NW?

    Hello All,
    I have created a project with the following structure:
    Project Defination (Construction of Sub station)
          Main WBS
                   Level 1 WBS
                             Level 2 WBS
                                       Network for level 2 WBS
                                                      Activity  (Procuring Material)
                                                                 Material Component - MATXXX (Stock Item)
    Now in the above structure i have a activity where in i am procuring all the materails required to construct a Substation.
    So under this activity i have assigned all the materials which are needed to build Substaion.
    After i change the status of the project to release, there  a reservation created for the quantity of the material which i have mentioned in the material component under the activity.
    Now my querey is, how should i create a Purchase requisition for the reserved materail quantity in order to bring in the stock against the WBS / network / Project ?
    Awaiting your reply.
    Thanks and Regards,
    Sudarshan.

    Hi Sudarshan,
    In your case you can run Me5J to check the list of PR created against your project.
    Then Create PO and similarly you can check list of PO in Me2J.
    Then followed by GR and check if any GR release exist in MIGO. Then once after doing GR you can check the Material in Stock which will move material from Unrestricted stock to Project Stock which you can check it in MMBE.
    Then you can do the Good Issue in MIGO itself and run MIRO to complete the cycle.
    Regards'
    syed

  • Multiple Document Types For Purchase Requisition For Different Order Types

    Dear SAP Gurus,
    I want to have different document types of Purchase Requisition for different Order types.
    For Example:
    for Order Type ZT01- Document Type used should be YR01
    for Order Type YA01- Document Type used should be ZR01
    How could this be achieved?
    Regards.

    hi
    Kindly check the user exit for the same
    COZF0001 or COZF0002
    regards
    thyagarajan

  • One Purchase Requisition for One Maintenance Order

    Dear Consultants,
    We have implemented mySAP ECC 6.0.   We have more than 20 line items in one Maintenance order for  Item category N. Curently system is generating Purchase requisitions by line itemwise for Item category N(Non-stock items). Our client requires only one purchase requisition for every Maintenance Order. Is it possible to generate one PR for one Maintenance Order? If possible please give us the solution.
    Thanks,
    Dev

    Dear Pete Atkin,
    With your help my issue has been resolved. Thank you very much.
    With Best Regards,
    Dev

  • MRP - Single Purchase requisition for multiple Items

    Hi
    We have recently introduced MRP module in SAP .In some specific scaeanrios , we want to create a single Purchase Requisition for multiple items .Standard SAP generate different Purchase requisition for each item
    Is there any way out

    Sandeep,
    This topic has been covered numerous times in this forum and in the MM forum.  You evidently have not used the search feature.  There are thousands of posts in these forums, and the search function will be very helpful for you in future questions.
    To answer your question, No, nothing is available to make standard SAP MRP create Purchase requisitions for multiple items.
    Most companies address this issue during the conversion of Purchase Requisitions to Purchase orders.  During this process, you can add many items to a single purchase order.
    Rgds,
    DB49

  • Purchase requisitions for  raw materials

    Iam having multilevel BOM and when I do Sales order MRP then Iam getting planned order for Semi finished items but not getting Purchase requisitions for  raw materials.

    Hi,
    Planing File Entry :-
    The planning file is used to limit the scope of the planning run for the
    total planning run. For this purpose, all materials that have been
    assigned a valid MRP type are automatically entered in the planning
    file.
    System will check the Planing file entry only in the case of Total MRP (MD01) or Total MPS (MD40).
    While there is no need in the case of MD02,MD03,MD41,MD42,MD50.
    Now how this Planing File entry activates,
    - Once MRP is activated at Plant level (T.code OMDU)system automatically maintains entry in Planning file for all those materials which contains the Active MRP type.
    - So if materials which are created before this activation of MRP in that case you have to maintain this planing file entry manual.You can do this either by MD20 or by using Back Ground Jon OMD0.
    Regards,
    Dhaval

  • BAPI to create Purchase Requisition for selective BOM Material

    Dear Experts,
    I need ur help, Actually I am developing a module Pool prg to create Purchase Requisition for selective Bom Material .
    Actually, standard T.Code (ME21N) create PR for a multiple BOM Materia lwhich are used to create a prepared material. But my requirement is PR should be generate for selective BOM material .
    Multiple BOM Material is used to prepared a complete Material .
    I have checked a particular BOM Material, for this matrial Purchase Requisition should be genrate.
    Please suggest me the related code and Bapi which helps me .
    Thanks & Regards,
    Swapnika

    Hi
    you can Use BAPI   BAPI_REQUISITION_CREATE
    Hope Its  help You.
    Regards
    Ajit

Maybe you are looking for

  • ACS 5.3 - 11033 Selected Service type is not Network Access

    I have some older devices on the network that only support RADIUS (not TACACS) for authentication and would like to have them use SecureACS 5.3  I understand that by default, ACS only supports TACACS for device administration.  So I'll get this error

  • Just used Migration Assistant and can't access files, get message

    I just used Migration Assistant to move files (per directions on screen) from my older iMac to new G4 running 10.4.1. It seems as though everything has transferred, but when I try to open folders that have migrated, I get a window that says, "The fol

  • Reservations/Confirmations/vendor and customer consignment.

    Hello, What are the following: Reservations Confirmations Customer Consignment and Vendor Consignment Also, how are they created with respect to an AFS material? (transactions used etc.) Thanks a lot for the help. Warm Regards, Deepthi.

  • FCP 7 - XML - FCP X, audio missing in transfer?

    Using 7toX for Final Cut Pro ... two issues: 1.  I export and XML from FCP 7.  I use 7toX to convert it and import it into FCP X.  Does a great job.  But I notice that 'some' of the clips on a given timeline (project) are missing their audio.  If I '

  • Printing Issues in AI CS3

    I have a HP Photosmart c3180 All-in-One printer that leaves a solid white line down the center of the pages I print out using Illustrator. I've done printing tests on the printer that come out correctly so I know it has something to do with Illustrat