Bind option in report. How to change setting in Query Designer?

Hello,
Is there any way of changing the 'Bind display of textx/attributes in data provider result and in value help' in the portal. We can change this option from the report by right clicking on the characteristic -> Properties -> Characteristic -> Selecting the 'Advanced' tab. But we want to make a permanent change to this option from the query designer so that the users would not have to change it every time they run the report. Can anyone point to where I can make that change in the query designer or anywhere else if that works?
There is a characteristic say 'XYZ'. It has a attribute 'ATTR'. We want to display the attribute alone in the column of the query. We are able to do so by bringing the characteristic 'XYZ' and dragging and dropping the attribute 'ATTR' under it. We then change the display options to make the characteristic as 'No dispaly'. But this affects not just the characteristic in the columns, but also in the Navigational blocks. So the users are not able to see any values while filtering. One way to fix this is to uncheck the 'Bind display of textx/attributes in data provider result and in value help' option after the report is executed which is an end user task. But we want to find out a way of changing this from the query designer, so that the users won't need to carry out his activity every time they run the report.
Any help is appreciated.
Thanks

<p>There are a few ways that you can achieve this. If your SQL Queries have their filters modified (ie. WHERE clause) then this can be easily solved by adding report parameters to the Report filter. Search the in-product help for "Record Filter" and you should get a number of helpful resources returned.</p><p>Additionally, you can pass in java.sql.ResultSet objects with a populated recordset of the data you want to show in the report. We don&#39;t currently provide any tools to assist the creation of the code stubs for thick-client applications (like we do for JSP pages) however you can download a collection of thick-client sample code from here:</p><p><a href="http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_desktop_samples.zip">http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_desktop_samples.zip</a> </p><p>As I mentioned, this sample contains a collection of code snippets. The one in particular you will be interested in is titled "JRCResultsetDatasource". Hopefully, this will provide you with a few options. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

Similar Messages

  • How to change set as reply

    how to change set as reply email address on bulk users?

    Hello,
    I'm marking the reply as answer as there has been no update for a couple of days. If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Cara Chen
    TechNet Community Support

  • How to change setting for 'last 5 password change prompt'

    hi friends
    in sap, when a user changes a password sometimes he/she gets a message "Please select a password that is different from last 5".
    now i am in need to change this default value of "5" to "2" but i dont know what is the parameter name for changing this setting.
    i would appreciate if anybody can tell me how to change this setting.
    many thanks
    regards

    Hi nathan drake
    The parameter for password history is   login/password_history_size = 5
    you can change to 2.
    Regards,
    Firoz.

  • How to change set type attribute of a product

    Hi ;
    I created additional fields for products by using "COMM_ATTRSET". It created a table and functions but I dont know how to change this additional attributes.I cant use these attribute set functions because i dont know fragment_id yet. I think there must be a function encapsulates them.
    Is there any BAPI to change set type attributes?
    PS: In forums , I found an FM "COM_PRODUCT_MAINTAIN_MULT_API" but I think it hasnt been used anymore in CRM7.0
    Thanks

    Thanks for your reply ;
    but FM 'COM_PRODUCT_UI_MAINTAIN' doesnt have any generic import parameters to send my data to it in form of  newly created attribute set type table "ZPRODUCT".
    I want to set some fields of ZPRODUCT and i need to send them in this structure,  this table has column FRG_ID , if you set an additional  parameter for the first time , it generates new GUID..I think  'COM_PRODUCT_UI_MAINTAIN'  generates this GUID but i dont know how to use it.
    Can you give an example about using this FM?

  • In Report How to change font in big font.

    hi, Guru......
    I have a problem...
    "how will change font  on report".
    that means print heading big font.
    Pls Reply....

    if it is ALV report....
    then use....
    *&      Form  top
    *       text
    FORM top.
      DATA: t_header TYPE slis_t_listheader,
           wa_header TYPE slis_listheader,
           t_line LIKE wa_header-info,
           ld_lines TYPE i,
           ld_linesc(10) TYPE c.
      wa_header-typ  = 'H'.
      wa_header-info = '<text1>'.
      APPEND wa_header TO t_header.
      CLEAR wa_header.
      wa_header-typ  = 'S'.
      wa_header-info = '<text2>'.
      APPEND wa_header TO t_header.
      CLEAR wa_header.
      wa_header-typ  = 'S'.
      wa_header-info = '<text3>'.
      APPEND wa_header TO t_header.
      CLEAR wa_header.
      IF s_pst-low IS NOT INITIAL.
        wa_header-typ  = 'S'.
        wa_header-key = 'From:'.
        wa_header-info = s_pst-low.
        APPEND wa_header TO t_header.
        CLEAR wa_header.
      ENDIF.
      IF s_pst-high IS NOT INITIAL.
        wa_header-typ  = 'S'.
        wa_header-key = 'To:'.
        wa_header-info = s_pst-high.
        APPEND wa_header TO t_header.
        CLEAR wa_header.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary       = t_header
    *     I_LOGO                   = 'PMMN_BACKGROUND'
    *     I_END_OF_LIST_GRID       =
    *     I_ALV_FORM               =
    ENDFORM.                    "top
    and in 
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
         i_callback_top_of_page            = 'TOP'
    Arunima

  • How to change the lov query??

    Hi Friends,
    I am trying to extend a controller of the base page to change the lov query. I am not able to get the lov VO since I am not getting the lov AM in the controller.
    I want to use the setQuery() to set the lov query programatically in base class controller PR.
    My controller code looks like ::
    OAApplicationModule am = oapagecontext.getRootApplicationModule();
    oapagecontext.writeDiagnostics(this,"The Root AM is : " + am.toString(),6); // displaying oracle.apps.icx.por.req.server.RequisitionAMImpl
    OAApplicationModule lovAM = (OAApplicationModule)am.findApplicationModule("RequisitionLovAM"); // Returning Null
    OAViewObjectImpl vo = (OAViewObjectImpl)lovAM.findViewObject("ReqSupplierVO");
    String seededQuery = vo.getQuery();
    oapagecontext.writeDiagnostics(this,"Seeded Query for ReqSupplierVO is "+ seededQuery,6);
    String customQuery = "new_query" // here i m writing my new query.
    vo.setQuery(customQuery); // setting my custom query.
    oapagecontext.writeDiagnostics(this,"Custom Query for the ReqSupplierVO is "+ vo.getQuery(),6);
    The following are the details.
    Base Page : /oracle/apps/icx/icatalog/shopping/webui/NonCatalogRequestPG
    Base Page Controller : logi.oracle.apps.icx.icatalog.shopping.webui.NonCatalogRequestCO
    Lov Region : /oracle/apps/icx/lov/webui/ReqSupplierLovRN
    Lov Controller : oracle.apps.icx.lov.webui.ReqSupplierLovCO
    Lov VO : oracle.apps.icx.lov.server.ReqSupplierVO ( i want to remove outer join in this VO query )
    I cant extend the lov controller since the same lov region is using in other pages also where i dont want apply my new lov query.
    Is the way i am trying is correct? How can i get the Lov AM in the base page? Any help highly appreciated.

    Hi Pratap,
    Thanks for coming back on this.
    The background of this customization is, We are implementing AME and are trying to restrict the number of approvers in the Change First Approver LOV (ApprroverLovVO.xml) based on company code and cost centre during the creation of Requistion. At the moment, the LOV is bringing back every employee who has a valid WF role.
    At the moment (up till I saw this thread) I was trying to customize ReqApprChfCo.java by adding this code to processRequest method
    OAMessageLovInputBean CompanyCode = (OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("ChargeAccountFlex0_column"); //this is returing null
    OAMessageLovInputBean CostCentre = (OAMessageLovInputBean)oawebbean.findIndexedChildRecursive("ChargeAccountFlex1_column"); //this is returing null
    RequisitionLovAMImpl am = (RequisitionLovAMImpl)oapagecontext.getApplicationModule(oawebbean); // this is returning null
    OAViewObject approverLovVO = (OAViewObject)oam.findViewObject("ApproverLovVO");
    Then, once found to append the viewobject with where clause. Was this the right method of achiving it, or to create a new custom VO and region?
    Regards,
    Chetan

  • Setting in Query Designer to close all the levels in hierarchy

    Hi,
    I got a  hierarchy with upto 8 Levels.
    In Query Designer i had a Selection Restrictions on hierarchy,I selected few nodes (each will have upto 7 level).
    When i execute the report the first node is expanding upto the Level 7 and other nodes are stay close...
    I checked and tried all the setting Expand to level 0....etc
    Its not working.
    How can i achive
    When the user executes the report...data will be dispayed and all the restricted nodes will be displayed as closed...and option to the user to expand.
    Thanks

    Hi SDBI,
    Thanks for the Update...
    Go to RSH1 transaction. Go to your Hierarchy. Choose your hierarchy in change mode press Hierarchy attributes buttion. Enter 00 as drilldown start level in the new dialog appearing when your press Hierarchy attributes button.
    It worked..but not for 00....it worked for '01'.
    Could you please explain me in bit detail what is the functionality of that setting...
    Thanks in advance

  • How to use "%CT" in Query Designer

    Hello everyone,
    i read that to calculate "Percentage Share of Result" in Query Designer we can use "%CT operator".
    But in my Query Designer (Version 7.10, SP10, Patch1) only "%" and "%A" are available to use. There ist no operator named "%CT".
    Can someone tell me how to use this operator?
    Thanks a lot and best regards,
    Susanne

    Hi,
    In the % Functions in a Formula you can find %, %A, %CT, %GT, %RT all 5 of them .
    My BW system is at Following Upgrade level:
    Software Component    Release    Level    Highest Support
    SAP_BW                701       0007            SAPKW70107
    If at a lower upgrade level, you need to upgrade till Specified BW Release to view these Fxn.
    You can check yours at System (Top of the window) --> Status . Click the Icon of magnifying glass named Componenet Info to view yours.
    Regards
    Raj Rai

  • How to change/set default "box selection" in download/open file menu?

    I have set downloads option in options-general to "Always ask me where to save files". This is making a menu pop-up with option "Open with" and "Save file" every time I want to download something, and thats what I want. The thing is that depending on type of file I want to download the box for "open file" is ticked for some files like .doc and .xsp files, and the box "save file" is ticked for other files like .zip files.
    Sometimes Im downloading many separate files in a short time and it is annoying to to tick "save file" and select ok instead if having "save file" already ticked and just clicking ok.
    How can I change this behavior?
    My setup:
    Firefox 26.0
    Download status bar
    All-in-one sidebar
    Example pictures:
    http://imagizer.imageshack.us/v2/800x600q90/14/sqx4.png
    http://imagizer.imageshack.us/v2/800x600q90/13/8kwa.png

    See:
    *https://support.mozilla.org/kb/change-firefox-behavior-when-open-file
    *http://kb.mozillazine.org/File_types_and_download_actions
    Current Firefox versions remember the download directory based upon the URL, so if the URL changes then the default folder may be chosen if there hasn't been selected a download folder before for that server.
    You can disable this feature to remember the download directory via the Boolean pref <b>browser.download.lastDir.savePerSite</b> on the <b>about:config</b> page.
    The browser.download.lastDir.savePerSite pref doesn't exist by default (it is a hidden pref), so you need to create it.
    Create a new <b>Boolean</b> pref with the name <b>browser.download.lastDir.savePerSite</b> and set the value to false.
    * http://kb.mozillazine.org/about:config
    You can delete the content-prefs.sqlite file in the Profile Folder to only remove settings stored in this file and keep the exceptions that are stored in permissions.sqlite that would be lost if you clear the "Site Preferences" via Clear Recent History.

  • Crystal Reports: How to change Oracle OLE DB server at runtime

    Post Author: dvlasman
    CA Forum: Data Connectivity and SQL
    I'm using a rpt made with Crystal Reports 8.0.1 and VB 6. The report was made using the Microsoft OLE DB provider for Oracle. What I want to do is change to Oracle server / database the report is connecting to at run time before the report is displayed. I am using the Crystal Report Engine 8 Object Library (cpeaut32.dll), not the ocx.After creating the report object:Dim CrystalReport As CRPEAuto.ReportI open my report and discard saved data:'Open The ReportSet CrystalReport = CrystalApplication.OpenReport(msReportSource)CrystalReport.DiscardSavedDataConst sDBServer = "ORCL.SERVER" 'My TNS name for the Oracle ServerConst sDatabase = "ORCL.SERVER" 'I'm not sure what this value should beConst sUID = "system"Const sPwd = "manager"I was then going to change the database connection one of two ways:1:Dim objDatabaseTable As CRPEAuto.DatabaseTableFor Each objDatabaseTable In CrystalReport.Database.Tables    Call objDatabaseTable.SetLogOnInfo(sDBServer, sDATABASE, sUID, sPWD)    If (Not objDatabaseTable.TestConnectivity) Then        Debug.Print "Database failed connection: " & objDatabaseTable.Name    End IfNextSet objDatabaseTable = Nothing2:call crystalapplication.LogOnServer("pdsoledb.dll","MSDAORA.1",sDATABASE,sUID,sPWD)Neither of these two way gets me a successful connection. What am I doing wrong, and which is the preferred method to use?ThanksDean

    Did you get a resolution to your problem? I cannot dynamically change the datasource location in .NET using CR XI via OLE DB for Oracle. I get "This field name is not known." messages and when I try using the set datasource location in the designer tool, the mapping dialog box comes up with no fields in the right box. Thanks, Brian

  • How to change/set the browser title from web forms (XP platform with SP2)

    I am running Form9i, I have set the browser windows title from Web Forms dynamically by using following method. However, when my PC has changed to XP, the function seems not work. Does anybody have same problem and how to solve it? Any suggestions would be appreciated.
    Add the Javascript code to your baseHTML file. For example,
    if you are using the basejini.htm:
    <HEAD><TITLE>%pageTitle%</TITLE>
    <script language="javascript1.2" type="text/javascript1.2">
    function Change(a) {    document.title=a;    } </script>
    </HEAD>
    In web Forms , call the javascript function with WEB.SHOW_DOCUMENT built.
    For Example the following code set the browser title with username . web.show_document('javascript:Change('||'"'|| get_application_property(USERNAME)||'"'||')','_self');
    Best Regards,
    Bowie

    Dear Frank,
    Thanks for your reply. Can you tell me in detail which built-in function in Webutil can set value in browser title ?
    Btw, is it possible for me to set parameter "separateFrame=True" in formsweb.cfg and set the form window title by using SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,TITLE,v_msg_string)?
    Best Regards,
    Bowie

  • Oracle report-how to change report layout to landscape?

    Hi,
    I am using Oracle report 6i. I want to change the report layout to Landscape. I had tried to go to 'page setup' and changed to 'landscape', but when I print, I still got portait layout.
    Can anyone help me? Thanks.
    Jun

    Hi,
    Easiest method for changing your reports orientation to Landscape is
    Go to object navigator->System parameters->Orientation.
    Set value of this system parameter as Landscape. Thats all. You also can set this property using srw. features at runtime.
    Regards
    Santa

  • WAd Report - How to change Cursor Type...

    Hi,
    In BI WAD report output, the cursor type is Pointer (Hand sign). I wanted to change it to some other type, is this possible, If yes, could u pls let how can i do that. I tried a lot but didn't suceed.
    Thanks...

    I think this would be possible by having custom CSS embedded in web template. E.g. see here:
    http://www.zimmertech.com/tutorials/css/20/changing-cursors-tutorial.php

  • How to change the SQL-Query in (Report in ReportViewer) by running Java App

    Hello,
    Ich have an App which generates dynamicly SQL-Queries. By pressing a button it should generate a report with this generated Query.
    I´m using the ReportViewer.jar. Further is it possilbe to a extra parameters form app which are not in a DB?

    <p>There are a few ways that you can achieve this. If your SQL Queries have their filters modified (ie. WHERE clause) then this can be easily solved by adding report parameters to the Report filter. Search the in-product help for "Record Filter" and you should get a number of helpful resources returned.</p><p>Additionally, you can pass in java.sql.ResultSet objects with a populated recordset of the data you want to show in the report. We don&#39;t currently provide any tools to assist the creation of the code stubs for thick-client applications (like we do for JSP pages) however you can download a collection of thick-client sample code from here:</p><p><a href="http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_desktop_samples.zip">http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_desktop_samples.zip</a> </p><p>As I mentioned, this sample contains a collection of code snippets. The one in particular you will be interested in is titled "JRCResultsetDatasource". Hopefully, this will provide you with a few options. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) </p>

  • HT4108 Using lightning digital AV adapter on iPad, how to change setting for sound to play on Bluetooth device

    How do you change the sound settings when using the lightning digital AV adapter HDMI to a Bluetooth device.

    Hi Rob - thanks so much for your help!  Could you tell me what "air sever or reflector apps." are? and where can I look for information about them?
    Do you use them on the Ipad or on the PC?
    Do I need a cable too and which one?
    Sorry... I am not very technical as you can see, thanks for your help.
    Regards

Maybe you are looking for

  • Acrobat Toolbar in Lotus Notes 8.5

    Does anyone know how i can get the acrobat toolbar to show up in Lotus Notes 8.5. I know this has been an issue in the past and I have already tried the steps of manually adding the add-ons into the configuration files for Notes but that doesn't seem

  • Output type neu not coming automaticaly my document type zcpo contract po

    Hi I need output type neu automaticaly for create  purchase order  document type zcpo,nb,fo, this two condition type  coming automaticaly my output type neu, Following configurations i have completed for nb,fo,zcpo document type in Nace t.code In nac

  • Material Management view on company code

    Hi All, I created Company code and gave year and posting period as 2008 and 4 but it shoild be 2008 and 2 as according to IN01 Company code(Indian standard prodecure)          Now i am going to change to 2008 and 2 in omsy tcode but system is not all

  • Installer file is damaged

    I can't install the .AIR file created by my Flex Builder 3 (SDK 3.5 with AIR SDK 2.5). I compiled my Air project, executed without any trouble (also in debug mode) but when trying to install on my pc (Windows XP) I get this error message from AIR ins

  • How to start IGS

    Hello I wander how to start IGS on an running BW3.5 server. I am pretty new in this areas. It is unix/oracle platform