Change Description of a Query

Hi,
I made a copy of a query. I want to change the description of the query. How do I do this?
Thanks
NEWBW

Hi ,
OPen the query in the query designer and click on the properties button. Here you can change the description of the query. After doing this, save the query.
Hope this helps...

Similar Messages

  • Query selection criteria - changing description field..?

    Hi Experts,
    i want to change description filed in user query selection criteria form..
    i have 3 fileds  :
    docdate - this filed i want to chage 'Document First'
    docdate - This filed i want to change 'Document Last'
    name -
    my problem: screenshot
    [Click Here|http://img638.imageshack.us/img638/3466/userqueris.jpg]

    The system always asks with the description of the field you refer to with the parameter variable in the select statement.
    I sometimes defined a UDT only for getting the appropriate title in the parameter entering window. The table has no data; I used it only for its field names.
    (The parameter request can be placed inside a comment and the entered value is used setting an SQL variable like this:
    declare @d datetime
    /*select t.createdate from ordr t where t.createdate=[%0]*/
    set @d=[%0]
    This SQL variable can be used later in the real query.)
    (But then you loose the possibility to choose from the u2018List of existing valuesu2019

  • Where to get BW Metadata: owner, creation date, change date of a query / WS

    Hello,
    I need a report over the existing queries / worksheets and the owner, creation date, change date of a query etc.
    You see some of the information when you go over query properties in the query designer. But you see only the information of one (the opened) query. And you have to do this for every query ...
    My idea is to go over BW Metadata in the technical content.
    Here is the cube BW Metadata 0BWTC_C08
    (The InfoCube BW Statistics u2013 Metadata contains metadata from the Metadata Repository.)
    Is this the way to do it? Or any other suggestions u2026
    Can I get infos about used structures , etc over this way
    Thanks Markus

    I had to work on an other subject:
    But now the source of information is clear:
    RSRREPDIR - index of all queries
    RSZELTDIR -  index of all queries-components
    RSRWORKBOOK - Verwendungsnachweis für Berichte in Workbooks
    RSRWBINDEX - List of binary large objects (Excel workbooks)
    RSRWBINDEXT - Titles of binary objects (Excel workbooks) in InfoCatalog
    The tables are to join over
    RSRREPDIR.COMPUID  = RSZELTDIR.ELTUID
    RSZELTDIR.TEXTLG  contains the description
    RSRWORKBOOK.GENUID  = RSRREPDIR.GENUID
    RSRWBINDEXT and RSRWBINDEX are connected over WORKBOOKID
    I'd like to put the information of all of this tables in a cube and define a query on it.
    I have to define new datasource, infosource to get the data in the cube.
    Right?
    Now i see some existing datasource objects in the technical content.
    0TCTQUERID, 0TCTQUERID_TEXT, 0TCTQUERY, 0TCTQUERY_TEXT
    I can't open them to look in. But they might be helpfull. Anybody used them?
    Markus

  • Change description of Bex Workbook in 2004s

    How do we change description of the workbooks? Change description option from Bex analyzer is not available.
    How would one move or copy a query / workbook from a role to another role ( There was an option with 3.5 in Bex browser and Bex Analyzer)
    Option of saving a workbook and query to a role from Bex Analyzer > Open screen is not available
    Rgds
    Dinesh

    Workbook settings -
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/54/a493f7256b43698191a2623e5a0532/content.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/54/a493f7256b43698191a2623e5a0532/content.htm</a>
    Global Settings-
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/f1/0a551ce09411d2acb90000e829fbfe/content.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/f1/0a551ce09411d2acb90000e829fbfe/content.htm</a>
    Hope it Helps
    Chetan
    @CP..

  • Change cell color of query results,font size,style

    Change cell color of query results,font size,style
    Hello
    I have this code below and I want to know if it is possible
    to make the column header a font style different
    Example:
    Font size =12
    Verdena
    blue
    And the cell of the column name a different color for ex
    Yellow
    Can this be done here and where in this code do I put it??
    Thank you so much
    <cfquery name="gelov datasource="kl90">
    SELECT
    FROM
    WHERE
    ORDER BY
    <cfswitch expression="#Form.orderBy#">
    <cfks value="KSNUMBER">
    KS.KS_NBR
    </cfks>
    <cfks value="CREATIONDATE">
    KS.KREATDAT
    </cfks>
    </cfswitch>
    </cfquery>
    <!---html report--->
    <cfswitch expression="#Form.outputFormat#">
    <cfks value="HTML">
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Ctwye Kss Report</title>
    </head>
    <style type="text/css">
    table{
    font-family:Arial, Helvetica, sans-serif;
    font-size:10px;
    td{
    font-family:Arial, Helvetica, sans-serif;
    font-size:10px;
    th{
    font-family:Arial, Helvetica, sans-serif;
    font-size:10px;
    h2{
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    h3{
    font-family:Arial, Helvetica, sans-serif;
    font-size:13px;
    </style>
    <body>
    <cfoutput>
    <table border="0" cellpadding="3" cellspacing="0">
    <tr>
    <td align="center">
    <h3>Ctwye Kss
    Report</h3><br><br></td>
    </tr>
    <tr>
    <td align="center">
    </h2>report returned #getCtwyeKss.RecordCount#
    records</h2></td>
    </tr>
    <tr>
    <td>
    <table border="1" cellpadding="2" cellspacing="0">
    <tr>
    <td width="160">Ks Number</td>
    <td>K-date</td>
    <!--- <td class="dataField">Address</td>
    <td class="dataField">Type</td>
    <td class="dataField">Description</td>--->
    </tr>
    <cfloop query="getCtwyeKss">
    <tr bgcolor="<cfif currentrow mod
    2>GHOSTWHITE<cfelse>WHITE</cfif>">
    <td>#KS_NBR#</td>
    <td>#dateformat(KREATDAT,"mm/dd/yyyy")#</td>
    </tr>
    </cfloop>
    </table>
    </td>
    </tr>
    </table>
    </BODY>
    </HTML>
    </cfoutput>
    </cfks>
    <cfks value="CSV">
    <CFHEADER NAME="Content-Disposition" VALUE="attachment;
    filename=ctwye.csv">
    <cfcontent type="application/msexcel">"Ks
    Number","K-date"
    <cfoutput
    query="getCtwyeKss">#ltrim(KS_NBR)#,"#dateformat(KREATDAT,"mm/dd/yyyy")#"
    <tr #IIF(getCtwyeKss.CurrentRow MOD
    2,DE(''),DE('backgroundColor="##999"'))#>
    <!---<tr bgcolor="<cfif currentrow mod
    2>##808080<cfelse>##ffffff</cfif>"> --->
    </cfoutput>
    </cfks>
    </cfswitch>

    By using <TH> instead of <TD> on your header row
    you can then specify different font type and size in your CSS code.
    th{
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
    I'm guessing this is your header?
    <tr>
    <td width="160">Ks Number</td>
    <td>K-date</td>
    <!--- <td class="dataField">Address</td>
    <td class="dataField">Type</td>
    <td class="dataField">Description</td>--->
    </tr>
    If so, change these <TD> to <TH>
    <tr>
    <th width="160">Ks Number</th>
    <th>K-date</th>
    <!--- <th class="dataField">Address</th>
    <th class="dataField">Type</th>
    <th class="dataField">Description</th>--->
    </tr>

  • Change Description of Service Item default value

    Hello
    in a service SC, on the item detail basic data, we want to change the default value of the field "Description of Service Item ". by default it is "Service Item" and we want to change it.
    Where can I change it excepted in BADI BBP_DOC_CHANGE_BADI
    thanks,

    Hi
    Which SRM version are you using ? What is your business requirement ? Do you want to change Service Item description value for every line item in the shopping cart OR
    the permanent text displayed on the Left side on the HTML Template.. ?
    <b>Incase you want to modify the HTML template Text, then it can be done using HTML Template modification.</b>
    Using Transaction SE80, In the Internet Service - BBPSC01, you need to find the relevant HTML Template and make the required chnages to the Description there as per your business requirements.
    All BBPSC* transaction are using the HTML sources of service BBPSC01.
    So you have to modify template SAPLBBP_SC_UI_ITS_300 from service BBPSC01.
    Make sure to publish the complete service on all defined sites so that changes can appear in all respective SRM Client systems.
    Related links ->
    BBPSC01 Template Labels stored where ????
    Re: Template Shopping cart
    Re: Internet Service flow
    Re: Need to change the field description
    Re: how to change descriptions of links on the shopping cart page
    How to change "vendor text " label in BBPSC01 and BBP_POC
    Hope this will help. Do let me know.
    Regards
    - Atul

  • Change Font size of Query Title in PDF Output

    Hi Experts
    I want to change font size of Query title when its exported to PDF format .
    I change the text properites     to  Header size 1 ,  but still its not reflected in Output in PDF .
    Any suggestions,
    Regards,
    Jawad

    Hello Jawad,
    Please tell me the solution for this.

  • How to change the font in query builder window in Reports 6i?

    Hi
    I am facing the old problem again and again, which is I can not find any way to change the font in query builder window in Reports 6i. The current font is so bad for alignment and ordering each part of SELECT statement. Is there any way to change this to COURIER NEW for example?

    No, but I suggest using a different editor which does allow a different text option and just pasting it in.

  • Problem in BW system while tranporting a change in a Bex Query

    Hi All,
    I am facing a problem in BW system while tranporting a change in a Bex Query. Actually on our BW system our Client team works as well. I have done started doing some change in query in dev. I have created bex transportable request
    I want to transport a change in bex query. I am doing that dev work. usually i create a request in RSA1->tranport connection-> drag a query to a bex transportable request which I have already created. But the problem is my client also want to work on the same query for another change. so he is asking me to release the request or delete the request.. Is there any otherway that I can do the transports without conflicting with Client.
    Regards.
    haaris

    Hi Harris,
    A transport request if is BEx transport request (i.e. a request which is assigned as BEx transport request in transport connection) allows multiple users to work on same query.
    Instead of deleting your request, you could assign it as a BEx transport request in transport workbench and your client can also make changes under the same request without adding him under the request. It will also be better as all the changes made to one query will be onder one request.
    Please let me know if you need any more help.
    Regards,
    Pankaj

  • Export to Excel in Web Analyzer: Change description

    In Web Analyzer we have a button Export to Excel. When we click that button the report gets downloaded in to excel. By default the excel sheet will be saved as example 0Analysis_Pattern-87.
    Is there any way, by default when i click on export to excel button, excel should save either by query description or by query technical name.
    Where do i make such a setting.

    Hi,
    Only one name can be kept while expoting to excel.
    You may try bradcast option from your portal, There if you will choose format as excel and send then it will take the technical name of the report as file name.
    I hope it will help.
    Thanks,
    S

  • Change description in KE51. CEPC table

    Hi:
    I need some help. I hope you could help me.
    I need to change a text field in Transaction KE51, KE52 and KE53, for creatin, and changing a Profit Center. I hace used CMOD for changing description txt in table CEPC-VERAK (repsonsible of profit center) , also I have change date element VERAPC in languages I need.
    The problem is: I can see the changes in table fiels and in data elemet, but in KE51 fiels description in the old one.
    Do tou know how I can change this description? I don´t know how to change it.
    Thanks in advance.

    Hi ,
    Using ur screen field try navigating to the screen-field properties by Pressin F1, Now check if the "Dict.Modified' is having value 'F'
    if it is 'F' then u can not change the field description on the screen,
    Hope the above info is useful.
    Regards
    Arun

  • Can we restrict changes made in BEx query not to resemble in Universe

    Hello Gurus,
    I have a question. Lets say if there is a universe created based on BEx query and if later on BEx query is changed (newly added Chars, KF's or change in names) can we restrict the changes not to resemble in Universe?
    Please give me any related document or link which will be a big favor for me.
    Thanks a lot for your time.

    Changes in the BEx query are not reflected always automatically in your universe: Eg. if you add an new restriction or a new keyfigure. You have to maunally refresh the structure of your universe and export it again on your BOBJ server.
    Some changes will be automatically available though eg. if you change the code of a customer exit variable which is already used in your BEx query, even if you do not refresh the universe.
    Please keep in mind that some kind of changes in the query (removing existing key figures or characteristics) may cause error messages when you try to run your universe (assuming you did not update it).
    The recommendation here is to refresh your universe when you change the underlying BEx query. If you do not want to do that then your universe may stop working.
    Regards,
    Stratos

  • Change log in ABAP Query

    Hello,
    I would like to know how to check change logs for ABAP Query in the Global Area. I had created a query and am not able to find who has changed this. Please provide some valuable suggestion on this.
    Regards,
    Sumit

    Dear Satyen,
    Go to  menu Edit-->Other user group, choose the user group, where u have assigned the infoset no give the name of ur query and press create button, it will display all the infosets those are assigned with that user group. Now select ur infoset and start developing the query.
    see useful tips:
    10 Useful Tips on Infoset Queries
    Regards,
    Abbas.

  • Corrupt change description in redo log

    i am running oracle91 on sunos sun4u
    it runs on Noarchivelog mode
    the server started restarting itself today about 4 times
    the last restart,to start the database i noticed that the database only mounted without opening, showing the following error:
    ORA-00399: Corrupt change description in redo log
    ORA-00353: log corruption near block 1576 change 18906724807 time 04/02/2008 16:30:14
    ORA-00312: Online log 1 thread 1: '/data1/oradata/<sid>/redo01.log
    should i do log switch and delete redo01.log and then add another redo01.log.
    Regards
    pls it is urgent, i need all of ur help

    Contact Oracle support immediately. They are your only real hope because you will need some customized approach to recovery based on your specific situation.
    I do hope you are prepared to loose data or have a logically corrupt database, however.
    Good Luck

  • ORA-00399: corrupt change description in redo log

    Hello!
    I have big problem on database startup:
    ORA-00283: recovery session canceled due to errors
    ORA-00399: corrupt change description in redo log
    ORA-00353: log corruption near block 12044 change 465202853 time 12/09/2008
    22:00:20
    ORA-00312: online log 4 thread 1: '/oradata/orcl/temp/redo04.log'
    I have only one member in each redolog group.
    Have I any chance to recover database?

    Recreating a controlfile does not help in case of a corrupt logfile. Issue
    'select group#,status,archived,sequence#,first_change# from v$log;' to get the status of the corrupted logfile. If 'status' = INACTIVE you are lucky, you can clear the group:
    alter database clear <unarchived> logfile group n; (use 'unarchived' when 'archived' shows 'NO') .
    If 'status' = ACTIVE try 'alter database checkpoint;', if this command executes successfully, logfile gets status INACTIVE and again you can clear the logfile, if not you have to handle the logfile as CURRENT.
    If 'status' = CURRENT you must do an incomplete recovery up to the latest usable SCN:
    restore database until scn <first_change#_of_current_logfile>;
    recover database until scn <first_change#_of_current_logfile>;
    alter database open resetlogs;
    Werner

Maybe you are looking for