Submit statement and populating select options.

Hi to all experts.
My requirement to call the program RSWUWFML2 in my zreport with selection option (task) from zreport should be populated into the standard program selection screen.I know this can be done using submit report how to populate the select options .

Hi,
The screen elements of the called program must be declaredd as  ranges in the calling program as shown..
RANGES: seltab1 FOR spfli-carrid,
        seltab2 FOR spfli-connid.
          seltab1-sign = 'I'.
          seltab1-option = 'EQ'.
          seltab1-low = 'AA'.
          APPEND seltab1.
          seltab2-sign = 'I'.
          seltab2-option = 'EQ'.
          seltab2-low = '0017'.
          APPEND seltab2.
SUBMIT <called prog> VIA SELECTION-SCREEN
                            WITH s_carrid IN seltab1
                            WITH s_connid IN seltab2
                            AND RETURN.
to call  report RSWUWFML2.....
in zreport declare ranges as:
RANGES: seltab1 for swwwihead-wi_rh_task.
          seltab1-sign = 'I'.
          seltab1-option = 'EQ'.
          seltab1-low = '<value>'.
          APPEND seltab1.
          seltab2-sign = 'I'.
          seltab2-option = 'EQ'.
          seltab2-high = '<value>'.
          APPEND seltab1.
SUBMIT RSWUWFML2 VIA SELECTION-SCREEN
                            WITH p_tasks  IN seltab1
                           AND RETURN.
Hope it helps.....
Regards,
Mdi.Deeba
Edited by: Mdi.Deeba on Aug 3, 2009 10:59 AM

Similar Messages

  • How to use read statement on a select options

    Hi all,
    I am trying to read the all the values on user selection screen select options.
    I have an internal table loaded with data.
    So while looping this internal table, I need to check the table certain tank field (lgort) against the select options tank values entered by user.
    It is fine when user uses the multiple values on the select options since I use the "READ" statement on the select options and get the matching values.
    Example: when user uses the multiple value selection on a select-options to enter values A554 and A555
    The select-options table will be:
    sign   option    low         high
    I          EQ       A554
    I          EQ       A555
    LOOP AT gt_output_location INTO gw_output.
      READ TABLE s_lgort INTO gw_lgort WITH KEY low = gw_output-lgort.
        IF sy-subrc = 0.
        * append row to another table.
        ENDIF.
    ENDLOOP.
    Problem:
    Example: when user uses range on a select-options to enter values A554 and A555
    sign   option    low         high
    I          BT      A554       A555
    The read statement can only get matching value A554.  
    LOOP AT gt_output_location INTO gw_output.
      READ TABLE s_lgort INTO gw_lgort WITH KEY low = gw_output-lgort.
        IF sy-subrc = 0.
        * append row to another table.
        ENDIF.
    ENDLOOP.
    Anyone have any idea on this?? Thanks!!

    Hi all, I need to consider each and every lines of the gt_output_location as there are other fields need to consider also. Basically I am checking each and every lines of this table to see which lines I need to append to another table.
    That is why I did not use  "LOOP AT gt_output_location INTO gw_output WHERE lgort IN s_lgort"
    The full gt_output_location:
    LOOP AT gt_output_location INTO gw_output.
    *      IF p_lgort = space AND p_umlgo = space.
           IF gv_lines_lgort = 0 AND gv_lines_umlgo = 0.
    *       only append those from tank <> to tank
             IF gw_output-lgort <> gw_output-umlgo.
               APPEND gw_output to gt_output.
               CLEAR gw_output.
             ELSE. "from tank == to tank
    *         append those from plant <> to plant
               IF gw_output-werks <> gw_output-umwrk.
                 APPEND gw_output to gt_output.
                 CLEAR gw_output.
               ENDIF.
             ENDIF.
    *      ELSEIF p_lgort = space AND p_umlgo <> space.
           ELSEIF gv_lines_lgort = 0 AND gv_lines_umlgo > 0.
    *        IF gw_output-umlgo = p_umlgo.
             READ TABLE s_umlgo INTO gw_umlgo WITH KEY low = gw_output-umlgo.
             IF sy-subrc = 0.
    *         only append those from tank <> to tank
               IF gw_output-lgort <> gw_output-umlgo.
                 APPEND gw_output to gt_output.
                 CLEAR gw_output.
               ELSE. "from tank == to tank
    *           append those from plant <> to plant
                 IF gw_output-werks <> gw_output-umwrk.
                   APPEND gw_output to gt_output.
                   CLEAR gw_output.
                 ENDIF.
               ENDIF.
             ENDIF.
    *      ELSEIF p_umlgo = space AND p_lgort <> space.
           ELSEIF gv_lines_umlgo = 0 AND gv_lines_lgort > 0.
    *        IF gw_output-lgort = p_lgort.
             READ TABLE s_lgort INTO gw_lgort WITH KEY low = gw_output-lgort.
             IF sy-subrc = 0.
    *         only append those from tank <> to tank
               IF gw_output-lgort <> gw_output-umlgo.
                 APPEND gw_output to gt_output.
                 CLEAR gw_output.
               ELSE. "from tank == to tank
    *           append those from plant <> to plant
                 IF gw_output-werks <> gw_output-umwrk.
                   APPEND gw_output to gt_output.
                   CLEAR gw_output.
                 ENDIF.
               ENDIF.
             ENDIF.
           ELSE.
    *        IF gw_output-lgort = p_lgort AND gw_output-umlgo = p_umlgo.
             READ TABLE s_lgort INTO gw_lgort WITH KEY low = gw_output-lgort.
             IF sy-subrc = 0.
    *         only append those from tank <> to tank
               IF gw_output-lgort <> gw_output-umlgo.
                 APPEND gw_output to gt_output.
                 CLEAR gw_output.
               ELSE. "from tank == to tank
    *           append those from plant <> to plant
                 IF gw_output-werks <> gw_output-umwrk.
                   APPEND gw_output to gt_output.
                   CLEAR gw_output.
                 ENDIF.
               ENDIF.
             ENDIF.
             READ TABLE s_umlgo INTO gw_umlgo WITH KEY low = gw_output-umlgo.
             IF sy-subrc = 0.
    *         only append those from tank <> to tank
               IF gw_output-lgort <> gw_output-umlgo.
                 APPEND gw_output to gt_output.
                 CLEAR gw_output.
               ELSE. "from tank == to tank
    *           append those from plant <> to plant
                 IF gw_output-werks <> gw_output-umwrk.
                   APPEND gw_output to gt_output.
                   CLEAR gw_output.
                 ENDIF.
               ENDIF.
             ENDIF.
           ENDIF.
           CLEAR gw_lgort.
           CLEAR gw_umlgo.
         ENDLOOP.

  • Select statement for generic select options

    Hello,
    I have a problem implementing a SELECT-Statement. I have a generic number of select options on my selection screen and I have a range table for each select option. How can a generate a database select for these generic number of range tables?
    Thank you very much in advance & regards,
    Alexander

    the answer I gave you will work if you have a ranges table for every possible select-options and refer to every ranges table in your where clause.... that way, you don't have to know which are populated and which are not at the time of SELECT.
    You could also choose to create a dynamic where clause, based upon what you had select-options for and use with
    WHERE ( whereclause ).
    Edited by: BreakPoint on Mar 2, 2011 4:31 PM

  • How to retrieve data using logical database and custom select options

    Hi all,
    I have a selection screen which is displayed by logical database PSJ and I have two select options of my own. I need to retrieve data based on both selection screen of logical database and my own select options. How can I do it?
    Thanks in advance.

    Hai Gupta
    Check the following Document & Links
    1. A logical database is in fact
    a program only.
    2. This LDB provides two main things :
    a) a pre-defined selection screen
    which handles all user inputs and validations
    b) pre defined set of data
    based upon the user selection.
    3. So we dont have to worry about from
    which tables to fetch data.
    4. Moreover, this LDB Program,
    handles all user-authorisations
    and is efficient in all respects.
    5. tcode is SLDB
    good info about Logical Database. you can check the link.
    http://www.geekinterview.com/question_details/1506
    http://help.sap.com/saphelp_46c/helpdata/EN/35/2cd77bd7705394e10000009b387c12/frameset.htm
    Re: How to Create and Use ldb in reports?
    Re: Logical databases
    http://help.sap.com/saphelp_46c/helpdata/en/9f/db9bed35c111d1829f0000e829fbfe/frameset.htm
    Functions for displaying and changing logical databases:
    Call Transaction SE36 or
    Choose ABAP Workbench -> Development -> Programming environ. -> Logical databases
    Interaction between database program and report:
    During program processing, subroutines are performed in the database program and events are executed in the report.
    To read data from a database tables we use logical database.
    A logical database provides read-only access to a group of related tables to an ABAP/4 program.
    advantages:-
    The programmer need not worry about the primary key for each table.Because Logical database knows how the different tables relate to each other,and can issue the SELECT command with proper where clause to retrieve the data.
    i)An easy-to-use standard user interface.
    ii)check functions which check that user input is complete,correct,and plausible.
    iii)meaningful data selection.
    iv)central authorization checks for database accesses.
    v)good read access performance while retaining the hierarchical data view determined by the application logic.
    disadvantages:-
    i)If you donot specify a logical database in the program attributes,the GET events never occur.
    ii)There is no ENDGET command,so the code block associated with an event ends with the next event
    statement (such as another GET or an END-OF-SELECTION).
    1. transaction code SLDB.
    2.enter name z<ldb-name>
    3.create
    4.short text
    5.create
    6. name of root node (here Ekko)
    7. enter short text (f6)
    8.node type -> data base table.
    9.create
    10 change logical DB
    riht click on ekko and insert node
    here node name ekpo
    11.create
    12. click on selections
    13. press no Should the changed structure of Z<ldb name> be saved first.
    14.select tables which you want to join.
    15.transfer
    16 now you have to o to coding part.
    17. save
    activate.
    19.click to src code
    double click on first include and activate
    Regards
    Sreeni

  • At new, EXIT,STOP and CONTINUE, Select-options Initialization

    Hi Experts,
    I am having the following requirements.
    1) I have design the selection screen by using Select-options statement. In that i have to initialize both low and high values. I don't know how to write and where to write the code for the same.
    2) and another requirement as
    field A  contain values ( 0, 1, 1, 0, 1, 1, 1, 0)
    Field B  contain values (1, 0, 1, 1, 1, 1, 1, 1)
    At new b.
    write:/ b.
    endat.
    In the above case how many times At new statement calls.
    3) How is EXIT differ to STOP and CONTINUE. Please give me the brief idea on this.
    I hope i will get the accurate results for the above soon.
    Regards
    Prabhakar

    Hi,
    1.
    Select-options could be initialised with the command INITIALIZATION.
    Ex :
    tables : MARA.
    select-options : s_matnr for mara-matnr.
    Intialization.
      move : '123456789' to s_matnr-low ,
             'I'         to s_matnr-sign ,
             'EQ'        to s_matnr-option.
      append s_matnr.
    I means  Include, the other possible value is E for exclude.
    EQ means EQual, could be BT BeTween ...
    The structure of a select-options is : Sign, Option, Low and High. (Low and High is the two values you see in screen).
    The commande Initialization could be place anywhere outside the start-of-selection ... end-of-selection.
    2.
    3 times ..  but, depends where are the fields ..
    4.
    The command EXIT leave the current command. Command could be a PERFORM, a DO, a LOOP, a SELECT, ...
    The command STOP go to the end-of-selection. If you put some code after the end-of-selection, the code will be processed.
    Rgd
    Frédéric

  • Populating select-options in a variant through selection variable

    I have a select-options on the selection screen of a report. I have created a variant for this report. Now i want to populate this variant field through selection variable (entries of table TVARVC). How can i manage to populate multiple values in this. Suppose i want the variant to hold a range of values, how do i set the variable in the table so that the multiple values can be set dynamically?

    Hi Ravi,
    I know how to populate select-options but i want to know how to set up the selection variable in table TVARVC for using it in populating a select-option in a report variant. we populate these selection variables using the transaction STVARV where we specify a value against a particular variable. How can this variable multiple values (for example a range) so that a select-option can be populated dynamically through this?
    regards,
    Priyank

  • Multiple users and multiple select options

    Hi,
    First of all, let me congratulate Oracle HTML DB team for this great product! This is extremely powerful and useful.
    I have multiple selection item on the form to generate report for the selected multiple schools. I have two critical questions.
    1) Currently I am deleting all records from database tables for multiples selects and similarly selecting all records from these tables to populate dependent LOVs and so on. This is a major issue when multiple people use this application at the same time. I looked at couple of examples to create, delete and select records based on IDs (unique) and it is not clear to me if I need to create parameter/hidden params on the reports side or on the HTML DB side or .. how do they communicate etc. Could any one clarify this process of checking for unique IDs please.
    2) Is there any way to give an option to the user to treat multiple selected item as just one single and to treat them separate? For example, if we let the user count number of students at two schools, how can we let the user count two schools separate as well as both schools together? This should also further ask for the possible options separate for both schools separate if they were to run separate.
    This is very important for me and appreciate any help from you. Thanks in advance.

    Hi,
    Could any one point me in the right direction, please!
    Thanks,

  • Populating select-option, parameter simultaneously

    Hi All,
    I have a select option and a parameter on the selection screen. The parameter is disabled for input and enabled for output. The F4 for the the select option has a numeric value and a corresponding text (comes from a standard function module). When I select a value from F4, the numeric value should go to the select-option and the text should go to the input disabled parameter.
    At the moment, I am having to press an enter after choosing F4, for the text to reflect in the parameter field. I need both of them displayed at the same time, without having to press an enter.
    Please guide me about how I could achieve this.
    Thanks and Regards,
    Vidya.

    use this code in your F4 Help of Select Option after F4 Help Function Module .
    DATA SCR_FIELDS  LIKE DYNPREAD   OCCURS 0 WITH HEADER LINE.
    SCR_FIELDS-FIELDNAME =  ur parameter Name.
    SCR_FIELDS-FIELDVALUE =  ur parameter value(ur Text Field)
    APPEND SCR_FIELDS.
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
        EXPORTING
          DYNAME               = PROG_name
          DYNUMB               = SY-DYNNR
        TABLES
          DYNPFIELDS           = SCR_FIELDS
        EXCEPTIONS
          INVALID_ABAPWORKAREA = 1
          INVALID_DYNPROFIELD  = 2
          INVALID_DYNPRONAME   = 3
          INVALID_DYNPRONUMMER = 4
          INVALID_REQUEST      = 5
          NO_FIELDDESCRIPTION  = 6
          UNDEFIND_ERROR       = 7
          OTHERS               = 8.
    So you need not have to press Enter
    Regards,
    Alpesh
    Edited by: Alpesh on Mar 14, 2009 11:44 AM

  • Populating select-options dynamically

    Hey Everybody,
    I've done some reports with Select-options, but all the fields directly related to some field in a transparent table. As many of you might have experienced, things changed with the latest report that I have to develop.
    I have to derive the drop-down for the select-options dynamically.
    Could anybody provide me with the details, code snippets, hints on how to do this.
    Thank You.
    Sumit.

    Here is an example program where you are generically defining the select-option and building its F4 help at runtime.
    report zrich_0001 .
    data: begin of ihelp occurs 0,
          field type char10,
          ftext type char50,
          end of ihelp.
    data: a_field(20) type c.
    select-options s_field for a_field.
    initialization.
      ihelp-field = 'A'.
      ihelp-ftext = 'Description A'.
      append ihelp.
      ihelp-field = 'B'.
      ihelp-ftext = 'Description B'.
      append ihelp.
      ihelp-field = 'C'.
      ihelp-ftext = 'Description C'.
      append ihelp.
    at selection-screen on value-request for s_field-low.
      call function 'F4IF_INT_TABLE_VALUE_REQUEST'
           exporting
                retfield    = 'FIELD'
                dynprofield = 'S_FIELD'
                dynpprog    = sy-cprog
                dynpnr      = sy-dynnr
                value_org   = 'S'
           tables
                value_tab   = ihelp.
    start-of-selection.
    REgards,
    Rich Heilman

  • Populating select-options through code

    Hi Experts,
       I have a requirement like in my selection screen I will have a select-options which will be input disabled. But in the initialization event I want to populate some values through coding. How can I populate multiple values. I should not use variant. I have to code only.
    Expecting your help,
    Venkatraman.

    Hi,
    As problem has Solved but following my Sample Code can help People who will Search, in fact i am posting this one because it is different from all the previous replies i am using Macro to populate Select-Options or you can do the Same for Ranges.
    DEFINE fill_select_options.
      clear: &1.  &1-sign = &2.    &1-option = &3.   &1-low = &4. &1-high = &5.  append &1.
    END-OF-DEFINITION.
    SELECT-OPTIONS: sodate FOR sy-datum.
    INITIALIZATION.
      fill_select_options sodate 'I' 'BT' '20080101' '20080131'.
      fill_select_options sodate 'E' 'BT' '20080110' '20080115'.
      fill_select_options sodate 'I' 'EQ' '20080201' '20080201'.
      fill_select_options sodate 'I' 'EQ' '20080205' '20080205'.
    Regards,
    Faisal

  • Is it possible to set Touch and Gesture selected options by default on the simulator?

    Hi,
    I am developing a mobile app using touch events and is a pain to have to select Touch and gesture and clik  Touch layer and select the proper option every time I test the movie. One or three time is fine but along any  usual development day I have to do it like 200 times and is really time consuming.
    If there is not way to do it, is there any workaround as using an external tool or plugin?If not, can I suggest to implement this a future feature?
    Regards

    I got this from the Mail help menu. I searched fixed font and then chose "Make messages easier to read"
    Write messages in plain text or rich text
    You can compose messages using plain text or rich text (HTML) formatting.
    Plain text can be read by all recipients, regardless of the mail viewer used. You can attach pictures to plain text messages.
    Rich text can’t be read by a small number of recipients because rich text uses different fonts, text styles, and formatting to stylize messages. If a recipient’s computer doesn’t have the same font that you use in your messages, another font is substituted. Try using a popular font, such as Times New Roman or Geneva. You can put pictures within rich text messages.
    Set the default format for all messages
    Choose Mail > Preferences, and then click Composing.
    Choose the format you expect to use most often from the Message Format pop-up menu.
    To always respond to messages in the same format as the originals, also select the “Use the same message format as the original message” checkbox in the Responding section.
    Change the format for a single message
    Choose Format > Make Rich Text or Format > Make Plain Text before you send the message.
    Unless a message actually contains rich text (such as formatting and different text styles), it will not be sent as rich text, even if rich text format is selected.

  • Populating select-options in the main view

    hi
    i have two views. main screen and view1.
    in main i have created a selection screen with 6 fields. view1 also has selection screen and same fields in it. when i go to view1 and click on ok button, i need to comeback to main view and populate the selection field with the values entered in view1. i am successful to some extent. i am able to access the values entered in view1 selection fields in "modify" method of the main view, but do not know how to fill the selection fields of main view with this values.
    thanks

    Hi,
    I just want to be sure that have you created the node in the context of the component controller and mapped the same in both of the views for building the selection screen?
    If yes then you wont be having any problem in accessing the values from any views, changes in any view will reflect in the other .
    If no then just modify the design as per the above description.
    TO read the vlalue...just read the context of the node in the view using the code wizrd, and set the value to the attributes using set_attributes method.
    Hope this might help you out.
    Pooja

  • VL10A and new select-options

    Hi,
    I copied transaction VL10A to a new one ZVL10A.
    This was due to the need to add a new selection-criteria in the main screen: Delivery Type field.
    When I try to create the delivery for that delivery type I selected in ZVL10A main screen I am not able because I have lost the variable.
    See this example please:
    In my main program: ZRVV50R10C:
    FORM userexit_select_options_transf                          "n_524424
         CHANGING  cx_select_options  TYPE shp_vl10_select_options
                   cx_list_profil     TYPE shp_vl10_list_profil.
    cx_select_options-lfart = ST_DEVTY[].
    S_DEVTY-lfart = ST_DEVTY[].
    ENDFORM.                               "
    In Include LZV50R_VIEWF34 (where we call transaction VL01N to create delivery) I want to pass this parameter ST_DEVTY, but I am not able. I don’t have any variable at this moment with the
    Delivery type from my main screen.
    Thanks
    Best regards

    Hi,
    This you have to do with Parametr Id for delivery type only.Otherwise you cant get that value.
    Parameter id for LFART is :ALT.
    so using export and import you try.
    Regds
    Sivaparvathi
    Please reward points if helpful..

  • I am unable to find the Firefox button referred to in the following: At the top of the Firefox window, click on the Firefox button and then select Options

    Every instruction Mozilla offers to find or to do something contains a term or a phrase that is indeciphrable.
    I have been trying to change "Cookie Settings" so of course Mozilla advises me to click the Mozilla button at the top of the page. And of course there is no Mozilla button at the top of the page. Then after wading through Mozilla's arcane and moronic help sections I end up at the following:
    Display the Firefox button menu instead of the menu toolbar.
    Why don't I see it? (the Firefox button)
    Apparently the Firefox button is a new feature added in Firefox 4 to replace the Menu Bar. The menu bar is displayed instead of the Firefox button to make Firefox look like other Windows XP programs. Windows XP? Are you kidding me? Windows XP. Earth to Mozilla: Have you heard of Windows 8 or Windows 8.1?
    Then your instructions go on to refer to Windows Vista and Windows 7. JFC!
    Then, under "How to get it?" Mozilla offers the following gem:
    Right click on an empty section of the "Tab Strip" and uncheck "Menu Bar" om the pop-up menu.
    WHAT IS A TAB STRIP; and WHERE IS THE TAB STRIP? Again, JFC!
    Since these instructions refer to Windows XP, Windows Vista, and Windows 7, apparently these instructions haven't been upgraded for more than 2 years. No wonder Mozilla is a non-profit organization. There is no way that this organization could ever be profitable under any other structure.
    Mozilla's instructions on how to turn off the Menu Bar in order to get

    What do you currently see?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Do you have the menu bar?
    *Press the F10 key or tap the Alt key to bring up the hidden Menu bar.
    Do you have any toolbars visible at all?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: 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
    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: Command+Shift+F).
    *https://support.mozilla.org/kb/how-to-use-full-screen
    You can check for problems caused by a corrupted localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Select options and loop statement

    Dear forum,
    I have the scenario where i need to restrict the loop from the select-options.
    in the select-options, user enter currency.
    then in the loop i need to loop base on the currency user enter.
    may i know what steps should i use for the loop as loop cannot support where.
    thanks

    HI Gengis
    I have the scenario where i need to restrict the loop from the select-options.
    in the select-options, user enter currency.
    then in the loop i need to loop base on the currency user enter.
    may i know what steps should i use for the loop as loop cannot support where.
    as per your requirement.
    you have some data in your internal table also you have a select-options to input values.
    on the basis of the values in your select option you want to fetch the values from your internal table. right???
    then there should be a field like your select option in your internal table.
    select-option: s_matnr for mara-matnr.
    let assume you have an internal table with matnr and other fields also and your select-options is for mara-matnr.
    then you need to select the values in your internal table according to the values in your select-options like below.
    SELECT MATNR field1 field2........ from dbtable into table itab where matnr = s_matnr.
    the above code will give you the values matching the values in your select-options.
    you need not to apply loop becasue you already have only those values for which yo u have found records in the DBTABLE.
    in case you want to apply loop on an internal table on the basis of s_matnr's values, then you can write.
    in this scenario you need to define 2 internal table one with already fethced values and another in which we will fetch the values according to select-options.
    loop at itab into wa_itab.
    read table itab1 into wa_itab1 where matnr = wa_itab-matnr.
    write statement........
    endloop.
    before that youwill have to fetch values in itab according to s_matnr.
    I hope this will clear your query.
    Thanks
    Lalit Gupta.

Maybe you are looking for

  • Container Regions in Reflow CC

    I am working with Container Regions with Reflow CC. I start with a mobile design with one single text box all along the vertical screen. Then, I want that after a wider breakpoint, this text box (already converted as Container Region) appears splitte

  • Re: Windows Recovery Partition is not working

    Hi All! My brother's Toshiba A500 laptop with Windows 7 32bit got antimalware doctor and after deleting it fully, got problems with the OS (such as programs slowing considerably after randomly minimising during operation) and so we backed up everythi

  • Airport Express to Xbox 360

    I'm currently on a military base and I connect to a wifi that requires you to log on using a browser. I want to connect my xbox to this wifi, but being I don't have a browser on it, I can't connect. If I purchase an airport express, could I connect i

  • Embed a weather feed in specific table?

    I am attempting to include a weather info. feed in my web site.  When I attempt to put the code for the feed into one location it pops up in a completely different location when I preview the page in a browser.  It seems to sort of create its own spa

  • System status _ complete

    Dear all, I've got a question concerning standard status management. Our client requirement is to have a final 'state' to the service request. In other word, when the service request is set to the user statuts 'Answered', the system status is complet