Standard Report on Fleet Specific Data

Hi gurus,
I was trying to use Tcode IH08 to view equipment data. but i cannot view fleet specific data such as license plate number, VIN, Fuel card No. Engine Type, Capacity Engine serial No., etc.
How can i view those fields?
Thank you very much!

IE36 and IE37 should give you the list edit transaction for fleet equipments.
Regards
Narasimhan

Similar Messages

  • Standard Report to upload Master Data from Excel files

    Hi,
    I am testing some configuration items and I am in need of master data for various scenarios, which is not available in the system now. Is there any standard report that will read data from an excel sheet and upload the corresponding infotypes? This will be of great help.
    Thanks
    K

    Hi,
    As far as I know, there is no standard report in SAP for master data load using excel sheet. You have write a custom z-program with the help of BDC for basic actions or for individual infotypes upload you can use 'Fast Entry' for quickly uploading data for any perticular infoype using Tcode PA30.
    Hope this helps.
    Thanks,
    Sarika.

  • Standard report with po released date

    hi mm experts,
    request pl let me know is there any standard report which gives the po details and release indicator with released date of po.
    pl help.
    regards
    Srihari

    Hi
    U can get Po release date  per release code, use  CDHDR and CDPOS tables in SE16
    Enter transaction as ME28/ ME29N, Enter the range date,enter the object value as PO number (PO number should be 10 digit if the PO is not 10 digit, then add zero value for the prefix).
    Then you can find the release date
    Rest details u can find from ME2N report i.e Po details and Release indicator using dyanamic selection
    Vishal...

  • How to Configure TAB style reports based on specific Data?

    Hi All,
    I am new to Business Objects.
    I have an existing BO report and configured to display certain specific data in TAB sheets based on a kind of rule.
    Where is this exactly Configured in Desktop Intelligence? I need to modify this to add new TAB's as well as change some of the existing ones.
    I am being able to Run my UNIVERSE properly and retrieving all the required data (let's say I am getting 10 different Products, I need to display the associated data of specific Products on Seperate TAB sheets and some others in One TAB) but now my report displayed only part of the data (some of the products).
    Your help is much appreciated.
    Regards,
    Baz

    Hi Sneha,
    The only logic, i guess, that could be used is either defining the join fields or some restriction put in the selection conditions tab of the view. for e.g. if the view should only return Doc type XYZ, the same could be implemented in selection conditions tab. for transaction to check the view, it was already posted above.

  • SAP Standard report/Tcode for Retest date of Materials

    Hi,
    Is there any Standard report or T.code for finding the retest date of materials laying in the storage locations.
    Thanks in advance.
    Ganapathi

    Hi Krishnan
    Thanking you for your interesting to answer my question.
    As my sceniro is not shelf life, i required retest date (recurring inspection date) of materials laying in the storage locations. for better clarity i am describing my sceniro. In MM01- Quality Management- Inspection interval - 365 days entered for all ROH type materials.  Now how can i see the materials retest date laying ( Only Stock batches) in the storage location.
    Thanking You,
    Regards,
    Ganapathi

  • SQL server 2012 Standard report Disk usage – stale data

    I have strange problem, where standard report is giving me old data, from several months, but no new data. I can not see any errors.
    If I generate standard report fro disk usage, I get old data 
    from two monts. No new data. If I open trace file, I can see  current data.
    If I  run query, I can see current data :
    SELECT 
    TE.name
    AS [EventName]
    T.DatabaseName
    t.DatabaseID
    t.NTDomainName
    t.ApplicationName
    t.LoginName
    t.SPID
    t.Duration
    t.StartTime
    t.EndTime
    FROM   
    sys.fn_trace_gettable(CONVERT(VARCHAR(150),
    ( SELECT
    TOP 1
    f.[value]
    FROM    sys.fn_trace_getinfo(NULL)
    f
    WHERE   f.property
    = 2
    )), DEFAULT)
    T
    JOIN sys.trace_events
    TE ON
    T.EventClass
    = TE.trace_event_id
    WHERE  
    te.name
    = 'Data File Auto Grow'
    OR te.name
    = 'Data File Auto Shrink'
    ORDER
    BY t.StartTime
    SELECT 
    REVERSE(SUBSTRING(REVERSE(path),
    CHARINDEX('\',
    REVERSE(path)), 256))
    AS DefaultTraceLocation
    FROM   
    sys.traces
    WHERE  
    is_default = 1
    But these query gives me, data that I see in the report.
    SELECT 
    TE.name
    AS [EventName]
    T.DatabaseName
    t.DatabaseID
    t.NTDomainName
    t.ApplicationName
    t.LoginName
    t.SPID
    t.Duration
    t.StartTime
    t.EndTime
    FROM   
    sys.fn_trace_gettable(CONVERT(VARCHAR(150),
    ( SELECT
    TOP 1
    f.[value]
    FROM    sys.fn_trace_getinfo(NULL)
    f
    WHERE   f.property
    = 2
    DEFAULT)
    T
    JOIN sys.trace_events
    TE ON
    T.EventClass
    = TE.trace_event_id
    WHERE  
    te.name
    = 'Data File Auto Grow'
    OR te.name
    = 'Data File Auto Shrink'
    ORDER
    BY t.StartTime
    SELECT 
    REVERSE(SUBSTRING(REVERSE(path),
    CHARINDEX('\',
    REVERSE(path)), 256))
    AS DefaultTraceLocation
    FROM   
    sys.traces
    WHERE  
    is_default = 1

    Hi,
    SQL Server Management Studio Standard report-Disk Usage works normally in my test machine. My Microsoft SQL Server Management Studio version is 11.0.3128.0.
    Before going further, I would verify if only Data/Log File Autogrow/Autoshrink Events shows the old information.
    “Transaction Log Space Usage (%)” uses DBCC SQLPERF (LOGSPACE) and shows how much empty space we have in the physical transaction log file. Disk space used by Data Files uses DBCC SHOWFILESTATS to get information.
    Data/Log File Autogrow/Autoshrink Events uses the data from Default Trace.
    You can use SQL Profiler to capture the activities. The following entries was recorded when I ran Disk Usage report.
    exec sp_executesql @stmt=N'
    begin try
    if (select convert(int,value_in_use) from sys.configurations where name = ''default trace enabled'' ) = 1
    begin
    declare @curr_tracefilename varchar(500) ;
    declare @base_tracefilename varchar(500) ;
    declare @indx int ;
    select @curr_tracefilename = path from sys.traces where is_default = 1 ;
    set @curr_tracefilename = reverse(@curr_tracefilename);
    select @indx = patindex(''%\%'', @curr_tracefilename) ;
    set @curr_tracefilename = reverse(@curr_tracefilename) ;
    set @base_tracefilename = left( @curr_tracefilename,len(@curr_tracefilename) - @indx) + ''\log.trc'' ;
    select (dense_rank() over (order by StartTime desc))%2 as l1
    , convert(int, EventClass) as EventClass
    , DatabaseName
    , Filename
    , (Duration/1000) as Duration
    , StartTime
    , EndTime
    , (IntegerData*8.0/1024) as ChangeInSize
    from ::fn_trace_gettable( @base_tracefilename, default )
    left outer join sys.databases as d on (d.name = DB_NAME())
    where EventClass >= 92 and EventClass <= 95 and ServerName = @@servername and DatabaseName = db_name() and (d.create_date < EndTime)
    order by StartTime desc ;
    end else
    select -1 as l1, 0 as EventClass, 0 DatabaseName, 0 as Filename, 0 as Duration, 0 as StartTime, 0 as EndTime,0 as ChangeInSize
    end try
    begin catch
    select -100 as l1
    , ERROR_NUMBER() as EventClass
    , ERROR_SEVERITY() DatabaseName
    , ERROR_STATE() as Filename
    , ERROR_MESSAGE() as Duration
    , 1 as StartTime, 1 as EndTime,1 as ChangeInSize
    end catch
    ',@params=N''
    Both queries use the default trace file. Disk Usage report use sys.traces to get the trace file path. I suggest check default trace file in sys.traces is correct. You can modify the query like below and check if the output returns the same result.
    SELECT TE.name AS [EventName] ,
    T.DatabaseName ,
    t.DatabaseID ,
    t.NTDomainName ,
    t.ApplicationName ,
    t.LoginName ,
    t.SPID ,
    t.Duration ,
    t.StartTime ,
    t.EndTime
    FROM sys.fn_trace_gettable('<default trc file path>', DEFAULT) T
    JOIN sys.trace_events TE ON T.EventClass = TE.trace_event_id
    WHERE T.EventClass >= 92 and T.EventClass <= 95
    Best Regards,
    Tracy
    Tracy Cai
    TechNet Community Support

  • Stock report for a specific date.

    Hi Gurus,
    Can any one please tell me if there is any option is SAP by which i can get the stock status for a particular day. I mean if i want to check what was the stock report on last week some day, is there an option in SAP to do that. This report should give the stock of that day and any movements after that day should not be included in that report, for example if 10 quantity of a material was available on 26/03/09 and 5 were either moved or consumed, can i get the status in past for 26/03/09 today as quantity 10 rather than quantity 5 which is available today.
    Regards
    Anoop

    hi,
    Try with t.code MB5B -Stock on Posting date. You can get what you want.
    Regards,
    Prasath

  • Data Access Error when importing Standard Reports

    After installation, when I try to import standard reports, I got a "Data Access Error".
    FDM 9.3.1
    Oracle 10g
    In the fdm.err, I find the following description:
    ORA-12899 : too long value for "MYFDMSCHEMA"."TREPORT"."REPORTDESC" (real 152, max 75).
    It seems that reports descriptions are too long for my Oracle repository...
    Any idea ?
    Regards

    Yes.
    Please take the time to flag this response as helpful or correct if it helps you address the issue
    http://forums.oracle.com/forums/ann.jspa?annID=1184
    Edited by: TonyScalese on Dec 2, 2010 11:52 AM

  • BW standard report which extracts data  from R/3

    Hi,
    Can any one please give me the standard report name which extract data from infotypes (HR infotypes) in R/3 and shows the output.
    Thanks in Advance
    Ravi

    Hi Ravi kumar,
    use the following links
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1030179,00.html#reporting
    http://help.sap.com/saphelp_nw70/helpdata/en/26/77eb3cad744026e10000000a11405a/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/b7/c447ed9d5411d189b60000e829fbbd/frameset.htm
    with hopes
    ARS

  • Standard report on promotion and pay changes

    Hi All,
    Is there any standard report which captures promotion data along with pay changes.
    Regards
    Aryan

    query can be created to extract information from master records i.e Infotypes. For example, by creating a query , the data relating to an employee contained in various Infotypes can be extracted.
    Proceedure :
    Decide on the various Infotypes we want to make the query. Decide on the area where we want to query i.e Global area or Standard area. Standard area is client specific and globel area will include all clients.
    Menu : HR u2013 PM u2013 Admn - Information System - Adhoc Query
    Select area standard and select the user group already created
    Creation of new query :
    TC SQ03 - Select Environment u2013 Select Standard Area - Enter -- If new user group is to be created, enter name of the user group, click on create and enter necessary information and exit after saving
    TC SQ02 - Enter name of the Infoset u2013 Create u2013 enter name of Infoset - Data source -- > Table join by basis table u2013 give name of table e.g pa0000 - Enter - Click on insert table if we want to include more tables u2013 give name of table one by one and after finishing, place cursor on the joining lines and right click to delete unwanted relationships - check - and go back - field groups - include all table fields - click on generate button - go out
    TC SQ03 - Select user group - eg. Payroll
    Infoset - Enter name of newly created Infoset
    Assign users and Infosets - Assign infosets - put tick on payroll - save and go back
    TC PAAH - Expand the nodes and put tick on relevant fields depending upon necessity
    Save the query by giving the same name as infoset for easyness..

  • R12: How to filter Open Item Revaluation Report based on GL Date

    Hi,
    Anybody know how to filter Open Item Revaluation Report based on GL Date from and GL Date to in R12?
    Since we just upgraded from 11.5.10 to 12.1.3 and found we cannot filter those report for specific date. It shown all data included the old data from 8 years ago also.
    We need to run the report only for specific date only. Please share with me if anyone know about this.
    Thanks.

    Pl do not post duplicates - R12: How to filter Open Item Revaluation Report based on GL Date

  • R12: How to filter AP and PO Accrual Reconciliation Report based on GL Date

    Hi,
    Anybody know how to filter AP and PO Accrual Reconciliation Report based on GL Date from and GL Date to in R12?
    Since we just upgraded from 11.5.10 to 12.1.3 and found we cannot filter those report for specific date. It shown all data included the old data from 8 years ago also.
    We need to run the report only for specific date only. Please share with me if anyone know about this.
    Thanks.

    In 12 you can rebuild and run the report for a particular period, but not a single day if that's what's required

  • How to create a standard report that allows filtering?

    Hi Guys and Gals,
    Sometimes, the standard report is great because it gives the user the feeling of a grid. i.e. All of the values are editable on one page, kind of like a spreadsheet. That is sometimes very useful. But if there is a lot of data, a filtering mechanism is necessary.
    So will one of you Apex gurus please tell me how to create a standard report that also allows data filtering?
    Allowing the user to specify the number of rows displayed would be peachy-keen too.
    Thanks,
    Kim
    P.S. I'm running Apex 4.1 with Oracle 11g.

    Kim2012 wrote:
    Your idea sounds very promising, but I apparently need a nudge in the right direction. From "Create Page", I clicked on "Form" and then "Tabular Form". Why would you do this? The advice given was
    create a standard report page using the Create New Page wizardi.e. go to Home > Application Builder > Application > Create Page and click Classic Report, this was suggested because the original post said:
    >
    So will one of you Apex gurus please tell me how to create a standard report that also allows data filtering?
    >
    Nothing about forms. Tabular Forms, Tabular Forms. Despite many enhancements over the last few versions, tabular forms still cause problems, especially for novices trying to go beyond their own competence and the built-in capabilities of wizard-generated tabular forms.
    More good advice: Re: Newbie question-how does the tabular form work?  How to populate prim key? and&mdash;if based on decent database design&mdash;out of the box you have a usable and robust application. Use an Interactive Report or a custom report template and add some CSS and you can get something a lot more powerful, flexible and better looking than any tabular form. Spend the time you haven't wasted on frustrated hacking of tabular forms adding more features and enhancements to your app.

  • Issue found in EHS in using specification data import using  process

    Dear EHS community
    Now using EHS classic for a long time a issue has been detected in EHS standard import. During maintenance of EHS data normally using CG02 the system is always using the default "Data origin" specified in customizing to be stored in EHS tables (e.g. ESTRH, ESTRI etc.). In standard process to import specification data one can define a different "Data origin". Now we are using an import file with default" data origin and executed the import. Now a strange effect has been detected (and not always) for update of identifiers. For the import purpose you must nominate at least one identifier. If the identifier is found then normally no update happens but only the value assignment data is inserted (or updated). If the identifier is not found it get be inserted on spec level in ESTRI. Now during the update the "Data origin" of the identifier present in the system (and which matched to identifier on file level) was changed but not the identifier as such. Any data record on value assignment level received the defautl data origin. Actually there is no explanation for this behaviour. If Default "Data origin" would be "SAP" (as the term) this value has been change to "Space". Any explanation of this effect is appreciated (or and idea regarding that).
    C.B.
    PS: analysis of change logs in EHS etc. executed so far clearly indictae that an "Update" happened on the identifier; but only the field SRSID is effected; EHS import is quite old and therefore very stable;
    PPS: I found a thread taking about the import file:
    spec import_inheritance data
    Example shown thre is like:
    +BS
    +BV   $ESTRH
    SRSID                          EH&S
    SUBID                          000000385000
    SUBCAT                         REAL_SUB
    AUTHGRP                        EHS_PS
    +EV
    +BV   $ESTRI
    SRSID                          EH&S
    IDTYPE                         NAM
    IDCAT                          EHS_OLD
    IDENT                          XY0002
    ORD                            0001
    +EV
    +BV   SAP_EHS_1013_001
    $ESTVA-SRSID                   EH&S
    SAP_EHS_1013_001_VALUE         N09.00101280
    +EV
    If you compare SAP helpt normally only at the"begining pof the file you will find "SRSID" Here this field is nominated often. On Level of ESTRH as well as ESTRI.
    PPS: e.g. refer to: TCG56 EHS: Data Origin - SAP Table - ABAP

    Dear Ralph
    first thanks for feedback. Regarding content provider: we need to check that on deeper level
    Regarding import may be my explanation was not good enough.
    Imagine this case:
    you have a specification in the system there you would like to add e.g. denisity data.. To do so you need at least one identifier which you must nominate during the import. As long as this identifier is "identical" in system and in the file this identifier should not be "changed/effected" etc. and only the additional data should be loaded, This was the process we used. Now we detected that this seems not to be the real effect. The identifier as part of the file is "updated" in EH&S. In the example above somebody used this logic:
    +BV   $ESTRI
    SRSID                          EH&S
    IDTYPE                         NAM
    IDCAT                          EHS_OLD
    IDENT                          XY0002
    ORD                            0001
    +EV
    Nearly the same is used in our process. Only difference ist, that we do not define the "SRSID". The same is true for any other data in the file. SRSID is nether specified.
    What is happing now:
    e.g. the "density" data is added with SRSID "EH&S". This effect is "normal". As by default SRSID should be EH&S (as this is defined as such in customizing) and because of the fact that at the top the ID is es well "EH&S". In the system we have the "XY0002" having SRSID EH&S. By using now this upload approach the only difference afterwards is tht kin th systeM; XY0002 does get "blank" as SRSID (and there is no data origin "blank" defined. Up to today my unertsanding was clearly: no update should happen in the identifier. This seems not to be the case. Is my understanding here different? Or is this SRSID in the load file is really mandatory in ESTRI level to avoid this effect. I hope that you can provide some feedback regarding this.
    C.B.
    PS: referring to: Example: Transfer File for Specifications - Basic Data and Tools (EHS-BD) - SAP Library
    The header of import file should look like:
    Comment
    +C
    Administrative section
    Character standard
    +SC
    ISO-R/3
    Identification (database name)
    +ID
    IUCLID
    Format version
    +V
    2.21
    Export date
    +D
    19960304
    Key date for export
    +VD
    19960304
    Set languages for export
    +SL
    E
    Date format
    +DF
    DD.MM.YYYY
    IN our case +ID = EH&S (as this is the value in export file)
    IN this example this additional one is shown:
    Begin table
    +BV
    $ESTRI
      Table field
    IDTYPE
    NAM
      Table field
    IDCAT
    IUPAC
      Table field
    IDENT
    anisole
      Table field
    LANGU
    E
      Table field
    OWNID
    ID1
    Therefore no SRSID is specified. And this is the data in our file (on high level) and the "only" change is that the identifer get "deleted" the SRSID

  • Hiding a selection screen field for Standard Report Transaction

    Hello All,
    We are trying to hide a check box on the selection screen for a standard sap report transaction (s_alr....). We can hide it by creating a variant but then if the users don't select it, the checkbox will be visible. We can't use transaction variant to hide this since its not a dialog transaction.
    We don't want any users to select that option by clicking on the checkbox and then running the report. Any suggestions or help is much appreciated.
    Thanks,
    Sal

    Did you think about modifying the standard report by adding NO-DISPLAY to the parameter option?
    If you are not allowed to modify another option - although much more effort - would be to replicate the standard selection screen in an own Z-report and at the end do a SUBMIT standard report WITH parameter
    In your won report you can easily hide that parameter and always pass a space to the standard report.
    To submit data to the standard report just use
    DATA: lt_par  TYPE TABLE OF rsparams.
    build the selection table based on the selection criteria the user entered and do:
    SUBMIT rep USING SELECTION-SCREEN 1000
           WITH SELECTION-TABLE lt_par.
    Then just remove access to the standard transaction and create an own transaction for your custom report which is added to the users authorized transactions.
    Not the easiest way to do it, but it does work.
    Regards,
    Michael

Maybe you are looking for

  • Time Machine No Longer Backing Up

    I have been using Time Machine since I installed Leopard in May. Before I began I partitioned the external USB 2.0 drive using Disk Utility into a 320G Back Up and a second smaller partition which I use when working with iMovie files. I occasionally

  • Im at a serious loss with this new HD install.....

    I dont know what else to do. I recently tried to instala new HD in my computer Seagate 500GB SATA II 7200rpm 16mb Performance Rotational Speed: 7200rpm Buffer Size: 16mb Transfer Rate Serial ATA (G/s): 3.0G/sec Average Seek: < 8.5ms Average Latency:

  • Flash archive from a T2000 to V240

    Hi, I am attempting to install a flash archive created on a sun T2000 and install it on a Sun V240. Its reporting errors that say the flash archive is not valid. I have tried many times. I don't quite understand this sun4u vs sun4v stuff. Is the T200

  • Performance 1CL_OLIS001

    //internal code E60063.TWAN// We are struggeling with the performance of extractor 1CL_OLIS001. It appears that the SAP-delivered code for extraction (function module CTBW_GET_KONFIG_DATA) is not designed for handling large VBAP tables. In our case >

  • Add holidays to iCal

    How do I add US holidays to iCal? TIA