Using variables in input text fields nested in a movieclip

Hi all,
I am designing a roulette wheel type game. I am using a variable, "_global.myMoney = 0; " to keep track of the total money the player has. When I built the prototype, I used a dynamic text field on the stage with an instance name of "myMoney_text" and a variable of "_root.myMoney"
Now, I need to move this text box into a movie clip with an instance name of "winnings_mc"
When I test the movie, it looks like it showing the style sheet (font size, font, etc...) inside the dynamic text box. If I change the variable of the box to "_root.winnings_mc.myMoney" it seems to track initially, but now my updateMoney function in my main script does not work.
The function is called like this:
trace("updated money equals " + updateMoney(myMoney));
This always traces zero now, the initial value.
Any ideas?
Thanks!

if you want to use a global variable, when initializing and everytime you assign a new value, prefix the variable with _global:
_global.myMoney.
whenever you want to retrieve its value, use myMoney.
you should not be using _root.myMoney.
and as ned mentioned, you should stop using the variable associated with textfields and use the text property of your textfield to assign its text.

Similar Messages

  • Input text field nested in movie clip?

    Hello,
    Is it possible to have an input text field inside a movie
    clip in Flash Lite 2? I've tried targeting it all different ways
    and it doesn't seem to work, so I just thought I'd check with
    someone who knows.
    Thanks for your help in advance!

    Hi Nirnalatha,
    I have newly joined this forum and while going through the
    posts I came across your post which I thought I could help out. But
    I think I am too late for the reply.
    I am also into Flashlite development couple of months from
    now. Coming to your questions:
    1. Textbox problem: I am surprised to know that E70 mobiles
    (Device central list has E70-1 only) does not show input text box
    when cursor is in input box. Anyways its a good thing that you dont
    get an additonal input box. Like all J2ME applications you will be
    able to type the text inline. Infact we had reverse problem where I
    was told to create inline edit input box instead of flashlite input
    box. I think this is the mobile setting. Check the device features
    in the Adobe Device Central under Flash - Standalone player - Text
    and Fonts features. It will be mentioned whether inline text is
    allowed or not.
    2. Soft keys issues: You need to use
    fscommand2("SetSoftKeys", "Previous", "Next");
    and use a key listener in order to override the Mobile
    Softkey commands. Check out the flashlite help which clearly
    explains this.
    Hope I have given youa way to solve ur problem.

  • Losing variables using loadMovie in input Text Field

    Hello! Im trying to load an swf into another swf that has a variable in the text input field. Im a designer and not a programmer but I am using this tutorial to get started in loading a form with a variables in it.
    http://www.kirupa.com/developer/actionscript/flash_php_email.htm
    What im doing is trying to duplicate is the text box so that when i want to load new_box.swf (with a variable name "company") into main.swf into a movieclip with an instant name "loader." using this:
    on (release) {
        loadMovie ("new_box.swf", "_root.form.loader");
    I can get the movie to load but it loses the variable "company" in the process and when i send the form it doesnt work. If i just keep it in the main timeline it works but not when i loadMovie. Any info would help. Thank you.

    when you load an swf into another, the _root will refer to the root of main swf.
    try add this code to first frame of your loaded swf.
    this._lockroot = true;

  • Using variables in a text field

    I am very rusty using lingo, and I cannot find how to do this
    in any of my old projects (using director 7 if that helps you date
    this)
    I am trying to generate a random number, which becomes
    visible in a text field on the stage after the user presses a
    button.
    The text field is called "hotseat"
    on the button, I have a script which so far reads
    on mouseUp
    set grandom = random (50)
    end
    As you can see, I did not make it far. 8-)
    In an earlier part of the project, I got around this issue by
    evaluating the variable in an enormous if..then...else if
    statement. I am trying to find a less tedious way to do it
    Any help would be appreciated.
    BobR
    ps I am still using Director 7

    on mouseUp me
    set gRandom = random 50
    member("fieldMemberName").text=string(gRandom)
    end

  • Need to use variable inside a text field.

    I have a field in my database called "introduction" that contains the following:
    "My name is #myname#"
    When I output #introduction# to the webpage, I would like #myname# to show the field value - i.e. "My name is Brett".    How do I let CF know to display the variable?    Right now, I'm gettting "My name is #myname#"
    thanks!
    B.

    This is a troublesom construct that will often devole into more trouble then it is worth, but almost everybody tries it at least once.
    Anyway you can use the evaluate() function to do what you wish.
    I.E.
    <cfoutput>#evaluate(introduction)#</cfoutput>

  • Use E-commerce Attributes to create an input text field

    Hey BC Community,
    Wondering if anyone has been able to create any specialized code to use an e-commerce attribute field as a input text field?
    I have a clients that needs to capture various input fields from the customer on the Large Product view.  Unfortunately I have no more open slots (yup - used up all 4 custom slots, unit type, product meta, etc.) so I can use the "How to Set Up Special Instructions Box" idea, as I need to put the <input> fields in a Content Holder, as not all of these products have this required input fields.
    Long story short, does anyone know how to use the {tag_attributes} area of the e-commerce platform to create user input fields, which will of course, populate into the Shopping Cart as well?
    Thanks,
    Aaron

    Your the third person to ask about this today:
    Open Field Attribute

  • Using a button to check an input text field

    I am an educator and I am designing an interactive activity for my students. I created two buttons named button_B and button_G, and an input textfield named in_Text.  When a student presses button_B, the letter "B" is entered into the input text field; if a student presses button_G, the letter "G" is entered into the input text field. More than one letter entry is acceptable as a student's answer: for exmple the entry BBB, BGB within the input field is okay.  I have no trouble writing AS3 to accomplish this task, however:
    For a student's solution to the input text field to be correct, it has to contain the four values BBB, GGG, BGB, and GBG in any order. I created an array named solution_S with these values. I also have an enter the solution button named enter_btn. The student can check their solution by pressing the enter_btn button; if the input textfield is correct, the quiz moves on to the next frame in my timeline; if it is incorrect, it moves to a different frame in my timeline. How would I enter this actionscript to accomplish this? Thanks much!

    var check:Boolean=false;
    for(var i:uint=0;i<solution_S.length;i++)
      if( solution_S[i].toString()==in_Text.Text)
    check=true;}
    if(check)
    gotoAndStop(...);
    else
    gotoAndStop(...);

  • How Can i send the data entered in Input text fields to e-mail?

    Iam Jennifer, Iam having a doubt in Flash, I hope that you
    are going to solve my problem, Iam taking 3 Static text fields as
    Name, Age and Country and besides each and every static text fields
    i have taken 3 input text fields with different instance names,
    when i enter my Name, Age and Country details in the input text
    fields and after entering those details if user clicks the submit
    button the data should be send to some mail address, is it possible
    Im not so good at action script, but i hope that any one can
    help me...
    Iam attaching the action script code also, please find the
    attachment below, the actions are given to button.
    Attach Code
    Btn.onPress = function ()
    mail_lv = new LoadVars();
    mail_lv.dummy1 = "";
    mail_lv.subject = "Details";
    mail_lv.message = "hi";
    mail_lv.username = "name_txt".text;
    mail_lv.age = "age_txt".text;
    mail_lv.country = "country_txt".text;
    mail_lv.onLoad = function ()
    trace("Sent successfully...");
    trace("mail_lv.subject = " + mail_lv.subject);
    trace("mail_lv.message = " + mail_lv.message);
    mail_lv.send("mailto:[email protected]", "_blank");

    The names of your variables, "name_txt", for instance, should
    NOT have quotes around them. Use:
    mail_lv.username = name_txt.text;
    mail_lv.age = age_txt.text;
    mail_lv.country = country_txt.text;

  • How to allow input text field to accept more than one "specific" answer.

    Hi,
    I am working for something and trying to create a type-box-based quiz for one of my classes, where an input text field can change it's border color if 2 or more words from an accepted word list is inputed.
    For example, Say a list has possible answers: R,G, B, Y for the question "Name 2 colors".
    I want to create an input text box where the border of the box will change color if any 2 letters (in the above list) are entered into it.
    I've tried setting up a variable NumberSuccesses and setting it so that the number increases by 1 for each letter entered e.g.
    if (Ex.text == "R");
    NumSuc = NumSuc +1; // the var NumSuc has already been defined earlier in the code
    If (Ex.text ''G")
    NumSuc = NumSuc + 1
    if (NumSuc == 2)
    Ex.borderColor = 0x0000FF
    but that didn't work.. and I tried doing it with another function which I use for multiple input boxes like if there were boxes A, B, C. I could set up a general function where if the correct answers were entered into A, B, an C respectively, only then will say, a checkmark show up using a
    EnableCheckmark (); type function. Not sure how to do it if it's the same text input box though. Also just tried adding it into the same function re.
    If (Ex.text == "R" + "G")
    Ex.borderColor = 0x0000FF
    .. Does anyone know what else I can do?

    The solution of Nishu with Evaluation Logic:
    //These Are the Possible Answers
    var solutions:Array = new Array("A","B","C","D");
    function testInput(_inputText:String):Boolean
        //the delimiter could also be a comma, here it is a space
        var inputStringArray:Array = _inputText.split(" ");
        var counter:Number = 0;
        for (var i:int=0; i<inputStringArray.length; i++)
            for (var j:int=0; j<solutions.length; j++)
                if (inputStringArray[i]== solutions[j])
                    counter++;
        if (counter >=2)
            trace("true");
            return true;
        else
            trace("false");
            return false;
    //Textfield with name input_txt on stage
    input_txt.addEventListener(TextEvent.TEXT_INPUT, answerTxtInp);
    // The function that will be called by the event listener
    function answerTxtInp(txtEvent:TextEvent):void
         // depending on the possible answers of characters, change the border  color
         if(testInput(input_txt.text)){
             input_txt.borderColor = 0xFF0000;
         else{
             input_txt.borderColor = 0x000000;

  • Calculations in input text fields

    Hello,
    I'm making an engineering game. Students need to input force
    equations and to check the equation is right it has to add up to
    zero. There are two input text fields, one the student sees with
    the force values expressed in letters like HA, VA, and MA, and one
    hidden field where the values are expressed as numbers. They also
    input operators as part of the equation. I need to make it so when
    they click a button to check if their equation is correct, the
    contents of the text field are calculated to see if the equation
    adds up to zero. I know you can express the contents as a number
    with say Number (this.my_hidden_text.text), but how do I get the
    operators in the equation, which are +, -, *, /, (, ), and ^ to
    mean something and do what they're supposed to?
    Any assistance would be most welcome.
    Thank you for your time,
    Beatie3

    Thank you for your quick response. Would you mind explaining
    more how to use the strings method to find the operators, please?
    It's a bit messy but my code currently looks like this:
    stop();
    //hide stuff
    this.tickb._visible = false;
    this.crossb._visible = false;
    //declare the variables
    var check1:Number = parseInt(display_secret.text);
    var display1 = "";
    var display_secret = "";
    //function for the calculation
    function onCalculate() {
    if(this.display_secret = 0){
    this._parent.tickb._visible = true;
    this._parent.crossb._visible = false;
    } else {
    this._parent.crossb._visible = true;
    this._parent.tickb._visible = false;
    check02_btn.onRelease = function():Void {
    trace(display1);
    trace(check1);
    if(check1 == 0){
    this._parent.tickb._visible = true;
    this._parent.crossb._visible = false;
    } else {
    this._parent.crossb._visible = true;
    this._parent.tickb._visible = false;
    //load external images
    pic04_container.loadMovie("fig_3_1a.gif");
    //takes you back to the previous scene
    back02_btn.onRelease = function() {
    gotoAndStop("Scene 2", 1);
    //Takes you home
    home02_btn.onRelease = function() {
    gotoAndStop("Scene 1", 1);
    //moves to the next scene
    next02_btn.onRelease = function() {
    gotoAndStop("Scene 3a", 1);
    //calculator buttons workings
    left_btn.onRelease = function() {
    display1 = display1+ "(";
    display_secret = display_secret + "(";
    plus_btn.onRelease = function() {
    display1 = display1+"+";
    display_secret = display_secret +"+";
    times_btn.onRelease = function() {
    display1 = display1+"*";
    display_secret = display_secret +"*";
    right_btn.onRelease = function() {
    display1 = display1+")";
    display_secret = display_secret +")";
    minus_btn.onRelease = function() {
    display1 = display1+"-";
    display_secret = display_secret +"-";
    peek_btn.onRelease = function() {
    display1 = display1+"^";
    display_secret = display_secret +"^";
    slash_btn.onRelease = function() {
    display1 = display1+"/";
    display_secret = display_secret +"/";
    ha_btn.onRelease = function() {
    display1 = display1+"HA";
    display_secret = display_secret +"108";
    va_btn.onRelease = function() {
    display1 = display1+"VA";
    display_secret = display_secret +"0";
    ma_btn.onRelease = function() {
    display1 = display1+"MA";
    display_secret = display_secret +"1296";
    c_btn.onRelease = function() {
    display1 = "";
    display_secret = "";
    vd_btn.onRelease = function() {
    display1 = display1+"VD";
    display_secret = display_secret +"0";
    w_btn.onRelease = function() {
    display1 = display1+"w";
    display_secret = display_secret +"12";
    a_btn.onRelease = function() {
    display1 = display1+"a";
    display_secret = display_secret +"18";
    b_btn.onRelease = function() {
    display1 = display1+"b";
    display_secret = display_secret +"9";
    thank you very much for your help,
    Beatie3

  • Error checking input text fields.

    Hi
    Just wondering where I find a list of what can be error checked in input text fields?
    I'm looking for things like...
    - checking that letters and not numbers are entered
    - checking that an entered number is in a certain range
    etc...
    Thanks guys
    Shaun

    To restrict input for a text field, use the following AS3 codes:
    myInput.restrict = "A-Z, a-z, ., ,'"; //myInput is the instance name of your text area
    To check the range of the numbers, use the following code:
    myInput.restrict = "0-9";
    myInput.maxChars = 3;
    myBtn.addEventListener(MouseEvent.CLICK, chk);
    function chk(e:MouseEvent):void
        var myString:String = myInput.text;
        var i:Number = Number(myString); //Converting the string to a number variable
        var max:Number = 100; //Maximum range
        var min:Number = 30; //Minimum range
        if (i < max && i > min) //Condition to indicate the range
            trace("Within range");
        else
            trace("Out of range");
    Hope this helps.

  • Changing the cursor position in an input text field and Removing leading numeric zeros

    Flash8 - AS2
    It's good to be back after all these years and thanks for the faithfull folks like kglad, Ned Murphy, Rothrock and all the others who give so much of themselves to make this forum a success!
    My Problem:
    I have an input text field that is named in the properties box as 'numberOfKids'.
    When the program is executed, and a delete or backspace is pressed the input textfield goes blank
    and any calculations that use 'numberOfKids' shows NaN.
    I have trapped the NaN and undefined so that a numeric 0 shows up instead of a blank.
    There are two problems:
    First problem:
      The cursor is to the left of the zero, so the first number inputted by the user is 10x larger than what they want.  0 becomes 10.
    Question:  How do I get the cursor to move to the right of the 0?
    Second Problem: 
      When I manually move the cursor to the right of the 0 and input a number, say 4, it shows up as 04.
    Question 2:  How do I delete the leading numeric zero in the input textfield?
    Thanks for the help.
    Here's the code I am using:
    calculateChildWeight = function () {
    if (isNaN(numberOfKids)) {
      numberOfKids = 0;
    if ((numberOfKids) == undefined) {
      numberOfKids = 0;
    if (numberOfKids>=0 && numberOfKids<=137) {
      numberOfKids = numberOfKids;
    } else {
      numberOfKids = 0;
    if (isNaN(adjustedChildWeight)) {
      adjustedChildWeight = 0;
    if ((adjustedChildWeight)=undefined) {
      adjustedChildWeight = 0;
    adjustedChildWeight = Number(numberOfKids*(-100));
    //numberOfKids.setSelection(numberOfKids.length, numberOfKids.length);
    //if (numberOfKids.length=2 && numberOfKids<10) {
      // remove the first character or leading zero
    //  numberOfKids = numberOfKids;

    Thanks Rothrock for being so  patient.
    I'm lost!
    I go back to a brand new flash file to try and implement the textfields as a stand alone test document.  I have lost the concept I think.
    I created on the stage of a blank .fla file  4 text fields, 2 input and 2 dynamic.  I gave them an instance name in the properties box.  I use this instance name.text to find the value of the field.  I use the parseInt to put that value into a numeric variable for calculation.  The results are put to the appropriate textfield.
    All seems to work except one of my input text fields.   I use the value of this field  to calculate:
    revisedValue = parseInt(numberOfKids.text);
    revisedValue = revisedValue*(-100);
    The problem now is that if the numberic '2' is inputted into numberOfKids, numberOfKids.text shows up as 200 and a trace shows up as '2NaN'.
    Flash is logical and consistant, I must conform to it but I'm in the dark.
    (( Concerning the forum:  If I click on helpful, which your posts have been in directing me, does that blank out the possibility of selecting the correct answer in the future???))

  • Events, Variables and Input Text

    Hi,
    I'm not new to Flash or AS3 but I've never really made anything too complex. I'm making a Flash game and getting to know Variables for the first time. The tutorials online confuse me because they're mostly geared towards AS2 and I bought this book (which is awesome) Game Design with Flash, but it only covers variables involving numbers and a guessing game.
    All I want right now is a field to enter your name and below, whatever the user has entered, will show up in a Dynamic text field that will go, "Oh, so your name is (whatever)?" I understand that the information that the user types into the Input Text Field has to be entered in somehow, so do I need to make a function to make it work with a button? Right now I can type in the Input but nothing shows up in the Dynamic text field.
    I borrowed an AS3 example from elsewhere on this forum and added my own Instance names. I also wanted to know, how can I call up the user's name throughout the game? Just calling that same variable up?
    Here is what I have:
    stop();
    var myName:String;
    myName = userName.text;
    confirm_txt.text = "So your name is "+ myName;
    I get no errors but the Dynamic text box isn't showing what I'm typing... How do I go about "entering" the name so it shows up and I can call it up anytime throughout the game?
    Thank you so much in advance for any help offered!

    "It sounds like the same concept of a class, so if a class is a pot, everything in it can be what pertains to the pot."
    Well, there one important thing you need to keep in mind when dealing with Flash. There are classes and display lists. Classes have properties and methods and display lists have children.
    For example,
    var myClip:MovieClip = new MovieClip();
    var mySprite:Sprite = new Sprite();
    myClip.addChild(mySprite);
    Now, this is important:
    you can
    trace(myClip.x) - because is x a documented property of MovieClip class
    BUT
    you cannot
    trace(myClip.mySprite) because although mySprite is a child of myClip, IT IS NOT A PROPERTY of myClip as it is not a property of MovieClip class.
    In other words, display list of a DisplayObjectContainer is sort of independent property/feature that doesn't fall into conventional realm of class capabilties. This special feature is addressed and children are manipulated in a special, peculiar to Flash manner only.
    Using pot analogy, display list is a space where you can put DisplayObjects. Objects that are put into this space do not belong to the instnace but just temporarily occupy it.
    Here is a little game (let's name it "move vegies between pots") that may help you to get feel of parent/child relationships. Click on vegies and observe how they behave relative to their parents:
    import flash.display.Graphics;
    import flash.display.MovieClip;
    import flash.display.Sprite;
    import flash.events.MouseEvent;
    import flash.text.TextField;
    var apple:MovieClip = vegie("apple");
    var beet:MovieClip = vegie("beet");
    var onion:MovieClip = vegie("onion");
    var pear:MovieClip = vegie("pear");
    var bigPot:Sprite = makePot(250, 250);
    var mediumPot:Sprite = makePot(200, 200);
    var smallPot:Sprite = makePot(150, 150);
    addChild(bigPot);
    addChild(mediumPot);
    addChild(smallPot);
    bigPot.x = 20;
    bigPot.y = 20;
    mediumPot.x = bigPot.x + bigPot.width + 50;
    mediumPot.y = bigPot.y + bigPot.height - mediumPot.height;
    smallPot.x = mediumPot.x + mediumPot.width + 50;
    smallPot.y = bigPot.y + bigPot.height - smallPot.height;
    var vegies:Array = [apple, beet, onion, pear];
    var pots:Array = [bigPot, mediumPot, smallPot];
    putVegies();
    * Places vegies into big pot
    function putVegies():void {
         for each(var veg:MovieClip in  vegies) {
              bigPot.addChild(veg);
              // bigPot has index 0 in pots Array
              veg.parentIndex = 0;
              veg.mouseChildren = false;
              veg.buttonMode = veg.useHandCursor = true;
              veg.x = veg.width + Math.random() * (bigPot.width - veg.width * 3);
              veg.y = veg.height + Math.random() * (bigPot.height - veg.height * 3);
              veg.addEventListener(MouseEvent.CLICK, onClick);
    * listener to clicking on vegies
    * chooses a new random parent
    * @param     e
    function onClick(e:MouseEvent):void {
         var target:MovieClip = e.currentTarget as MovieClip;
         // new parent random index
         var parentIndex:int = Math.round(Math.random() * (pots.length - 1));
         var newParent:Sprite = pots[parentIndex];
         newParent.addChild(target);
         target.x = target.width + Math.random() * (newParent.width - target.width * 3);
         target.y = target.height + Math.random() * (newParent.height - target.height * 3);
    * Makes vegie
    * @param     text - vegie label
    * @return
    function vegie(text:String):MovieClip {
         var label:TextField = new TextField();
         label.autoSize = "left";
         label.text = text;
         label.x = - label.width / 2;
         label.y = - label.height / 2;
         var s:MovieClip = new MovieClip();
         var g:Graphics = s.graphics;
         g.beginFill(0xffffff * Math.random());
         g.drawCircle(0, 0, (label.width / 2) + 5);
         g.endFill();
         s.addChild(label);
         return s;
    * Draws pot outline
    * @param     w
    * @param     h
    * @return
    function makePot(w:Number, h:Number):Sprite {
         var edge:Number = 10;
         var s:Sprite = new Sprite();
         var g:Graphics = s.graphics;
         g.lineStyle(2, 0x000000);
         g.moveTo(0, 0);
         g.lineTo(w, 0);
         g.lineTo(w - edge, edge);
         g.lineTo(w - edge, h - edge);
         g.curveTo(w - edge, h, w - edge * 2, h);
         g.lineTo(edge * 2, h);
         g.curveTo(edge, h, edge, h - edge );
         g.lineTo(edge, edge);
         g.lineTo(0, 0);
         return s;

  • How can i validate current row input text field like required.

    Hi All,
    jdev 11.1.2.1.0
    in my use case i have drag drop one viewobject as a adf table. and in table i have also add one extra input text field which is not based on
    vo.
    now i want to validate current row input text field not null when i commit row.
    but when i using required property true. it worked for all row in table. problem is that i want only current row input text field validate not all
    thanks,
    Manish

    When the user tries commit the data by clicking on the button -- For that button, have the logic in the actionlistener method to check if the additional input field is NULL or NOT.
    If it is NULL, show an error message using FacesContext.addMessage() API.
    Thanks,
    Navaneeth

  • How to add comma and dollar sign that places automatically in input text field

    I have this ROI calculator which has several text input field
    on frame one with calculate and reset buttons. When a user enters
    numerical values in the text field, and jumping to the next field,
    I want the input text filed be updated with dollar sign and with
    comma.
    Next when they hit "ENTER" key or click "Calculate ROI"
    button, all the input text fields on frame 2 as a result of
    calculations be updated with dollar sign and comma. I also need
    that once the comma sign is assigned then it would not add any more
    even if user presses the button. Can someone help me in
    this?

    If you want to Set the Comma when you Switch to next Text
    Field
    Use onKillFocus / onSetFocus Functions.
    to restrict multiple comma, Before Adding comma use
    myText.text =
    myText.text.split(",").join("").split("$").join("");
    So this will give you the value without Comma and Dollar
    symbol, Now add the Comma and dollar.
    or you need to use a Flag for onChange Event.

Maybe you are looking for

  • " Enter valid code [IGE1.tem code][line1036] application-defined or object defined error65171 "

    Hello All, I tried to Import Goods Issue in SAP B1, but I got Error as  below " Enter valid code [IGE1.tem code][line1036] application-defined or object defined error65171 " Anyone please suggest me what would be the cause of this error. Regards, Hit

  • Biztalk 2013 to pick files from webdav

    Hi Guys, Can anyone let me know whether Biztalk 2013 will work with webdav to pick files? I am thinking to use webdav and host an endpoint in IIS to store the files created by different applications. The reason would be just to avoid sharing of windo

  • Third Party Plug-Ins have disappeared on upgrade from CS4 to CS5

    Hello Folks, I have recently upgraded from PS CS4 to CS5 and now, on looking through the Plug-Ins available fromthe Menu - Help - About Plug-In --, I see that my 3rd Party Plug-Ins (NOT the Plug-Ins which had previously been installed automatically b

  • E-Recruiting Request Questionnaire

    We are exploring the Request Questionnarie functionlaity with SAP E-Recruiting.  We are currently on E-Recruiting 6 with Enhancement Pack 3 SP level 5 with Netweaver 2004s (7.0) (support pack stack 20). There is an e-mail that goes out when a recruit

  • Dimension with more duplicate keys

    Hi guys, I'm a little bit on trouble with a dimension. In this case I got something like: Country, Contract, State, Code (USA) Limited1  Arizona 44707 (UK) Limited IT 2011-2013 Arizona 44707 (UK) Limited IT 2010-2011 Arizona 44707 I can put country a