Timer problem, GetCtrlAtt​ribute gives weird results

I have several timers and am having problems with one that I have enabled and set the time interval to 60.0 s. I was trying to change the time interval and couldn't get that to work, so decided to interrogate it for the enabled status and the time interval status. This is the code snippet:
            printf("MFC enCheck: %d\n", GetCtrlAttribute (panel, PANEL_TIMER_MFC_DATA_ACQ, ATTR_ENABLED, &enValue));
            printf("MFC timerCheck: %d\n", GetCtrlAttribute (panel, PANEL_TIMER_MFC_DATA_ACQ, ATTR_INTERVAL, &mfcTimerValue));
            printf("MFC enValue: %d\n", enValue);
            printf("MFC mfcTimerValue: %d\n", mfcTimerValue);
Although the timer appears to be running, I'm getting zeros for all the printf's except for enValue in
GetCtrlAttribute (panel, PANEL_TIMER_MFC_DATA_ACQ, ATTR_ENABLED, &enValue)
which is showing 1,078,853,632 and I can't understand where this strange value is coming from and can't understand why I'm getting zeros for the other values. All the values are int's: enCheck, enValue, timerCheck and mfcTimerValue. Any ideas?
Thanks,
John
Solved!
Go to Solution.

John, you are getting 0s as a return vlaue from GetCtrlVal which means the functions have found no error.
On the other hand, as you can see here, timer interval is a double value and you should get an error while trying to read it into an int, which you aren't. This is strange!
I suggest you to double check all inputs to the functions, particularly 'panel' variable: this must be the handle of the panel the timer is on. A wrong value in this variable could explain why you seem unable to change timer interval.
Proud to use LW/CVI from 3.1 on.
My contributions to the Developer Zone Community
If I have helped you, why not giving me a kudos?

Similar Messages

  • Window.bounds gives weird results

    I run without Application Frame and without Application Bar. I see no point to the former and the latter is just a shocking waste of space. For years, I've been using a handful of scripts to manage my window positions. One of them is now misbehaving. The script is so old that it didn't use functions and all its variables were global -- it probably dates all the way back to when I was beta-testing the original ExtendScript in CS.
    So I decided to rewrite it in case I'd done something weird that rewriting would expose. Well, I found the weirdness but it wasn't me. With one document window open, I typed this into the JavaScript Console (I'm running with a monitor that is 1920 x 1200):
    app.windows[0].bounds = [22,32,1140,863]
    and the console duly responded with:
    Result: 22,32,1140,863
    and visually, I can see that the window is indeed at that location.
    But now when I type:
    app.windows[0].bounds
    into the JS Console, it responds with:
    Result: 60,32,1178,863
    The x values are right but the y values are off by 38.
    Is this a Mac-only issue? I'm running with Mountain Lion on a Retina MacBook Pro. Oh: of course it's Mac only: you can't switch off the Application Frame on Windows, can you?
    Dave

    It turned out that moving to 0,0 created problems with the x-coordinate, but since those were the only x-coordinate problems I ever saw, I decided to focus only on the y-coordinate. In this version of the script, I move the window to y = 0 to measure the current value of the y error.
    //DESCRIPTION: Resets active layoutWindow size or uses front layoutWindow to set page default size.
              Rewrite of a venerable old favorite
              1. If no layoutWindow open offer to delete settings file
              2. If no settings and layoutWindow offer to make layoutWindow bounds new settings
              3. If settings and layoutWindow move layoutWindow to settings location unless there's a layoutWindow already there
                  in which case, move layoutWindow next to that other layoutWindow or move only layoutWindow right by its width
    (function() {
              var settingsFile = getSettingsFile();
              if (app.layoutWindows.length == 0) {
                        // no front layoutWindow; offer user chance to delete settings
                        if (confirm("No layoutWindow is open; would you like to delete the settings file?")) {
                                  // user said yes; only bother to delete it if it exists
                                  if (settingsFile.exists) {
                                            settingsFile.remove();
                        return; // no layoutWindow, so nothing more to do
              // there's at least one layoutWindow
              var yDelta = getDelta(app.layoutWindows[0]);
              if (settingsFile.exists) {
                        applySettings(settingsFile, yDelta);
              } else {
                        if (confirm("Settings file is missing. Use current front layoutWindow to set default?")) {
                                  // user said do it
                                  var bounds = app.layoutWindows[0].bounds;
                                  var bounds = [
                                            bounds[0] - yDelta,
                                            bounds[1],
                                            bounds[2] - yDelta,
                                            bounds[3]
                                  new File(settingsFile);
                                  settingsFile.open("w");
                                  settingsFile.write(bounds);
                                  settingsFile.close();
              function getDelta(layoutWindow) {
                        // get current layoutWindow position and dimensions
                        var reportedBounds = layoutWindow.bounds;
                        var wHeight = reportedBounds[2] - reportedBounds[0];
                        // move to 0, 0
                        layoutWindow.bounds = [0, reportedBounds[1], wHeight, reportedBounds[3]];
                        $.sleep(10);
                        var newBounds = layoutWindow.bounds;
                        // calculate errors
                        var yDelta = newBounds[0];
                        // restore layoutWindow to original position
                        layoutWindow.bounds = [
                                  reportedBounds[0] - yDelta,
                                  reportedBounds[1],
                                  reportedBounds[2] - yDelta,
                                  reportedBounds[3]
                        $.sleep(10);
                        return yDelta
              function applySettings(settingsFile, yDelta) {
                        // values written out to the settings file must take delta into account
                        settingsFile.open("r");
                        var savedBounds = settingsFile.read();
                        settingsFile.close();
                        var myBounds = savedBounds.split(",");
                        for (var j = myBounds.length - 1; j >= 0; j--) {
                                  myBounds[j] = Number(myBounds[j]);
                        // Check to see if an existing layoutWindow is already at these bounds;
                        var layoutWindowsBounds = app.layoutWindows.everyItem().bounds;
                        // all these values are off by delta
                        for (var j = layoutWindowsBounds.length - 1; j >= 0; j--) {
                                  if (layoutWindowsBounds[j][0] - yDelta == myBounds[0]
                                                      && layoutWindowsBounds[j][1]  == myBounds[1]
                                                      && layoutWindowsBounds[j][2] - yDelta == myBounds[2]
                                                      && layoutWindowsBounds[j][3] == myBounds[3]) {
                                            // layoutWindow right there, so:
                                            var myWidth = myBounds[3] - myBounds[1];
                                            myBounds[1] += myWidth;
                                            myBounds[3] += myWidth;
                                            break; // only do it once!
                        app.layoutWindows[0].bounds = myBounds;
              function getSettingsFile() {
                        var scriptFile = getScriptFile();
                        return File(scriptFile.parent + "/PageDefault" + parseInt(app.version) + ".txt");
              function getScriptFile() {
                        // This function returns the file of the active script, even when running ESTK
                        try {
                                  return app.activeScript;
                        } catch(e) {
                                  return File(e.fileName);

  • I want to put a number in a cell and tell it to times by 2 and get the result as a total further along. Sorry couldn't find the answer in any tutorial.

    I want to put a number in a cell and tell it to times by 2 to give the result i another cell?  Sorry couldn't find the answer in any tutorial.

    Hi Caakie,
    Sounds like tou need some basic information.
    The best advice I can give someone new to Numbers (and to spreadsheets in general) is to download and read at least the first four chapters of the Numbers '09 User Guide. You'll find a download link in the Help menu in Numbers '09.
    When you want to start using more complicated formulas, you'll also need the iWork Formulas and Functions User Guide, available from the same menu.
    Regarding your question: "Can you just give me the string for B which is just add and C which is *2."
    What is to be added in "B"? What is to be multiplied by 2 in "C"?
    =2+3 will return the result 5.
    =A+B will return the sum of the numbers in column A and column B in the same row as the cell containing the formula. If either A or B contains a non-numerical value, the formula will return an error message.
    =3*2 will return the result 6.
    =A*B will return the product of the numbers in column A and column B in the same row as the cell containing the formula. If either A or B contains a non-numerical value, the formula will return an error message.
    Regards,
    Barry

  • Iphone 5 app store search gives blank result all the time, please advise how to solve?

    iphone 5 search in app store always gives blank result all the time, please advise how to solve? It worked several times when I first used the phone from unboxed, but since then, it never work again. Could you please advise how to fix? Thanks

    Try reseting (not just turning off) your phone: hold down the Home button and the Power button on the top until the Silver Apple appears (ignore the red slider if it appears). See if the reset clears things up!
    Cheers,
    GB

  • Do IMAQ Cast Image or IMAQ Linear averages give different results when using different computers that are running under Windows XP ?

    Hello
    I'm currently developping an image processing algorithm using Labview 7.1 and the associated IMAQ Vision tools. After several tests, I found a weird result. Indeed, I put the labview algorithm - including the IMAQ VI on the library to get sure that I use all the time the same VI - on my memory stick and used it on two different computers. I tested the same picture (still in my memory stick) and had two very different results.
    After several hours trying to understand why, I found that there were a difference between the results given by both computers at the very begining of the algorithm. Indeed, I used a JPEG file.
    To open it, I first create an Image with IMAQ Create (U8). Then, I open it.
    Then in my first sub-VI, I use IMAQ Cast Image to be sure that the picture is a U8 grayscale picture.
    Right after that, I use the IMAQ Linear Averages. The results of this VI are different on the two computers.
    I tried several time on the same picture : one computer always give me the same result but the two computers give me a different result. So there is no random variable on the results.
    So my question is : Do IMAQ Cast Image or IMAQ Linear averages give different results when using different computers that are running under Windows XP ?
    My bet is on IMAQ Cast Image but I'm not quite sure and I do not undestand why. The labview and IMAQ are the same on both computers.
    The difference between the two computer are above :
    Computer 1 :
    Pentium(R) 4 CPU 3.20GHz with a RAM of 1Go. The processor is an Intel(R).
    The OS is windows XP Pro 2002
    Computer 2 :
    Pentium(R) 4 CPU 2.80GHz with a RAM of 512Mo. The processor is an Intel(R).
    The OS is windows XP Pro 2002.
    If anybody can help me on this problem, it would be really helpful.
    Regards
    Florence P.

    Hi,
    Indeed it's a strange behaviour, could you send me your VI and your JPEG file, (or another file that reproduces) so that I could check this inthere ?
    I'll then try to find out what's happening.
    Regards
    Richard Keromen
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Découvrez, en vidéo, les innovations technologiques réalisées en éco-conception

  • Wait ms sec with out daylight time problem and suppress jitter

    How tu use a good wai ms?? One solution is to use the Wait (ms) but it's result in a time jitter. We can use wait until next ms but the same problem will occured. Tick count give a realy bad result after aproximately 49 Days. The other solution sugested by NI give bad result with Daylight or any change in sustem time of the computer.
    So I bring this little solution feel free to use it in your code it's a quite good VI. The jitter is about 60us. Not that bad.
    Have a happy programming time...
    B.
    Benoit Séguin
    Software Designer
    Attachments:
    Timing functional Global.vi ‏21 KB

    Hi Benoit,
    Is the purpose of your post to share your code?  If so, then you may want to post it in the Developer's Network.
    RayR

  • 0I_FYPER - Variable in BEx gives no result

    Hello all,
    I have a problem in BEx-reporting after a releasechange from BW3.5 to BI7.0 and at the same time SEM-BCS4.0 to SEM-BCS6.0 which belongs to the variable 0I_FYPER. I use this variable in the columns (only) in order to give the user the possibillity to define which periods to show. In the rows I use the rest for defining which numbers to bring up. It worked in BW3.5/SEM-BCS4.0 fine.
    I debuged the content of the variable in user-exit ZXRSRU01 (after processing the selection screen) and could find the data I entered but the query gives no result. Any ideas?
    Thank you for any feedback,
    Chris

    Hi Guru,
    We have a work around for your issue. Just create a customer Exit variable on the calendar month and use it in the filter.
    In the customer Exit variable read the Plant variable and if it is empty populate # as result. Else read the calmonth input variable and populate it as the result.
    Use the following snippet to read input ready variables.
    DATA: loc_var_range LIKE rrrangeexit.
    READ TABLE i_t_var_range WITH KEY vnam = 'VARNAME' INTO loc_var_range.
    (loc_var_range-low will have the value of the variable)
    Hope this helps.
    Regards.
    Shafi.

  • NonLinearFitWithMaxIters does not give correct results for phase

    Dear all,
    I am trying to fit a sin cuve with NonLinearFitWithMaxIters function of labwindows, but the results given by this function are dispersed a lot (the function does not give same results).
    In fact, I have two waveforms signals v and i (of 104 points), and I  find the phase between the two signals with NonLinearFitWithMaxIters.
    The two singals v and i are  measured with an osciloscope.
    I use the following fit functions :
    v=p1*sin(wt+p2) ;
    i=p3*sin(wt+p4) ;
    I use the NonLinearFitWithMaxIters function to fit the data and to have the parameters  p1, p2, p3, p4. Then, the phase is claculated as follow phase=p4-p3.
    The problem is that the phase calculted between the two signals (v and i) is different for each run for the same conditions.
    In fact, for a same condition, I measure different times the signals v and i, and I calculate the phase p4-p3, using NonLinearFitWithMaxIters. The goal is to calculate a mean of phases for the same condition. For example, there are cases where the phase=-5 degree, and other cases when phase=12 degree.
    For ten measures of v and i, the phase calculated is different. I get a big dispersion between the phases.
    I would like to know please why I have a big difference in phases calculated with the same condition?whern using NonLinearFitWithMaxIters.
    I read that this function does not give all time the correct results, is there a way to know when the results are not corrects and when they are correct ?
    And is there any solution to find accuratly the phase between the two waveforms.
    Thank you for your precious answer.

    The pseudocode which I am using is :
    v_err=NonLinearFitWithMaxIters(array_x,array_v,v_y_fit,1252,100,sinus,v_coef,2,&v_mean_squareError);
    The fit function is
    double sinus(double x, double a[],int noef){
        return (a[0]*sin((w*x)+a[1]));
     I use the same inital coeficient of v_coef for each run :     
    v_coef[0]=0.03;
    v_coef[1]=0.2;
    These coeficient are choosen arbitrary.
    In this case, the number of points of the data is 1252 (the data of array_v).
    The number of iterations is 100.
    For the array_x, the distance between adjacents values of the array is dt=0.4*1e-9(difference between array_x[i] anv array_x[i+1]=dt=0.4*1e-9 ).
    for (i=0;i<1252;i++){
    array_x[i]=i*(0.4*1e-9);
    The means square error returnned by the function when it is complished is  small, of the order of 0,001.
    I read the help
    « From the help:
    You must pass a pointer to the nonlinear function f(x,a) along with a set of initial guess coefficients a. NonLinearFitWithMaxIters does not always give the correct answer. The correct output sometimes depends on the initial choice of a. It is very important to verify the final result.
    That means that the function cannot be used, as it does not give correct results. How
    can we check if the results are good or not ? in my case.
    I think that in my case, the function does not give correct results, but how can I check if the results are good, or not ? The mean square error is small.

  • 0CRM_OPPT_H  (Transaction RSA3 gives wrong result)

    Hi gurus,
    <b>0CRM_OPPT_H  (Transaction RSA3 gives wrong result)
    BBPCRM 4.0
    BW 3.50 version</b>
    I had enhanced the structure "crmt_bw_oppt_h"
    and also written a BADI to populate Opportunity header status.
    But when I run extract checker RSA3 for CRM data,
    I get wrong number of records.
    I am having 95 records for Opportunities header data.
    Data Records / Call = "100"
    Display Extr. Calls = "10"
    Above settings, I am retrieving only 61 records.
    <b>Data Records / Call = "1"
    Display Extr. Calls = "200"
    For the above settings in RSA3,
    I am able to retrieve 95 records correctly.</b>
    The problem is that in RSA1 transaction of BW 3.50 server also,
    61 records are being loaded from CRM server.
    <b>Could this be a Cache memory problem,
    Are any of my BASIS settings a cause for this problem?</b>
    Any help is really appreciated and will be rewarded.
    Thanks,
    Aby Jacob
    ========

    Dear Friends,
    <b>I had to do a small correction in my BADI code.
    I got a solution from Online SAP HELP portal.</b>
    http://help.sap.com/saphelp_nw04/helpdata/en/eb/3e7cf4940e11d295df0000e82de14a/frameset.htm
    Notes on BADI Usage
    ====================
    The instance generated through the factory method should be declared
    as globally as possible or generally be passed as a parameter
    to ensure that the initialization process must be run as rarely as possible
    – just once would be best. In no case should you discard the instance as soon as
    it is generated or repeatedly run the initialization process in a loop.
    Within the adapter class interface,
    required database accesses are buffered locally,
    so that each access is executed once only.
    However, repeated initialization makes
    the buffer useless and dramatically reduces performance.
    Due to the local buffering, you can call Business-Add-In methods
    without having to expect considerable performance restrictions,
    even if no active implementations exist.
    Also, if the definition of the Business-Add-In is filter-dependent,
    a single instance is sufficient.
    However, you should not do without initialization altogether.
    Even if you could call static methods of the implementing
    class of the Business-Add-In implementation without an instance,
    you would lose the benefit of performance improvement through
    the Business-Add-Ins and the possibility of multiple use.
    If you switch the method type in the interface from the static method
    to the instance method at any time in the future,
    many code adjustments are required.
    In addition, you can no longer use default code that is provided.
    <b>Many Thanks to ROBIN
    and the whole SDN team</b>
    Aby Jacob ,,,,,

  • Occasional time problems?

    i have my iphone set to automatically set the date and time. a few times since i've had it, the time is ahead one full hour...it seems to happen when the phone is shut down then turn back on, but i think one time it had the wrong time after being left on standby. any thoughts? is this an AT&T issue? i can't think of anything that could be wrong with the phone (or phone setting) which could contribute to this, since i'm chosing the automatic option for setting the time. small issue i know...just curious.

    I have had a weird time problem also. The other night my husband was snoring and I couldn't get to sleep so I decided to get up and go into one of the other bedrooms. There is no alarm there, so I opted to use the alarm function on my iPhone to give me a wake up call. I set the alarm for 5am and sure enough, at 5am the alarm went off as expected. I went to the kitchen to make a pot of coffee and noticed the clock on the coffee maker said 5:11am. I looked at my iPhone and it said 5:01am. I then looked at my atomic clock and also the one on the cable box, both of which should be correct, and they both agreed with the coffee maker - now 5:12 while the iPhone said 5:02. I have the iPhone set to automatically update the time. Being in a rush to get ready for work, I did nothing about setting the time on the iPhone and decided I would reset it later. When I got to work, I remembered the time was off on the iPhone and decided to reset it, but when I looked it was now synced back to the correct time! I don't know if this was an iPhone, ATT issue or what, but I won't be depending soley on the iPhone alarm to get me up on time again. I haven't used the iPhone alarm since then so don't know if it is reproducable. Anyone else run across this problem?

  • Enterprise Manager does not give correct results

    I am using version 9.0.2.0.1 core edition(oc4j & web-cache).
    My application consists of business components, java beans and jsp. It is running fine.
    Oracle enterprise manager is not giving correct results of memory/cpu usage by oc4j_home and bc4j.
    Some times it does not gives result, when i refresh it twice or thrice it shows results.
    But results are not correct. On each refresh it gives different results.
    Then it is very hard to find which resuslt is correct.
    waiting for response,
    Tahir.

    i have been using 9iAS versions 102*, 90200, 90201, and now using 903.
    As stated above, some times the results for oc4j_home is displayed.
    But the memory/cpu usage for bc4j is never shown.
    Also, its radio-button is always disabled. while its status is "running".
    On BC4J page, it also shows results of application modules created. But these results are usually wrong.
    How bc4j will be enabled, and how its memory results can be get ???
    Tahir.

  • Calling PL/SQL Procedure In Another Schema Gives Unexpected Result

    I have a SQL Script that does this:
    conn pnr/<password for user pnr>;
    set serveroutput on;
    exec vms.disable_all_fk_constraints;
    SELECT owner, constraint_name, status FROM user_constraints WHERE constraint_type = 'R';
    and the disable_all_fk_constraints procedure that is owned by user 'vms' is defined as:
    create or replace
    procedure disable_all_fk_constraints is
    v_sql   VARCHAR2(4000);
    begin
    dbms_output.put_line('Disabling all referential integrity constraints.');
    for rec in (SELECT table_name, constraint_name FROM user_constraints WHERE constraint_type='R') loop
    dbms_output.put_line('Disabling constraint ' || rec.constraint_name || ' from ' || rec.table_name || '.');
    v_sql := 'ALTER TABLE ' || rec.table_name || ' DISABLE CONSTRAINT ' || rec.constraint_name;
    execute immediate(v_sql);
    end loop;
    end;
    When I run the SQL script, the call to vms.disable_all_fk_constraints disables the FK constrains in the 'vms' schema, whereas I wanted it to disable the FK constraints in the 'pnr' schema (the invoker of the procedure). I know that I could make this work by copying the disable_all_fk_constraints procedure to the 'pnr' schema and calling it as "+exec disable_all_fk_constraints;+" from within the SQL script but I want to avoid having to duplicate the PL/SQL procedure in each schema that uses it.
    What can I do?
    Thank you

    You have two issues to solve.
    First you need to write a packaged procedure that works with INVOKER rights. The default is DEFINER rights.
    The difference is excatly what you need. Usually the package has the rights from the schema where it is defined (=Definer rights). In your case schema VMS. Whereas you need the privileges from the user that calls the package (PNR).
    => Check out the documentation for INVOKER rights
    The second problem is that the view "user_constraints" will not give the results you expect when called from inside a procedure in another schema. An alternative could be to use the view DBA_CONSTRAINTS with a filter on the owner (where owner = 'PNR'). Not sure if there are other working possibilities. Well you could create a list of constraint names that you want to disable, instead of creating the list dynamically.
    And you could have another potential disaster creeping up upon you. If you run this thing, then at this moment you don't have any referential integrity anymore. You can't be sure that you can create the FKs again after this action. This is EXTREMLY DANGEROUS. I would never ever do this in any kind of production or test database. I would be very careful when I do it on a development database.

  • Response Time Problem in IE when rendering records to exce- JSP application

    Hello,
    My application is a web application and uses JSP and WebSphere server.
    There is a functionality when a button is pressed the page sends the request to server and the search result is shown in a spreadsheet(excel file).
    Now when we use Mozilla browser it gives the results in 5-6 seconds for some hundred records. when we use IE it takes several minutes for the same search.
    Is there some kind of setting that needs to be altered?
    please help.

    I am wondering if some kind of settings of IE disable
    the redirection of the jsp pages. no, I don't think so. The problem is elsewhere. Most likely your code doesn't send redirect for some reason.

  • HT1551 My appletv is properly connected to wireless network, everything looks all right but it can't adjust the time and date. As a result it doesn't work.

    My appletv is properly connected to wireless network, everything looks all right but it can't adjust the time and date. As a result it doesn't work.

    Welcome to the Apple Community.
    Assuming this is not the first time you have used your Apple TV
    You might try restarting the Apple TV by removing ALL the cables for 30 seconds.
    Also try restarting the router.
    If the problem persists, try a restore, you may want to try the previous procedures several times before doing this.
    If restoring from the Apple TV doesn't help, try restoring from iTunes using a USB cable.
    If this is a new Apple TV, in addition to trying the above, it may also be that your network router is not allowing access to the timeserver, check that your router allows access over port 123.

  • How to view how much time is remaing to fetch the result

    Hi,
    could you please help me how do I view that How much time is remaining to get the final output of my query. one of my query is running from last 7 hours just wanted to now how much time it will take to give final result. is there any way to see it ?
    Thanks in Advance.

    In general, no.
    You can try looking at v$session_longops using your session_id to see if something shows up there.
    Certain long operations will have an entry in that view with an estimate of the completion time.

Maybe you are looking for

  • Classic Debugger

    Hi - Every time I run the debugger, I have to click on "Debugger / Classic Debugger" to switch to the classic, which I prefer.  Is that a way for me to have it default to the Classic Debugger so I don't have to do this every time I start up a debugge

  • Let the database doing cascade deletion for privateOwned relationship

    Hi, I have two tables: parent, child. I mapped the parent to child as a one-many private owned relationship. The child table have a foreign key reference back to parent table. The constraint is like this alter table child add constraint FK_CONSTRAINT

  • Automatical jar file structure in SunOne studio (forte)?

    Hi everyone! I wonder if anyone knows how to jar a folder structure in SunOne (former forte). I have a "myRoot" folder which I would like jar to "myRoot.jar". But I also want the subfolders to be jar:ed. I.e. I have myRoot/test/ and I want to jar the

  • Safari not recognizing &amp;

    I thought I had resolved this issue once before but now I cannot find. My site: http://www.magnoliaparkburbank.org Click on neighborhood directory. At the bttom Search for store name When I do an auto-suggest search any storename that has an & in its

  • BW infoset VS Classic infoset

    Hello all BW 3.5 patch 13 I have created a BW infoset on an ods. When I try to create a extract structure in RSO2 in BW I don't see the BW infoset. I can create a Classic infoset (SQ01..3) on a ODS table and see that infoset in RSO2.  Am I missing so