Input control -Check Box Problem in webi4 over Bex query

Hi All
i am in webi4 over bex query
my customer requirement is to have the option to select multiple values from object (e.g Document class) with out the need of presenting the field(e.g document class) in the report
when I use the input control check box or list box i have the following problem
if I select from the input control all values I see the report ok
if I select 2 values from the list I receive #UNAVAILABLE , but if i add the field to the report ( the document class) it works fine.
the problem is that  if I don't have the field in the report i get the #UNAVAILABLE
any assistance is appreciated
Thanks

Hi,
this question has been asked many times before on this forum, so do please search first.
Here's some steers : http://forums.sdn.sap.com/thread.jspa?messageID=10852102#10852102
and : http://forums.sdn.sap.com/thread.jspa?messageID=10838993#10838993
Also, do search the knowledge base articles over here in the cross-search: www.service.sap.com/xsearch
you keywords would be "4.0 webi #UNAVAILABLE"    (there are 12 sap notes about this)
Finally, make sure you use all the latest Patches (Patch2.11,  2.12 next week) to include corrections.
Regards,
H

Similar Messages

  • Input disabled check box

    how to display input disabled check box in selection screen.
    plz give me sample code.i think we have to use at selection-screen output. so using it how we have to build code

    Below is the code we can use:
    REPORT zrjntrial_tree LINE-COUNT 65
    LINE-SIZE 80
    NO STANDARD PAGE
    HEADING.
    TABLES : vbrk.
    PARAMETERS : p_radio AS CHECKBOX USER-COMMAND opt1.
    SELECT-OPTIONS : s_vbeln FOR vbrk-vbeln,
                     s_fkdat FOR vbrk-fkdat.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-name = 'P_RADIO'.
            screen-input = 0.
            screen-output = 1.
            MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Regards,
    Himanshu

  • Advantages of using Bex WAD over Bex Query Designer?

    Can anyone tell me the advantages of using Bex WAD over Bex Query Designer?

    Hi Shiva,
    WAD has many advantages when compared with Query Designer. few of those are
    You can include Radio Buttons, Push Buttons, Check Boxs.....
    You can include more than one report in one WAD Report
    Completely u can make fancy as much as requried ....
    Many graphs  and chars are can be included .....
    data from Views can be viewed
    Many..many....

  • No check box for "Share disks over Ethernet WAN port"

    I've recently bought an AirPort Extreme and have no problem on connecting to Internet and sharing disks. But my "AirPort Utility" looks different from other people's, and I feel uncomfortable about it.
    I saw many users' AirPort Utility screen shots, but all of them have "Share disks over Ethernet WAN port" check box under Disks > File Sharing tab. But mine doesn't; at the place where that check box should exist I have "Advertise disks globally using Bonjour" check box, which is usually under "Share disks over Ethernet WAN port" check box.
    I think this is very unusual. Does anybody have the same problem?
    Here is the my screenshot:link
    Power Mac G5   Mac OS X (10.4.9)  
    Power Mac G5    
    MacBook Pro   Mac OS X (10.4.9)  

    I have !
    i don' t understand neither...
    so strange ...
    Are you guys running version 7.1 of the Airport software?

  • Adobe Acrobat Check Box Problems

    Hello,
    I am setting up a form within Adobe Acrobat Pro v 9. I have been able to set check boxes up within the form that when you click on them they make a field visible. The problem is that when you uncheck them the field stays visible. I am trying to get it where when you click on it and the check mark is there the field is visible but when you uncheck it the same field that became visible when you checked it becomes invisible.
    If you are responding an example of a checkboxes name and the field name would be Checkbox Numbers and then the field name would be Numbers Font.
    Thanks for your help!
    J .:

    Hey this is great! Works seemlessly.
    Is there a way to do the same thing with JavaScript to control layers?
    So say we use the original checkbox which is named Checkbox Numbers.
    Whenever we click on Checkbox Numbers to be checked we want the layer named
    Numbers be visible however when we uncheck it we want it to become
    invisible.
    Is that possible through JavaScript and if so what would that code be?
    (Sorry I'm not a programmer)
    Thanks for your help!

  • Table Control Check Box

    Hi,
    i am Displaying a table control in module pool programming
    i need to have check boxes for each item in the table control.
    Regards,
    Vijaya

    HI,
    Refer to the link.
    how to create a check box in table control
    This may help.
    Regards
    Sumit Agarwal

  • Check box problem in struts

    I am getting several checkboxes on a JSP form that are created depending on the no. of iterator values. e.g.
    <s:iterator value="group">
    <s:checkbox name="check"/>
    <s:textfield name="name"/>
    </s:iterator>
    Now all the check boxes created are having same name i.e. check.
    I have to pass values of these boxes on the click of a button to an action class, how can i pass an array of checkbox values if i have only one element with one name. In action class, I have to determine whether the check boxes are selected or not.

    How can we use an array of struts 2 tag elements which may contain multiple check boxes.

  • Select many check box problem

    I'm having a lot of trouble with a selectManyCheckBox. I've got a faces panelTabbedPane - and one of the tabs contains a selectManyCheckbox. All the data in the tabs applies to the same bean so I want to apply all the changes or none of them.
    If I don't have the h:form around the tab then the check boxes aren't initialised. However with the h:form when I try and submit the form the checkbox values don't get set on my bean.
    What am I doing wrong and how do I fix it? Any help would be appreciated.
    JSP containing the panel tabbed pane
        <h:form id="edit.form">
            <x:messages id="messageList" showSummary="true" showDetail="true" summaryFormat="{0}:" styleClass="error" />
            <x:panelTabbedPane title="#{msg['account.edit.tabs.title']}" >
                <f:subview id="tab1" >
                    <jsp:include page="editGeneral.jsp"/>
                </f:subview>
                    <h:form id="roles.form">
                <f:subview id="tab2" >
                            <jsp:include page="editRoles.jsp"/>
                </f:subview>
                    </h:form>
                <f:subview id="tab3" >
                    <jsp:include page="editPreferences.jsp"/>
                </f:subview>
                <f:subview id="tab4" >
                    <jsp:include page="editCustomers.jsp"/>
                </f:subview>
                <f:verbatim><br /></f:verbatim>
                <x:commandButton id="editButton" value="#{msg['account.update']}" action="#{selectedAccount.update}" title="#{msg['account.update.alt']}" />
                <x:commandButton id="cancel" immediate="true" value="#{msg['enable.cancel']}" action="cancel" title="#{msg['enable.cancel.alt']}" />
            </x:panelTabbedPane>
        </h:form>And the included JSP
    <x:panelTab label="#{msg['account.edit.tab.roles']}" title="#{msg['account.edit.tab.roles.title']}" >
        <h:panelGrid columns="2" >
            <h:outputLabel for="roles" value="#{msg['account.edit.role']}" />
            <h:selectManyCheckbox id="roles" value="#{selectedAccount.roles}" layout="pageDirection" styleClass="menuSelectMany" >
                <f:selectItems value="#{userPreferences.roles}" />
            </h:selectManyCheckbox>
        </h:panelGrid>
    </x:panelTab>Thanks

    What type does 'userPreferences.roles' represent in your included jsp?
    Is it a collection of Role classes returned as a SelectItem array?

  • Crystal Reports - Problem with too long BEx Query technical variable names?

    Hello!
    I have Crystal Reports 2008 SP3 and the SAP BO Integration Kit XI 3.1 SP3 installed and want to access a BEx query on a BW system within my Crystal Report.
    The problem is that the name of the BEx variable is not displayed correctly (just "[]" is displayed for the variable name) as a parameter within Crystal Reports when I import the query. Furthermore I can't navigate through the fields of the query within Crystal Reports.
    The technical names of the BEx query-variables have a length of 12 characters.
    The interessting thing is that if I change the technical names of the BEx query variables to a maximum length of 8 characters everything works fine.
    I use the SAP toolbar within Crystal Reports 2008 to create the report and have the "MDX-driver"-setting selected.
    Has anyone ever had the same problem? Any suggestions?
    I don't want to change the technical names of the variables of my queries...
    thanks,
    Dominik

    Hi!
    Just fixed the problem: The "Transports" for the Integration Kit had to be imported at the BW-System
    regards

  • Source Code Control - Check in problems

    Some of my vi's have been marked as "Server copy has changed" and some have even been marked with "both local and server copies have changed". When this is the case I cannot find any way to check in my VI without getting an error. Looking for a work around - help.

    kh,
    Which version of LabVIEW are you using? Built-in SCC have been rewritten from 6.0 to 6.1 and there are different issues related to each version.
    With 6.0 I have encoutered a bug that wrongly checked most of my VIs as "local copy has changed" as soon as they are in memory with panel closed. I worked with NI Support and we found no workaround. Unfortunately, this behavior stayed even when the VIs were upgraded in 6.1 so that my problem was a dead end. I switched with great success to CVS, another source code control software.
    I do not use 6.1 but if you do, make a search on NI's site and you'll find hits that address a SCC bug. If I remember correctly, checking out a VI, making a small change and checking it in again often solved the problem.
    G
    ood luck.
    LabVIEW, C'est LabVIEW

  • Problem in Hierarchy in BEX Query

    Hi ALL,
    I have created Query for balance statements & Profit ,Loss statement by using hierarchy. It  is execuiting in perfectly.But the problem is "I want in the query output hierarchy with only 1 node that is Profit/loss node."
    I have done restriction on that node only. But I am not getting the output for that node.
    If I add one more node for Profit/loss node it is showing data.
    my question is If I restrict only one node why it is not working?
    please give me suggestions on this. <b>we need only one node in the output Hierarchy.</b>
    Plaese give me the steps Regarding this.
    Thanks,
    kiran.

    Hi srikanth,
    thanks for ur reply,
    My hierarchy having like this:
    Fiancial satement
              |--->Source of funds
              |---->App.of Funds
              <b><b>|---><b>Profit/loss node</b>->caliculated Profit</b></b>
              |------>Income
              |------->expendature
              |------->Un assained Node.
    1. I have not used any Structure .
    2. I have placed my Hiearachy in ROWS and I ahve restricted only Profit/Loss Node.
    ( But If I select only 1 node in Restriction data is not getting in query)
    IF I select "profit/loss node " & some other node in Restriction data is coming in the output of Query.
    What is the reason for this.
    whatt I have to do to get only 1 node in the output with values.
    Thanks,
    kiran
    Message was edited by:
            kiran manyam
    Message was edited by:
            kiran manyam

  • Hierarchies over BEx query

    this is my hierarchy in  BEX query
                               course(node id:1 header)
                    training grp 1                  training grp 2             training grp3----
    level 1(node id 2)
    -training grp 4(parent is grp 1,LEVEL2)   
            - training type1(leve 3)
             -training type2(level1 3)
    now in crystal reports i am able to achieve by grouping at training grp(level 2) and training type and summarizing the keyfigure .However, i am not able to get or display the training grp at level 1.so how to get it?
    2) is there any way to group on trainig grp only on level 1?I tried to created group expert  and restrict with values in level 1, but it didnt work.
    ie. i want  the same way when we run the report in bex analyzer where we are using the hierarchy in rows and key fig in clumns.
                                                       kf
    trainig grp 1                               1000
       training grp 4                            1000
           trainig type 1                          500
           trainig type 2                         500

    See this post: Classic Crystal Reports and Classic SAP connectivity questions

  • Input Controls - is it possible to change the font for a combo box

    I have an input Control combo box that is a mixture of english/chinese characters. In Webi I can view the chinese characters correctly if I change the font to MingLIU. Is it possible to change the font for an input control OR to set a default font?

    I am a first-time user of the photo book application in iPhoto.
    I also was a first-time user, so I started using it. Exploring the possibilities, learning my way around.
    Thanks, in advance, for any suggestions someone might have.
    Click the ? icon
    Oops. Sorry, but you're in the wrong forum : iLife > iPhoto

  • Check Box Tree.

    Hi All,,
    Unfortunately, I knew that the Check box Tree was removed from the final release of Apex, but I have a problem and I do need to implement this functionality in my application. What I have tried so far is :
    1- I tried to use Apex_Item.Check Box in the ICON parameter of the tree query, but nothing happened.
    2- I tried to concatenate Apex_Item.Check Box in the Text parameter of the tree query, but it displayed as a normal text and the browser doesn't interpret the html text <input type="check box".....>.
    Does anybody now any solution or work around for this problem?
    Any help will be appreciated.
    Thanks in Advance,,
    Ola

    Hi,
    Not sure if this hack will get the checkboxes to work for you (may be worth a shot):
    {message:id=4549167}
    {message:id=8313970}
    Ta,
    Trent

  • Dependencies between Input Controls

    Hello, Experts.
    I have a trouble with my input controls in webi report XI 3.1.
    Problem statement: There are documents that have authors and executors. Report has two input controls (combo box) "Authors" and "Executors" that are filtering crosstable. When I change value of Author's control - crosstable has changed and executors that is one of axis of crosstable has changed too. But the list of values in Executor's control isn't changing. It shows the list of all values and don't restrict it regardless value from Author's control.
    Is this a feature of input control ? or I place a mistake ?

    Hi Marianne,
    I read your post and I thougt I've got the answer to my question but it doesn't seem to work.
    I've got two dimensions "region" and "country". I want do filter the relevant countries according to the regions so that the drop down filter "country" (report filter bar) shows only the countres within the specific region. According to your advice I placed "region" as a first filter, but still all countries are shown. And it seems that input controls have a limitation in this matter. Any ideas?
    I'm using an excel file as my source (no universe) and webi 4.

Maybe you are looking for