Automatic garbage values populating in variable slection screen

Hi All,
There is certain query which is being accessed on a daily basis by users. Now the situation is when 2 specific users are executing the query, first the variable selection screen appears but is it already populated with huge number of junk values in Company code field.
How can i remove the values from appearing? There are no default values maintained for that comapny code variable.
Please help!
Thanks
Sayan

Hello,
CHeck the variable used for restriction in QD, whether it is of type authorization.
If so create one more variable of type manual input with option ready for input and include it along with the existing variable. Also in the authorization variable make it not ready for input.
It should take care of your issue.
Regards,
Shashank

Similar Messages

  • Value selection in variable selection screen

    Hi all......
    I have version varaible on 0VERSION infoobject with mandatory entry and default value S00. when you enter the screen to select other values it display only Key, but i want to display key and text like  S00 Reporting Plan.. but it display only S00. I have verified the Infoobject settings and all.. all looks ok.. when you execute a query in Bex, it displays Key and text, but in portal it displays Key only.. any ideas...am i missing any variable settings in WAD?
    Sathya

    any help?

  • Limit list of values in variable selection screen

    Hi
    Apologies if this has been asked / answered elsewhere, but I thought I would put it out there, at least while I continue trying to find a solution.
    We have a requirement to limit the data from which a user is allowed to select values in the variable selection screen. I know how to write the ABAP code that will return the list of data from which the user can choose, but not sure how to implement that in the query variable.
    Essentially, the BEx query needs an input on username, and the current user should be able to choose from a list of usernames. That list of usernames should only be usernames to which the current user has access.
    Don't worry about the linking of current user to user names, that is taken care of in our DSO.
    What I am after, is limiting the data that comes back when the "F4 Help" type button is pressed on the variable screen.
    I can default a value in the customer exit variable using ABAP code in the i_step = 1 loop, but that doesn't seem to effect the list of data available for selection.
    Any decent ideas?
    Cheers,
    Andrew

    Hi Andrew,
    As charlie suggested go for Analysis authorization that is the simplest approach to restrict values for any object, in another way you can use following BADI for value restriction using ABAP code, refer the below link.
    [http://www.consolut.com/en/s/sap-ides-access/d/s/doc/YY-BW_BADI_F4]
    By using customer exit you can only populate default values but you will not be able to restrict F4 help values.
    Regards,
    Durgesh.

  • Hiding variable values in the input selection screen.

    Hello Experts,
    We have an authorisation relevant characteristic on which we have built a variable. We have restricted few values for this characteristic through the analysis authorisation.
    The business requirement is that these values which are maintained in the analysis authorisation should not be populated in the input selection screen for that particular variable. In other words we have to hide these values but the variable should a part of input selection screen.
    Can anyone please guide on how can we hide these variable values inspite of maintaining them in our analysis authorisations.
    Thanks..
    Best Regds,
    Suyog...

    Hi Suyog,
    Have you got any solution on this issue.  I have same kind of issue in BI7.  When running the RSRT transaction manager has to give some comments for a document option.  but the subordinates should not modify or see the comments.  Is there any way to restrict this access to certain users.  Our requirement is to either disable the document option or should not appear in the list.
    please give your inputs to find a way to solution.
    Thanks in advance.
    Regards,,
    Appala Raju

  • Not Printing the Content of Object:SOme Garbage Value on Screen

    i have made one program of Vehicle class which adds and prints the Details of Vehicles in the ArrayList but it always showa the Garbage Value in return.
    import java.util.*;
    import java.awt.*;
    import java.lang.*;
    import java.io.*;
    public class Vehicle
         private int reg_no;
         private String model_name;
         private int model_no;
         private int yr_manufacture;
         private String veh_type;
         private int price;
         private int weight;
         private String veh_status;
         public ArrayList vehicles;
         static BufferedReader keyboard = new BufferedReader (new InputStreamReader (System.in));
         public Vehicle()
              //super();          
              vehicles=new ArrayList(10);
         public Vehicle(int regno,String mo_name,int mo_no,int year_manu,String type_veh,int cost,int weight,String status)
         this.reg_no=regno;
         this.model_name=mo_name;
         this.model_no=mo_no;
         this.yr_manufacture=year_manu;      
         this.veh_type=type_veh;
         this.price=cost;
         this.weight=weight;
         this.veh_status=status;
         public void addVehicle() throws IOException
              int regno;
              String mo_name;
              int mo_no;
              int year_manu;
              String type_veh;
              int weight=0;
              int no_person;
              int cargo;
              int cost;
              String status;
              String confirm;
              int countvehicle=0;
              //start of do-while loop
              do {
                   System.out.print("Input the Vehicle Registration Number(Integer):");
                   regno=Integer.parseInt(keyboard.readLine().trim());
                   System.out.print("Input the Vehicle Make(String)eg. Mercedes,Ferrari,BMW etc: ");
                   mo_name=keyboard.readLine();
                   System.out.print("Input the Vehicle Model(Integer): ");
                   mo_no=Integer.parseInt(keyboard.readLine().trim());
                   System.out.print("Input the Vehicle Manufactured Year(Integer): ");
                   year_manu=Integer.parseInt(keyboard.readLine().trim());
                   System.out.print("Input the Vehicle Type:(CAR/BUS/TRUCK)");
                   type_veh=keyboard.readLine();
                   System.out.print("Where do u want this Vehicle to be Loaded:(Type F or I)?");
                   status =keyboard.readLine();
                        if(countvehicle>6 && status.equals("I"))
                        System.out.println("Sorry.........Ferry is Overloaded your Vehicle will be Loacally on the Island");
                        status="Island";
                        System.out.println("Vehicle in Island");
                        else
                             System.out.println("Vehicle loaded on to Ferry");
                             status="Ferry";
                   //decide the weight Factor for the Vehicle
                   if(type_veh.equals("CAR"))
                        weight=1500;                
                   else if(type_veh.equals("BUS"))      
                        System.out.print("Input the boarding No of Person in Bus: ");
                        no_person=Integer.parseInt(keyboard.readLine().trim());
                        weight=(10000+(no_person*75));// Assuming the weight of one Person is 75kg.
                   else if(type_veh.equals("TRUCK"))
                        System.out.print("Input the Truck Cargo Load: ");
                        cargo=Integer.parseInt(keyboard.readLine().trim());
                        weight=(4500+cargo);                
                   System.out.print("Input the Vehicle Price: ");
                   cost=Integer.parseInt(keyboard.readLine().trim());
                   Vehicle regVehicle= new Vehicle (regno,mo_name,mo_no,year_manu,type_veh,cost,weight,status);
                   vehicles.add(regVehicle);//Add to the Vector
                   regVehicle.printall();
                   //Saving the Added Object in File
                   /*try
                             FileOutputStream f_out = new FileOutputStream("Added.txt");                    
                             ObjectOutputStream obj_out = new ObjectOutputStream(f_out);
                             obj_out.writeObject(vehicles.add(regVehicle));
                        catch (FileNotFoundException e)
                             System.err.println("Error:"+ e.getMessage());
                        catch (IOException e)
                             System.err.println("Error:"+ e.getMessage());
                   countvehicle++;
                   System.out.print ("Add a new vehicle (y or n)? ");
                   System.out.flush();      
         confirm= keyboard.readLine();
                   } while (confirm.equals("y")); //end of do while loop
         public Vehicle getVehicle(int index) throws IOException
              return (Vehicle)vehicles.get(index);
         public int getRegNo() throws IOException
              return reg_no;               
         public Vehicle lookUpVehicle (int accnos)throws IOException
    //start of for loop
              for(int i=0;i<vehicles.size();i++)
              //checks if the information entered are correct using an if statement
              if((((Vehicle)vehicles.get(i)).getRegNo()) == accnos)
                   return ((Vehicle)vehicles.get(i));
    return null;
         public void printDetails()throws IOException
              System.out.println("--------Vehicle Details------------ ");
         for(int i=0;i<vehicles.size();i++)
              System.out.println(" " + getVehicle(i));           
         //System.out.println("\n\n");
         //return ((Vehicle)elements());*/
         /*Iterator it = vehicles.iterator();
              while (it.hasNext())
                   System.out.println(it.next());
         public void printall()
              System.out.println(reg_no);
              System.out.println(model_name);
              System.out.println(model_no);
              System.out.println(weight);
    }

    sohamdave wrote:
    what toString will contain in them.i didn't get you there.it is the whole data type-casted to String or only object type-casted to StringSimply return a String representation of the Vehicle object; frequently the String contains the member variable values, e.g.
    public String toString() {
       return model_name+" "+veh_type;
    }The List toString() method itself invokes your method when the List itself needs to be printed.
    kind regards,
    Jos

  • How to supress value '#' in variable selection screen?

    Hi gurus,
    i wonder if there is any solution for this question:
    Before query execution, when system requests variable values, in the list of available values for filtering 0calyear, allways apears value '#' and the rest of values loaded in the infocube.
    0calyear is defined as "Only values in infoprovider", and there isn't any blank value ('#') in the dataprovider. I also have executed RSRV tests for deleting unused values in dimension table.
    Regards
    As allways I'll assign points

    So, as I read, there is no way to remove this "# value" from selection list in variable screen, unless i delete this initial entry in p-table. I've tried to delete this entry (vía debug) and its OK, the # value is no more displayed. But I think that it could be dangerous, couldn't it? Anybody know what could happen if i delete this P-entrys in some infobjects?
    My question is only about variable input screen, not the results displayed (i knew that you can exclude this value in query definition).

  • Filter value for variable selection screen

    Hi & help !,
    This could be a tricky or an easy question, but it seems too hard for me !
    I'm storing version in my cube, and have a report which shows informations for the version you select (with a variable = ZVERSION01).
    ex :  Version :
    V01
    V02
    V03
    V04
    When report is executed i have my variable selection screen (for variable ZVERSION01) which give all version [V01 -> V04]. But i want users have no access to version V01 & V02.
    Variable ZVERSION01 is "single selection", i tried to filter with Default Values screen or Characteristic Restriction screen but it doesn't work.
    ex : caracterisitic restriction screen : VERSION = !V01 / !V02
          default value screen : variable VERSION = ZVERSION01
    Any idea?
    Thx

    Hi,
    In BI 7.0 there is Anaylysis authorisation RSECADMIN transaction. That you can use here or normal role concept will also do.
    What you need to do is grant authorisation to the users for V03 and 04 version only and create 'Authorisation' type variable on version in the query. (type of variable - it asks while creating the variable). This way users will only be able to see authorised versions only.
    Note you have to make version infoobject as Authorisation relevent infoobject. ( in infoobject properties).
    Let me knw if you have any doubt.
    Regards,
    Viren

  • Variable entry screen for query doesnt show selection values.

    Hi,
    I've created a query with date varibale Quarter From-To. When i execute this query, the variable entry screen pops up but when i try to select values just shows ??? and not the text.
    if i run the same query in RSRT the variable entry screen pops up but here the selection values are present for me to choose from.
    can anyone tell why the values arent showing when the query is executed.
    Thanks

    yes, it seems to be a problem with NetWeaver BI BEx Java Web runtime as it works in RSRT and web analyzer. Found a note on marketplace note 125357 - No values displayed for attributes in input help but this did not resolve issue.
    A call has been raised now as it seems to be a product fault

  • History of user Input values in variable entry screen

    Hi Experts,
    I have a small issue. I have a variable entry screen where I select values from the list. I can always see the history of variable values I input earlier when I click on the dropdown box. For example the country code displays all my previous inputs.
    Similar to the web browsers history.
    Not the same case with Fiscal Year/Period. I do the same type of selection  from the combo box for example 12.2006. I give different values again like 1.2007, 2.2007 etc and run the report several times. But it doesn't show up the history of my previous entries unlike the country code.
    Kindly help, points assured.
    Thanks,
    Raj.

    What we've done isn't pretty, and I'm hoping for a better solution.
    We've developed 3 ODSs that we've exported a full list of all attributes and their values to.  Each ODS is identical.
    We've then created an InfoSet to link the Product Cube to each of the 3 ODSs.  We can then add 3 variables to the query representing each ODSs.  Since the ODS holds over half a million attributes, we limited it to 3 since it takes 30 minutes to run.
    It's not elegant, it's not pretty, and I'm sure it's not optimal.  I'm hoping someone can describe a better solution.

  • Sort F4 values in BEX variable screen

    Hi ,
    Does anyone know how to sort F4 value help in BEX variable selection screen. This query has come up time and again in SDn and there seems to be no proper reply to this. If anyone has worked on this do let me know.
    Thanks,
    Vaishnavi

    Hi Nara,
    Kindly have a look at below thread,
    Sort the values in Bex query variable screen
    Hope this helps.
    Regards,
    Mani

  • # value in Variable Selection screen

    Hello,
              Can you please help with the below:
    How do we remove # (Not Assigned) value from Variable selection screen. When I select PLANT in one of the  report, I see # value. But there are no empty values in the cube. So, I am not sure as why I am getting this # value in Selection Screen.  The seeting in Web designer for READ MODE is "Posted Values" and  not  "Master data or Dimension Table".
    Thanks.

    have you checked what Bex properties are set in the Info Object for "Query Def. Filter Value S"
    Select Values from Info provider.
    that might solve your problem. But ensure you're not disturbing anything else by changing this property.
    Regards, Siva
    Message was edited by:
            Siva Bonam

  • How to view few values in F4 Variable screen?

    Hi All,
    According to the requirement user needs to see only few values in the variable screen.
    for example if the characterstic info object "ZPRODUCT" contains 100 values, but in the variable screen user needs to see only required 10 values, So that user can select 1 or multiple values from the list of 10 possible values.
    Could you please suggest me, how can i implement this scenario?
    Regards,
    Ravi

    Hello,
    Will this variant valid if we assign the report to a role and integrated into portal?
    The variant is working fine when i execute the report directly, but is dissappearing when i call it in portal via Role.
    Do you have any ideas on this problem?
    Regards,
    Ravi

  • How to remove Dublicate values in Variable Filter screen?

    Hi All,
    I have Master data Object, ABC, XYZ and XYZ Description, and below i have given the data for the same
    Ex  ABC    XYZ      Description
           A        1           Abc
           A        2           Bbc
           A        3           Ccd
           B       1            Abc
           B       2            Bbc
           B       3            Ccd
           C       1            Abc
           C       2            Bbc
           C       3            Ccd
    While executing the Query, we want to do Drill Down on XYZ, In Variable Filter screen we are able to see the Dublicate values, which is making confusion to endusers as which is realed to ABC i.e A or B or C?
    Regards,
    Kiran

    Hi Surendra,
    Say we have executed query using WAD, in Query when we do drill down on B, we are getting all dulicate values like Abc, Abc.
    So client is not able to find which is what.?
    Regards,
    Kiran

  • Question on WAD's "Variable Entry" screen values

    Hi,
    I've one Web Template Report contains "Variable Entry" screen.
    It has one entry for Plant.
    Also inside a report I'm having one DropDownList that is for  Plant only.
    My Requirement is:
    If I enter some "1000" as a input in Plant at Variable screen, that same "1000" should be passed inside the report. And that corresponding DropDownList should show the "1000" as the selected value.
    Now I'm getting "Show all values" as the default selected item.
    Kindly suggest to achive this requirement.
    Full points will be given.
    Thanks
    -Jay Jay

    Hi,
    1)If i didn't give any value in Variable Entry screen, in the result DropDownList shows "No data" in disabled mode.
    Ans. Since you have not checked "Display All Values", i think if you dont give any selection in the Variable Screen, the DropDown box will not be highlighted.
    2)The Selected plant Not only having Name and id, But also having all characteristics like, 1402,Pen,Business Partner: xxxxx, Distribution channel:xxx, etc.,
    Ans. Since we are reading from the Master Data, i think all these values will also be displayed.
    I still dont know if you are using WAD 3.5 or 7 ? Maybe we have better options in 7. You can try with different properties.
    Hope it helps.

  • How to replace the values in variable selection Screen urgent plz

    Hi all,
    I am having a requirement. where the user need pass the value in the variable, Here v r having option like '1' and '2' which represent 'month' and 'ytd'.
    While selecting user view as 1,2 .Now my requirement is to replace the value 1=monthly and 2=ytd while the user passing the value to avoid the confusion.
    Is it possible if so plz let me know
    Regards

    Dear Venkat.
    You please try the following steps:
    1. Say the InfoObject is 0EMPLOYEE against which you have created the variable, which user is trying to select value against, when they execute the report.
    2. Goto RSA1-> InfoObject tab-> Select InfoObject 0EMPLOYEE.
    3. Selcet the following options:
       Query Execution Filter Val. Selectn  -  'Only Posted Value for Navigation'
       Filter Value Repr. At Query Exec. -      'Selector Box Without Values'
    Please let me know if there is any more issue. Feel free to raise further concern
    Thnx,
    Sukdev K

Maybe you are looking for

  • Issue with SC item addition in PO

    Hi All, I am trying to add a SC in PO in this way - -Edit the PO (already has a service line item) -Add Item -Old shopping carts and templates - Search the SC number (it has a service line item), select it and press OK -It adds a line item in PO but

  • JTree: how not to render the "tree connecting lines"

    I have a JTree. I would like that my custom tree renderer (using windows LAF) did not paint the dotted line that connect the hierarchy nodes. setting the icon to null in the default renderer only do not paint the folder. How can I disable also the pa

  • How do I change Firefox so that when I update it doesn't block me from sending emails from my webmail?

    After updating Firefox, my webmail account doesn't let me send emails. This happens if I use Outlook Express or if I go to the webmail site in Firefox. I can send emails if I go to the webmail site in Explorer. The last time this happened someone fro

  • Problem in table cell editor

    Hai, I inserted as a dropdownkey in table, Parent node ABc is bind to table , the child node DEf bind to coloumn dropdownbyindex. i set child node singleton as false, but its giving null pointer exception. IXXXView.IABCNode iu=wdContext.nodeABC(); IX

  • Needs suggestion and help regarding my preparation

    I am looking for new job from my existing role. Here all the interviews are I am getting are scenario based and I am not able to reply most of them and as a result getting rejecting in every instance. . In my day to day work I am a part of DBA Monito