_xmouse and _ymouse not assigning to variable

I set up the "if" statement to always be true so I could
concentrate on xLoc. If you look at the last three lines of my
code, the
trace(xLoc) has the value from the first line of code and not
the value 2 lines up. I cannot assign _xmouse to XLoc when the "if"
statement is true and I do not know why.

you're assigning xLoc twice in that code on line 1 and the 2
lines above your trace() function and they are both going to assign
the same value to xLoc.

Similar Messages

  • #(Not assigned) in variable search help

    Dear Team,
    Have created Characteristic value variable with processing type as user entry/default value for the char 0PLANT.
    Master data is having values #(Null Value);1001;1002;1003;1004:1005;1006
    Transactions are posted for only 1001 and 1002.
    When i try search help for the variable,displays Null Value(#),1001 and 1002 even though i selected posted values in the info object BEx tab,query designer and at info provider level also
    Please guide me how we can hide #(Null Value) in the search help as there is no transaction with plant value as " #  "
    Thanks,
    Sarasu

    Hi,
    Did you check these threads?
    # Not Assigned Value Help
    # Value in BW Query prompt

  • Special gl  activity and groups not assigned  urgent

    hai  all
    plese any one can help me out i am getting error in special purpous ledger
    This document will not be posted in a FI-SL ledger, because no ledger is assigned to the combination activity/company code or activity/global company.
    System response
    The posting is not carried out.
    Procedure
    Check the assignment of the ledgers to the activity/company code or activity/global company.
    Customizing Ledgers
    This error message only appears if you defined the activity, so that each document line has to be posted to FI-SL.
    Customizing Activities
    error in abve transacton cods
    kindly needful urgent
    thanking you
    babu
    Edited by: babu sap on Apr 14, 2008 7:16 AM

    Hello,
    Please check the transection code GCG2 make proper assigment there.
    Regards
    Ravi

  • Iphoto keywords are not assigned and do not appear in the info.

    Until recently I was able to very easily apply my own keywords to my photos.  Now, when I go thru the same/similar proces of selecting multiple photos and start assigning keywords, the keywords list is found and finds the words as I type, when I hit enter, it flashes and does not assign a keyword to the photo.
    I am using iphoto 11 9.3
    Help please

    Try using the Keyword pane to assign keywords to single or multiple photos.  Select the photos, bring up the keyword pane open (Command+K) and click on the keywords you want to assign:
    Assigned keywords to those photos will display blue.
    This may only be a workaround but, IMO, it's a more efficient way to assign keywords.
    OT

  • F.01 - Financial Statements (Not assigned)

    Hi,
    Please give me any tip.
    I created a financial statement version, all accounts were included. I executed the transaction F.01 (Financial Statements) with mark in ALV tree control (list output), the balance sheet is displayed, I expand subtree, after each number of account exist 2 lines more: Number/Name of Company Code and under Not assigned.
    Does anybody know how to hidden these last 2 lines? Maybe layout, note......
    *I assined all accounts.
    Thank you so much!!!

    Thanks to try help me!!
    The configuration is only to "Show Total", this is not my problem, my problem is to use the option list output "ALV tree control" if I use this layout I have problem, others no problem, but the customer wants to use exactly this one.
    Tks
    Soraia

  • WEBI prompt based on bex variable suppress not assigned hashtag value in LOV

    Hi,
    is it possible to suppress the "Not assigned (#)" value from the list of values in a webi prompt based on a bex variable?
    This "Not assigned" value is something BW specific, BW adds this to each characteristic automatically?!
    WEBI:
    RSRT:
    It needs to work in WEBI, not only in RSRT, and the filtering of data still needs to work.
    For rsrt it works, when you exclude the not assigned value in "Filter > Characteristic Restrictions" and use the bex variable in/through "Filter > Default Values", but this does not work in WEBI, because the BEX Query Data is not filtered on the in the prompt selected value.
    Thanks.
    Regards
    David

    Thanks David for a quick reply !
    I could manage to avoid # values in WebI prompt using BAdI implementation, here is the brief:
    Problem:
    WebI report prompt (which shows BEx variable) list of values shows blanks or # . Rrequirement was to avoid these blanks or #
    Environment:
    BW 7.3
    BO 4.0
    BW Cube > BEx Query > OLAP Connection > WebI report
    Solution:
    InfoObject Level1 in BW had # values in masterdata, this could not be deleted since it was in use with other Cubes.
    Vaurable Var_Level1 displays # when pressed F4 running BEx query and in list of values in WebI report prompt.
    I implemented BAdI on Level1 info object and variable Var_Level1.
    Steps to implement BAdI are as in following link
    BEx Query - Control the values which are shown on F4
    Used following code to elimitate #.
    METHOD IF_RSR_VARIABLE_F4_RESTRICT~GET_RESTRICTION_FLAT.
    DATA: l_s_range     LIKE LINE OF c_t_range.
    DATA: l_var_range   LIKE LINE OF i_t_var_range.
    DATA: IT_MZLEVELS TYPE TABLE OF /BIC/MZLEVELS,
    WA_MZLEVELS LIKE LINE OF IT_MZLEVELS.
    DATA: L_ZLEVEL1     TYPE /BIC/OIZEVEL1.
      IF i_vnam EQ 'ZV_LEVEL1'.
    SELECT /BIC/ZLEVEL1
    FROM /BIC/MZLEVELS
    INTO CORRESPONDING FIELDS OF TABLE IT_MZLEVELS
    WHERE OBJVERS       = 'A'.
    IF SY-SUBRC NE 0.
    EXIT.
    ENDIF.
    SORT IT_MZLEVELS BY /BIC/ZLEVEL1.
    DELETE ADJACENT DUPLICATES FROM IT_MZLEVELS COMPARING /BIC/ZCLV1GP.
    DELETE IT_MZLEVELS WHERE /BIC/ZLEVEL1 = ''.
    l_s_range-iobjnm = i_iobjnm.
    l_s_range-sign   = 'I'.
    l_s_range-option = 'EQ'.
    LOOP AT IT_MZLEVELS INTO WA_MZLEVELS.
    l_s_range-low    =  WA_MZLEVELS-/BIC/ZLEVEL1.
    APPEND l_s_range TO c_t_range.
    ENDLOOP.
    ENDIF.
    ENDMETHOD.

  • Preprocessor command, assigned the variable and then compare the variable to int. How can I get around this?

    #define ON 1
    #define OFF 0
    in seperate code
    int variable = ON;
    variable is globally define for that module.
    in seperate code
    if (variable == ON)
    the complier errors off on the if (variable==ON)
    My guess variable is variable in of type int and ON is a preprocessor command. Therefore it is a mismatch and complier doesn't like it. How can I get around this.
    thank
    Mahen

    Mahen
    What is the exact message of the compiler?
    I think the error is, that the compiler does not find the definition of ON
    and OFF. Is it in the same source file?
    If not, try to put it into an .h file and include it where you need it.
    Stephan
    "Mahen" schrieb im Newsbeitrag
    news:[email protected]..
    > Preprocessor command, assigned the variable and then compare the
    > variable to int.
    >
    > How can I get around this?
    >
    > #define ON 1
    > #define OFF 0
    > in seperate code
    >
    > int variable = ON;
    > variable is globally define for that module.
    > in seperate code
    > if (variable == ON)
    > {
    >
    >
    > }
    >
    > the complier errors off on the if (variable==ON)
    > My guess variable is variable in of type int and ON is a preprocessor
    > c
    ommand. Therefore it is a mismatch and complier doesn't like it. How
    > can I get around this.
    > thank
    > Mahen

  • My ipad recognizes my home network but will not connect to the internet. When I click on AirPort/preferences at the top of the imac screen it says..."AirPort has a self-assigned ip address and may not connect to the internet".How can I change ip address?

    My ipad recognizes my home network but will not connect to the internet. When I click on AirPort/preferences at the top of the imac screen it says..."AirPort has a self-assigned ip address and may not connect to the internet". If this is the root of the problem,how can I change ip address?
    Ipad will connect no problem to other networks.

    First thing you need I think is to get your iMac connected to the Internet.
    Shut down your iMac and you iPad. Then power off your router. Wait 30 seconds and power up the router.
    After the router indicates that it is connected to the Internet then start up your iMac and see if it connects. If the iMac connects to the Internet then your iPad should too.
    If this power up sequence doesn't work you'll have to dig into the router setup to make sure it is working properly.

  • Assigning a new tax key for V0 and VAT not possible

    Hi Experts,
    Invoice is been created successfully in SUS , XML transfered to XI which in turn created the IDOC in ECC.
    I get the below error while transferring theinvoice IDOC from XI to ECC.
    Assigning a new tax key for V0 and VAT not possible
    Message no. FD008
    Diagnosis
    In Financial Accounting customizing, the tax ID transferred in the invoice is missing so that the system cannot determine a tax code. The system could not determine an entry with the value V0 nor with the value VAT .
    Procedure
    In Financial Accounting customizing, include the external tax ID and a corresponding internal tax code for the present partner.
    Please let me know if I am missing any setup in ECC as I have already maintained the setup in OBCA, OBCD and OMRY.
    Thanks,
    -Devi Swain

    Hi Devi,
    Can you please tell me ,how you resolved this issie,I am getting same error.I I have already maintained the setup in OBCA, OBCD and OMRY.
    Thanks,
    -Sunil

  • Self assigned Ip address 169.254.233.194 and will not be able to connect to the internet

    self assigned IP address  and will not be able to connect to the internet. How do I fix this?

    Sorry we have no info.. so description of the problem..
    Are you using wireless? If so on what? Do you have a TC?
    Is this a new TC and failed to setup correctly? Or you have TC or some other wireless router that has been working fine and now failed?
    Plug in by ethernet? Does it now work?
    Reboot the TC.. Does it now work?
    Reboot the whole network.. restart in order.. modem.. router.. TC.. whatever other network equipment.. clients.
    Do some clients work and others fail?
    Press and hold reset on the TC. Redo the setup.. change the TC setup to fixed channels and SMB names.
    We cannot give specific answers to such vague faults.

  • Security-role and security-role-assignment not working in WL7.0

    Hello all..
    Some EJB components that worked fine in WebLogic 6.1 no longer work in
    WL7.0. It has to do with the security-role and security-role-assignment
    descriptor elements no longer allowing anonymous users to be included in the
    authorization for a bean.
    For example, in WL6.1 placing these items in ejb-jar.xml:
    <assembly-descriptor>
    <security-role>
    <role-name>Employees</role-name>
    </security-role>
    <method-permission>
    <role-name>Employees</role-name>
    <method>
    <ejb-name>CustomerEJB</ejb-name>
    <method-name>*</method-name>
    </method>
    </method-permission>
    and mapping WebLogic default users to this role in weblogic-ejb-jar.xml:
    <security-role-assignment>
    <role-name>Employees</role-name>
    <principal-name>guest</principal-name>
    <principal-name>system</principal-name>
    </security-role-assignment>
    worked fine for clients creating their context using a simple
    InitialContext() constructor without specifying SECURITY_PRINCIPAL or
    SECURITY_CREDENTIALS. These users were basically "guest" to WebLogic, and
    the security-role-assignment element above told WebLogic that "guest" was in
    the Employees role for purposes of this EJB archive.
    Worked in WL6.1, no longer works in WL7.0. Client receives typical
    permission exception:
    java.rmi.AccessException: Security violation: insufficient permission to
    access method 'create'
    If I explicity connect as "system" things are fine, or I can create a new
    user in the default realm in WebLogic, put a matching <principal-name>
    element in the section above, and connect as that user. Note that if I leave
    off the <security-role> section completely, or set the required role name to
    "everyone", the anonymous access works fine. Apparently the anonymous user
    is a member of "everyone" behind the scenes even though "everyone" does not
    appear in the realm list of groups or roles.
    So, my question boils down to this: Is there a "magic" username in WL7 like
    "guest" was in WL6.1 that can be mapped to the required role name, or must
    every client connection use a true weblogic-created user with appropriate
    role assignments used to map it to the required role name.
    -Greg
    P.S. Note that none of the EJB examples provided with WL used
    <security-role>..
    Check out my WebLogic 6.1 Workbook for O'Reilly EJB Third Edition
    www.amazon.com/exec/obidos/ASIN/1931822468 or www.titan-books.com

    Below are the screen shots for PFCG:

  • I was on an online course website, logged in and working on an assignment. Suddenly the page disappeared and was not on the tabs either. I went to the home page and tried to log back in and it said I was already logged in on another browser window

    Question
    I was on an online course website, logged in and working on an assignment. Suddenly the page disappeared and was not on the tabs either. I went to the home page and tried to log back in and it said I was already logged in on another browser window and if I proceeded to log in again the assignment I was working on would be ended and I would receive a zero. I can't locate the browser window that I was signed in on. Help...I don't want to get a zero, but don't know how to get back into the website under my original log in & get back to my half completed assignment.

    Hi,
    Please try this: In Firefox '''History''' ('''Alt''' + '''S''') and check if it is listed in either '''Recently Closed Tabs''' or '''Recently Closed Windows''' or in the list below. If you cannot find it click '''Show All History''', on the left of the window click '''Today''' below '''History''' and on the right look for the site entry corresponding closely to the time when you lost it. If you cannot see the column heading named '''Visit Date''', you may have to enable it by right-clicking on the column header strip.
    Also please note that the online course site may have redirected you to another site for the test, so it is also a good idea to look into site entries that may match the time.

  • Not assigned and # in BEX 7.0 WAD

    Hi all,
    In the report I have a characteristic time Z object.
    In the portal, For the value 00:00:00 (midnight) it displays '#' instead of 00:00:00. Is there a way around this?
    Also in Javascript is it posible to change 'Not Assigned' to some other verbiage?

    Hi Raj,
    Not too sure how to fix your midnight issue but I have some javascript code that toggles the # or Not Assigned values and hides them by turning their text to the colour of the background.  I have this attached as a context menu item of the column headings, but could be applied to any element with a bit of playing around.
    See below :-
    function showHideNullItems()
      var mytab = document.getElementById("GR1Table");
    //  var myrow = mytab.getElementsByTagName("TR");
    //  for (j=0;j<myrow.length;++j) {
      var mycells = mytab.getElementsByTagName("TD");
    for (l = 0; l < mycells.length; ++l) {
        if (document.all) {
           var textToCompare = mycells[l].innerText.replace(/^\s+|\s+$/g, "");
           var compStyle = mycells[l].currentStyle['backgroundColor'];
         } else {
           var textToCompare = mycells[l].textContent.replace(/^\s+|\s+$/g, "");
           var compStyle = getComputedStyle(mycells[l], null).backgroundColor;
        if (mycells[l].firstChild.style) {
           if ((mycells[l].firstChild.style.color != compStyle) && (textToCompare == "#" || textToCompare == "Not assigned" )) {
             mycells[l].firstChild.style.color = compStyle;
           } else {
             mycells[l].firstChild.style.color = "";
        } else {
           if ((mycells[l].style.color != compStyle) && (textToCompare == "#" || textToCompare == "Not assigned" )) {
             mycells[l].style.color = compStyle;
           } else {
             mycells[l].style.color = "";
    Hope this is useful.
    Cheers
    Craig

  • When I start Internet Sharing /etc/bootpd.plist is not created and the other device is not assigned an IP address.

    Just like the tite says. I am investigating why my Macbook Pro (3,1) running Mountain Lion will not assign an IP address to a computer connected via Ethernet when Internet Sharing is turned on (laptop receiving WiFi connection, supposed to be sharing connection over ethernet). I tested using a relatives macbook and it worked just fine. It turns out my laptop is not creating the file: /etc/bootpd.plist when Internet Sharing is turned on.
    I have a console log here from when I start internet sharing:
    8/11/12 12:01:13.634 PM
    InternetSharing[724]
    objc[724]: Object 0x7f94c940ead0 of class __NSDictionaryM autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    8/11/12 12:01:13.642 PM
    com.apple.InternetSharing[724]
    bind(bootps 67): Address already in use
    8/11/12 12:01:13.642 PM
    com.apple.InternetSharing[724]
    error creating internal interface for devname bridge0@0: Address already in use
    8/11/12 12:01:13.644 PM
    com.apple.InternetSharing[724]
    no bridge interface to service en0
    8/11/12 12:01:13.644 PM
    com.apple.InternetSharing[724]
    unable to create service for en0
    8/11/12 12:01:13.645 PM
    com.apple.InternetSharing[724]
    _MISStartServiceDHCPWithOptions "en0": Operation not supported by device
    8/11/12 12:01:13.645 PM
    com.apple.InternetSharing[724]
    *** no external service
    8/11/12 12:01:38.065 PM
    com.apple.InternetSharing[724]
    *** no external service
    Any help is appreciated!

    Solved it, at least temporarily:
    Investigate process binding port 67 with the following command:
    sudo lsof -i 67
    Close the offending process (in this case: bootps):
    sudo /bin/launchctl unload -w /System/Library/LaunchDaemons/bootps.plist
    Start internet sharing again from the system preferences panel

  • 0ORGUNIT Hierarchy and Not Assigned

    Hello Everyone,
    I am using 0ORGUNIT and the associated ORGEH hierarchy.
    I execute my query with a date of 01/01/2006 - 12/31/2006 and the Org Unit hierarchy display always shows :
    Organizational Unit
       Not Assigned Organizational Unit (s)
       1000            Division South
       1001            Division SouthEast
    Why do I always get the 'Not Assigned Organizational Unit (s) displayed?  Even if I change my date range it doesn't matter.
    I did notice that if I go into RSD1 for 0ORGUNIT and maintain hierarchy the short description for this hierarchy is displayed in German.  Could this be it?  If so, how to translate?
    Thank you everyone,  Colleen

    Hello Ajay,
    I just realized it is the REST_H 'Not Assigned' node.  I read the documentation on this, but still don't understand fully it's purpose or how to get rid of it.
    Your help is appreciated.
    Thanks so much,  Colleen

Maybe you are looking for

  • Survey Builder : Survey question not populate with questionnaire link.

    Dear Friends i have created application using SURVEY BUILDER Package application . i have two application with same schema .one is my created application :100 and second is Survey Builder pacaskge application 105 ,with no chamge in survey builder app

  • Cannot find the WPA key

    I'm trying to connect my laptop to the internet. In the "WPA - Personal Needed for Connection" screen, it keeps asking for a passphrase, which is supposed to be the WPA key. I can't find my WPA key; I was hoping it was the Encryption Key, but it's no

  • CfTE: Itinerary details in a Trip Request.

    Hello Colleagues, There are some requirements to include itinerary segments while creating a trip request itself, for India. Question1: An employee should be able to enter his trip details while he/she requests for a trip. However, we are already awa

  • Browser options won't open

    Just got my playbook, let the updates happen and then I opened the browser, I clicked on the options button looking to set a homepage but nothing happens. It highlights so the button works but the is nothing happening. I read where someone had the is

  • Custom Workflow - Any Idea ?

    Gurus, Need to develop a custom WF for customer credit limit through FD32. Using FD32 if the user change customer credit limit(KNKK-KLIMK), a work item need to triggered to an agent for it's approval. Did any one work or have a idea on this scenario