Adding Dynamic remarks to the report by user

Any idea's of adding text to queries? Our customer is using Crystal Reports based on Baan DWH. On of the functions is adding textblocks to the report and put in remarks / comments.
This will be <u>replaced</u> by BW. Is it possible to add (dynamic) <b>textblocks</b> to the BW reporting which can be filled in by the <b>end-user</b>? Any advice will be great!

Yes it is.
In BW, this can be achieved by using document management. The option will be available to the user via context menu in the report (goto-->documents - text/pdf/img etc). In your case user can choose to create/change/display a 'text' document, which will be attached to the report.
cheers,

Similar Messages

  • The report of user activity

    The report of user activity
    Can anyone show how the sample report of user activity?
    Is there information that the website opened and how much time was running applications? Is used in an active way of running applications?
    I will be grateful for your help.
    Jerry

    Finding a program of monitoring user activity MAC OS X okazauje be very difficult.
    The program aims to monitor sites visited, but:
    - Can not save passwords
    - It can not sending data to an external server
    I can not find such software
    I found: http://www.net-monitoring-software.com/secure-order.html
    but it turns out that the manufacturer no longer supports MAC platform.
    Help! Is anyone familiar with this type of software?
    Pls. Help me.

  • In the report level user wants two persons against each work center.

    Hi Experts,
    Please let me know the solution, I have provided scenario below.
    check the query which the user is referring to report:
    Example
    Work center     Person
    KNE33102     44003850
    According to the user, the names for the Work centers should be as follows:
    Work center          Person
    KNE33102         44003850,
    KNE33102        44003603
    I have check the data in T-code-CR03, each work center getting two persons, as can be shown below.
    Work center        Person
    KNE33102           44003850,
    KNE33102           44003603
    In RSA3 it can be seen that both the records are being extracted
    Work center     Start date     End date     Person
    KNE33102     09.02.2009     31.12.2009     44003850
    KNE33102     09.02.2009     31.12.2009     44003603
    In BI , when checking in PSA, it can be seen that the data is also being loaded to BI (Two persons loaded against Work center-KNE33102)
    Work center     Start date     End date     Person
    KNE33102     09.02.2009     31.12.2009     44003850
    KNE33102     09.02.2009     31.12.2009     44003603
    But when loading to the Info Object, one person has deleted. Because of this, in the report level displaying one person.
    Note:-Please let me know what is the procedure, in the report level user wants two persons against each work center.

    Hi,
    As you said in your post the data has mentioned up to 2009. can you try execute the query till to date .
    Regards
    sivaraju

  • Lync 2013 commands shell to get the report which user is connecting to which pool in coexistence with Legacy version

    HI,
    We have LYNC 2013 in coexistence with OCS 2007 R2 and setup is like that user can connect to any pool  either sip is exist on OCS 2007 or on LYNC 2013
    Do we have any command shell to get the details about which user is connecting to which pool?
    lync 2013 commands to get the report which user is connecting to legacy pool in coexistence with ocs 2007
    Thanks
    jitender

    HI Holger,
    Thanks for reply!!
    But the above link will not work as per scenrio.
    The SIP addresses has been migrated to LYNC server. ther is no user host on OCS server. However in communicator client the manual entry is done and OCS pool name is given. OCS pool just redirect the query to LYNC pool.
    And we need to idenfy the SIP user request on OCS which are redirecting by ocs pool to lync pool
    In other word we can say this question like:  How to collect the number of SIP users connections coming on OCS Direct  server?
    Thanks
    jitender
    As all users are migrated to Lync Server, all users will be redirected to their home pool.
    You want to collect the number of SIP connections coming from OCS server that means you want to count the number of Lync client with manual configuration pointing to OCS server.
    This information is stored in SIP session. There is no Lync command to get this kind of information natively.
    Lisa Zheng
    TechNet Community Support

  • Adding new row to the reports list page

    How can I add a new report row in the reports list of the reports tab.
    Ex: a new row to the report "users by Date of Join report" is to be added
    How can we add Please help me out in this

    I am facing the same problem!
    camickr wrote:
    Try adding an empty row containing a null value for the String instead of the empty String.camickr, it will not help, the DefaultRowSorter in the "*+compare(int model1, int model2)+*" method return -1 if the first value is null and 1 if the sacond value is null. and incase of DESCENDING it mult by -1.
                    // Treat nulls as < then non-null
                    if (v1 == null) {
                        if (v2 == null) {
                            result = 0;
                        } else {
                            result = -1;
                    } else if (v2 == null) {
                        result = 1;
                    } else {
                        result = sortComparators[counter].compare(v1, v2);
                    if (sortOrder == SortOrder.DESCENDING) {
                        result *= -1;
                    }And this is the real problem!
    The empty line is sorted as the smallest value and incase of DESCENDING it will be the first line (because of the mult by -1).
    We could have overide it and incase of the empty row(usualy the last row) do not mult by -1 in DESCENDING mode.
    But the problem is that the "+*compare*+" method and it's caller "*+Row+*" inner class are private :-(
    It is not wise to do it but we can do like kmp83 wrote:
    kmp83  wrote:
    copy/duplicate "private" code from DefaultRowSorter into my extended class.Anyone have another suggestion?

  • Need to execute Dynamic query for the report

    I was wondering if we can have the option of choosing at runtime from the report builder parameter so that if the end-user selects 'Yes' then the report will run one specific query and if he chooses 'No' then another particular query is invoked. What I mean to say that by choosing between Yes and No at runtime one should have the option of returning query results based on the same table but having different columns selected via the SELECT statement
    means we have two querires on our report & upon the chosen parameter we should execute only one of them ... wht should i do to apply tht ???

    As the previous post noted lexicals are a terrific way to accomplish dynamic queries in Oracle reports.
    Another way you could accomplish this would be to use a UNION, whereas the first select in the UNION represents one user option, then second query represents the second option.
    For example:
    SELECT customer_name name, customer_address address
    FROM customer_table
    WHERE :p_choice = 'Customer Info'
    UNION
    SELECT employee_name name, employee_address address
    FROM employee_table
    WHERE :p_choice = 'Employee Info'If when running the report, the user chooses 'Customer Info' the first query would return results, if the user chose 'Employee Info' then just information from the second query would return information.
    So there are different ways to accomplish what you are looking for, you just need to find which is going to work best for you.
    Hope this helps!

  • The report has user profile dependencies when enabling caching.

    Hi,
    Using SQL Server Reporting Services 2008 R2.
    I am getting the error in the subject trying to cache a report, I see that this is described here
    http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/e2ce8dd0-17db-47de-b13e-3574cc9d536f
    But, how does this solve my problem?  I still want to use the user as a parameter filter so surely returning a default user as part of the error handling will just give every user the data for that hardcoded user when the report is run?
    Sorry for my confusion
    Many thanks

    Hi ReportCreator,
    When we use the User!UserID to filter the data at runtime, the system tries to evaluate the User during Cache Load. At cache time report processing does not have access to the user profile information. Any expression like User!... will cause “has user profile
    dependencies” error.
    Just as Jerry said, we can write custom code to call the User!UserID in your report to get rid of the UserID during the Caching Operation. Please note that we should use a valid filter instead of "System" like shown in the code to the filter the user.
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Dynamic changes in the report

    I generated one report in BI 7.0 using the BEx Analyser. But what the user want is to simulate the report in according to the market changes. For example: Suppose fields for the ingredients of a product and the % of amount used to get the profit is there in the report. He wants to try for the various possibilities that he can do to get better profit from his products mentioned in the BEx report. So what he wants is ‘whatever changes he do in the report should reflect the other fields in the report for planning his future composition. How can this be done in the report? Is it possible by using macros? How to use Macros in this case? Can someone please explain this in detail?

    I generated one report using BEx Analyser. In that report price of individual raw materials are there and the total cost for the production of a commodity from that raw materials. After the report generation my client understood that the price of certain raw materials varied. So he wants to change the price of the raw materials manually and get the total cost after the change. This is the requirement.
    What I think is that the formulas used in the  report can be generated to another excel sheet and using macros i can do the calculation and can show the result in the new excel sheet. I dont know whether this idea will work or not as I am unaware of how to generate the formulas to another excel sheet and I am unaware of the macro code. So can anyone help me to solve this issue by explaining in detail and can someone send me some macro codes for example that can give an idea of summation of filed values.

  • KE5Z : UserExit or SAP Note for adding new fields in the report output

    Hi,
    I want to add 2 new fields in KE5Z (Profit Center: Actual Line Items) report output.
    Order reason(AUGRU), Sales Document Type (AUART) fields.
    Is there any UserExit or SAP Note available for this....
    Thanks in advance,
    fractal

    Hi Fractal,
    See if Note 92864 will help you.
    Summary
    Symptom
    Through a modification, it is possible for you to include additional fields in the profit center line-item reports 'actual' and 'plan' (Release 3.1*).
    Additional key words
    KE5Z, KE5Y, RCOPCA02, RCOPCA08 -
    SUPPORTGUIDE 20010613143936 -
    REPORTWRITER,
    SGRW_OM SGRW_PS SGRW_PC SGRW_SL SGRW_PCA SGRW_EC SGRW_LIS
    Cause and prerequisites
    The fields must be located in table GLPCA (for actual) or GLPCP (for plan).
    For Release 3.0F, you should ensure you have applied Note 62511 first.
    Solution
    To include a field in the actual line item report, proceed as follows:
    Call the ABAP/4 Dictionary (Transaction SE11) and display table GLPCA. You can then find in a line the field name and data element for the field you want to include.
    Return to the initial screen of the ABAP/4 Dictionary. Now change the structure RPCA2. If the structure does not yet contain the field, you select Edit -> Insert field; enter the field name and data element. Do not insert the new field at the beginning of the structure but in the rear half of the structure.
    Then save and activate the structure.
    Now call the ABAP Editor (Transaction SE38). Change the source code of program RCOPCA02. Insert the lines set out in the attachment in FORM routine FIELDCAT_FILL. When you do this, replace SGTXT by the field name of the field. If you normally want the field to be displayed when you the access the report, delete the line   afield-no_out      = 'X'.                "<<<< insert Note 92864 .
    You should note that the place where you insert the lines influences the position of the column in the report list.
    To include a field in the Plan-line-item report, carry out the same procedure except with table GLPCP, structure RPCA8 and program RCOPCA08.
    Note: Pls check if these 2 fields are available in any of the layout versions you have available with the transaction.
    Cheers,
    Vikram
    Pls reward for helpful replies!!

  • ORA-00904 - invalid identifier when adding new column to the report query

    Hi,
    I am trying to add a new field to an existing bespoke report query. When I click on ok, I get the following error
    message: "ORA-00904: <field name> : invalid identifier ==> <field_name>
    Any ideas what is causing this problem? Version of the report builder is : 6.0.8 and is connected to a 10.2 db.
    Any help appreciated.
    Many Thanks,
    Praveen
    Edited by: praveenrn on May 21, 2009 2:38 PM

    What is the field name ? Maybe a reserved word ? Change to "my_new_variable" to check...
    Cheers,
    Jens Rettig

  • How to get the report of user activities in a KM portal

    Hi Gurus,
    Is there is any standard reports which will show the actions performed by different users in the KM portal.
    Thanks & Regards,
    Vipin

    Hi,
    This can be achived using Activity Reporting.
    Please refer this links.
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/8157
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2654
    Thanks
    Hussain.

  • Sql Server 2008 Reporting Security issue ( added name to Server, some how cannot acces the report ) getting error message

    have added name to Sql server , users cannot access the report, getting error message ,
    I have give all the permission to this users, so why this users still cannot look at the report,
    and getting error message,
    An error has occurred during report processing.
    cannot create a connection to data source Ax live
    for more information about this error navigate to the report server on the local server machine or enable remote errors.
    can some please help me what this message means,
    I really appreciate it
    thanks In advance

    If "Credentials supplied by the user running the report" is selected, when the report is run, the user will be prompted to provide credentials.  They would need to provide credentials that have the appropriate permissions (e.g., read, execute) to the
    database.  This prevents the double hop.
    If "Credentials stored securely in the report server" is selected, you have to enter the username and password of a user (or service account) that has the appropriate permissions (e.g., read, execute) to the database. When the report is run, SSRS will use
    these stored credentials each time to authenticate to the database engine and query the data.  Users running the report are not prompted to provide credentials.  With this option you can use an Active Directory or SQL Server account.
    In order to access/run the report, a user will need to authenticate to SSRS.  There are options here as well. You can provide them the link to the report manager and they can authenticate, navigate to, and run the report.  You can also provide
    direct links to reports that users click in a document or application.  At this point the user is typically still prompted to authenticate to SSRS.  You can also programmatically call the report using API's and essentially build a proxy that authenticates
    to SSRS and open the report.
    Not sure if that answers your question.

  • User getting error while opening the report

    Admin can run the report, but users cannot.
    This is XI3.1 Cluster version on Linux. User's cannot run the webi document, getting the error below
    An error occured when trying to set preferences. Please contact your Business Objects administrator. (Error: INF)
    Also when the users try to set the preferences they get this error
    An error has occurred: Sorry, you do not have the right to 'Edit objects' (ID: 6) for 'linwe' (ID: 18496663). Please contact your administrator if you require this right.
    It looks like it might be issue with the rights, but can't figure out where.
    These users are in the developer access level where they have almost all the rights.
    Please help

    inorder for the users to change their preferences, following right must be enabled
    Access Levels --> select the ACL and go to included rights
    Application --> Infoview -->Change user's preferences
    Can you check whether it is enabled or not?

  • Report and user statistics display in Obiee report

    I have a requirement in OBIEE like i need to generate a report and that report has to display some valuable information dynamically.
    The report consist following column info...
    Report Name|Report Folder|Report Path|Description|Description ID|Owner|Subject Area
    Header 1
    Header 2
    Header 3
    Header 4
    Header 5
    Header 6
    Header 7
    Header 8
    Header 9
    Report Name
    Report Folder
    Report Path
    Table
    user
    Unused ColumnIDs
    Column Created
    Report Creator (user)
    Report last modified
    like etc..........
    SO, the above said fields has to be update and provide dynamic data in the report. (Also those  field info is not available in Usage tracking table so we need get those information from Catalog manager also...........)
    For this I have one alternate idea like to get the solution by planning to get this solution by CSV file.If you would provide any solution like CSV get updated dynamically from Catalog manager it would be a great thing to me....Your help is highly appreciated.
    How to implement this requirement ............could you provide a right path to achieve this solution.
    I hope yours alternative solution.

    Thanks for the reply Yannick.
    We have install/configure WebCenter analytics and activity graph.
    Wehave added Login Metrics in our Group Space and we are getting default login count for specific time frame but when we define a filter under User Property of any property like city, department name, phone title etc after refreshing data it is giving error like
    WCS#2011.03.31.12.47.31 : Irresolvable error(s) occurred. You may want to contact Administrator with the error reference.
    Please help how to solve this.

  • Header in the Report

    Hi All,
    Does anybody have any idea about how to get the selection parameters entered through variables by the user in the header of the report.
    Though the values of the selection parameters get displayed in the o/p display of BEx Analyser by default, but is there any way of adding a header to the report and display these selection parameters in the header as a label.
    That means the basic requirment is dynamically changing header of the report.
    Regards,
    Varada

    Hi Varada,
    First of all, make sure that your elements are displayed: Layout -> Display text elements -> All.
    Then choose an Excel menu option Tools -> Macro -> VB editor. Put inside the SAPBEXonRefresh sub definition the following code.
    Dim txt1row As Integer
    Dim ws As Worksheet
    txt1row = 15
    Set ws = resultArea.Parent
    ws.Cells(1, 1) = ws.Cells(1, 1) & " - " & ws.Cells(txt1row, 2)
    txt1row is a number of row where your text element is sitting. You can add some additional text if you want to. In this example to the existing report header the text element from the 15th row (through “ – “) will be added.
    Best regards,
    Eugene

Maybe you are looking for

  • Trouble connecting Apple TV to Sony TV (KV-24FV10)

    I am having some problems connecting my new Apple TV to my Sony TV (model: KV-24FV10). I used cables that previously was connected to my DVD but when I use them on the ATV the picture is black and white. I plugged the cables in so RED=RED, WHITE=BLUE

  • Problems with Query Properties in Crystal Reports

    I have with the following features of my queries either problems or theyu2019re just not usable in Crystal Reports: -     If I want to use more than one hierarchy. -     If I want to use a selection on a hierarchy. -     All my hierarchies are always

  • Reduce the execution time of catproc.sql

    how can i reduce the time of execution of catproc.sql, I have increased the size of redo log files from 5m to 40m, but still performance hasn't improved much, any suggestion regards asif

  • Help required download JAXM package (javax.xml.messaging.* pkg not found)

    Hi all, With an intention to sun some sample programmes for JAXM, I have downloaded "JavaTM Web Services Developer Pack 2.0" from Sun's website, but unfortunately I couldn't find the package javax.xml.messaging. Can someone help findout where's this

  • Update version CO 000 for controlling area

    Hi Experts, I need to update the values for CO versión 000 for a new controlling area created in the system. In order to do that I tried to customize in Project System--> Costs --> Create CO Versions. In the tables I choose version 0 but, when access