URGENT HELP ME ANY ONE

HI,
My problem is when i enter kunnr corresponding VBELN will display by using F4.  upto it is comming correctly.
But if i enter kunnr and vbeln is not related to kunnr in the selection screen it is not showing error. It is displaying report.
Now my client want Kunnr not related to vbeln enter by enduser it will display error. 'This sales order not related to Customer'.
How can i achive this.
PARAMETERS: P_KUNNR TYPE VBAK-KUNNR.
SELECT-OPTIONS: s_vbeln FOR VBAP-VBELN.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_VBELN-LOW.
   PERFORM GET_VALUE.
FORM GET_VALUE.
CLEAR s_vbeln.
  SELECT VBELN
  FROM VBAK
  INTO TABLE JTAB
  WHERE KUNNR EQ P_KUNNR.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      RETFIELD        = 'SALES ORDER NUMBER'
      DYNPPROG        = SY-REPID
      DYNPNR          = SY-DYNNR
      DYNPROFIELD     = 'S_VBELN-LOW'
      VALUE_ORG       = 'S'
    TABLES
      VALUE_TAB       = JTAB
    EXCEPTIONS
      PARAMETER_ERROR = 1
      NO_VALUES_FOUND = 2
      OTHERS          = 3.
*IF SY-SUBRC = 0  .
*loop at jtab.
  s_vbeln-low = jtab-vbeln.
  append s_vbeln.
MESSAGE E000(0) WITH 'Enter correct sales order number '.
endloop.
endif.
ENDFORM.

Hi,
After the select query check sy-subrc value.
If it is '0' then write the code for attaching F4 help, else give the error message 'This sales order not related to Customer.'
PARAMETERS: P_KUNNR TYPE VBAK-KUNNR.
SELECT-OPTIONS: s_vbeln FOR VBAP-VBELN.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_VBELN-LOW.
PERFORM GET_VALUE.
FORM GET_VALUE.
CLEAR s_vbeln.
SELECT VBELN
FROM VBAK
INTO TABLE JTAB
WHERE KUNNR EQ P_KUNNR.
if sy-subrc eq 0.
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
RETFIELD = 'SALES ORDER NUMBER'
DYNPPROG = SY-REPID
DYNPNR = SY-DYNNR
DYNPROFIELD = 'S_VBELN-LOW'
VALUE_ORG = 'S'
TABLES
VALUE_TAB = JTAB
EXCEPTIONS
PARAMETER_ERROR = 1
NO_VALUES_FOUND = 2
OTHERS = 3.
*IF SY-SUBRC = 0 .
*loop at jtab.
s_vbeln-low = jtab-vbeln.
append s_vbeln.
MESSAGE E000(0) WITH 'Enter correct sales order number '.
endloop.
endif.
ELSE.
MESSAGE E000(0) WITH 'This sales order not related to Customer'.
ENDIF.
ENDFORM.
Hope it will help you.
Reward points if helpful.
Thanks,
Parul.

Similar Messages

  • Hi..............I Stuk up with a problem in JTree Please, help me any one..

    Hi,
    I created a JTree where the DefaultMutableTreeNode is created at run time and for this node, the leaf items are added dynamically.....Now my problem is, I should get a popup menu when i click on the treenode particularly-----
    * Node1
    -------Node11
    -------Child1
    In this I want a popup only for the Node11 & its child elements if there is any Node2 also i don't want a popup and also for Node1 i don't want, when I am trying this I am getting the Popup to all nodes and child elements, please, help me any one who cross over this problem.............
    Thanks In Advance,
    Regards,
    Sarikakiran

    Firstly, do you know how to detect the right click? (Use a MouseListener.)
    When you receive the MouseEvent for the right-click, you can get the coordinates of the click (i.e. where on the JTree the mouse was clicked).
    You can then use JTree.getPathForLocation to get the path for the clicked node, which is a TreePath object. Use TreePath.getLastPathComponent to find which node was actually clicked on.
    Having determined which node was clicked, you can then make a decision about whether to show a popup menu.

  • I have a hp photosmart B8550 that has stopped printing black. Any help from any one?

    i have a hp photosmart B8550 that has stopped printing black.  I put in a new black cartridge, but still no luck.  i am about ready to trash the unit.  It never has worked well and uses a lot of ink.  Any help from any one?

    Hi sydnoid_615 
    Sorry to hear that you are having this issue and I hope you are otherwise doing well;
    What Operating System?
    If windows Xp or later try this  HP Hardware Diagnostic Utility
    Veriify the printer firware and software up to date  Go Here select your OS and verify 
    How your printer is connected to your computer USB, Wireless, Ethernet ,ETC)
    if networked check the firware of the printer is the latest as well
    Hope it hepls;
    RobertoR
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • My iphone 3gs downgrade 5.0 to 4.33 and unlock with redsnow but network no  help me any one pls

    my iphone 3gs downgrade 5.0 to 4.33 and unlock with redsnow but network no  help me any one pls

    hi
    dear
    ......downgrade is currect   use ireb tinyumberla edit host and itune  no any error

  • I jailbroke my ipod and its in recovery mode i cant take it out of it and i cant restore becasue i changes host to sariks sever i need help can any one help me

    i cant take it out of it and i cant restore becasue i changes host to sariks sever i need help can any one help me please please i just got my ipod i realy need help

    Sorry, due to the Terms of Use, problems with jailbroken devices can't be discussed here.

  • Need query... help me any one...

    Hi,
    i have the table like this,
    | city | caste | cnt |
    | 1 | 1 | 2 |
    | 1 | 2 | 3 |
    | 2 | 1 | 1 |
    | 2 | 2 | 2 |
    | 3 | 1 | 3 |
    | 3 | 3 | 1 |
    i want to select the top caste which is having the most cnt value for the each city.
    expecting output
    | city | caste | cnt |
    | 1 | 2 | 3 |
    | 2 | 2 | 2 |
    | 3 | 1 | 3 |
    Can you any one help me...?
    Thanks,
    S.Ashokkumar.

    Hi,
    i have tried like this...
    select t.city,t.caste,max(t.cnt) as mm from (
         select city,caste,count(caste) as cnt from city group by city,caste)t
    group by t.city
    order by count(t.city) desc
    it gives the wrong result set.
    Is it correct or not?
    Thanks
    S.Ashokkumar.

  • Pls help me any one, ADF Faces EO,VO creation in mutiple table..

    problem here:
    table1
    field1 (pk)
    field2 NAME
    table2
    field1 (pk)
    field2 (fk for table1)
    field3 NAME
    table3
    field1 (pk)
    field2 (fk for table2)
    field3 NAME
    Here each table having separate panel tabbed, i want to show table1 of
    field2 in third panel tabbed(screen). How i can create EO,VO to show
    with success.
    When i'm showing the table1 of field2, is not require to do a DML operations.
    like this my third screen's adf table
    field2(table1) field2(table3) field3(table3)
    (showing for
    user identify)
    Urgent Requirement pls help me.
    In case of any query please free to mail @ [email protected]
    Thanks & Regards,
    Rengaraj
    Edited by: user11129216 on May 4, 2009 7:21 AM

    Like Frank, I'm not 100% sure I'm understanding your requirement, but here are some observations.
    Your three tables look like master/detail/detail, let's say it was Regions->Countries->Locations
    So, you would build a RegionsView VO to show the Regions information.
    You would build a CountriesView VO to show the Countries information.
    You would build a LocationsView VO to show the Locations information.
    Then you would create a view link between RegionsView and CountriesView to coordinate that master/detail relationship.
    Then you would create a view link between CountriesView and LocationsView to coordinate that master/detail relationship.
    All of the above will be created automatically for you if you have foreign keys defined in the database when you use the Create Business Components from Tables wizard. (including the underlying entity objects for your database tables, associations that reflect your foreign key relationships).
    If you want LocationsView to show information from its parent, you can include the Country EO as an entity usage in the LocationsView and include the attributes from country that you want to appear in that (join) query. You can repeat to also add the Region EO as an entity usage to join all three.
    Then, you would drop RegionsView from the data control palette onto tab1, CountriesView onto tab2, and LocationsView onto tab 3.

  • Urgent help on Sun One Directory server 5.1

    Hi All,
    Am trying to access sun one directory server using the JAVA api provided by the tool itself. Developed an application to access that server and perform several operation.
    When I try to unassign a user from a group, all the users from that group are getting unassigned. Can there me any scenario in which this can happen. The user(no an admin user) who is used to connect to the LDAP server has all privileges to do operations on that group. More over this issue is very inconsistent, we could notice only once in separate environment (once per environment) and there hence cannot
    be reproducible.
    Below is snippet which remove a user from a group.
    LDAPAttribute attr = new LDAPAttribute( "uniquemember", userEntryDN );
    LDAPModification ldapMod = new LDAPModification( LDAPModification.DELETE, attr );
    ldapConnection.modify( myEntryDN, ldapMod );
    Any help on will be greatful.
    Thanks in advance
    -Sri

    TTT

  • Urgent help please.. one of the jsp file is raising an error.. how to debug

    Following is the error raised from file cnytdsum.jsp.
    java.lang.ArrayIndexOutOfBoundsException: 4 at oa_html._cnytdsum._jspService(_cnytdsum.java:2263) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:534)
    I tried enabling the FND: Diagnostics to ON and capturing the log at the Statement level. But not sure where are the out.println statements in this cnytdsum.jsp is printing? Thanks for your help.
    Error raised from the HTML responsibility 'Sales Force Compensation Super uesr' and Transaction->reports for one particular salesperson.
    THanks

    Are you sure that your changed file is getting picked up for the execution? Where are you putting the modified file and make sure to bounce apache after putting the modified file?
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                           

  • Cant get help off any one , too much messing about to get you tube to work what a load of sh...

    why has you tube stopped playing

    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • G580 Smart Fan Noise PLZ Help me Any One...PLZZZZZZZZZZZZZZzz

    PLZ help me. My lenovo g580 When power on ..Just hearing Noise . Its Smart fan Noise. Plz Help Me Bro...........

    hi Arif664
    Welcome to Lenovo Community Forums!
    You may want to try a software Called speed fan, This gives control to your Fan and also shows Temperature readings.
     Other Lenovo Motherboard have Restrictions for controlling the Fan. But give it a shot If it detected your fan then you're all set. adjust the Fan to your desired speed and fine tune it with the Temp that you're getting
    If the Fan really get too Loud, beyond normal, I would still suggest to call Lenovo Technical Support for Assistance.
    Best Regards
    Solid Cruver.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Hi All In PO Please Help Me Any One

    Hi All,
    My requirements is when ever new supplier is created (After Save) That Information automatically will send through Email (Manager mail)
    I was created a supplier and i was created Alert for this AP_supplier and Xml Bursting also completed
    here my concurrent Program is not firing another Predefined Concurrent Program firing so
    Here After creating Supplier Predefined Business Event is there so i will write subscription and this we need call Package Or Workflow Here Parameter is "Vendor_Id"
    How to call subscriptions in Package . Or Workflow
    Thank's
    Malli

    Firstly, do you know how to detect the right click? (Use a MouseListener.)
    When you receive the MouseEvent for the right-click, you can get the coordinates of the click (i.e. where on the JTree the mouse was clicked).
    You can then use JTree.getPathForLocation to get the path for the clicked node, which is a TreePath object. Use TreePath.getLastPathComponent to find which node was actually clicked on.
    Having determined which node was clicked, you can then make a decision about whether to show a popup menu.

  • Please help me any one

    Iam getting error doing of VA01 Posting only possible in periods 2011/12 and 2011/11 in company code

    Hi Vikram,
    Might be jan period is not open in your sysytem, go to OB52 and open the January period.
    Regards,
    Ranjith

  • Plz help Me any one i am getting errors in Servlets

    My OS is Windows 2000.I am using J2SDK1.4.0_02(in c:\J2SDK1.4.02_02\) and in order to run the SERVLETS I recently installed the J2SDKEE1.3.1 (in c:\J2SDKEE1.3.1). I updated the class path to c:\ J2SDKEE1.3.1\bin and c:\ J2SDKEE1.3.1\lib\jsdk.jar .Now I wrote a simple servlet program SimpleServlet.java and saved it in c:\MyPrograms.
    Now when I compiled this program at prompt as follows
    C:\MyPrograms\>javac SimpleServlet.java
    I am getting the following errors
    1)Package javax.servlet doesn�t exist
    2)Package jaavx.servlet.http doesn�t exist
    Can somebody please tell me where I went wrong. My guess is that the problem is with installing J2SDK. Somebody please let me out this problem.
    Thanx!

    Okay, you installed the Enterprise java sdk. I have never seen this jar before: "J2SDKEE1.3.1\lib\jsdk.jar". There should be the j2ee.jar in the same folder, this is what contains the Servlet API.
    Next, when compiling your servlet include the classpath in your javac statement:
    javac -classpath %CLASSPATH% SimpleServlet.javaWhen installing the J2EE SDK, you should have set up your J2EE_HOME and J2EE_LIBS env entries. Rather than just add the jar to your class path, use the J2EE_LIBS ref when compiling instead:
    set J2EE_HOME=C:\J2SDKEE1.3.1
    set J2EE_LIBS=%J2EE_HOME%\lib
    javac -classpath %J2EE_LIBS%\j2ee.jar SimpleServlet.javaRather than call "set" each time add them to your System properties.
    Cheers,
    Anthony

  • Need very urgent help

    Hi every1,
    i am in a very bad situation as i am very new to AS3, so i
    need some help from any one who can help me out of this.
    I have created a FLV Player using FLVPlayback Component
    everything is working fine but the only problem is the rewind and
    forward button behaves very strange when i test it on web page
    residing in a webserver.
    In brief i want to say that the rewind and forward control in
    the application works alright when i play it in my local machine
    but when i take the file to a web sever and play it the controls
    behave very strange (when i click on the forward and rewind button
    it just takes me to the end of the movie and to the start of the
    movie at one shot which should not be the purpose of the rewind and
    forward button).
    So, somebody please look at my code below and i will be very
    thank full to the person who can send me the correct code.
    The code for the rewind and forward control is higlighted in
    the below code. please help... .very urgent..........
    import fl.video.*;
    var flvSou:String;
    var dynText:String;
    myflv.autoPlay = true;
    onscreen_play_btn.visible = false;
    onscreen_replay_btn.visible = false;
    if (myflv.playing) {
    onscreen_play_btn.visible = false;
    onscreen_replay_btn.visible = false;
    //myflv.source = "Call_to_action.flv";
    myflv.source = root.loaderInfo.parameters.flvSou;
    dynTxt.text = String(root.loaderInfo.parameters.dynText);
    slash_txt.text = "/";
    myflv.playPauseButton = playPause_btn;
    myflv.stopButton = stop_btn;
    myflv.muteButton = mute_btn;
    myflv.volumeBar = volume_bar;
    myflv.volume = .6;
    myflv.forwardButton = forward_btn;
    myflv.backButton = back_btn;
    myflv.seekBar = seek_bar;
    myflv.bufferingBar = buffering_bar;
    myflv.fullScreenButton = fullscreen_btn;
    //========================= Actions for Button Controls
    =========================//
    //========================= Actions for Play and Pause Button
    =========================//
    playPause_btn.pause_mc.addEventListener(MouseEvent.CLICK,
    clickHandlerPause);
    function clickHandlerPause(event:MouseEvent):void {
    //trace("clickHandler detected an event of type: " +
    event.type);
    //trace("the event occurred on: " + event.target.name);
    trace("u clicked pause button");
    onscreen_play_btn.visible = true;
    //myflv.alpha = .5; // uncomment later
    playPause_btn.play_mc.addEventListener(MouseEvent.CLICK,
    clickHandlerPlay);
    function clickHandlerPlay(event:MouseEvent):void {
    //trace("clickHandler detected an event of type: " +
    event.type);
    //trace("the event occurred on: " + event.target.name);
    trace("u clicked play button");
    onscreen_play_btn.visible = false;
    //myflv.alpha = 100; // uncomment later
    if (onscreen_replay_btn.visible==true) {
    onscreen_replay_btn.visible=false;
    //========================= Actions for Play and Pause Button
    =========================//
    //========================= Actions for FLVPlayback
    =========================//
    myflv.addEventListener(MouseEvent.CLICK,
    clickHandlerPauseFlv);
    function clickHandlerPauseFlv(event:MouseEvent):void {
    //trace("clickHandler detected an event of type: " +
    event.type);
    //trace("the event occurred on: " + event.target.name);
    trace("u clicked video component button");
    trace(myflv.totalTime);
    if (myflv.playing==true) {
    myflv.pause();
    onscreen_play_btn.visible = true;
    //myflv.alpha = .5; // uncomment later
    } else {
    myflv.play();
    onscreen_play_btn.visible = false;
    onscreen_replay_btn.visible = false;
    //myflv.alpha = 100; // uncomment later
    //========================= Actions for FLVPlayback
    =========================//
    //========================= Actions for Fullscreen Button
    =========================//
    fullscreen_btn.addEventListener(MouseEvent.CLICK,onFullScreenButtonClick);
    function onFullScreenButtonClick(event:MouseEvent):void {
    stage.displayState = StageDisplayState.FULL_SCREEN;
    //or set it to normal like: stage.displayState =
    StageDisplayState.NORMAL;
    //========================= Actions for Fullscreen Button
    =========================//
    //========================= Actions for onScreenPlay Button
    =========================//
    onscreen_play_btn.addEventListener(MouseEvent.CLICK,onScreenPlayButtonClick);
    function onScreenPlayButtonClick(event:MouseEvent):void {
    trace("working");
    if (myflv.playing==true) {
    myflv.pause();
    } else {
    myflv.play();
    //myflv.alpha = 100; // uncomment later
    onscreen_play_btn.visible = false;
    //========================= Actions for onScreenPlay Button
    =========================//
    //========================= Actions for onScreenReplay Button
    =========================//
    onscreen_replay_btn.addEventListener(MouseEvent.CLICK,onScreenReplayButtonClick);
    function onScreenReplayButtonClick(event:MouseEvent):void {
    trace("working");
    myflv.play();
    //myflv.seek(0);
    onscreen_replay_btn.visible = false;
    if (onscreen_play_btn.visible==true) {
    onscreen_play_btn.visible=false;
    //========================= Actions for onScreenReplay Button
    =========================//
    //========================= Actions for Stop Button
    =========================//
    stop_btn.addEventListener(MouseEvent.CLICK, StopButtonClick);
    function StopButtonClick(event:MouseEvent):void {
    myflv.seek(0);
    //myflv.autoRewind = true;
    //myflv.stop();
    onscreen_replay_btn.visible = true;
    //========================= Actions for Stop Button
    =========================//
    //========================= Actions for Button Controls
    =========================//
    //========================= Actions for Displaying Elapsed
    and Total Time =========================//
    myflv.addEventListener(MetadataEvent.METADATA_RECEIVED,
    cp_listener);
    function cp_listener(eventObject:MetadataEvent):void {
    //trace("Elapsed time in seconds: " + myflv.playheadTime);
    //trace("Total time is: " + eventObject.info.duration);
    var rounded:int = Math.round(eventObject.info.duration);
    var minutes:int = Math.floor(rounded/60);
    var seconds:int = rounded%60;
    flvTotalTime_txt.text = eventObject.info.duration;
    flvTotalTime_txt.text = (minutes<10 ? "0" :
    "")+minutes+":"+(seconds<10 ? "0" : "")+seconds;
    //flvElapsedTime_txt.text = String(myflv.playheadTime);
    stage.addEventListener(Event.ENTER_FRAME, updateTime);
    function updateTime(ev:Event):void {
    var rounded:int = Math.round(myflv.playheadTime);
    var minutes:int = Math.floor(rounded/60);
    var seconds:int = rounded%60;
    flvElapsedTime_txt.text = String(myflv.playheadTime);
    flvElapsedTime_txt.text = (minutes<10 ? "0" :
    "")+minutes+":"+(seconds<10 ? "0" : "")+seconds;
    //========================= Actions for Displaying Elapsed
    and Total Time =========================//
    myflv.addEventListener(Event.COMPLETE, com_listener);
    function com_listener(eventObject:Event):void {
    trace("movie complete");
    myflv.stop();
    onscreen_replay_btn.visible = true;
    back_btn.addEventListener(MouseEvent.CLICK, BackButtonClick);
    function BackButtonClick(event:MouseEvent):void {
    myflv.play();
    //myflv.autoRewind = true;
    //myflv.stop();
    onscreen_replay_btn.visible = false;
    /************************************ THE CODE FOR FORWARD
    AND REWIND CONTROL STARTS HERE *****************************/
    var id1:Number;
    forward_btn.addEventListener(MouseEvent.MOUSE_DOWN,
    ForwardButtonDown);
    function ForwardButtonDown(event:MouseEvent):void {
    //forward_btn.onPress = function() {
    //mklik_flv.pause();
    var dest1:Number = myflv.playheadTime;
    id1 = setInterval(function ():void {
    myflv.seek(dest1 += 2);
    }, 100);
    forward_btn.addEventListener(MouseEvent.MOUSE_UP,
    ForwardButtonUp);
    function ForwardButtonUp(event:MouseEvent):void {
    //forward_btn.onRelease = function() {
    //myflv.play();
    clearInterval(id1);
    // ************************ Forward Button Function
    // ************************ Rewind Button Function
    var id2:Number;
    back_btn.addEventListener(MouseEvent.MOUSE_DOWN,
    BackButtonDown);
    function BackButtonDown(event:MouseEvent):void {
    //back_btn.onPress = function() {
    //mklik_flv.pause();
    var dest2:Number = myflv.playheadTime;
    id2 = setInterval(function ():void {
    myflv.seek(dest2 -= 2);
    }, 100);
    back_btn.addEventListener(MouseEvent.MOUSE_UP, BackButtonUp);
    function BackButtonUp(event:MouseEvent) {
    //back_btn.onRelease = function() {
    //mklik_flv.play();
    clearInterval(id2);
    }

    how long is your flv (in seconds), if allowed to play without
    ff/rewind/pause?

Maybe you are looking for

  • Zen Micro: My comp won't install driv

    Hello everyone, this is my first post. I just recently bought a Zen Micro, and during the installation, Right when it was about to finish, I got an error message that read like "There was an error installing the drivers". Everything seemed to be inst

  • Flash 10.0.32.18 audio problem

    Under IE 8 (32 bit browser under Vista64) on a fast Core i7 machine with 12 GB of ram and a fast network connection (just tested at 16 Mb/sec) I am losing about half the audio stream. Video appears to be OK. I never had this problem before the latest

  • Linksys e2000 nat xbox live

    i have an e2000 router and a wireless n xbox 360 game adapter. when i go to test connection it says my NAT type is set to moderate. how do i change that to open?

  • I want to know the accounts that authorized my itunes app

    i used some accounts in the past to authorize my computer. now i would want to know what they are. is that possible?

  • Can someone help me with the tilt controls for this phone

    Hey, I have a 2G Iphone. Everything seems to work perfect on it, and I got it pretty much new. The guy before me had it for a week. The tilt controls almost work perfectly, except when I place it on a flat table during a game, and don't touch it, my