OSHA 300 Report fields

Hi Gurus,
When running the standard OSHA 300 Report out of SAP, can anyone tell me how the field "Where the Event Occurred" is being populated from?  This is in the "Describe the Case" section, letter "E".
So far I can find no documentation on where this is coming from.  Thanks in advance.  Dave.

hi,
in normal reports we cant have any modifications i.e output formatting, having colors to list nad also we can't display more than 256 columns .
ALV is a tool provided for abapers to display list more graphically. SLIS is astructure is which contains all the user required functionalities. in order to have graphical reports we have to declare SLIS and go further.
in alv we can some columns , delete some and display list in desending or in descending order based on any field which is not posssible in reports as they are used for only static display.
if helpful reward some points.
with regards,
suresh aluri.

Similar Messages

  • Can You Use A Report Field Value In A Hyperlink?

    <p>I have a report field that I would like to be a link to another application. Making a report field a hyperlink to a web page was nice and simple.  However, I was expecting to be able to use the value of the field in the hyperlink something like...</p><p><a href="http://mywebsite/controller?action=servlets.ReportAlertDetailListAction&key={AlertSearch.ALERT_KEY">http://mywebsite/controller?action=servlets.ReportAlertDetailListAction&key={AlertSearch.ALERT_KEY</a>}</p><p>...where AlertSearch is the table name and ALERT_KEY is the field name.  Is there a way to use a report field in a hyperlink?  Would using a formula allow it to be dynamic?  The goal is to have each row of the report link to a URL with a different parameter.  I can see eventually redoing it as a drill down feature but the detail I need already exists in a separate application.</p><p>Thanks,</p><p>Ed</p>

    Hi Ed.
    I believe the conditional formula that you would use (don't just type in the text box - press the button for the formula first).
    "[http://mywebsite/controller?action=servlets.ReportAlertDetailListAction&key | http://mywebsite/controller?action=servlets.ReportAlertDetailListAction&key]=" + {AlertSearch.ALERT_KEY}
    The key is to use the conditional formula feature of the hyperlink feature.Â
    Enjoy!Â
         - Kathryn Webster (Report Design Consultant)
               Kat&#39;s News: http://diamond.businessobjects.com/blog/279

  • Code for reports field

    Hello,
    In Administration -> Setup -> Business Partners -> Countries there is a field called 'Code for Reports'.  Does anyone know what this field is for?  I thought it was for possibly putting in a different variation of the country code, e.g UK instead of GB to be displayed on printouts however it is not being displayed when i print preview/print.
    Any advice is appreciated.
    Many thanks,
    Kate

    Hi Gordon,
    I've tried displaying code on the print layout too but this does not get pulled through either.  I would like to use the 'code for reports' field to display 'UAE' instead of 'AE'. 'AE' is the default country code for United Arab Emirates which cannot be changed however the users would like to see 'UAE' instead.
    Kind regards,
    Kate

  • Multiple report fields from single physical column.

    Hi Experts,
    I have a physical table like below. Multiple records for a single customer id. The no of Address_type may increase in future.
    Customer_id     Address_Type         Address
    101                  Primary                   abcdefgh
    101                  Secondary               234oij3mb4
    101                  Billing                      mdmnweoij4
    102................etc.
    My Requirement on OBIEE is to display report as below.
    Customer_ID, Primary_Address, Secondary_Address, Billing_Address.
    101                 abcdefgh            234oij3mb4               mdmnweoij4
    Multiple report fields ( Primary_Address, Secondary_Address, Billing_Address ) are derived from same physical column ADDRESS.
    I tried to duplicate the Address column on the report thrice and added conditions like Address_Type = Primary/Secondary/Billing for those three fields respectively.
    But only of the field is getting correct data and rest of duplicate columns are null.
    Tried FILTER function on OBI Answers, but the function fails saying it should be used only on measures.
    Thought the alternative would be to define multiple logical columns at BMM layer. Created multiple alias for same table at physical layer and correspondingly created LTS for each on a single logical table. Defined Fragmentation/Where conditions.
    LTS1 - Address_Type = PRIMARY
    LTS2 - Address_Type - SECONDARY
    LTS3 - Address_Type - BILLING
    Created multiple logical columns from each LTS like Primary_Address, Secondary_Address, Billing_Address from LTS1, LTS2, LTS3 respectively.
    This time, am getting data for all the fields on the report but getting cartesian result.
    Can someone guide me whether my approach is correct or any other alternate best approach to achieve the desired result.
    Note: I have the data Address on multiple physical rows for a customer, rather Not in a single row. which is causing me problem.
    Thanks...
    Ramchand.

    Hi Srini VEERAVALLI,
    I have lot many other fields in the same report coming from other tables.
    Does the Pivot table option for above mentioned Address fields affect other columns?
    If Yes, Can there be any other alternative? Am thinking of Opaque View at Physical layer to bring all Addresses on a single row.
    Thanks...
    Ramchand.

  • Crystal Reports Field Explorer not showing

    Hi,
         I am using Visual Studio 2003 with the bundled version of Crystal Reports.  It has always worked fine until recently the Field Explorer tool bar does not show up anymore when I open a Crystal Report for development.  I have uninstalled the entire Visual Studio and reinstalled the Visual Studio but it still will not show the Crystal Reports Field Explorer.  However, if I install the Visual Studio on a completely different computer it works fine.  Anyone have any idea what could be causing this problem on my main computer?  Could it be a setting somewhere in the Visual Studio?  I cannot find any information on this problem.
    Thanks,
    Razzle

    Ok, I figured out what the problem was.  It was something wrong in my Windows profile.  So I deleted my Windows profile and created a new one and it is working now.
    Razzle

  • Dynamically set report field value

    In my old classic VB project, I was able to set a report field value using the following simple line of code.
    someReport.SomeField.SetText u201Cabcu201D
    This was nice and simple, now with crystal reports .Net I do the following:
    ((TextObject)someReport.SectionX.ReportObjects["SomeField"]).Text = u201Cabcu201D;
    Itu2019s simple enough but seems too elaborated compared to the good old VB6.
    Not that is a big deal but is there a simpler way (Classic VB6 style) to set a field on a report without me having to create my own utility method to u201Csimplifyu201D things?
    Thanks.

    Perhaps using a formula?
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Public Class Form1
    Inherits System.Windows.Forms.Form
    Dim Report As New CrystalReport1()
    Dim FormulaFields As FormulaFieldDefinitions
    Dim FormulaField As FormulaFieldDefinition
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    FormulaFields = Report.DataDefinition.FormulaFields
    FormulaField = FormulaFields.Item(0)
    FormulaField.Text = "[formula text]"
    CrystalReportViewer1.ReportSource = Report
    End Sub
    Other than that, InProc RAS, but if the solution you have is complicated, you ain't seen nothing yet
    - Ludek

  • Making dynamic links from report fields

    Is there a way to make report fields link to differnt websites? I can't use the 'link' tool in 'editing' option of making the report because the link will not be the same for each record in the database. The field itself is actually the address of the website I want to be able to link to. So essentially, what I want to do is something like: ..but this does not work. Does anyone know if this is possible??
    Thanks!

    You can use SQL report to do this:
    Suppose the column which contains the web addressed is called url_column, your SQL
    will be something like
    select htf.anchor(url_column, name) from the_table
    Then in the Column Formatting page,
    set the "Display as" for column url_column as HTML.
    Run the report and the values form that column will be a url which links to other web sites
    null

  • Summing up the report fields

    Post Author: jehanzeb
    CA Forum: Formula
    Afternoon all,
    Just wondering how can you summarise a report field. I have the total number of jobs field which displays the total number of jobs any person has done at any one time. Now in the report I want to add up all the jobs which has been done by all users.
    Example:
    Name - Total Jobs
    James- 10
    Andrew-11
    Total = 21
    The above example shows the total number of jobs both (James and Andrew) performed.
    How can I achieve this?
    *I  have tried the formula field - however, it says "This field cannot be summarised".
    Formula used " DistinctCount ({#Total Jobs}) "
    Please help!
    Many thanks
    Regards
    Jehanzeb

    Post Author: jehanzeb
    CA Forum: Formula
    Not to worry I have resolved the issue.
    I had to create the summary (E) type icon and choose the fields to summarise the report field. Sometimes you miss obvious things!! :-D
    anyhow it has been fixed so closing this thread.
    Regards
    Jehanzeb

  • How Make the Report Fields Read only

    Hi I have drop down selection in a Report field.After selecting a particular value and submiting it the field should become readonly.

    Hi SanjayBala!
    Create a conditional branch that will be executed if your select list submits (the branch must be conditional. The conditiontype is request = e1 and e1 is the name of your select list). This Branch ought to have a request (lets say select_list_ro). Create a read only condition for your select list (request = e1) that comes to use if the current request is select_list_ro.
    Hope that helps!
    yours sincerely
    Edited by: Florian W. on 03.02.2009 14:04

  • Dynamically modify the crystal report field size based on Paper size in C#

    Hi,
    I need to modify the Crystal Report field size dynamically based on the paper size using C# .Net. According to the paper size, crytal report field width should be increase or decreae.
    Kindly suggest any solution on this.
    Thanks

    Moved to .NET SDK forum
    See these RAS samples:
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples#NETRASSDKSamples-Exporting%2FPrinting
    Don

  • Cannot insert a picture (image - BLOB) directly into a report field?

    Hello
    I am new to APEX and I am trying to create a table with an image together with an input form and an output report but I am having difficulty in displaying the image in the report field.
    My work so far:
    1 I am using APEX to generate a table with a BLOB, Filename and Last_Update_Date fields.
    2 I have followed the article on the http://www.oracle.com/technology/obe/apex/apex31nf/apex31blob.htm.
    3 The title is: 'Defining and Viewing BLOB Data in Oracle Application Express 3.1'
    4 I have generated the table, form and report.
    5 I have downloaded the image as an attachment and inline on the form Ok.
    6 I have successfully downloaded an image on the report with the words image as a link in the report field. Note the http path is: http://glkas0892v.greenlnk.net:7777/pls/htmldbDEV/apex_util.get_blob_file?a=475&s=7094501042405784&p=3&d=1360784770040764381&i=1360783771822764369&p_pk1=123&p_pk2=&p_ck=2F17C4FBDE22B25A02026F67AB59D4F0&p_content_disposition=inline
    7 I have unsuccessfully tried to insert the image directly into a report field itself. The report displays the picture as a symbol with a cross.
    Note the http path is: http://glkas0892v.greenlnk.net:7777/pls/htmldbDEV/apex_util.get_blob?s=7094501042405784&a=475&c=1360779972416764351&p=2&k1=&k2=&ck=4BFA878ADD2028D2E9B127BB03F78B8D&rt=CR
    7a I have reduced the size of the images to 20 by 30 pixels but no joy.
    Conclusion
    The only difference I can see is that in 6 the command in the path is apex_util.get_blob_file? But in 7, unsuccessful, the command in the path is apex_util.get_blob?
    Please help me as there must be some one out there who has experienced the same situation.
    Thanks
    Brian

    My colleague has found the answer. A known fault exists within APEX 3.1 in that the Blob declaration must be after the Last update declaration and then the image displays correctly on the report.

  • Inspecting report field position properties

    All,
       Does a way exist to inspect a report fields properties within CR script used in a formula.  I know about using code withing the X+2 buttons in the layout tool, but would like to know in a formula what the position and width of any arbitrary report field in the detail band might be.
    thanks,
    pf

    Thanks for responding.  I need to do this at run time. 
        1) Suppose I had 25 columns and each was associated with a boolean report parameter that allowed the user to toggle columns off and on. 
        2) Further suppose the user decided that she does not need columns 7, 12, and 20.  
         I want to do the following:
             1) suppress columns 7,12,20 (this is easy)
             2) move the remaining columns 8 and greater the appropriate twips to the left.
         I can do all this now but I must "hard code" the field position into a string with delimiters which I later split into an array to use in determining the x offset (if any)  for each unsuppressed column.    Life would be easier if one could just inspect the X position of any field.  Please let me know if this helps in understanding the problem. 
    pf

  • CUIC Report Field Definitions

    Hi Guys,
    I am trying to find doco on report field definitions in CUIC….
    Example, what exactly "Internal In Time", "External Out Time" & "Internal Out Time" actually mean???
    Any help, much appreciated!!!
    Cheers!

    Hi James,
    - internal in time means the length of an internal call received by the agent (internal means the call came directly to the agent's phone, it has not been routed by a routing script);
    - external out time means the length of a call initiated by the agent off switch (the call goes beyond the horizon visible by the call routing system);
    - internal out time means the length of a call initiated by the agent within the same switch (for example agent calls another agent directly).
    So, if agent Alice calls agent Bob directly, the Internal Out Time is increased for Alice, and the Internal In Time is increased for Bob.
    If agent Alice calls her grandmother in Australia, the External Out Time is increased for her.
    You might want to take a look at these documents:
    Reporting Guide for Cisco Unified ICM/Contact Center Enterprise & Hosted 8.5(3)
    Database Schema Guide for Cisco Unified Contact Center Enterprise 8.5(1)
    G.

  • Working/Join with Two Reports field

    Hey Folks,
    I have read couple of post and kind of confused. I have two reports and each have their column total at the bottom(Sum).
    Now on my first report i have to add my first report col1_total+second report col1_total and get my grand total.
    SO, my question is how can add or call or join that second report field to my first report field and get my grand total?
    I have read about Data Link Object but i wasnt sure about it. So, please give me some direction/advice. That would be greate.
    Thank

    Thankx but i never used two query to gether.
    so basically, you want me to put second query and join it to gether...or...can you explain me little bit. Can you give me small step where i can get closer where you mention to use the same query.
    Thanx

  • In Apex How to access Updateable detail report field.

    I am using Apex 4.0. i want to to access Updateable detail report field for example
    my updateable detail report one field is that srno
    i assign sr no as primary key.
    when i build master detail form then i want to add increment automatically through custom pl/sql source.
    but problem is that i don't know how to access Updateable detail report field.
    thanks
    Regards
    NOMAN RASHAD

    In your SQL:
    SELECT ename, job, your_function(sal, comm) your_calculation
       FROM empDenes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

Maybe you are looking for

  • HT1430 If my iPod was given to someone else and they changed the reset code, how do I reset my ipod touch without that password?

    My Dad gave my step sister my ipod last year. She changed the password to do a master reset. I called Apple, and I gave them the serial number but got nothing out of it. Because I wasn't paying $20 to talk to a representative. I need someone to tell

  • How do i simulate a digital instrument using FP

    Hi I am a new user of LabView and need to construct an application to verify the operation of data logger programs.  I need simulate data from various analogue and digital instruments using standard test data from a spreadsheet.  I have just about fi

  • Internal Drive Going...

    I am using three of my four drive slots. The first slot contains an original 500G hard drive and it runs the system. Slots 2 and 3 hold 1TB drives. I also have two 1TB external USB drives. I had three but during some very hot weather I lost one. I tr

  • Monodoc does not show the api

    Hi, I have just installed monodevelop and mono-tools.  When opening monodoc, some specific api documentation is present but not for the standard api. I am expecting a longer list like at the online documentation. Here is a Screenshot: Console output:

  • Does Peopletools patches need to be applied to PS_CFG_HOME?

    Hello, I am using Peopletools 8.52 version. Need help to find out whether Peopletools patches need to be applied on PS_CFG_HOME also along with PS_HOME? Thanks