PM Notification: Malfunction report fields

Dear all,
Using transaction IW23 we're able to view PM Notification malfunction reports.
I know most data is stored in the physical table VIQMEL.
There is only one field I'm not able to locate in a physical table.
In transaction IW23 on the "Notification"-tab, int he mioddle, you'll see the subject with a textbox containing a description.
Does anybody know the physical table where the content of this textbox can be found.
Many, many thanks in advance.
Kind regards.

Hi
That will not be available directly in tables as it is a LONG TEXT.
you can get the same using READ_TEXT function module using the following parameters.
Text Name       000010001848 (Notification number)
Language        EN
Text ID         LTXT Long text on PM notification
Text Object     QMEL       Message
for getting these details for any long text.. click on the editor icon which is place next to TEXT BOX. that will take you to an Script Editor. There GO TO --> HEADER. You will get the TEXT Object details. Using those details in READ_TEXT you can get the TEXT value.

Similar Messages

  • PM Notification: Malfunction report

    Dear all,
    Using transaction IW23 we're able to view PM Notification malfunction reports.
    I know most data is stored in the physical table VIQMEL.
    There is only one field I'm not able to locate in a physical table.
    In transaction IW23 on the "Notification"-tab, int he mioddle, you'll see the subject with a textbox containing a description.
    Does anybody know the physical table where the content of this textbox can be found.
    Many, many thanks in advance.
    Kind regards.

    Thanks very much for the suggestions. It has been a big help, so far.
    I've find all the fields I need, but not the LongText field under the QMTXT textfield.
    Any suggestions on how to fetch this long text?
    Tables? BAPI's?, ...
    Many thanks in advance.
    Kind regards.

  • UCCX 8.0 SNMP notification to report failover from active to the standby server?

    Does any know the UCCX 8.0 SNMP notification to report failover from active to the standby server?  (The specific notification.)
    ftp://ftp.cisco.com/pub/mibs/v2/CISCO-VOICE-APPS-MIB.my
    I see this in the MIB.
    cvaModuleStart NOTIFICATION-TYPE
      OBJECTS   { cvaAlarmSeverity, cvaModuleName }
      STATUS    current
      DESCRIPTION
            "A cvaModuleStart notification signifies that an
            application module or subsystem has successfully
            started and transitioned into in-service state. 
            This notification is working in conjunction with
            the cvaModuleStop notification to notify the start
            and stop status of a particular application module."
      ::= {ciscoVoiceAppsMIBNotifications 1}

    Attached are two files:
    cad-ecc-viewer.html
    This is a template HTML document which dictates how the pop up will look and what data fields are available.
    cad-ecc-viewer.vbs
    This is the Windows Scripting Host file which you run from a CDA workflow, and you pass it the values of the call data, it then launches an instance of IE and loads the above template.
    By default the code is setup to use the following data from the call, but can be modified to work with more, less, or different data:
    Customer Name
    Customer Status (like Premium, or Platinum)
    Customer Number (like an account number)
    Customer Phone Number
    So when you specify the VBS file to run in CDA you need to pass those variables in that order.
    The CDA should expect the VBS file on the root of C:\ by default, and the VBS file expects the HTML Template on the root of C:\ also.
    I have only tested this on UCCX 7x and IE 8x.  Use the code as a guide to your own solution, that suites your business requirements.
    EDIT: I see that this does not work on my Win7/IE9 system, so I will spend some time updating the code for Win7/IE9 and I'll let you know how it goes.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • 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.

Maybe you are looking for

  • I install a new hard drive now what??

    i took my laptop to the apple store and it turned out the hard drive shot so i purchased on myself and installed it myself using the website ifixit. everything when well but now what do i do next? i tried to install the software but nothing happen it

  • Multiple journal lines mapping

    Hi, please let me know how to map these fields in PI Journal Line Multiple journal lines per header: Schema Element     Data /Journal/JournalLine/JournalLineCostCentre     Bank account control Cost Centre /Journal/JournalLine/JournalLineAccount     B

  • How Do I Straighten Without Cropping?

    I haven't been able to figure out how to use the Straighten tool without cropping. I am starting with a full page image with Pixel Dimensions of 9750 x 13050 pixels, and a Document Size of 8.125 x 10.875 inches. I want to use the Straighten tool, and

  • Invisible avatar

    I've got a problem with the graphic representation of ViewPlatform. I use several viewers in my program. The first ViewPlatform is invisible. I can move it but I can't see it. All the next ViewPlatforms that I add to the graph, but the first, have av

  • IOS 8.1.1 passbook app no added sign

    Every time I tap the Passbook, it flashes the added sign on the top right corner then disappeared.  It only shows scan code and find apps for Passbook.  I checked setting & region as some suggestions, but still.  I have Starbucks about $52 in there &