Misplaced Auditable Attributes in Downloaded Report

I have a custom audit step that has an auditable attribute. When I run the report and click on the link to see the details, the auditable attribute is displayed correctly. However, when I download the report to csv or pdf, the auditable attribute is displayed under the Client IP heading instead of Auditable Attributes.
I would appreciate it if you any of you could help me resolve this. I'm using IdM 7.1.

Hi ,
Am also facing the same issue.From where did you remove the subject argument. I got the auditable attribute and it collapsed the order of the .CSV file. Am getting like 3- 4 attributes so it collapses with 2- 3 columns in the report.Also let me know how would i update the values of auditable attribute from Wofkflow to waveset table.Please let me know ASAP.
Thanks in Advance!!

Similar Messages

  • Downloading report from a Tabular form

    Hi,
    I enabled the CSV output as ON in a tabular form to download the report. But the downloaded report has an extra new line (break) after the header and there is an extra column
    at the beginning of each record ( may be due to the check box line selector). Please advice me how to download the report without extra line after the header and extra column at the beginning of each line.
    Thanks,
    Raj
    Edited by: user13686568 on Mar 18, 2011 10:37 AM

    Export file looks ok for me for a tabular form with checkboxes for row selection.
    If want to exclude the checkbox column(or any othe report column) from the export file, go to the *"Report attributes" -> "Column Attributes" (of that column) -> "Include In Export"* field choose "No"

  • Download report problem

    Hi all
    I have an application used by lot of users with different access rights. I would like to let some of them to download interactive report, and deny it for others. is there any method to do it?

    I've done it, using javascript. I create an item on a page in which there is an sql query which returns information if current user have rights to download report or not. Then in page footer i call javascript fuction which cleans href attribute of actions menu "download" element if current user have no rights. So, if he has no rights, clicking on "download" do nothing

  • HOWTO: Control Printer Attributes for a Report at Run Time Reports 6i

    HOWTO: Control Printer Attributes for a Report at Run Time
    Like page width , height etc
    my problem is i had installed a printer and it is set for
    printing different reports ( like invoice slips , legal size ,
    A3 etc ) each time i have to manually set the page settup from
    printer folder .instead if there is an option to set the printer
    attributes from Reports 6i it is great
    rajesh

    All the Printer Setup(Page Height and Page Width) must be set in
    the Reprot Program. These can be set at the Layout-Main Section
    in the Object Navigator.
    hth

  • Error in XXL_FULL_API function module for download report to excel

    Hi all,
    I am using XXL_FULL_API function module for download report to excel, In this FM we have to fill a table called sema        = t_gxxlt_s. in this table we have a fields called
    i_sema-col_no  = 19.
      i_sema-col_src = 19.
      i_sema-col_typ = 'STR'.
      i_sema-col_ops = 'DFT'
    here in 'col_typ' if we put STR in excel it will come as a text but i wnat the time field what i have to pass ?
    and for filed 'col_ops' also ??
    Thaks,
    Sridhar

    Hi sridhar joshi,
    Please check this program
    REPORT Excel.
    TABLES:
      sflight.
    * header data................................
    DATA :
      header1 LIKE gxxlt_p-text VALUE 'Suresh',
      header2 LIKE gxxlt_p-text VALUE 'Excel sheet'.
    * Internal table for holding the SFLIGHT data
    DATA BEGIN OF t_sflight OCCURS 0.
            INCLUDE STRUCTURE sflight.
    DATA END   OF t_sflight.
    * Internal table for holding the horizontal key.
    DATA BEGIN OF  t_hkey OCCURS 0.
            INCLUDE STRUCTURE gxxlt_h.
    DATA END   OF t_hkey .
    * Internal table for holding the vertical key.
    DATA BEGIN OF t_vkey OCCURS 0.
            INCLUDE STRUCTURE gxxlt_v.
    DATA END   OF t_vkey .
    * Internal table for holding the online text....
    DATA BEGIN OF t_online OCCURS 0.
            INCLUDE STRUCTURE gxxlt_o.
    DATA END   OF t_online.
    * Internal table to hold print text.............
    DATA BEGIN OF t_print OCCURS 0.
            INCLUDE STRUCTURE gxxlt_p.
    DATA END   OF t_print.
    * Internal table to hold SEMA data..............
    DATA BEGIN OF t_sema OCCURS 0.
            INCLUDE STRUCTURE gxxlt_s.
    DATA END   OF t_sema.
    * Retreiving data from sflight.
    SELECT * FROM sflight
             INTO TABLE t_sflight.
    * Text which will be displayed online is declared here....
    t_online-line_no    = '1'.
    t_online-info_name  = 'Created by'.
    t_online-info_value = 'KODANDARAMI REDDY'.
    APPEND t_online.
    * Text which will be printed out..........................
    t_print-hf     = 'H'.
    t_print-lcr    = 'L'.
    t_print-line_no = '1'.
    t_print-text   = 'This is the header'.
    APPEND t_print.
    t_print-hf     = 'F'.
    t_print-lcr    = 'C'.
    t_print-line_no = '1'.
    t_print-text   = 'This is the footer'.
    APPEND t_print.
    * Defining the vertical key columns.......
    t_vkey-col_no   = '1'.
    t_vkey-col_name = 'MANDT'.
    APPEND t_vkey.
    t_vkey-col_no   = '2'.
    t_vkey-col_name = 'CARRID'.
    APPEND t_vkey.
    t_vkey-col_no   = '3'.
    t_vkey-col_name = 'CONNID'.
    APPEND t_vkey.
    t_vkey-col_no   = '4'.
    t_vkey-col_name = 'FLDATE'.
    APPEND t_vkey.
    * Header text for the data columns................
    t_hkey-row_no = '1'.
    t_hkey-col_no = 1.
    t_hkey-col_name = 'PRICE'.
    APPEND t_hkey.
    t_hkey-col_no = 2.
    t_hkey-col_name = 'CURRENCY'.
    APPEND t_hkey.
    t_hkey-col_no = 3.
    t_hkey-col_name = 'PLANETYPE'.
    APPEND t_hkey.
    t_hkey-col_no = 4.
    t_hkey-col_name = 'SEATSMAX'.
    APPEND t_hkey.
    t_hkey-col_no = 5.
    t_hkey-col_name = 'SEATSOCC'.
    APPEND t_hkey.
    t_hkey-col_no = 6.
    t_hkey-col_name = 'PAYMENTSUM'.
    APPEND t_hkey.
    * populating the SEMA data..........................
    t_sema-col_no  = 1.
    t_sema-col_typ = 'STR'.
    t_sema-col_ops = 'DFT'.
    APPEND t_sema.
    t_sema-col_no = 2.
    APPEND t_sema.
    t_sema-col_no = 3.
    APPEND t_sema.
    t_sema-col_no = 4.
    APPEND t_sema.
    t_sema-col_no = 5.
    APPEND t_sema.
    t_sema-col_no = 6.
    APPEND t_sema.
    t_sema-col_no = 7.
    APPEND t_sema.
    t_sema-col_no = 8.
    APPEND t_sema.
    t_sema-col_no = 9.
    APPEND t_sema.
    t_sema-col_no = 10.
    t_sema-col_typ = 'NUM'.
    t_sema-col_ops = 'ADD'.
    APPEND t_sema.
    CALL FUNCTION 'XXL_FULL_API'
      EXPORTING
    *   DATA_ENDING_AT          = 54
    *   DATA_STARTING_AT        = 5
       filename                = 'TESTFILE'
       header_1                = header1
       header_2                = header2
       no_dialog               = 'X'
       no_start                = ' '
        n_att_cols              = 6
        n_hrz_keys              = 1
        n_vrt_keys              = 4
       sema_type               = 'X'
    *   SO_TITLE                = ' '
      TABLES
        data                    = t_sflight
        hkey                    = t_hkey
        online_text             = t_online
        print_text              = t_print
        sema                    = t_sema
        vkey                    = t_vkey
    EXCEPTIONS
       cancelled_by_user       = 1
       data_too_big            = 2
       dim_mismatch_data       = 3
       dim_mismatch_sema       = 4
       dim_mismatch_vkey       = 5
       error_in_hkey           = 6
       error_in_sema           = 7
       file_open_error         = 8
       file_write_error        = 9
       inv_data_range          = 10
       inv_winsys              = 11
       inv_xxl                 = 12
       OTHERS                  = 13
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    please refer this link
    http://www.thespot4sap.com/Articles/Download_to_excel.asp
    Best regards,
    raam

  • Misalignement in Excel sheet,while downloading reports with huge data

    Hi,
    While downloading reports in excel with huge volume of data ,we are getting misalignments in the excel sheet(some data comes in wrong rows). Can you please suggest what could be the reason and how to correct it.
    Regards,
    Roopak

    Hi,
    If you are using Office 2003, then you cannot download morethan 65000+. However if you use Office 2007, I think it gives you somewhere around 400000 records. (I didnt scroll below that!!!). Also the columns are morethan IV.
    However assuming that, even that version can have limitation, you can always download your data in a wordpad/notepad/textpad etc which are basically text editing tools. They dont have any such row or column restrictions.
    Once downloaded, you can randomly split them into some x number of files, based on the number of records and then open the same documents using xls sheet using tab value as delimiter. Now the alignment will be perfect in the excel sheet.

  • Download Report

    Someone can indicate to me where to be able to unload of the report so as to to be able to see them and to learn? Thanks

    hello,
    you can download Reports as part of the Oracle9i Developer Suite here on OTN. Just click the download button at the top of the screen.
    you can find in-depth information about reports in our getting started here on OTN at http://otn.oracle.com/products/reports, click on the Getting Started with Oracle Reports link.
    regards,
    philipp

  • Download report/dashboard in pdf..

    Hi experts,
    1.How to download reports in pdf format.
    2. How to download whole Dashboard.
    S

    1.How to download reports in pdf format.
    We don't have individual report to download in PDF.Anyway we have Download to excel,powerpoint,Download Data,Webpage.
    The above options are available in Download hyperlink when you enable the downlaod option.
    Edit Dashboard -> properties->Report Link and check the download Dashboard.
    2. How to download whole Dashboard.
    This property is available in the bottom left corner of the page with printer symbol which has download Dashboard to PDF or HTML.
    Edited by: hsekar on Dec 29, 2009 7:59 AM

  • Reg. Download Report on IT0759

    Hi,
    We have a requirement wherein
    The Master Data maintained in IT0759 (Compensation Process) is to be paid to the employees as VCPI payment or IPI payment in the relevant quarters.
    The amount mentioned in this Infotype is entered and sanctioned bya team which later requires the details to be sent to Payroll Section for processing in the current payroll.
    Thus based on the selection made in the entry screen of the Report, we need a download report which could be as an input for Payroll Processing.
    An LDB screen to fetch the selection criteria.The selection screen should have six fields namely country grouping, pernr,personnel area,plan name,plan period and payroll area. All the fields available in the window Compensation Process and Bonus Payment Data should be downloaded onto the Report.   
    Any pointers as to how to proceed or any sample code in this regard will be helpful.
    Thanks in advance,
    Shruthi

    Hi
    i know the functionality of spreadsheet but in this 4.7 is not possible to download sub total or filter(this is the message :Filter criteria, sorting, totals and not taken into account )             
    i've worked also in 4.6C and it was possible to download without problem with spreadsheet. There are some patches or somethings else to resolve this problem? or we need to attend the implementation of ECC6.0
    thanks for help

  • Marketplace Download Report

    In the Windows Desktop portal we are able to see where the downloads originate. Is there something similar in the Phone dashboard? I didn't see any other options in the 'Downloads' section.

    Hello Evan,
    You can access
    information regarding the downloading country for Windows Phone apps by doing
    the following:
    Login to your
         Windows Phone Developer Dashboard
    Click on Reports
    Click on Export
    View download report which
         includes the country of the download
    -Miles
    Windows and Windows Phone Dev Center Support
    Send us your feedback about the Windows Platform

  • Scientific Notation when Downloading Reports

    When downloading reports from a web template, in either Excel or CSV, some values are getting converted to scientific notation in the downloaded file. I am wondering if there is a setting which prevents any data to be converted to scientific notation when downloading. The data appears to be fine when viewing the report in Web.

    Hi Ripel
    You have downloaded the file to CSV which is also excel based format and uses most of the Excel's features, and when data is CSV file is in scientic foirmat , same will come in notepad..just do one thing select the format as number in the csv file by selecting column...and save it...in csv/notepad you will now see actual value
    Thanks
    Tripple k

  • Downloads report builder 6i

    I need to download report builder 6i from downloads.
    I know it used to be there,, does anyone know where the site is to download report builder 6i
    thanks
    Ellery

    Hi Ellery,
    You can download "Oracle Reports Developer/Server 6i Release 2" under "Previous Releases" on OTN:
    http://otn.oracle.com/software/products/reports/content.html
    However, pl be aware that this is NOT the latest release (latest release is Oracle9iAS and Oracle9iDS Release 2), and hence all the features discussed in the present collateral on OTN are for the 9i Release 2.
    Navneet.

  • Download Reports from SCCM 2012 Using PowerShell

    Hi,
    I Wants to Download reports from SCCM 2012 using powershell but couldn't find a way.
    I used Invoke-Cmreport but it says no reporting Service point on site code XYZ and server ABC
    But Reporting Service is enabled and works fine as i can check/download report manually
    Thanks 

    Hi,
    You could have a look at the script in the blog below.
    How to Download All Your SSRS Report Definitions(RDL files) Using PowerShell.
    http://www.sqlmusings.com/2011/03/28/how-to-download-all-your-ssrs-report-definitions-rdl-files-using-powershell/
    Note: Microsoft provides third-party contact information
    to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Best Regards,
    Joyce

  • Download Reports of a Dashboard Page

    Hi,
    I have a requirement to download all the reports published in a page in to excel in a single download button. I know to download report by report by giving report links for each report. Can you guys help me to download all the reports published in a page?
    Phani.

    Phani,
    We don't have that option to download the entire page into Excel. PDF/HTML is possible .Think about JScript (not sure)
    thanks,
    Saichand.v

  • Downloading reports

    Hi guys,
    I have been browsing through this forum for quite a while to find if people also have problems with downloading reports, but I can't find any. The problem is that whenever I download one of my reports (in excel or excel 2000) my numbers are not seen as numbers or currency by excel and I cannot change them afterwards. This means I can't do any calculations on the data after exporting.
    The only work-around is by importing as CSV but then I also have to regroup text to columns before I can edit the data.
    Is there anyone with the same problems, and does anyone know how I can tackle this issue?
    Thanks in advance!
    Vincent

    Well we also need to send our reports to different departments after we've downloaded them. Since they work with excel we need to deliver them in a certain format which isn't possible now. I've tried several different formats and I can 'replace all' currency signs and then use the data but this is not very user friendly at the end of the day.
    But thanks for your reaction!
    Greets
    Vincent

Maybe you are looking for

  • Itunes Match: Two users on one computer.

    My wife and I share one computer. We switch between users. I set up my itunes match under my user name, then I swtiched to her user and tried to set up ITM. no go I get this message Any advice? Cheers

  • Hewlett Packard LaserJet PRO 200 Color M251NW - ICC Profile

    My girlfriend works from home selling jewelry on Etsy and her prints have been coming out with a strange tint to them recently. I have tried to find the proper ICC profile to use with this printer, but can't seem to find it anywhere. Am I overlooking

  • WAC: Bonjour record is displayed in MAC OS 10.9 but not 10.8

    Hi everyone, When my device goes into WAC (Wireless Accessory Config) mode, the Bonjour record is not displayed in MAC OS ver 10.8. But it is visible on OS 10.9. Similarly, it is not visible in Safari on Windows PC too. Will this be a problem for Air

  • Problem changing XML element in Adapter Module

    Hey! I am developing an adapter module to transform a coded password back to clear text. I have access to the XML element where the password is and I get to transform it, but I have 2 problems as also stated in the code: 1) I cannot set the new value

  • J_security_check servlet problems

    Hi, we use forms based authentication in our web app and I've come across some bizarre behavior in j_security_check. The problem is as follows: if a user goes to a form that is within our web application and sits on that form until their session time