Report that lists the last Public Response on a ticket

Does anyone have a report that they would share that shows all open tickets with the last Public Response made on the ticket?  A ticket might have several internal notes added to it, but I only need the last Public Response comment to show.  Thanks.
William
This topic first appeared in the Spiceworks Community

Hi,
The following thread may get you start.
http://social.technet.microsoft.com/Forums/systemcenter/en-US/559e8ae9-15bb-482f-8981-535e0f77b01f/sccm-queries-of-ad-groups
Best Regards,
Joyce
We
are trying to better understand customer views on social support experience, so your participation in this
interview project would be greatly appreciated if you have time.
Thanks for helping make community forums a great place.

Similar Messages

  • I am trying to create a report that shows the last payment received by BP customer

    I am just looking for the last payment the most current one.  I am not sure of  how to write "Last" payment only. Best Danielle

    Hi,
    Try
    select top 1 a.DocNum, a.DocDate, a.DocDueDate, b.CardName, a.DocTotal
    from ORCT a
    inner join OCRD b on b.CardCode = a.CardCode
    where a.CardCode = '[%0]'
    order by a.DocDate desc
    Regards,
    Alvin

  • Is there a Report in SAP that lists the slow moving inventory?

    Is there a Report in SAP that lists the slow moving inventory? For example: Inventory that has not sold in the last 6 months?
    Thanks.
    Points will be awarded

    Thanks so much.
    Points rewarded.
    Kathy

  • I Need interactive report to list the purchase orders details for a vendor

    I Need interactive report to list the purchase orders details for a vendor that has    interactive drill down options to give the detail of vendor from vendor master.

    Hi
    see this sample report
    this is Customer wise sales orders
    just make similar report just using LFA1, EKKO and EKPO tables instead of KNA1,VBAK,VBAP
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Regards
    Anji

  • A report that lists all non-exempt employees that do not have a supervisor

    HI all,
    Please help. This is urgent.
    bold "A report that lists all non-exempt employees that do not have a supervisor assigned in R/3." bold
    I have already selected non-exempt employees but don't know how to select people who do not have a supervisor" What selection criteria I should choose in the ad-hoc query
    Thanks a bunch,
    Rashmi

    Hi
    Actually its not that difficult. You can give a criteria in selection where relationship A002 is equal to a space . Replace A002 in this example with the relatioship you have defined for 'Reports(line) to'.
    Regards
    Waz

  • How do I find out the owner of the device that made the last purchase on my appleID account?

    How do I find out the registered owner of the device that made the last purchase to my appleID account?  I think my son is using someone else's device.

    You can't see what device or computer a purchase was made on. If the device has used iTunes Match, automatic downloads or redownloaded past purchases then it might be shown in the 'manage devices' list on your account (but that only lists computers/devices, it doesn't show when/what each has purchased) : http://support.apple.com/kb/HT4627

  • SCCM 2012 Report that shows the users with specific software installed

    Hi,
    Is there a report in SCCM 2012 that shows the users with specific software installed? The report should show username, machine name and the software name. I am looking for a report that shows the users with the following softwares installed:
    1. Adobe(all versions)
    2. Photoshop(all versions)
    3. MS Project(all versions)
    4. MS Vision(all versions)
    Regards, Lorin Davis

    Take a look at the Asset Intelligence reports in the software section. You may get a list of computers with a product installed, and you might have to use that list to find the primary users based on user device affinity.

  • How do you get Itunes to go the free radio station list, I'm not talkiing about the one that lists the price next to the song that's playing, I'm talking about the one that lists about 50 diffrent genes.

    How do you get Itunes to go to the free radio station list, I'm not talking about the one that lists the price next to the song that's playing, I'm talking about the one that gives you 50 diffrent genes to select from?

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes forums.
    But answering quickly, if you mean the streaming stations, click the Internet item:
    If you don't see that item, checkmark "Internet Radio" in the General preferences in iTunes.
    Regards.

  • Is it possible to create a generic report that accepts the SQL as a param

    Is it possible to create a generic report that accepts the FULL sql statement as a paramater and returns variable results based on this?
    We have a requirement to have a generic export routine to spit out csv's from clicking on a web page hyperlink, which would need to accept a "new" sql statement for every run, each containing different columsn etc that would be needed in the output.
    I was hoping could have a generic Oracle report, exporting delimited data format (and as such not using a layout) and somehow pass in the "new" sql statement as a parameter at run time - each sql statement would be different with different columns etc.
    Is this possible with oracle reports ?
    thanks

    If you need a simple dump of data you could try writing a report with a simple query such as
    select 'Report title or column headers'
    from dual
    &data_query
    then your &data_query parameter could be
    union select col1||','||col2 from data_table
    If you are outputing a comma separated data dump the you can concatenate together your data into a single text field.
    This would allow you to have a simple heading followed by the actual data. I guess you could extend this so that the 'Report title or column headers' from the first query was also a parameter to output your row headings i.e.
    select :column_headings_text
    from dual
    &data_query
    Give it a go and good luck

  • I've recently noticed that since the last upgrade any links to pdf files on websited no longer work. All I get is a blank white page or a blank black page when I click on these links. Can I fix this?

    I've recently noticed that since the last upgrade any links to pdf files on websited no longer work. All I get is a blank white page or a blank black page when I click on these links. Can I fix this?

    YAY!! I have Safe mode!!
    um, now what?

  • At 3AM, within seconds, there were two attempts at using an "incorrect password" with my AppleID. The message from Apple was that it was probably a harmeless error. Seconds later, the third attempt worked, and that was the last my email has worked.Next???

    At 3AM, there was one attempt at entering my AppleID password, which failed per the email message. A few seconds later, a second attempt failed and the email message from Apple was that it was probably a mistake caused by someone entering a wrong keystroke when trying to enter their own password. Well,, a few seconds later, the message was that I had successfully changed my password. Great.
    Yes, it was a full twelve hours later that I saw this, since 3AM is a perfect time to hijack anyone, and I did do what it said about changing my password. But I want to know how someone changed my password at 3AM and had total access to my whole computer. My security is the highest Apple has.
    Mostly, that was the LAST email I've gotten. I can't bring email online. I can't do anything.
    I am mostly computer ignorant, which is why my daughter made me get an Apple in the first place. I love Apple. Any ideas at all the damage done? This seems like a big hole in Apple email. I am absolutely sure no one knew the password because I used a sequence I have never told anyone. Even my ex-husband of 35 years would have no clue.
    Did someone have to know that password? Is there another way? Well, I guess so.
    Help. Those emails are critical.

    Well if someone got access to your AppleID, they didn't get access to your computer, however, there is some information such as you iCloud information that they may have gotten access to.  If you changed your pasword back to something else, then they won't have access to it anymore either.  I'm not sure what is going on though because I have been getting a lot of those emails on my work AppleID that I have to have for work because I need to keep their phone seperate from all of my personal equipment.  It's just strange though that in the past few days I've been getting like 5 or 6 of those emails stating that an attempt was made to change my pasword a day.

  • How do I turn off the feature that opens the last window in an application

    Hello;
    I want to turn off the feature that opens the last window when I return to an application.
    Matt

    System Prefs > General > Last checkbox at the bottom.

  • Can I have a variable that lists the name of the Book?

    Hi, I'm creating a document as an InDesign Book, ie a lot of documents in the Book Pallette. I'd like to have a variable that lists the book name. Is this possible?
    I've tried finding how to create new variables but I can't see anything. I'm guessing <$bookname> is the code but I can't figure out how to enter it as a variable in CS5.
    Thanks,

    What does this have to do with scripting? I don't believe you can create a variable that is automatically populated with the book name, but you can simply create a regular variable and synchronize it across all documents in the book.

  • I have 4 sets of slides for 4 product lines. I want thave a slide that lists the 4 products, click on which one I wnat and have it go to that set of slides. Is this possible?

    I have 4 sets of slides for 4 product lines. I want thave a slide that lists the 4 products, click on which one I wnat and have it go to that set of slides. Is this possible?

    Yes, use hyperlinks.

  • Daily check report to list the vendor name, material, quantity

    hi friends,
    can you help me to write daily check report to list the vendor name, materials and quanitity?
    thanks in advance

    HI ,
    What do you mean my daily check report..
      Do you want to see the status of the PO sent to a Vendor on a daily basis..
    Thanks
    Mahesh

Maybe you are looking for

  • Report Names used for Purchase Order smarforms

    Hi all, I want to display a smarform when user clicks on ME23N transaction on Print Preview. Now it displays a SAP Script MEDRUCK having the program SAPFM06P. I know a smartform /SMB11/MMPO_A or /SMB40/MMPO_A which are there in the system but no idea

  • Smart Playlist fromseveral playlists

    I have been using iTunes for Windows for a while and had no trouble using smart playlists. Recently I switched to a mac and have the following problem with Smart playlists. I have a playlist that looked at songs in 5 playlists. So, I set up this play

  • Specify the name of a field in FormsCentral

    Hi, I would like to make a PDF form using FormsCentral. I then want to be able to auto-fill that PDF file using an XFDF file. In order to efficiently do that I need to be able to change the names FormsCentral assigns to fields. Is this possible? Curr

  • Moving Pictures to External Changes Names

    I have a lot of pictures on my Hard Drive and I want to move them to an external to save space. However when I drag the pictures over the names are changed to IMG then a # is there a way I can move them and preserve the names they have?

  • Correlation Set With externals partners

    Hello, I have a question regarding correlation set and there usage. I'm currently making a samll poc on "correlation set" for testing the feature to determine if we could use it for our use case. I'm hitting some problems that I can't overcome for th