Price comparision report through transaction ME49

Hi Exports,
I am new in abap report enhancement. I am working as a implementation project, here i have add some more fields and generate report.
Report details:
Transaction ME49-- Price Comparision report
Here i have add one Remarks fields related to Vendor and report will be generated and remarks values will display .
Please helps me and guide me how to do this tasks.
If you have code for this , please send me this mail id:  [email protected]
Advance thanks you.
Regards,
Jnana

If you are goint with user exit check
USER EXIT
http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
http://www.sap-img.com/abap/what-is-user-exits.htm
http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html
Transaction Code - ME49                     Price Comparison List
Exit Name           Description
LMEDR001            Enhancements to print program
LMELA002            Adopt batch no. from shipping notification when posting a GR
LMELA010            Inbound shipping notification: Transfer item data from IDOC
LMEQR001            User exit for source determination
LMEXF001            Conditions in Purchasing Documents Without Invoice Receipt
LWSUS001            Customer-Specific Source Determination in Retail
M06B0001            Role determination for purchase requisition release
M06B0002            Changes to comm. structure for purchase requisition release
M06B0003            Number range and document number
M06B0004            Number range and document number
M06B0005            Changes to comm. structure for overall release of requisn.
M06E0004            Changes to communication structure for release purch. doc.
M06E0005            Role determination for release of purchasing documents
ME590001            Grouping of requsitions for PO split in ME59
MEETA001            Define schedule line type (backlog, immed. req., preview)
MEFLD004            Determine earliest delivery date f. check w. GR (only PO)
MELAB001            Gen. forecast delivery schedules: Transfer schedule implem.
MEQUERY1            Enhancement to Document Overview ME21N/ME51N
MEVME001            WE default quantity calc. and over/ underdelivery tolerance
MM06E001            User exits for EDI inbound and outbound purchasing documents
MM06E003            Number range and document number
MM06E004            Control import data screens in purchase order
MM06E005            Customer fields in purchasing document
MM06E007            Change document for requisitions upon conversion into PO
MM06E008            Monitoring of contr. target value in case of release orders
MM06E009            Relevant texts for "Texts exist" indicator
MM06E010            Field selection for vendor address
MMAL0001            ALE source list distribution: Outbound processing
MMAL0002            ALE source list distribution: Inbound processing
MMAL0003            ALE purcasing info record distribution: Outbound processing
MMAL0004            ALE purchasing info record distribution: Inbound processing
MMDA0001            Default delivery addresses
MMFAB001            User exit for generation of release order
MRFLB001            Control Items for Contract Release Order
AMPL0001            User subscreen for additional data on AMPL
No of Exits:         35
Rewards if useful...............
Minal

Similar Messages

  • Item Price in report for every transaction

    Hi Guys.i am using the below queries for Stock report and i am getting the desired output  except the price calculation.
    In that query it is calculated like max(price) or avg(price) but instead of that i need the item price for that particular transaction  and also i need the prices for opening stock , goods issue, goods receipt and closing stock seperately in each column .
    pls provide me the updated query.
    Declare @FromDate Datetime
    Declare @ToDate Datetime
    Declare @Group nvarchar(10)
    Declare @Whse nvarchar(10)
    Set @FromDate = (Select min(S0.Docdate) from dbo.OINM S0 where S0.Docdate >='[%0]')
    Set @ToDate = (Select max(S1.Docdate) from dbo.OINM s1 where S1.Docdate <='[%1]')
    Set @Group = (Select Max(s2.ItmsGrpCod) from dbo.OITB S2 Where S2.ItmsGrpNam = 'Group B')
    Set @Whse = (Select Max(s3.Warehouse) from dbo.OINM S3 Where S3.Warehouse = '03'  )
    Select
    @Whse as 'Warehouse',     
    a.Itemcode,
    max(a.Dscription) as 'Description',MAX(a.Price) as 'Price',
    sum(a.[Opening Balance]) as [Opening Balance],
    sum(a.[IN]) as [Receipt],
    sum(a.OUT) as [Issue],
    ((sum(a.[Opening Balance]) + sum(a.[IN])) - Sum(a.OUT)) as Closing,
    ( MAX(a.Price) *  ((sum(a.[Opening Balance]) + sum(a.[IN])) - Sum(a.OUT)) ) as ClosingValue
    from(
    Select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,N1.Price,
    (sum(N1.inqty)-sum(n1.outqty)) as [Opening Balance],
    0 as [IN],
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate < @FromDate and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription,N1.Price
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,N1.price,
    0 as [Opening Balance],
    sum(N1.inqty) as [IN],
    0 as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <= @ToDate and
    N1.Inqty >0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription,N1.price
    Union All
    select
    N1.Warehouse,
    N1.Itemcode,
    N1.Dscription,N1.price,
    0 as [Opening Balance],
    0 as [IN],
    sum(N1.outqty) as OUT
    From dbo.OINM N1
    Where
    N1.DocDate >= @FromDate and N1.DocDate <=@ToDate and
    N1.OutQty > 0
    and N1.Warehouse = @Whse
    Group By
    N1.Warehouse,N1.ItemCode,N1.Dscription,N1.price) a, dbo.OITM I1
    where
    a.ItemCode=I1.ItemCode and
    I1.ItmsGrpCod = @Group
    Group By
    a.Itemcode
    Having sum(a.[Opening Balance]) + sum(a.[IN]) + sum(a.OUT) > 0
    Order By a.Itemcode
    Regards,
    Vamsi

    Hi Gordon,
    We are maintaining different Price Lists  so is it possible to give the input in the query to select the report based on which price list???
    Or else  is it better to create an udf in item master data for Standard price of the item and display it in report??
    And i have another doutb that while i run the inventory audit report  and the query it is showing different values .. why is it so??
    pls give me the solution for the same,
    thanks in advance..

  • ME49 problem(price comparision)  in ECC 6.0

    Hi,
    we have upgraded SAP from 4.6 c to ecc 6.0.we maintained two quotations for one material with two vendors in SAP 4.6 c.After upgardation,i want to compare prices by using same quotations in ECC 6.0.but,it is throwing an error saying that
    when i execute in get the message as ""Selected quotations not directly comparable""
    I have maintained the prices in maintain quotation, but still i get in the field as ""quotation item not yet maintained "" in ME49.
    The same quotations are working fine with 4.6 c.
    Answers will be rewarded..
    Sat.

    Hi Sat,
    I think this question is the same as link that you post below
    Price comparision in ECC 6.0
    Please check

  • How to do price comparision in ME49 based on net price

    Dear Experts,
    I have a problem while doing price comparision
    I have two RFQ's for the material with same gross price(15). But i have some additional conditions like frieght 20% in second RFQ. So the net price is 18 in the second RFQ. But while doing ME49 i'm checking "include delivery costs & discounts " options but it's showing Rank 1 for both the vendors.
    How to do price comparision in ME49 based on net price??
    Thanks & Regards,
    Pradeesh

    I have had the same issue and did it by choosing all 3 checkboxes 
    Delivery cost
    Discount
    Effective price
    And the issue was resolved
    Edited by: rajat  kaushik on Apr 14, 2009 11:06 AM
    Edited by: rajat  kaushik on Apr 14, 2009 11:08 AM

  • Vendor Ageing Report Through Report Painter

    Dear All
    As per my company requirement we are trying to develop vendor ageing report through report painter, by using library 8A4 (EC CPA: Drill Down Open Item), our requirement is all normal items and some special GL transactions (Not all) has to flow in this report.
    In FKI4 / FKI5 if we assign any special GL, then data flowing in to report relating to that particular special GL transactions only, normal items are not flowing in to report. If we not assign any special GL then all normal and special GL transaction are flowing in to report.
    Can anybody suggest how to restrict flow of some special GL transaction data in to report. Our requirement is all normal transaction along with some specified special GL transaction data has to flow in to report. Points will be rewarded on helpful answer.
    Thanks & Regards
    Madhava

    Hi Madhava
    You can pull all values whether Sp GL or Normal GL values. For a particular 'Column' if you assign Sp Gl Indicator you will fetch all Sp Gl Values in that column. Same way in other column, you dont assign Sp Gl Indicator, instead you calculate manually as shown below;
    In a similar fashion you can calculate all values for (00-30), (31-60) ...and so on.
    Hope this clears all your doubts?
    Regards
    Abbas

  • Authorization problem to execute a report through portal

    Hi All,
    One of user while trying to execute report through portal, getting error message saying that
    "you are not authorized to execute the report XXXXXXX'
    Can not load query <query name> (data provider <data provider name> No authorizations for requested service.
    The report is a web template which is getting executed through portal.
    User is having all the authorizations to execute the report(report autho as well as infoprovider autho also)
    we have regenerated the user roles , done user comparision....every thing is OK.
    Still unable to execute the report.
    Please advice what can be done in this case....
    Regards

    Hi Shaik,
    Are you able to run this report with your user id?
    If so check the role or authorization objects which are missing to the user.
    And also check whether he got portal roles assigned to his profile.
    Regards,
    Ravi Kanth
    Edited by: Ravi kanth on May 12, 2009 2:06 PM

  • How to Report on transactions performed in SRM_MDM catalog (SRM5 MDM2)

    What is the recommended way to do reporting for transactions performed INSIDE SRM_MDM catalog ( SRM5,  MDM2.0)
    Users inside SRM_MDM catalog can search for and select Product ABC and u201Ccompareu201D between 2 or more suppliers.
    Where do I get reporting (Data Manager , syndicator?)
    Is it possible to get reporting of the shopping cart (MDM catalog).  I choose Supplier X at price $12 vs Supplier Y at price $11 for product ABC. Were trying to find out how many times users choose a higher price for  a product instead of a lower price for the same product.
    By the time i transfer the Cart to SRM the selection has already been made and i cannot report on it...
    Option use BI to run report in MDM catalog..?
    cheers
    alex
    Edited by: Alex Waiyaki on Aug 11, 2010 5:24 PM

    Hi Alex.
    This was a really a good initiative of bringing this topic into this forum.Integrating SRM-MDM Catalog to BI for reporting purposes.
    But this functionality is not offered as a standard. Also SAP has to come up with such innovations in the future.
    I can think of some workaround to achieve your functionality(but not 100%)
    You can achieve this by using Shopping List* functionality provided in the SRM-MDM Catalog.
    You can create your own shopping list and before you transfer items to SRM, you can push those data to Shopping List, so that
    you can have an entry of items which you are transferring to SRM. So now you can integrate MDM and BI to bring up an analytical report based on the item which is transferred using Catalog.
    One usecase which is missing here is "How many times a person is shopping the same item" which couldn't be achieved from SRM-MDM Catalog and MDM side. But could achieve it from SRM end. You can write this logic in the BADI when the data is transferred back to SRM.
    Hope it give you a some idea.
    *Shopping List = Favourites
    Thanks
    Bala

  • Report RGPARTNER_ACCOUNT (Transaction S_ALR_87100198).

    Hello everybody!
    Does anybody know the report RGPARTNER_ACCOUNT which can be accessed through transaction S_ALR_87100198 ?
    Additionally, is this report available to be used in a SAP Activated New G/L system?
    Thanks,
    Daniel.

    Hi Aninda,
    I agree. Authorization trace might not be appropriate in this situation.
    Also, user parameters are only to pass on specific values, such as company code, default layout etc and doesn't restrict the user from viewing a report.
    As mentioned in my earlier reply, the issue could be with a user exit where the user ID should be maintained in a table or the restriction is applied at the table level.
    The other issue could be with the version of SAP GUI. You may ask the user who has issue with viewing the report to login on a different system to identify if the issue is with the authorizations or the SAP GUI.
    Hope this helps!!
    Regards,
    Raghu

  • Transaction Variant for a standard report without transaction code

    Hi,
    I want to create a transaction variant for a executable report. The report has some subscreens 100, 110 etc. I want to hide the subscreen through transaction variant. So I have created a transaction code (Y*) for it and then tried creating transaction variant using SHD0 transaction.  But the fields are not listed to choose invisible or other options. Please advice

    The fields are listed when you leave each recorded screen. You have the flag "do not display the screen". It's strange you don't have anything, are you sure you started the recording? (you enter the transaction code, the transaction variant, you click the Create button and the screens are displayed and recorded)
    Which transaction is it?
    A little remark (about your last posts): forum rules ask people to give points, it's a way to say thank you. Otherwise, people won't help you anymore. It's not a black and white logic : don't give points only when your problem is solved. Give 2 or 5 points to thank people (or 0 if it's out of context). Thanks.

  • Production report through COOIS

    I am working in dicerete and REM scenerio.Client needs report ,work center wise daily production .In report layout   through transaction COOIS when I am selecting quantity confirmed .The production order confirmed quantity is comming.But planned order confirmed quantity through backflush MFBF is not comming.
    I need report in this format
    I/P
    plant
    material
    o/p
    posting date   work center    confirmed quantity  total planned order quantity
    Manoj

    For MFBF i.e. REM orders you need to use the transaction
    KKF6n  or KKBC_HOE to check the details of qty and cost and not COOIS.

  • Change field size in simulate report on transaction PR05

    Hi,
    I want to increase the receipt description field on the simulate report on transaction PR05.
    Is there any user exit where I can do this or do I have to make a standard modification? If so, do you know in which program?
    Thanks.
    Sónia

    Here`re the user exit
    Transaction Code - PR05                     Travel Expense Manager                                                                               
    Exit Name           Description                                                                               
    FITR0001            User exit: Delete/Reorganize trip statistics                              
    FITR0002            User exit: Create/Change trip statistics                                  
    FITR0003            User exit: Save trip (PR01, PR04, PR05)                                   
    FITR0005            User Exit: Save Trip (PR01, PR04, PR05)                                   
    RPRCST01            Customer Exit for Travel Expenses                                         
    <b>and program to find user exit for Tr.</b>
    report y_user_exits no standard page heading.
    *&  Enter the transaction code that you want to search through in order
    *&  to find which Standard SAP User Exits exists.
    *& Tables
    tables : tstc,     "SAP Transaction Codes
             tadir,    "Directory of Repository Objects
             modsapt,  "SAP Enhancements - Short Texts
             modact,   "Modifications
             trdir,    "System table TRDIR
             tfdir,    "Function Module
             enlfdir,  "Additional Attributes for Function Modules
             tstct.    "Transaction Code Texts
    *& Variables
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    *& Selection Screen Parameters
    selection-screen begin of block a01 with frame title text-001.
    selection-screen skip.
    parameters : p_tcode like tstc-tcode obligatory.
    selection-screen skip.
    selection-screen end of block a01.
    *& Start of main program
    start-of-selection.
    Validate Transaction Code
      select single * from tstc
        where tcode eq p_tcode.
    Find Repository Objects for transaction code
      if sy-subrc eq 0.
        select single * from tadir
           where pgmid    = 'R3TR'
             and object   = 'PROG'
             and obj_name = tstc-pgmna.
        move : tadir-devclass to v_devclass.
        if sy-subrc ne 0.
          select single * from trdir
             where name = tstc-pgmna.
          if trdir-subc eq 'F'.
            select single * from tfdir
              where pname = tstc-pgmna.
            select single * from enlfdir
              where funcname = tfdir-funcname.
            select single * from tadir
              where pgmid    = 'R3TR'
                and object   = 'FUGR'
                and obj_name = enlfdir-area.
            move : tadir-devclass to v_devclass.
          endif.
        endif.
    Find SAP Modifactions
        select * from tadir
          into table jtab
          where pgmid    = 'R3TR'
            and object   = 'SMOD'
            and devclass = v_devclass.
        select single * from tstct
          where sprsl eq sy-langu
            and tcode eq p_tcode.
        format color col_positive intensified off.
        write:/(19) 'Transaction Code - ',
        20(20) p_tcode,
        45(50) tstct-ttext.
        skip.
        if not jtab[] is initial.
          write:/(95) sy-uline.
          format color col_heading intensified on.
          write:/1 sy-vline,
          2 'Exit Name',
          21 sy-vline ,
          22 'Description',
          95 sy-vline.
          write:/(95) sy-uline.
          loop at jtab.
            select single * from modsapt
            where sprsl = sy-langu and
            name = jtab-obj_name.
            format color col_normal intensified off.
            write:/1 sy-vline,
            2 jtab-obj_name hotspot on,
            21 sy-vline ,
            22 modsapt-modtext,
            95 sy-vline.
          endloop.
          write:/(95) sy-uline.
          describe table jtab.
          skip.
          format color col_total intensified on.
          write:/ 'No of Exits:' , sy-tfill.
        else.
          format color col_negative intensified on.
          write:/(95) 'No User Exit exists'.
        endif.
      else.
        format color col_negative intensified on.
        write:/(95) 'Transaction Code Does Not Exist'.
      endif.
    Take the user to SMOD for the Exit that was selected.
    at line-selection.
      get cursor field field1.
      check field1(4) eq 'JTAB'.
      set parameter id 'MON' field sy-lisel+1(10).
      call transaction 'SMOD' and skip first screen.
    Hope this’ll give you idea!!
    <b>P.S award the points.!!! !!!</b>
    Good luck
    Thanks
    Saquib Khan
    "Some are wise and some are otherwise"

  • Production wise price difference report

    dear masters,
    i want to know only production order wise settlement report.
    means after settle the PO i want see what is the price difference amount against that PO as excise duty will be levied on price diff amount as per my present companies scenario.
    but when i go through by fbl3n report i can see only report against GL not against PO but i need only price diff report against multiple production order wise
    pleseeee let me know as earliest as possible.
    Bikash Singha.

    hi
    you have to develop your own.

  • Price comparision in PR and PO

    All SAP Gurus,
    Is there any standard report for Price comparision in PR and PO?
    For example:
    Users are creating PR with Rs. 100.
    PO is created with reference PR.
    But price in PO is different from that of PR.
    So want to know the price difference either in terms of value or in terms of %.
    Regards,

    Hi
    I think you can get the details from the std tables EBAN  and EKPO.
    Regards

  • Price Comparision

    Hi,
    I am creating RFQ and Maintain Quatation then i am doing Price Comparision.After Price Comparision i am selecting one Vendor quatation for PO  remeaning Vendors quatations i am rejecting.But i ahve one doubt can i convert Sutable Vendor quatation for PO directly through Price Comparision Screen and reject remeaning Vendors Quatations through Price comparision.
    It is Possible or Not.Plz give me solutions

    Dear,
    YES, you can reject vendor quotations.
    Please check the links where better explained:
    http://help.sap.com/saphelp_46c/helpdata/en/fd/45c3ec9d6411d189b60000e829fbbd/content.htm
    /people/smita.gupta/blog/2009/09/09/fundamentals-of-quotations
    Regards,
    Syed Hussain.

  • Assets capitalized report through WIP,

    Hi
    how many assets capitalized  through WIP,
    How many assets capitalized directly(without WIP)??
    how to findout this reports.....

    HI,
    Try this report
    with transaction type as th einput parameter
    S_ALR_87012058
    Thanks,
    Vamsi

Maybe you are looking for

  • Macbook air can't connect to wifi but at the same time is connnected.

    Hey there fellow mac users, I got myself a tiny problem around here. My mid 2013 mba is connecting to my wifi at home, but when it's done connecting (and shows it's connected at the network panel) it doesn't load anything from firefox, safari, steam,

  • Message Mapping-Generating Headers and corresponding Line items in 1 file

    Hi, I am working on JDBC to File scenario. There is a staging table in SQL Server. XI polls the table every 20 secs and picks up all the data with flag = 0. After fetching the records it sets the flag to 1 so that the same data do not get fetched the

  • ADF with BC4J and swing

    I created a sample with a pure swing client and using ADF UI designer, I drag-dropped a view object as a Table in the Swing UI. Note I am not using JClient, i am using Swing. When I run the application, I get: java.lang.NullPointerException at oracle

  • Two important problems with GWIA

    I have two major problems in GroupWise 8 SP2 with the latest HP. First, something I arose at another facility with HP2 and that in this new server with HP3 still happens, the file is lost gwac.db every 5 days at 0 hours exactly. Something I could fix

  • Mail: signature, logo, attachments problem.

    Hi, my company moved to macs half year ago and we still have problems with mail. Anyway, we will try to solve this problem, maybe changing to other mail client. I will appreciate all suggestions. This is what we want: /----company logo.jpg----/ text