Info./links for service type PO process

Could anyone who has a links or useful references (other than the help.sap stuff) on the process and config. steps for service type POs please provide them.
Thanks,
Nick

Hi,
The below link may explain the process.
http://sapmm.wordpress.com/category/service-master/
Regards,

Similar Messages

  • Info records for service

    How to maintain info record for service items? Can it be updated from quotation?
    Alok

    Hi Alok,
    You can create purchasing info records for different procurement types (standard, subcontracting, pipeline, consignment).
    You can create purchasing info records:
    1. For a material with a material master record, you need the number of the material master record.
    2. For a material without a material master record, the following information is required:
    Material short text (short description)
    Order unit
    Material group
    Sort term (key), for finding the info record once it has been created
    Go through the link, it will be helpful:
    http://help.sap.com/saphelp_47x200/helpdata/en/75/ee1fa755c811d189900000e8322d00/frameset.htm
    Hope this clarifies.
    Thanks,
    Viswanath

  • Info Records for service PO

    All SAP Gurus,
    Can we maintain Info records for service PO?
    Regards,

    I got it!
    It can be maintained in ML33
    (Answered)

  • Advanced Quick Link for services

    Hi to all!
    I need to customize Quick Links for services.
    For example, if the employee has not recorded the working hours, the quick link is shown: "You have recorded 20 hours from 40!".
    Please let me know how to do that.

    Hi, Bala!
    Should I use the HRXSS_SER_GETMENUDATA to ABAP-developing, or there is a way to customize it? And where can I find the manuals (documentation) about  Quiсk link and fm HRXSS_SER_GETMENUDATA?
    Thank!

  • Project related tables and link for services in Network Activity

    Dear Experts,
        My requirement is I need a table for services in Network activity before release of Network and link for services to another table(Project related before PR).
    Ex : Network             Activity           Service         
            XXX                     XX                   12345
          So I need Service  field, which is updating in ESLL was unable to link with another table to get the Project Number. So please help me .
    Regards,
    Srikanth.

    Dear sushrut sheth,
    thank for the reply
    I looked in AFVC before to post the Issue but in this table the Activity is only updating but not the individual service items
    I required the table which is updating the individual service line items

  • Trying to cancel subscription. I get to the manage link for service or product for which I want to cancel the subscription. There's no Renewal Status field. Please help

    Trying to cancel subscription. I get to the manage link for service or product for which I want to cancel the subscription. There's no Renewal Status field. Please help

    Hi elizabetht49548035,
    I see that you have an Acrobat Pro subscription. To cancel that, please Contact Customer Care. Choose Acrobat from the top drop-down menu, and then choose Membership, Account, and Payment. Click the blue "Still Need Help?" button at the bottom of the page to find both phone and chat options.
    Best,
    Sara

  • SP Transaction Notification For Service Type Documens Only

    Hi All,
    Just a little help here please.
    I have a query in my Transaction Notification that I only want to run for service type documents however when I put the code in I am getting an error.
    Below you will see my query and the part I put in for service type documents is the first part of the WHERE clause.
    Please explain to me how to do this correctly.
    /*Check for Cost Center On Marketing Documents*/
    IF ((@transaction_type = 'A'
           OR @transaction_type = 'U')
         AND (@object_type = '13'
                OR @object_type = '14'
                OR @object_type = '18'
                OR @object_type = '19'
                OR @object_type = '20'
                OR @object_type = '22'))
        BEGIN
              SELECT @table = CASE @object_type
                                    WHEN '13' THEN 'INV'
                                    WHEN '14' THEN 'RIN'
                                    WHEN '18' THEN 'PCH'
                                    WHEN '19' THEN 'RPC'
                                    WHEN '20' THEN 'PDN'
                                    WHEN '22' THEN 'POR'
                                  END
              SELECT 1 cnt
              INTO   #temptable15
              WHERE  1 = 0
              SET @sqlstr = ' insert into #temptable15
                                  SELECT     1 AS cnt
                                  FROM         [' + @table + '1] INNER JOIN
                                              [O' + @table + '] ON [' + @table + '1].DocEntry = [O' + @table + '].DocEntry
                                  WHERE     ([O' + @table + '].DocType = S) AND ([' + @table + '1].OcrCode IS NULL) AND ([' + @table + '1].DocEntry =  ' + @list_of_cols_val_tab_del + ')'
              EXECUTE( @sqlstr)
              SET @CostCenter = (SELECT TOP 1 cnt
                                   FROM   #temptable15)
    DROP TABLE #temptable15
              IF (@CostCenter = 1)
                   BEGIN
                        SELECT @error = 1
                        SELECT @error_message = 'Please fill in Cost Center!!!'
                   END
         END
    Any help will be greatly appreciated.
    Regards,
    Quinn

    Hi Quinn Verburgt ,
    Check This...
    This SP make Cost Center field mandetory for Service Type Document.
    If @object_type in ('17','22','14','18','19','20') and @transaction_type='A'
    BEGIN
    If Exists (Select T0.DocEntry from ORDR T0 Inner Join RDR1 T1
    On T0.DocEntry=T1.DocEntry
    Where T1.OcrCode Is Null and T0.DocType ='S'
    And T0.DocEntry = @list_of_cols_val_tab_del)
    (Select T0.DocEntry from OPOR T0 Inner Join POR1 T1
    On T0.DocEntry=T1.DocEntry
    Where T1.OcrCode Is Null and T0.DocType ='S'
    And T0.DocEntry = @list_of_cols_val_tab_del)
    (Select T0.DocEntry from ORIN T0 Inner Join RIN1 T1
    On T0.DocEntry=T1.DocEntry
    Where T1.OcrCode Is Null and T0.DocType ='S'
    And T0.DocEntry = @list_of_cols_val_tab_del)
    (Select T0.DocEntry from OPCH T0 Inner Join PCH1 T1
    On T0.DocEntry=T1.DocEntry
    Where T1.OcrCode Is Null and T0.DocType ='S'
    And T0.DocEntry = @list_of_cols_val_tab_del)
    (Select T0.DocEntry from ORPC T0 Inner Join RPC1 T1
    On T0.DocEntry=T1.DocEntry
    Where T1.OcrCode Is Null and T0.DocType ='S'
    And T0.DocEntry = @list_of_cols_val_tab_del)
    (Select T0.DocEntry from OPDN T0 Inner Join PDN1 T1
    On T0.DocEntry=T1.DocEntry
    Where T1.OcrCode Is Null and T0.DocType ='S'
    And T0.DocEntry = @list_of_cols_val_tab_del)
    BEGIN
    Select @error = -1,
    @error_message = 'Please fill in Cost Center!!!'
    End
    End
    Thanks,
    Srujal Patel

  • Regarding the exact link for configurate type for leave request

    Hi all:
       I am trying to  Customize Types of Leave/ Absence Types for Leave Requests following the route Personnel Management u2192 Employee Self-Service u2192 Service-Specific Settings u2192 Working Time u2192 Leave Request u2192 Processing Processes u2192 Specify Processing Processes for Types of Leave, but it turns not be there, maybe it is because of the sap version, could you please tell
    me the exact route for  Customize Types of Leave/ Absence Types ?
    thank you very much

    sorry , the above link is correct , I found the above linke missing like personnel management--employee self-servce, because Basis didn't delopy some pakcage , could you please tell me what package missed.
    thank you very much .
    Edited by: jingying Sony on May 7, 2010 7:58 AM

  • Quantity for service type invoice

    hello
    i am trying to create a service type purchase order. i have created row level udfs for unit price and quantity. price should be multiplied by unit price and the total should be displayed as the total for the invoice. how can i do this?
    secondly, when i create an invoice based on this purchase order, if i get a short delivery, the customer wants the system to automatically be able to compute the total amount when we enter the quantity. is this possible?
    any help will be greatly appreciated. thanks!

    Have you tried formatted searches. I am sure it will do the trick. 
    For the first one: Use a formatted search in the Row Total field that selects your UDF's qty*price.
    second one: I am not too sure about all the requirements, but I think something similar will work.
    Hope it helps!
    Regards

  • Info records for valuation types

    Hi, Is it possible to have different info records for two valuation types of a particular valuation category with respect to different vendors?
    Thanks
    Ravi

    Hi there
    you can create the info record for the header material ( Valuation category level) since when you create the infor record,, It will ask you the material, Vendor, Plant and P organ,,
    So it is simply asking as a material,,, not at valuation type level,, so automatically it is taking the header material(valuation category) it is a STD behaviour,,
    Hope it clears,,
    Thanks
    Senthil

  • Info record for services.

    Hi,
    Is there any option to maintain the cost, discount details for a service master so that while processing the purchase order, the conditions should flow from the master ( similar to our PIR )
    Regards,
    RDB

    Hi
    You have actually more options for services.
    1) Model Service Specifications : ML10 (You do not need service master also)
    2) Service conditions at  various levels(you need service master) : ML33, ML39, ML45, ML51
    Best regards
    Ramki

  • How to create approval for service type document

    Hello,
    I am trying to create a Approval Query wherein if a Patricular User creates a SERVICE Type AP Invoice then it should go for approval.
    I used the query :
    SELECT distinct 'TRUE' FROM OPCH T0 INNER JOIN PCH1 T1 ON T0.[DocEntry] = T1.[DocEntry] WHERE T0.[DocType] ='S'
    But the problem is that when the above user is making ITEM Type AP Invoice then also its going for approval.
    Please advise.
    Kind Regards,
    Ravi

    Hi,
    Please find below the query :
    SELECT distinct' true' FROM OPCH T0  INNER JOIN OUSR T1 ON T0.UserSign = T1.USERID WHERE $[$3.0.0] = 'S' and  $[user] = '9'
    This user 9 was taken from OUSR table.
    Regards,
    Ravi

  • BEx Broadbasting:  Online links for object type WB not defined

    I got this over in the Portal Content Development forum but figured it would get more views here:
    I'm trying to broadcast an online link to the portal for a workbook. I can publish it as a MS Excel file but I get the following whenever I try to Broadcast to portal as a "online link to current data".
    "Online links for the specified object type WB are not defined"
    I've been beating my head against it for several hours and know the help.sap.com links to broadcasting by heart. Anyone have any clues as to what I missed?

    Hi,
    Check the transaction RSPOR_CUST01. I guess you are using BEx 7 in which case integration with the portal is a must. Check whether the settings have been maintained in the above said transaction.Let us know.
    Regards,
    Sree.

  • Online links for object type WB not defined

    I'm trying to broadcast an online link to the portal for a workbook.  I can publish it as a MS Excel file but I get the following whenever I try to Broadcast to portal as a "online link to current data".
    "Online links for the specified object type WB are not defined"
    I've been beating my head against it for several hours and know the help.sap.com links to broadcasting by heart.  Anyone have any clues as to what I missed?

    End user error.  they were not converting their queries from 3.5 to 7.0 before publishing. 
    select * from users where clue > 0;
    rows returned:  0

  • About DTW - A/P Credit Memo for Service Type A/P Invoice

    Dear all,
    I would like to upload A/P Credit Memo with A/P Invoice Base Entry. The A/P Invoice is a "Service" Type.
    I am using oPurchaseCreditNotes object by providing:
    Documents (w/ cardcode, docdate, docduedate and taxdate)
    Documens_Line (w/ BaseEntry, BaseLine and BaseType)
    There is an error "Item No. is missing".
    any ideas.
    Thanks

    Have you add DocType as dDocument_Service on the Document template?
    Thanks,
    Gordon

Maybe you are looking for