BXe iView:-Variant value getting extra character by default

Hi All,
New to BI. I am having one scenario with me.
We have one BEx iView with four mandatory variants. User trying to select value for the first three variants and checking the value, but when he is entering value for the fourth variant and checking, few characters are getting add by own i.e. u201CAMu201D character is adding in the front of entered values. For example u201CAM99u201D
But when we are trying to run from backend (BI) is not happening, no extra character is coming for the fourth variant.
In the both case we are getting out put, but when we are trying from portal why extra character is getting added.
Could you please help me on this.
Deepak!!!

Hi All,
Here variants mean variables for selection criteria.
Please share your kind input on the issue.
Deepak!!!

Similar Messages

  • Where do variant values get stored in SAP?

    Hello
    This is basically an ABAP question, but I am still putting it here. If we have a custom report (program) in R.3, and a user creates multiple variants for that program, is there a table which stores the values that he has entered for that variant. I have read several posts and have searched on the web and have found that:
    1. Most important tables for variants: VARID, VARI, VARIS, TVARVC. The table VARI has a field CLUSTD where the variant contents are stored are in encoded format.
    2. And the FM which does the conversion (behind-the-scenes): RS_VARIANT_CONTENTS.
    But is there an a proper database table that store the values (as there are) in SAP?
    Thanks,
    Srini.

    Hello,
    I think you can find the values in different tables like: TVARV, TVARVC, VARI, VARICON, VARICONCI, VARID, VARID_CI, VARIDESC, VARIDESCCI, VARINUM, VARIS, VARIS_CI, VARIT, VARIT_CI and VARI.
    I hope it helps!
    Thanks.
    Beatriz.

  • How to get the iView Property value in NWDS

    Hi all,
    I my requirement I need to get some of the iView Property Value in NWDS.
    Can anybody help me for this?
    Helpful answers will appreciate.
    Thanks & regards,
    Kathiresan R

    Steps
    1. Define the properties in portalapp.xml
    <component-profile>
    <property name="user" value="asterix">
      <property name="personalization" value="dialog"/>
      <property name="plainDescription" value="User name"/>
    </property>
    </component-profile>
    2. Within the doContent(request is a signature in doContent) method of your AbstractPortalComponent please
    add the following code to access the property:
    public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
        IPortalComponentProfile profile = request.getComponentContext().getProfile();
        String Name = profile.getProperty("user");

  • Variant must get the current date from the system.

    Hi All,
    I really appreciate your help on below please;
    I need to create a variant and schedule a report program once a day.
    But variant must get the current date from the system (sy-datum).
    The program should run for the values in the variant in schedule job run;
    Can I do this using SAP variants (for Report Program) and schedule the job.
    Many thanks
    Iver

    Standard functionality.
    http://help.sap.com/saphelp_nw70/helpdata/en/c0/98039be58611d194cc00a0c94260a5/frameset.htm
    Thomas

  • Variant Values during Run Time

    Hi
      I am running a report as background job with a variant "VarOne"  which has the following values
    1. Duration Interval  - value -  60
    2. Program ID.       - value - 00123
    3. Current Date ( Value not saved while creating variant)
    4. Current Time ( Value not saved while creating variant)
    While the report is scheduled as background job with a particular variant value.. Is there a table that stores all the VarOne variant values....I want to know the values of 3 and 4. I know that looking at the job scheduling time I can get approximate values..But I need to know a place( like a table) where these variant values are stored.
    I have checked the following tables but didnt find the runtime values
    VARID
    VARIT
    TRVAR
    TRVARVC
    TRVARV
    VARICONCI
    VARICON
    Hope My question is clear
    Thank you

    VARCH is much the same as any editor (e.g. SE38 or SA38.. or where ever you can display development objects from and choose "variants" from the "Other Objects" menu).
    If you can display the variant from anywhere, but not from VARCH, then your concept seems to be a bit strange...
    Note that from VARCH you can display and also maintain the variants (if authorized), but you cannot execute the programs (via their variants). That is what it is designed to do, particularly in production systems...
    If your program concept in intact and correctly secured, then I recommend requesting standard VARCH to fullfill your requirement.
    Your security folks should give you the correct authority to do your job, and not rely on silly tcodes to secure the variants...
    Cheers,
    Julius
    Edited by: Julius Bussche on Jan 3, 2009 10:21 PM

  • Variants Values in BI 7.0 New Reporting Tools

    Hello SDN,
    We had an OSS Message (204968) to address the issue where we are NOT able to see query "predefined" Variants values in new reporting tools BI 7.0 BEx Analyzer.
    SAP support has responded saying they are able to see the Variants values.  We've tried again but I still CANNOT see the Variants values, could this be an authorization issue?
    If yes, do you know if there are any new authorizations for query components and its access? 
    Many thanks for any helps and a highest point will be rewarded.
    Best regards,
    Niki

    So as part of your upgrade to 7.0 -
    Someone ran RSR_VARIANT_XPRA which converts Basis variants to new BW Variant tables - For use by 3.5 tools.
    Table Name                     Short text 
    RSRVARIANT                     Variant Values                           
    RSRVARIANTDIR                  Directory of Variants for Queries and Selection Objects
    RSRVARIANTTXT                  Texts for Variants                       
    RSRVARIANTVIEW                 Variant Header and Texts  
    Then RSR_MIGRATE_VARIANTS should have been run to convert the converted 3.5 variants to the to the new 7.0 variant tables?                                                                               
    Table Name                     Short text                                                                               
    RSRPARAMETRIZA                 Parametrization for a query, workbook, webapplication, pla
    RSRPARAMETRIZAT                Text of parametrizations 
    I believe by default - all variants get converted as Global.
    So if you look at the RSRPARAMETRZA* tables, do you have variants appearing in them or not?

  • Removing extra character

    Hello,
    I have a textbox and a button in flash.  I send data to java server by entering data into the textbox.  Firsttime the number of characters i am receiving are correct, from the second time onwards there is an extra character.  i.e if i type 1 character it is showing 2.  Can someone tell me how do i remove it.
    below is the code,
    function msgGO() {
        if (inputMsg.htmlText != "") {
            mySocket.send(inputMsg.htmlText+"\n");
            inputMsg.htmlText = "";
    pushMsg.onRelease = function() {
        msgGO();
    Thanks.

    Thanks for your reply.
    I observerd that even if i directly send the data without entering into the textbox i am getting same result.
    mySocket.send("1");
    mySocket.send("3");
    In java, for the first data it shows number of characters (strlen) as 1.  for the second data it is showing 2.
    The character i am not able to know, there is a blankspace  towards the left of the character.
    Thanks

  • Getting extra charge from bank during Automatic Payment Program

    Hi All,
    Can anyone pls tell me why Getting extra charge from bank during Automatic Payment Program.
    Regards,
    Ajay

    Dear Diwakar,
    It is certainly possible to create a transaction variant in SHD0 for the transaction FBZ0. Create a scrteen variant like ZFBZ0. I have done and tested the same and its working fine. When you are creating the screen variant, system issues certain warning messages when you are out of the reallocated option. Just ignore them and create the screen variant.
    Once you save the variant, you have to assign it to a package, 6-7 times the system will prompt for this depending on the number of screens in the transaction.
    Assign the screen variant ZFBZ0 to FBZ0 transaction using SHD0.
    Please let me know if you need further help.
    Thanks
    Aravind

  • Im getting the character '*' in my Query

    Hi:
    I made a Query of Net value shipment for a company per month.  When I execute the Query I get the character ''. I Check my Infocube and it has the indormation wright. When I see the query at year/week it result that two weeks has numbers but other two has again ''.
    Any idea why is that.
    Points for helpfull answers.

    Hi,
    This happens because key figure, e.g. Net Value in those two weeks consists of multiple currencies, perhaps $USD and Euro.
    What you can do now is to use Currency Translation in the key figure's property and choose a proper Currency Conversion Key for the key figure. This will translate foreign currencies into desired local currency.
    Best wishes,
    Syuhair.

  • Excise Duty values getting inventoriesed in MIGO but reversed in MIRO

    Dear Experts,
    I am using Taxinn procedure and while creating the PO the excise duty values are calculated properly but when I am posting the MIGO the stock value is posted along with the Excise duties. The excise invoice is captured & posted in MIGO itself and the values are posted correctly.
    While posting the MIRO the excess amount is posted at the time of MIGO is posted back to the material. How do i fix this??
    thanks in advance
    Suresh

    Hi Jayakantan/Ashok
    thanks for the replies
    I am using Taxinn procedure and the conditions are flowing from that procedure. In the purchase order i am giving the condition types only for basic price and freight.
    As far as i know, the account key determines whether the condition type is cenvatable or to be inventorised. If i give the account key as NVV the values get inventorised. If i give the other account keys and assign the gl accounts to that account key that value will be posted to that gl account and not inventorised. Correct me if i am wrong or is there any other settings which will define so.
    I have done the following settings as well for the condition types
    spro>log gnrl>tax on goods mvmt>india>basic settings>maintain cond typs>classify cond types
    and one more similar setting in the same path.
    do i need to do anything further?
    Suresh

  • Function Module to Lock a Variant or see variant values in Disabled mode?

    Hi,
    I have a requirement in which I create some jobs which takes some variant as one of the input.
    My Problem is once i have executed the job successfully in SM37, I need to see the variant values. I know there is a function Module RS_VARIANT_CHANGE with which we can see the values of variant.
    But i dont want the user to modify those values since the job has already been executed. I just want to see them.
    Can anyone tell me is there any FM to see just the variant values in disabled mode or the the variant is locked so that the user cant modify it?

    Hi,
    I'm not sure if you really want to create a program to see the variant values?
    Because you can see the values by simply going to SM37, select the job, display list of steps, position cursor and use menu Goto -> Variant
    Moreover, (I don't know if it may answer your requirement) when you schedule a job with a report which outputs an ABAP list, you may define in the print parameters the option "Selection cover sheet" to print the values of selection screen parameters/select-options.
    Sandra

  • How to get each character in a string

    as in 'C' we use arrays to get each character of a string stored in array.how can we get each character of a string stored in a variable.

    Hi,
    For that you need to do offset.
    for example one variable called VAR contains string 'HUMERAH'.
    if you want each character of that string then you need to decalre as many variable as the number of string.
    like
    data : var1(1),
             var2(1),
    var(3),
    var(4).
    var1 = var+(1).
    var2 = var+1(1).
    var3 = var+2(1).
    var4 = var+3(1).
    now var1,var2,var3,var4. contains the single characters.
    Regards,
    Guru
    mark helpful answers

  • How to get one character at a specified index and put it in a mutablestring

    I am new in cocoa programing and i am stock.
    I am trying to get a character in a NSString and i want to put it in a NSMutableString with the command appendString.
    For now it's not working. I try with different approach but i didn't find the right way to do that. It's probably very simple but i just don't see hit.
    I try with characterAtIndex and with getCharater. And now i am thinking to use charcaterRange but i don't know how to articulate an NSRange.
    Maybe somebody could show an example of of what i have to do to do that.
    I put this <<<<<<<<<<<<<<<< to show where in my code it's not working
    Thanks a lot for your help it's very appreciate.
    *The header:*
    #import <Cocoa/Cocoa.h>
    @interface Controleur : NSObject
    NSMutableArray *touche_presser;
    NSMutableArray *typedevariable;
    NSMutableString *formule;
    int calculencours;
    int i;
    int n;
    IBOutlet NSTextField *affichagede_laformule;
    IBOutlet NSTextField *informationdesupport;
    -(void) awakeFromNib;
    -(IBAction)touche_clear:(id)sender;
    -(IBAction)touche_0:(id)sender;
    -(IBAction)touche_1:(id)sender;
    -(IBAction)touche_2:(id)sender;
    -(IBAction)touche_3:(id)sender;
    -(IBAction)touche_4:(id)sender;
    -(IBAction)touche_5:(id)sender;
    -(IBAction)touche_6:(id)sender;
    -(IBAction)touche_7:(id)sender;
    -(IBAction)touche_8:(id)sender;
    -(IBAction)touche_9:(id)sender;
    -(IBAction)touche_plus:(id)sender;
    -(IBAction)touche_moins:(id)sender;
    -(IBAction)touche_multiplier:(id)sender;
    -(IBAction)touche_diviser:(id)sender;
    -(IBAction)touche_egale:(id)sender;
    -(NSString *) constructionde_laformule;
    -(NSNumber *) analysed_unerafale: (NSString *) elementd_uneformule;
    @end
    *The Methode:*
    -(NSNumber *) analysed_unerafale: (NSString *) elementd_uneformule;
    // Ici, j'analyse une partie de la formule et retourne le résultat (nsnumber)
    // dans la variable resultatde_l_analyse_de_larafale
    int ia;
    int nombrede_caractere_dans_element_de_laformule;
    NSNumber *resultat_actuel;
    resultat_actuel = [[NSNumber alloc]initWithInt:0];
    NSNumber *resultat_precedant;
    resultat_precedant = [[NSNumber alloc]initWithInt:0];
    NSNumber *resultatde_l_analyse_de_larafale;
    resultatde_l_analyse_de_larafale = [[NSNumber alloc]init];
    NSMutableString *caractere_x;
    caractere_x = [[NSMutableString alloc]init];
    NSMutableString *operateur;
    operateur = [[NSMutableString alloc]init];
    nombrede_caractere_dans_element_de_laformule = [elementd_uneformule length];
    ia = 0;
    for (n=1; n <= nombrede_caractere_dans_element_de_laformule; n = n+1)
    ia++;
    char y = [elementd_uneformule characterAtIndex:ia]; <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< here
    NSString *x = [[NSString alloc] initWithUTF8String: y]; //[NSString stringWithFormat:@"%@", y]; <<<<<<<<<<<<< and here
    [caractere_x setString:@""];
    [caractere_x appendString:x];
    return resultatde_l_analyse_de_larafale;
    @end
    P.S.
    Excuse my bad english i am french speaking

    I also couldn't figure out what your code is doing, but hope this sample code will help:
    NSString *firstString = @"Canada";
    NSMutableString *secondString = [NSMutableString stringWithCapacity:10];
    int index = random() % [firstString length];
    // get a substring of length 1 at the index position of firstString
    NSString *oneCharString = [firstString substringWithRange:NSMakeRange(index, 1)];
    // append the single-character substring to secondString:
    [secondString appendString:oneCharString];
    NSLog(@"firstString=%@ index=%d secondString=%@", firstString, index, secondString);
    I was testing the above when your first reply was posted. It uses the same method Et suggested, but I didn't want to just throw it away.

  • Getting one character at a certain position from a string array

    Hi, i'm new at learning java, but have strong experience at C++ and asm. How would i get one character at a certain positon from a string array.
    for example:
    String Phrases[] = {"To be or not to be, that is the question","The Simpsons","The Mole","Terminator three rise of the machines","The matrix"};
    that is my string array above.
    lets say i wanted to get the first character from the first element of the array which is "T", how would i get this

    ok well that didn't work, but i found getChars function can do what i want. One problem, how do i check the contents of char array defined as char Inchar[];

  • How to move the value from a character field to numeric or packed decimal

    Hi,
    can anyone explain me on how to move the value from a character field to numeric or packed decimal.
    Please help me on this. Thanks...
    Regards,
    Rose.

    Hi ,
    if you use keyword MOVE u may loose the decimal and thoussan separator and if u don't want to loose them just call the FM ..HRCM_STRING_AMOUNT_CONVERT.
    i doubt wherther it is HRCM or HCRM just try using *
    this will suit ur requirement.
    Regards,
    KK

Maybe you are looking for

  • Use a DMG for Time Machine Disk?

    Hello everyone, After extensive googling, it seems at first that Time Machine will not allow you to use a mounted disk image for a backup drive. I was wondering if there was a way to rig it up so that it would work, somehow disguising the mounted ima

  • How should I find out the stuff that keeps freezing the display?

    Hi, I am using gnome-shell from testing repo on a laptop computer. The system(I do not know which part) has frozen several times in a same way. The whole display just suddenly stops reacting while I am scrolling down the web page in Chrome, opening a

  • How do I use Apple Backup with my new MacBook Pro?

    I've been using Apple's Backup app from the old days of Mobile Me (remember when we had to pay to use Apple's cloud?). I've just bought a MacBook Pro and I transferred everything from my old iMac (early 2008 running Mavericks). Everything works fine,

  • Importing mp4 into Flash 8, converting to FLV

    I just finished taking a Flash Video class where I understood I could import an MP4 and convert in to an FLV using encoding tools that come with Flash Professional 8. However, I opened a new FLA just now and tried to import an MP4 (File -> Import Vid

  • Problem with cheking a # value in IF statement

    Hi ,         I have to check value of val_tab  = node->get_value( ).      do . end do . if my val_tab contains '#' or '##' a DO statement below it shoul not get executed . i tried IF with string operations but its not working . it does not check it f