Radio Frquency issues

Hello all,
Please can someone talk to me about the physical connections that must be made. I have the following pieces:
1) A server running Windows 2003
4) Georgia SoftWorks Telnet Server running on the WIN 2003 server
3) Cisco Aironet 1200 Wireless Accesspoint
4) RF Terminal (Symbol 9060)
I need a precise explanation about the connections.
Points
The Wireless Access has two connection points, 1 ethernet & 1 console
The server has only one connection point (which is connected to company network (for connecting to SAP/R3 and internet, etc))
If course, I have read connect the RF access point to the the server running the telnet server, blah, blah, blah...
But, I need specifics!
Thanks in advance,
Vincent

HI,
Use this code
selection-screen begin of block b1 with frame title text-001.
selection-screen begin of line.
parameters p_a radiobutton group g1.
selection-screen comment 3(15) text-002.
selection-screen end of line.
selection-screen end of block b1.
ur code is wrong... ur using begin of line after the radiobutton use that before the radio button..
PARAMETERS : r_qmat RADIOBUTTON GROUP rg1 .
<b>SELECTION-SCREEN: BEGIN OF LINE,</b>COMMENT 5(17) text-003 FOR FIELD werks1.
SELECT-OPTIONS: werks1 FOR qmat-werks NO INTERVALS
NO-EXTENSION
MODIF ID mg1.
Thanks
Mahesh

Similar Messages

  • Weird Radio button issue on Insert/Update form

    I recently installed Dreamweaver CS4 and am having a heck of a time with radio buttons on my Dynamic Insert/Update form.
    For some reason, when I update a record, the radio button I had previously selected, is NOT checked.  However, the value is in the mySQL db.
    I've tried this in several different folders, thinking there was a conflict (css, js or whatever) but have had the same issue every time.  I even updated my DDT includes folder but still no luck.
    Has anyone had an issue like this with Dreamweaver CS4 and know how to solve it?
    Also, I should probably add the Dreamweaver CS4 has crashed at least 3 times per day since I installed it less then a week ago.  My computer easily meets the required specs (3.39GHz, 2GB RAM, 75GB HardDrive).   Something is obviously wrong.  Whether its my computer or CS4, I'm not sure.
    Any help is appreciated!
    Thanks!
    Peter T

    OK, I've figured out what the issue is but not why.
    See the code below.  For some reason, where it should be {echo "checked";} its {echo "@@checked@@";}
    Anyone else run into this situation?
                <td><div>
                  <input <?php if (!(strcmp(KT_escapeAttribute($row_rssample_sam['answer_sam']),"1"))) {echo "@@checked@@";} ?> type="radio" name="answer_sam_<?php echo $cnt1; ?>" id="answer_sam_<?php echo $cnt1; ?>_1" value="1" />
                  <label for="answer_sam_<?php echo $cnt1; ?>_1">Yes</label>
                </div>
                  <div>
                    <input <?php if (!(strcmp(KT_escapeAttribute($row_rssample_sam['answer_sam']),"0"))) {echo "@@checked@@";} ?> type="radio" name="answer_sam_<?php echo $cnt1; ?>" id="answer_sam_<?php echo $cnt1; ?>_2" value="0" />
                    <label for="answer_sam_<?php echo $cnt1; ?>_2">No</label>
                  </div>
                  <?php echo $tNGs->displayFieldError("sample_sam", "answer_sam", $cnt1); ?></td>

  • ITunes Radio Major Issue

    My iTunes Radio is never working. I can start it up, and it will play a song for 30 seconds. After that, iTunes radio goes back to the menu. If I click the station I want to listen to, it immediately  goes back to the station list. I've tried signing in / out, I've tried restarting. There is no point of restoring because there was a problem with my last iPhone, and my warranty gave me another for free. The last iPhone had the same problem. I'm wondering if it could be an account issue. Please help.

    Something really strange is going on with itunes radio since apple released their latest itunes update 11.1.5 weeks ago. I can no longer even access the radio list and this has been an issue on all of my macs at home and even the one I use at the office. I even contacted Apple and they were clueless, recommending for me to upgrade to Mountain Lion (I run Snow Leopard and Lion respectively on different machines.)
    After trying every possible solution except a clean install of the OS, the only solution I could come up with was to download the stream link to the stations I listen to (m3u files), which surprisingly play just fine in itunes.

  • Dynamic radio button issues.

    Hello;
    I changed around the way I do a contact form from one page loading onto another to just one page. I had my radio buttons working the 2 page way, but now, it throws an error and says that the TYPE is undefined in the form. The type is the name of my group of radio buttons. Here is what I'm doing, can someone help me fix this so a form will remember if it has to be reloaded what radio button you chose?
    My code:
    <cfform action="#cgi.script_name#" method="post">
    <cfif form.type EQ 'male'>
    <input name="type" type="radio" onClick="setVisibility('sub3', 'inline');setVisibility('sub4','none');setVisibility('sub5','none');" value='male' checked="checked"/>
    <cfelse>
    <input name="type" type="radio" onClick="setVisibility('sub3', 'inline');setVisibility('sub4','none');setVisibility('sub5','none');" value='male'/>
    </cfif>
    <cfif form.type EQ 'female'>
    <input type="radio" name="type" value='female' onClick="setVisibility('sub3', 'none');setVisibility('sub4','inline');setVisibility('sub5', 'none');" checked="checked"/>
    <cfelse>
    <input type="radio" name="type" value='female' onClick="setVisibility('sub3', 'none');setVisibility('sub4','inline');setVisibility('sub5', 'none');"/>
    </cfif>
    <cfif form.type EQ 'child'>
    <input type="radio" name="type" value='child' onClick="setVisibility('sub3', 'none');setVisibility('sub4','none');setVisibility('sub5', 'inline');" checked="checked"/>
    <cfelse>
    <input type="radio" name="type" value='child' onClick="setVisibility('sub3', 'none');setVisibility('sub4','none');setVisibility('sub5', 'inline');"/>
    </cfif>
    those are the 3, I need this form to remember your choice, they control parts of the form. The if statement is throwing the error, this is the error:
    Element TYPE is undefined in FORM.
    The error occurred in C:\quoteReq.cfm: line 282
    Called from C:\Websites\187914kg3\quoteReq.cfm: line 276
    Called from C:\Websites\187914kg3\quoteReq.cfm: line 275
    Called from C:\Websites\187914kg3\quoteReq.cfm: line 260
    Called from C:\Websites\187914kg3\quoteReq.cfm: line 1
    280 :                 <span class="contactText">Select the type of project to get a quote.</span><br>
    281 :                 <br>
    282 :                 <input name="type" type="radio" id="type" onClick="setVisibility('sub3', 'inline');setVisibility('sub4','none');setVisibility('sub5','none');" value='male' <cfif form.type EQ 'male'>checked="checked"</cfif>/>
    283 :                 <span class="contactText">Magnets</span>
    284 :                 <input type="radio" name="type" id="type" value='female' onClick="setVisibility('sub3', 'none');setVisibility('sub4','inline');setVisibility('sub5', 'none');" <cfif form.type EQ 'female'>checked="checked"</cfif>/>   
    Can anyone help me fix this please?

    My code for this simple action is looking really nasty at this point. I agree with making this neater, it controls a lot on this page. It's a problem in the java script, let me show you how this is set up:
    if you click on a radio button (step 1 in the form) it changes a spot in the site (div tags) to your selection. I'm stripping this down to just the java right now, then add in logic to it.
    this is my java, but It's not working right now even strait up with no coldfusion involved.
    <script language="JavaScript">
    function setVisibility(id, visibility) {
    document.getElementById(id).style.display = visibility;
    </script>
    <style type="text/css">
    .showHide {
    position: absolute;
    background-color: #f1f1f1;
    width: 300px;
    padding: 1px;
    color: black;
    border: #999999 2px dashed;
    display: none;
    </style>
    <input name="type" type="radio" onClick="setVisibility('sub3', 'inline');setVisibility('sub4','none');setVisibility('sub5','none');" value='male' checked="checked"/><span class="contactText">Magnets</span>
    <input type="radio" name="type" value='female' onClick="setVisibility('sub3', 'none');setVisibility('sub4','inline');setVisibility('sub5', 'none');"/><span class="contactText">Paper Steel</span>
    <input type="radio" name="type" value='child' onClick="setVisibility('sub3', 'none');setVisibility('sub4','none');setVisibility('sub5', 'inline');"/> <span class="contactText">Both</span>
    my div tags
    <div id="sub3" class="showHide" style="display:inline;">div one content here</div>
    <div id="sub4" class="showHide">div 2 content here</div>
    <div id="sub5" class="showHide">div 3 content here</div>
    right now, this isn't functioning as is. I had it working, until I redid my form approach in programming. Now I need to rethink this. What I'm trying to do is this.
    first, get this script working again. then, once it's swaping out div tags, I need it to remember what radio button you clicked so that respective div tag stays open on page reload of any errors from required fields. f I click on a radio button and send the form with now required fields, it brings up the proper div. I also went with the structkeyexists approach and it kind of helped me, but it's making my code really big and messy going this road.
    any ideas on how to approach this problem? starting with this broken script.
    Right now, there is not dynamic interaction, but i

  • What's happening with iPhone 5 and the pioneer app radio compatibility issues?

    Has anyone heard if a solution has been reached by either Apple or Pioneer to make the iPhone 5 work with the app radio 2?
    Surely some info is available.

    I don't have n answer, but I've seen this problem on all 4 of my iDevices on IOS 7. And sometimes I see no update badge on the app, but if I go into it and check updates I have some waiting.
    Honestly don't know if this is a bug in IOS or some carryover from last week when the servers were under extreme load. It's annoying though.

  • ITunes Radio privacy issue and question

    Very disturbing.
    I received an email from Pandora with station recommendations. The email showed the stations I listened to on iTunes radio.
    How does Pandora know what stations I listen to on iTunes radio?
    Doug

    Still no replies to this I see. Doesn't it concern anyone that third parties are able to see what music you were playing?
    Pandora reply to me and said that they do not know about my iTunes radio selections. Even if they were not the source of the letter I received, somebody sent it. Which means that somehow my iTunes radio stations are being leaked to third parties.
    This should be of concern to everybody. But I can't find any mention of it except in my discussion thread here.
    Isn't anybody concerned about this?
    Doug

  • VM-650 and FM Radio Reception Issues

    Recently bought the VM-650 and was initially happy with it, but I am finding that the FM radio reception will work for a bit on a station setting then start to hiss intermittently then with increasing regularity. Very annoying. When I try another setting with either automatic (press and hold volume up) or manual approach, it continues to happen after briefly functioning fine.  Is there anything I can do to improve and sustain a stable FM reception with this device?

    I appreciate the effort, but I don't think it has anything to do with available radio frequency.  I've changed the frequency a number of times and the problem continues to surface.

  • TuneIn WIFI Radio problems / Issues

    I have an iphone 5 and am having trouble with listening to radio when connected to wifi. The app works with other stations whilst connect to wifi but not radio 2SM 1269 in sydney. The same also applies to the radio's own. it works fine on 3G or LTE but not wifi.
    I have another iphone 5 which works fine on wifi and 3G/LTE.
    Does anyone know why this may be happening?
    Thanks

    Hello Ads74,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/ht4199
    The following Wi-Fi base station (or Wi-Fi router) settings are recommended for all Macs and iOS devices.
    Best of luck,
    Mario

  • "phone offline" and other syncing issues

    There's been several threads on the "phone offline" issue across many of the big Pre forums, but we're really not heard anything constructive from Palm on the matter...  It's basically leaving me unable to do email and a number of other features that are pretty much the main reason for me buying the phone.  I'm really feeling screwed by this considering I pretty much left Verizon for Sprint to get this since VZW wouldn't provision the pre on their service.
    Whenever I enable Pop email to get my account with several thousand emails, my phone becomes instantly unstable, generating the "phone offline issues" every couple of minutes.  I also have my google calendar not syncing as this too seems to provoke these errors, even though I have NO scheduled items in there.  I also cannot get my exchange 2007 email like everyone else having issues, but mine hasn't even worked on 1.1 or 1.2 versions of webos.
    Seriously, how long are we going to wait for a fix to these major issues?  This is exactly why I gave up on WinMo phones.
    Post relates to: Pre p100eww (Sprint)

    I'll bet it is the size/volume of email in your inbox its trying to sync - not sure if this got fixed/better with 1.3.1.  One of the threads about google calendar causing this radio reboot issue indicated there was a memory leak in their java stack that was causing the radio to go offline, which got me thinking about my email.  As it turns out I had 20k emails or so in my inbox (I leave everything on the server and keep local filters to sort it out post pop), so the pre seemed to have issues dealing with this large of volume when pop'ing.  Now logic (to me at least) would dictate that if you tell it to only keep a week of email, it wouldn't matter as it would the email count, date, and index, and only grab the last weeks worth, meaning it shouldn't poop itself when trying, but it still does. Yours doing the same would indicate probably the same - excessive email count in inbox, at least beyond what the stupid pre seems capable of dealing with.
    I would recommend as a short-term fix moving the bulk of your email into a local pst or just out of the inbox that the pre doesn't try to fetch a ton of email at once, at least then it's useable until they fix their buggy email app.  I wouldn't hold my breath and start working around it now - palm doesn't seem to concerened with fixing these issues in an expedient fashion.

  • IPod going to sleep issue

    Hello
    Sorry if this has been posted before, but millions of posts on here and did try to search.
    I have a new iPod Touch and I recently bought the Gear4 Explorer SP Home portable speaker dock
    I have downloaded many apps, including TuneIn Radio
    The issue I have is that when the ipod is in the speaker dock playing TuneIn Radio, after about a minute, both the ipod and dock switch off / go to sleep and the radio therefore switches off
    I seemed to have no issues with playing my downloaded music, but last night, same thing happened with the music, but this seems ok again now
    The dock is plugged in, so I know it isn't lack of battery power
    I don't know whether I have an issue with
    - the iPod
    - the docking station
    - the application
    Any ideas on where to start?
    Many thanks
    Message was edited by: Graeme M

    Hello manan90,
    The article linked below provides some useful troubleshooting steps that can help resolve issues with your Mac sleeping when you close the lid.
    OS X: When your Mac doesn't sleep or wake
    http://support.apple.com/kb/TS5357
    Cheers,
    Allen

  • WIFI Icon Missing In Master Radio Control UI

    Okay, after putting up with this issue for a couple few months or so, I decided it's time to fix this issue... Well nothing seems to work, I've updated both drivers for the wireless LAN adapter. I also had an issue with Access Connections, so I updated it along with Power Manager, hot key functions and communications as well for the heck of it...
    Nothing seems to fix the issue, I still don't have individual control of my wireless radio, it just randomly quit showing up one day... Since it doesn't show up in the master control, I also can't select "Manage Wireless Radio..." when right clicking on AC... Every time I bring my computer out of standby, I have to hit the F9 key to bring up the master radio control. It shows the master control is already on, but if I turn it off and then back on it starts to connect and work again...
    I almost forgot to mention I have an eGPU setup with a PowerColor Radeon HD 6850. I just tested this to see if it was causing my problems. I restarted my computer with the eGPU off, that way the computer would re-enable and use the iGPU. (Radeon HD 4250 Mobility) Well fortunately and yet unfortunately my eGPU is what was causing the radio control to not work correctly. So I updated the eGPU's display driver to the latest version which is 8.91, and the catalyst version 11.11 came with it, that fixed one of three problems...
    Now at the welcome screen you have to hit Ctrl+Alt+Del to log on, that was just one thing that disappeared while using the eGPU... But the main problem with the master radio control still exists... Also the AMD Vision Engine Control Center says there's no compatible display driver installed, it does it with both the current and previous eGPU's display driver. So that's also another problem it still has, which might be related to the master radio control issue.
    Here's a picture of the Master Control with it missing the individual control:
    It's a modified Edge 15 0302-44U
    AMD Phenom II X4 N970 2.2 GHz (Originally Athlon II X2 P340 2.2 GHz)
    8 GB RAM
    iGPU: Radeon HD 4250 Mobility
    eGPU: PowerColor Radeon HD 6850
    Win 7 Pro (64-bit)
     BIOS Ver. 2.24 (Latest)

    Thank you. This solution works perfect.
    Greets from germany...
    Here the solution for german Windows Users:

  • Getting jamming/static sound when trying to play music or radio...stops when I exit iTunes...tried uninstalling/re-installing

    Have been using iTunes w/o issues for a long time...even with the most current version.
    Yesterdy, started to get a jamming/static sound despite trying to play music or the radio...only static....
    Stops only when I close iTunes.
    Tried to uninstall and re-install...same issue.
    Recently started to use an iPad with Wi-Fi...not sure if somehow this is creating radio signal issues....
    Very strange.
    Any advice?
    Thank you.

    Have been using iTunes w/o issues for a long time...even with the most current version.
    Yesterdy, started to get a jamming/static sound despite trying to play music or the radio...only static....
    Stops only when I close iTunes.
    Tried to uninstall and re-install...same issue.
    Recently started to use an iPad with Wi-Fi...not sure if somehow this is creating radio signal issues....
    Very strange.
    Any advice?
    Thank you.

  • Does it play radio?

    I just received my iPod Radio Remote today and now that the hi-fi is out my first question is: does it play radio? If Apple really expects you to replace your stereo with this device then it would be silly to not include the ability to play the radio through the ipod / ipod hi-fi combo.
    Later, Frank

    Satellite Radio is so much better than FM/AM. So,
    having the ability to plug in these devices via the
    aux-input in my opinion makes FM/AM obsolete. I am
    personally glad they didn't include it. Different
    strokes for different folks!
    Different strokes indeed. Having the dock audio in, plus analogue sound and S/PDIF optical digital vastly increase the use to which you can put the iPod HiFi. I would have kind of liked multiple analogue inputs (like on a pre-amp) however I imagine that if many people wanted that, someone else would be selling a suitable add-on. Not that you can't use any audio switch box.
    Given Apple sell worldwide, they may also have decided radio compatibility issues could be a problem. Obviously they would have used a digital tuner, but AM here (for example) uses a different channel width to there (my Tivoli Songbook has a switch inside the battery compartment for this). Plus there is the obvious sensitivity vs selectivity issue. Radios for city use tend to need good selectvity (lots of powerful nearby stations which overload a sensitive front end), whereas sets for remote areas need high sensitivity. While I am sure some radios do both well, usually they do not. Plus antennas generally look ugly. I am sure Apple would not like to deliberately be in the middle of such issues.
    I suspect Sirius satellite radio is USA only. I doubt AsiaStar or AfriStar broadcasts are compatible, and I'm not even sure if South America has their satellite yet.
    It also seems to me that in some sense both radio and TV are incompatible with some philosophical stream in Apple. Someone else selects what you see or hear. Apple seem more supportive of you selecting what you want to play (and even what you want to create). I am not expecting a media center from Apple, at least in the listen to radio, and watch TV sense.

  • Can't configure my Snow base station after Hard Reset

    Hello -
    I am having trouble configuring my Snow base station after a hard reset.
    Airport Admin Utility will not see or connect to it.
    I get the error:
    "The AirPort admin utlity was unable to
    read the configuration file of the selected
    base station.
    An error occurred while reading the configuration."
    any suggestions?
    I need to completely erase it and give it a different configuration altogether.
    Any help would be appreciated.
    Regards - Dustin

    I can only offer sympathies. I have exactly the same problem.
    A question:
    1) After a hard reset of the ABS according to the procedures in Articles 106602 & 106685, at step 14 does Airport Admin(AA) find your ABS?
    (I can reliably get to this point, however loading default software fails. I noticed that the Airport ID is zeroed! )
    2) In AA have you tried connecting to 10.0.1.1 using your ABS password?
    3) Can you create a c2c network? (I can connect my iMacs together reliably, so it is not a radio noise issue.)
    I firmly believe this is a s/w issues somehow related to the recent upgrades. I only recenly bought my ABS, after replacing my Graphite for similar reasons. This is becoming unreasonablely time consuming and expensive.
    I know this is a bit 'blah, blah', but I'm scratchng around too and would appreciate help! (I had to drill a hole in the wall to get 'hardwired' to the net, so I could get on here, this is not good!)
    iMac 400Mhz   Mac OS X (10.4.3)  

  • Broadband faults caused by RAIN

    Hi can anyone tell me if my only option is to change service provider. My broad band keeps dropping out and is never up to the line max given which was 3.5Mbit. Since raising a new fault recently BT Openreach engineer has been in attendance and confirmed my line is not at fault and has only slightly poor characteristics. He was V excited to announce a major radio frequency issue he had detected. It turns out a faulty CCTV camera power pack is emitting a signal that is blocking my line via the drop wire acting as a receiver and this causes the exchange equipment to see errors and reduce my broadband. SO THE FIX IS NOT IN OPENREACHES REMIT, THEY SAID THEY CAN'T GO AROUND FIXING EVERYONE ELSE'S FAULTY EQUIPMENT. So I guess they mean tough luck but good luck getting your neighbour to shell out for a fix they don't need as the cameras are still working. Question is can I get a screened dropwire to stop this interference?

    I think you mean REIN (Repetitive Electrical Impulse Noise). I would be very surprised if that was the issue, as the line is normally balanced, and would only pick up a small amount of signal anyway.
    What are your ADSL Statistics ?
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

Maybe you are looking for

  • How can i disable form autocompletion in beta 4?

    Yeha, I ran multiple times through the options of beta 4 but couldn't find any solutions do deactivate the autocompletion in forms. E.g. e-mail addresses or usernames.

  • Survey on QWERTY slide phone usage

    Hi, I'm a cell phone designer and I need your help. We're currently developing a new model and we heard an interesting "rumor" which is that some teenagers use their QWERTY slide phone as a wallet. For example, they put their driver's license or mone

  • Hasselblad 3FR and camera RAW/Lightroom

    I use CS3 and Lightroom for all of my work (Canon Raw) now very happily. Having recently purchased a Hasselblad HD3-31 it would make my day if I could directly import the 3FR files into Lightroom or Camera Raw. I did check before buying and was fully

  • Object sorting

    Hi, My poject need the sorting function according to one attribute of a object. but the attribute is varied by the selected list item on the user's interface, and we want to create a common function to this. It's diffcult to me now. can anyone give s

  • JDBC - Oracle Installation

    I am running a servlet on Lunux/Apache/Tomcat and I need to make a JDBC connection to Oracle on another computer. I have moved the Oracle 'classes12.zip' to the ...j2sdk1.4.1/bin directory and I have also added it to the CLASSPATH environment variabl