Report on daily performance

hi friends,
i want to make report on daily performance of plant in which there are different columns like 1. plan/ day,
                                2. monthly plan
                                3. days production
                                4. cumulative production .
now from where i get monthly plan or what logic i use for this.
which tables i use for this report.
with regards.
B.S

Hi,
Check the Functional Spec given.
Regards,
Wajid Hussain P.

Similar Messages

  • Daily Performance Reports...

    Hi,
    We need to get some daily Perf reports on the basic health of the Database...
    Is there any way to get daily performance statistics of Database through OEM or so...
    Thanks
    Joseph

    asifkabirdba,
    He or she does not have to mark those threads as answered. Marking a thread as answered and assigning points to the people is ethical towards the community. May be he or she could not find the answers that he or she has been looking for?
    Please read;
    http://wiki.oracle.com/page/Oracle+Discussion+Forums+FAQ#questions
    What are "rewards points"?
    It is possible for you to reward an answerer 5 points for a "helpful" answer or 10 points for a "correct" one (or none at all). Users who accumulate certain amounts of points reach different levels of recognition (see legend). In this manner, users who offer consistently helpful or correct answers raise their standing in the community. (Note: in order to award points, you must identify your post as a "question" first - which is set as default.)
    What is proper discussion forum etiquette?
    When asking a question, provide all the details that someone would need to answer it including your database version, e.g. Oracle 10.2.0.4. Format your code using [code] tags (see "How do I format code in my post?" below). Consulting documentation first is highly recommended. Furthermore, always be courteous; there are different levels of experience represented. A poorly worded question is better ignored than flamed - or better yet, help the poster ask a better question.
    Finally, it is good form to reward answerers with points (see "What are 'reward points'?" below).Regards.
    Ogan

  • Std, report for Daily receivables

    Hi Friends,
    AP supervisor of my company would like to see report for Daily Receivables.
    Is there any std. sap report that can provide him with this information.
    please let me know.

    Hi,
    When I said develop I meant a custom ABAP report with the help of Developers. You can also try option of developing a ABAP query by using table BSID, but this may be difficult if the requirement is to list multiple days as columns (seven days as seven columns). I am assuming the Customer numbers will be rows in the report.
    Thanks
    Murali.

  • Would Like to Get Report of Daily Emails In and Out from Members to a DL Exchange version : 2007 I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity is it possible ?

    Would Like to Get Report of Daily Emails In and Out from Members to a DL
    Exchange version : 2007
    I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity
    is it possible ?

    Well, distribution groups don't really have a concept of "in" or "out". They only serve to distribute messages sent to them -- unless you're asking to know who was a member of the distribution group at the time a message was sent to the DL.
    Message tracking logs hold the information you want, though. You'd have to look for EXPAND events that reference the distribution group and take the sender's e-mail address from that event. If the DL is a simple one that's not a member of any other groups
    you could also look for RECEIVE events sent to the e-mail address of the group and get the sender's name from that event.
    You can use Powershell extract the rows of data from the logs, but you'll have to write the code to get the data out of those rows and into a format you want. Perhaps LogParser could be useful in place of Powershell?
    --- Rich Matheisen MCSE&I, Exchange MVP

  • Devolped an ALV report for daily cash receipts for selected date range

    hi,   
                 how to devlop an ALV report for daily cash receipts for selected date range.for this report what are the tables and fields we have to use.what is the selectionscreen&what is logic.give me sample report.

    hi,   
                 how to devlop an ALV report for daily cash receipts for selected date range.for this report what are the tables and fields we have to use.what is the selectionscreen&what is logic.give me sample report.

  • Devloped an ALV report for daily cash receipts for selected date range

    hi,   
                 how to devlop an ALV report for daily cash receipts for selected date range.for this report what are the tables and fields we have to use.what is the selectionscreen&what is logic.give me sample report.

    Hi,
    You can develop simple reports using Report Painter.
    You may be also interested in:
    Check report SAPMF05A for credit memo
    See the following Std reports on Payment Advices execute the Tcodes:
    S_ALR_87009888
    S_ALR_87009889
    S_ALR_87009890
    S_ALR_87009891
    S_ALR_87009892
    S_ALR_87009893
    S_ALR_87009978
    S_ALR_87009979
    S_ALR_87009980
    S_ALR_87009981
    S_ALR_87009982
    S_ALR_87009983
    S_ALR_87010056
    S_ALR_87010057
    S_ALR_87010058
    S_ALR_87010059
    S_ALR_87010060
    S_ALR_87010061
    S_ALR_87010066
    S_ALR_87010067
    S_ALR_87012106
    S_ALR_87012107
    S_ALR_87012108
    S_ALR_87012109
    S_ALR_87012110
    S_ALR_87012111
    S_ALR_87012116
    S_ALR_87012117
    S_ALR_87012200
    S_ALR_87012201
    S_ALR_87012202
    S_ALR_870122
    S_ALR_87012204
    S_ALR_87012205
    S_ALR_87012350
    S_ALR_87012351
    S_ALR_87012352
    S_ALR_87012353
    S_ALR_87012354
    S_ALR_87012355
    sample ALV report:
    tables:
    marav. "Table MARA and table MAKT
    Data to be displayed in ALV
    Using the following syntax, REUSE_ALV_FIELDCATALOG_MERGE can auto-
    matically determine the fieldstructure from this source program
    Data:
    begin of imat occurs 100,
    matnr like marav-matnr, "Material number
    maktx like marav-maktx, "Material short text
    matkl like marav-matkl, "Material group (so you can test to make
                            " intermediate sums)
    ntgew like marav-ntgew, "Net weight, numeric field (so you can test to
                            "make sums)
    gewei like marav-gewei, "weight unit (just to be complete)
    end of imat.
    Other data needed
    field to store report name
    data i_repid like sy-repid.
    field to check table length
    data i_lines like sy-tabix.
    Data for ALV display
    TYPE-POOLS: SLIS.
    data int_fcat type SLIS_T_FIELDCAT_ALV.
    select-options:
    s_matnr for marav-matnr matchcode object MAT1.
    start-of-selection.
    read data into table imat
      select * from marav
      into corresponding fields of table imat
      where
      matnr in s_matnr.
    end-of-selection.
    Now, we start with ALV
    To use ALV, we need a DDIC-structure or a thing called Fieldcatalogue.
    The fieldcatalouge can be generated by FUNCTION
    'REUSE_ALV_FIELDCATALOG_MERGE' from an internal table from any
    report source, including this report.
    The only problem one might have is that the report and table names
    need to be in capital letters. (I had it )
    Store report name
    i_repid = sy-repid.
    Create Fieldcatalogue from internal table
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
           EXPORTING
                I_PROGRAM_NAME         = sy-repid
                I_INTERNAL_TABNAME     = 'IMAT'  "capital letters!
                I_INCLNAME             = sy-repid
           CHANGING
                CT_FIELDCAT            = int_fcat
           EXCEPTIONS
                INCONSISTENT_INTERFACE = 1
                PROGRAM_ERROR          = 2
                OTHERS                 = 3.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                I_CALLBACK_PROGRAM       = i_repid
                I_STRUCTURE_NAME         = 'marav'
                I_DEFAULT                = 'X'
                I_SAVE                   = 'A'
           TABLES
                T_OUTTAB                 = imat.
      IF SY-SUBRC <> 0.
        WRITE: 'SY-SUBRC: ', SY-SUBRC .
      ENDIF.
    Hope this will help.
    Regards,
    Naveen.

  • Report on daily sale,stock availability,pending order,Ageing report

    Report on
    daily sale for time period
    stock availability
    pending order
    Ageing report

    Dear Goutam
    Through VF05, you can see sales daily.
    For stock MMBE
    For Pending Order, VA05
    Thanks
    G. Lakshmipathi

  • 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 on Workcenter performance, capacity and requirement

    Hi All,
    Could any one tell me how to build a report on workcenter performance and workcenter requirement and Capacity.
    Is there any standard cube available for this? I already checked 0PP_C03 and 0PP_C13. I'm not sure whether these will suffice or not?
    To calculate that I need to know how to calculate -
    Forecast work,
    Dispatched work,
    Undispatched work,
    Backlog Recovery,
    Short fall/Excess,
    Internal Resource and
    External ResourcePerformance(Overdue/Scheduled),
    % of Activities which r in progress & with in schedule time and
    % of Activities which r in progress & for which time is confirmed ( with respect to System status)
    Does anyone already worked on this? Or could you please suggest me how to calculate the above.
    This is an urgent requirement.Your help will be highly appreciated. 
    Thanks in advance,
    isha

    Hi Sirisha,
    I did work in PP functinal area sometime ago.
    We had this kind of requirement,but achieved this through custom development.
    Rightnow, the businesscontent is the good step to understand.
    I suggest you to approach this as follows:
    Take some PP orders, display some of them ..look at the the dates on the order..see if there are confirmations against orders and so on. look at operations and work centers..scrap percentage..so on
    then go to RSA3 in R/3 side and give the PP extractor name, look at the key figure values and PP orders, thats how we can link what is in bus.content and our requirement.
    If you have any questions, you may ask.
    Anil

  • List of BO reports failing daily and schedule run time

    Hi,
        Our BO reports are scheduled to refresh daily early mornings 2 - 6 AM and around 280 reports run daily. We want to know list of failed reports daily and measure run time differences for each report in different days and run time for all 280 reports.
    1. List of failed reports (to check if same reports are failing daily)
    2. Total run time for all reports
    3. Change in run for each report on different days.
    Could you please let me know how this kind of report can be generated.
    Regards,
    Nanda Kishore B

    Hello Nanda Kishore,
    Check below two links which can be helpful:
    For query builder, below link has a 4 part series of queries. You can find the other links at the bottom on the page
    BusinessObjects Query builder queries
    If you are using BI 4.x, then below link has a set of sample auditing universe and reports.
    I'm sure you can find the required reports in the attachment:
    Sample Auditing Universe and Reports for SAP BusinessObjects_4_x
    I think auditing would be the best way to get the information required.
    I hope this helps!
    -V

  • Security Reports - Scheduling daily retrieval

    Hi,
    I have two questions regarding security reports.
    I do Not have Planning audit trails activated(client does not want that.) But I Do need a daily report of all the changes that the Hyperion admin does to the roles and provisioning of groups and users.
    Q1.
    Of the 3 reports-Security Reports,Artifact Reports,Config Reports ,that are available in Shared services, it seemed that the 'Security Reports' was my best bet as it made me select what I wanted reports on.(eg. Directory Managemet,UserProvisioning in Select Tasks).But when I run the report I see repetitive lines of useless info
    eg:
    Performed on      Performed by   Application            Artifact Type     Artifact Name   Task
    05/17/2011 admin@native Shared Services User admin@native Authenticate
    Attribute Name : Host Info
    New Value:UNKNOWN
    Access control report only gives me the user/group access and not the changes that were made to them. The Security team at the bank would want to monitor the activities of the Hyperion admin and see what changes were made by her.
    Which report shoould I use to get the required info?
    Q2.
    How do I automate the generation of reoprt such that the members of the security team get the report in their emails daily?
    I would appreciate any help that I get on this.
    Thanks

    Hi,
    are we talking about a single report object here or do more than one report objects (Have the same problem)?
    Is the empty instance been scheduled with the same user as the one you use to view the report in the infoview?
    Have you checked for any error messages in the log files residing in the logging directory in your BOBJ installation directory?
    Have you got any service packs (latest SP = SP4) installed on your BOBJ server?
    Regards,
    Stratos

  • Report for daily production and daily sales quantities

    Can you Please any body let me know what fields and tables should I pick to generate a report for sales qty and production qty for a material on daily basis. we are using PP PI

    Hi,
    You can use table MSEG for that purpose. Try BUDAT-MKPF as one of the selection parameters and use
    MBLNR-MKPF = MBLNR-MSEG
    MJHAR-MKPF = MJHAR-MSEG
    Sort the results in ERFMG-MSEG and ERFME-MSEG using
    BWART-MSEG = 101 minus 102 (for production)
    SOBKS-MSEG = E
    BWART-MSEG = 601 minus 602 (for sales).
    Above stuff might be useful to you for your development requirement provided you are having Sales Order specific production.
    Thanks & Regards,
    Abu Arbab A

  • Regarding report for daily GRN

    Sapgurus,
    Any report where we can see all daily stock report in MM side
    Thanking you

    Hi,
    You can also use S033 table for daywise stock movements.
    Regards,
    Prabu

  • Standard report for - Daily Store Material Issue

    Hi All,
    Can any one let me know which standard report gives me the details for "DAILY STORES MATERIAL ISSUE" in Oracle Inventory.
    Thanks
    Sunil

    You can try the "Transaction Register" report and narrow it by transaction type and subinventory.
    Hope this helps,
    Sandeep Gandhi

  • Report for Daily Incremental

    Hi,
    I just want to know the volume size of daily backup , How i can make this report or get through a query for last 4 weeks.
    Regards
    Usman Ghani
    Usman Ghani - MCITP Exchange 2010

    you can use very greate report from MVP Steve Buchanan .
    DPM Backup Summary Report
    Have a nice day !!!

Maybe you are looking for

  • How can i insert data into DB from my page programatically in Oracle ADF..?

    Hai, this is praveen. I have created  an EO and VO, when i have inserted data by dragging and dropping from DataControl -->Operations-->Create. I have successfully inserting data. But how can i do it programatically. What are the pre-defined steps th

  • Firefox will not set up Abode Flash. It is all ready on my computer from IE.

    I am trying to change from IE to Firefox. Firefox does not have Abode Flash and will not take it when I download Abode Flash from Abode site. The current version of Abode Flash is on my computer from IE Ken

  • How to move a symbol + reference guide

    Hi, I apologize for being a noob.  I installed Animate one week ago and have a prototype due in 3 days, so I'm just going to ask: 1)  How do I move/transform/translate a symbol from code?  Either the timeline, the symbol itself, or another symbol wou

  • Image shifted slightly to the left in the monitor[Solved]

    Hi, This is my video-card: 01:05.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RS880 [Radeon HD 4250] My monitor is a Samsung sa1000 , the image is shifted to the left in the monitor, Can you help me? Thanks EDIT: I have just pres

  • Time datatype issue from SSIS

    Hi All, I have a SSIS pkg, I have 1. Sart_time (datetime datatype) 2. End_time (datetime datatype) 3. Run_time ( Time(0) datatype) I am using the Run_time to get the difference of star & end time to calculate the time taken to complete the execution