Report sel. screen checkbox unchecked problem

Hello,
I have writen a report and on its selection screen, the logic is if checkbox is checked, one parameter field should be made as "required".
I did it at selection screen output and using screen-required field as '1'. It works.
But if user un-checks the checkbox after checking it, still the parameter field stays as required. It does not become a optional field.
What should I do to remove this required parameter?
I tried at-selection-screen on field for both checkbox and parameter field. But it does not work.
Pls advice.
Thanks,
Rupali.

Sorry. But I did not get your answer.
I am still on the selection-screen.
1) When I check the checkbox, the field becoms required. I get the message to enter some value for that field, when I press F8. ( Which is correct.).
2) I decide not to enter any value. But I uncheck the checkbox.
3) Still the parameter field is required entry field. But I do not know what value to enter into that.
So I am stuck at selection-screen.
Thanks.

Similar Messages

  • Problems with reports: parameter screen

    I work with Reports Builder 9.0.4.0.21.
    When I open some reports, the screen parameters appears with mode and orientation parameters.
    I don´t want these parameters and I eliminate these parameters in screen and I saved the report, but when I open and run again the report, the parameter screen with these parameters appears again
    May anyone help me?
    thanks in advance
    Beatriz

    Open report in report builder. From report menu, Tools--> Parameter Form Builder, it will open up a window. Scroll down and see if any parameters are checked ( background color of parameter will be in black). click on parameter to uncheck. Press ok, it will open up report editor-paper parameter form. Remove everything on this parameter form (you will only see two parameter form headers, if you have already unchecked everything on the previous screen)

  • Error in generating a sel-screen.

    friends,
        am getting an error while activating a report saying that error in generating the sel. screen 1000 in line 0....also, am not able to select the selection-texts (in the goto->text elements), which says there aer serious syntax errors...pl help..thanks all..
    here is my selection-screen declaration code
    SELECTION-SCREEN BEGIN OF BLOCK APPLICATION WITH FRAME TITLE TEXT-002.
    PARAMETERS:
      PM_WERKS LIKE MSEG-WERKS OBLIGATORY DEFAULT '1000',
      PM_MJAHR LIKE MKPF-MJAHR OBLIGATORY DEFAULT SY-DATLO.
    SELECT-OPTIONS:
      PM_MBLNR FOR MSEG-MBLNR NO-EXTENSION MEMORY ID MBN.
    PARAMETERS :
      PM_LGORT LIKE MSEG-LGORT OBLIGATORY DEFAULT '1001',
      PM_BUDAT LIKE MKPF-BUDAT.
    SELECTION-SCREEN END OF BLOCK APPLICATION.

    Hi Satish,
    i am not facing any kind of problem with your code. can you check it once.
    TABLES: mseg.
    SELECTION-SCREEN BEGIN OF BLOCK application WITH FRAME TITLE text-002.
    PARAMETERS:
    pm_werks LIKE mseg-werks OBLIGATORY DEFAULT '1000',
    pm_mjahr LIKE mkpf-mjahr OBLIGATORY DEFAULT sy-datlo.
    SELECT-OPTIONS:
    pm_mblnr FOR mseg-mblnr NO-EXTENSION MEMORY ID mbn.
    PARAMETERS :
    pm_lgort LIKE mseg-lgort OBLIGATORY DEFAULT '1001',
    pm_budat LIKE mkpf-budat.
    SELECTION-SCREEN END OF BLOCK application.
    Regards
    Vijay

  • Report with updateable checkbox

    Here is what I want to do :
    I have a report with a HTMLDB_ITEM.checkbox on a 'Y', 'N' field. I would like to be able to update that value by simply checking and unchecking my generated checkbox.
    Example : select player_no, player_name, htmldb_item.checkbox(1,active,'N','Y') from players.
    I would like to be able to uncheck the active checkbox and the field value for that player(using the player_no) would be updated to 'N' and vice versa when checking the box.
    I had created a process that looped on my checkbox item like explained in the "how to", but only the check items were processed.
    Then I tried adding the following to my select and looping on the second item, but both items do not follow each other. If I have 2 checkbox checked and 10 players, than the item 1(checkbox) has only 2 records compared to 10 for item 2(hidden player_no):
    htmldb_item.checkbox(1,active,'N','Y')||htmldb_item.hidden(2,player_no)
    Is my request feasible ?

    Sorry, I used HTML tags to bold stuff, didn't realize that didn't work.
    Sorry for the slow response, I have been swamped with work.
    I am assuming everyone is using the htmldb_application.g_fxx(i) variables in PL/SQL processes when trying to process their checkboxes.
    Here's an example that would be similar to Patrick's situation (above). This would be in the SQL for the report region:
    htmldb_item.checkbox(1, player_no, decode(active, 'Y', 'CHECKED', null) || htmldb_item.hidden(2,player_no)
    Let me explain why I'm doing this:
    First: htmldb_item.checkbox(1, player_no, decode(active, 'Y', 'CHECKED', null) will create checkboxes. Rows with active = 'Y' would have a checked checkbox, but the value of the checkbox is the player_no. I would assume (and suggest) that player_no is a unique value for that record.
    Second: htmldb_item.hidden(2,player_no) will be the item you wish to update. (I always make this the primary key or unique value, so I can update any data for that record, and it must be the same value as the checkbox value)
    In the How To documents, they tell you to use this for processing checkboxes:
    for i in 1..htmldb_application.g_f01.count
    loop
    --process here
    end loop; where htmldb_application.g_f01 is your checkbox item.
    I have noticed that it only counts the rows that have a checked checkbox. So if you have a report with 10 rows, and you've checked 2 checkboxes, the count for that item is only 2. Where as, the count for you hidden items is 10.
    There are two ways I have made this process work, but here is probably the easiest way I would process all rows (rows with a checked checkbox and rows without the checkbox checked):
    /*this will loop through every row of the report*/
    for i in 1..htmldb_application.g_f02.count
    loop
    /*this will account for when they don't check any boxes*/
    if htmldb_application.g_f01.count != 0
    then
    /*this will loop through the checked checkboxes*/
    for k in 1..htmldb_application.g_f01.count
    loop
    /*this compares the values of player_no of the checkbox and hidden item*/
    if htmldb_application.g_f01(k) = htmldb_application.g_f02(i)
    then
    --process where checkbox is checked
    update xtable
    set active = 'Y'
    where player_no = htmldb_application.g_f02(i);
    else
    --process where checkbox is not checked
    update xtable
    set active = 'N'
    where player_no = htmldb_application.g_f02(i);
    end if;
    end loop;
    else
    --same process where checkbox is not checked
    update xtable
    set active = 'N'
    where player_no = htmldb_application.g_f02(i);
    end if;
    end loop;
    Now I this is not exactly the same thing I have in my process, but this is extremely similar, so excuse any syntactical errors I have made.
    Let me know if this helps. I realize when I post this, all the spacing I have to make the code easier to read is gone, so I would suggest spacing things in notepad for easier reading.
    If you want to see how to use all the htmldb_item package items then you can be found them in the HTML DB documentation: https://cwisdb.cc.kuleuven.ac.be/ora10doc/appdev.101/b10992/mvl_api.htm#sthref1469

  • 'Save layout' button missing in the ALV report layout screen

    Hi Friends,
         In one of our ALV report the 'save layout' button is missing in the report output screen.i have used the OO concept for creating the ALV output and not the function module.I have attached the code below used for creating the ALV grid.
    CREATE OBJECT alv_grid
          EXPORTING i_parent = g_container_2.
    CALL METHOD alv_grid->set_table_for_first_display
         exporting
                   i_structure_name = 'PA0002'
                   is_layout =
           CHANGING
                     it_outtab = gt_outtab
                     it_fieldcatalog = wa_fieldcat.
    But i'm not able to trace why the 'save layout' button is missing in the output.Can anyone of you help me in sorting out this problem.
    Thanks and Regards,
    Vadivel.

    Pass <u><i><b>A to I_SAVE</b></i></u> parameter. That will give the options to the user to save the layout outs.
    I_SAVE = SPACE
    Layouts cannot be saved.
    I_SAVE = 'U'
    Only user-defined layouts can be saved.
    I_SAVE = 'X'
    Only global layouts can be saved.
    I_SAVE = 'A'
    Both user-defined and global layouts can be saved.
    Regards,
    Ravi
    Note : Please mark all the helpful answers
    Message was edited by: Ravikumar Allampallam

  • Persistent blue screen of death problems on Toshiba laptop pc; need help

    hey, guys,
     I was hoping you could help me out here.  I have been experiencing persistent blue screen of death problems on my Toshiba laptop since December 21 of 2014.  The first two times I started having theses persistent issues, I downloaded a bunch of redundant programs and games onto my computer, some of which were virus infected.  I had these programs on my computer for a while before my laptop was taken in for repairs.  I eventually uninstalled some unnecesssary programs from my pc, hoping it would have fixed these issues, even tried windows update.  I didn't have a clue that my problems were due to virus infections/malware until the two most recent times my computer was taken in for repairs; I had always been thinking it was a defective driver.  My laptop has already been in for repairs at least twice due to these perpetual BSOD problems; I had Norton Internet Security installed on my pc before the Geek Squad team (who repaired my computer and found 312 traces of malware in my system during the virus test; I was told by them that I had mistakenly downloaded infected web browsers onto my pc) switched me to Webroot SecureAnywhere (they said it was better at detecting viruses/malware than my NIS), but even after my pc has been through repairs twice in a row, I am still experiencing blue screens (this only seems to have happened once each week, and on one occasion, I went through almost two weeks without it occurring).  I am pretty sure, that I haven't downloaded anything onto my computer infected with viruses/malware (each of the scans done by my Webroot antivirus have found nothing), I have only a few games/apps installed on my pc, and what I downloaded all came from Microsoft's official website.  I can't afford to be wasting any more money on repairs, and I am desperately searching for any possible way to fix this myself.  Any help would be appreciated.  I have a copy of two of the memory dumps from my most recent crashes (I also have the dump reports from my most recent crashes dating back to March 6; I got these from an app from NirSort called Blue Screen View, if you need those)  I also have my system specs:
    http://1drv.ms/1I6AsaE
    http://1drv.ms/1Qdsb7T
     Note that many of these earler dump reports (the ones from March) came from viruses.  The ones from most recently as last month, I am not sure about.
    Attachments:
    POPCHOCK-PC.txt ‏149 KB

    Satellite C75D-B7300 (PSCLEU-009004)
    Thrashing about this way gets us nowhere.
    Best to restore the hard disk to its original out-of-the-box contents.
       Settings > Change PC settings > Update and recovery tab > Recovery tab > Remove everything and reinstall Windows
    Use the freshly restored machine for a day or so before any installations of hardware, software, or updates of any kind. If you get no crashes, the problem is not likely due to hardware.
    Then add updates and other things slowly, keeping track of them. If you get crashes after that, give us the corresponding dmp files.
    -Jerry

  • Problen in report selection screen

    Hi ,
    I had a problem in the report.In the report selection screen user asking to keep page no option.So when they select the page no in the selection screen,so from that page number report out put should display.
    how to do this.
    Thanks,

    If you generating the LIST using the classical approch you cah use the SCROLL LIST keyword for this purpose.
    Like:
    DATA: L_PAGENO TYPE I.
    L_PAGENO = 3.
    START-OF-SELECTION.
      DO 100 TIMES.
        WRITE: / SY-ABCDE.
      ENDDO.
      SCROLL LIST INDEX 0 TO: PAGE L_PAGENO.
    TOP-OF-PAGE.
      WRITE: 'Top-of-page'.
    Regards,
    Naimesh Patel

  • TO SER FIELS BOX IN REPORT LIST SCREEN

    i WANT TO SET 2 RADIO BUTTON AND 2 FIELD BOX IN THE  REPORT LIST SCREEN WHERE I WANT TO ENTER DATA MANUALLY IN THE FIELD BOX. AND I WANT TO SET ONE PUSH BUTTON .I WANT TO SET ALL THERE IN LIST SCREEN NOT IN SELECTION SCREEN.
    CAN ANYBODY SUGGEST ME.
    THANKS

    hi check this..
    REPORT Z_TEST7 .
    *Table declaration
    tables: vbak,vbap.
    *internal table
    data: begin of i_sales occurs 0,
    vbeln like vbak-vbeln,
    erdat like vbak-erdat,
    audat like vbak-audat,
    kunnr like vbak-kunnr,
    vkorg like vbak-vkorg,
    matnr like vbap-matnr,
    netpr like vbap-netpr,
    check type c, "checkbox
    end of i_sales.
    type-pools: slis.
    data: v_fieldcat type slis_fieldcat_alv,
    gt_fieldcat type slis_t_fieldcat_alv,
    gt_layout type slis_layout_alv,
    gt_sort type slis_sortinfo_alv,
    fieldcat like line of gt_fieldcat.
    *Selection screen
    parameters: p_vkorg like vbak-vkorg.
    select-options: s_vbeln for vbak-vbeln.
    *start of selection.
    start-of-selection.
    perform get_data.
    perform fill_fieldcatalog.
    perform write_data.
    FORM get_data .
    select avbeln aerdat aaudat akunnr avkorg bmatnr b~netpr into
    corresponding fields of table i_sales from vbak
    as a inner join vbap as b on avbeln = bvbeln
    where a~vkorg = p_vkorg and
    a~vbeln in s_vbeln.
    ENDFORM. " get_data
    FORM write_data .
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = sy-repid
    IS_LAYOUT = gt_layout
    IT_FIELDCAT = gt_fieldcat
    TABLES
    T_OUTTAB = i_sales .
    ENDFORM. " write_data
    FORM fill_fieldcatalog .
    sort i_sales by vbeln.
    clear v_fieldcat.
    "for check box
    v_fieldcat-col_pos = 1.
    v_fieldcat-fieldname = 'CHECK'.
    v_fieldcat-seltext_m = 'chek'.
    v_fieldcat-checkbox = 'X'.
    v_fieldcat-input = 'X'.
    v_fieldcat-edit = 'X'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 2.
    v_fieldcat-fieldname = 'VBELN'.
    v_fieldcat-seltext_m = 'Sales Document'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 3.
    v_fieldcat-fieldname = 'ERDAT'.
    v_fieldcat-seltext_m = 'Creation Date'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 4.
    v_fieldcat-fieldname = 'AUDAT'.
    v_fieldcat-seltext_m = 'Document Date'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 5.
    v_fieldcat-fieldname = 'KUNNR'.
    v_fieldcat-seltext_m = 'Customer'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 6.
    v_fieldcat-fieldname = 'VKORG'.
    v_fieldcat-seltext_m = 'Sales Organization'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 7.
    v_fieldcat-fieldname = 'MATNR'.
    v_fieldcat-seltext_m = 'Material'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    v_fieldcat-col_pos = 8.
    v_fieldcat-fieldname = 'NETPR'.
    v_fieldcat-seltext_m = 'Net Value'.
    append v_fieldcat to gt_fieldcat.
    clear v_fieldcat.
    endform.

  • Table Control on a report selection screen -not a dialog transaction screen

    Hi
    Does anyone know of a way to have table control functionality on a report selection-screen? The program needs to be able to run as a background job (ie cannot be a dialog transaction) and we need to be able to save variants with the selection-screen values.
    Any help would be appreciated.
    The key point is we want to allow the user to enter a dynamic number of rows of table data on the selection-screen, save a variant containing that data and execute the program with the variant as a background job.
    Thanks
    Nicole Knight

    Hi Nicole,
    The main problem is how to persist the data.  If you are not able to create a couple of tables then you could always utilise TVARV instead.  On a similar line to my original post you could have the button call a dialog transaction.  In here you could do your normal GUI table control.  When saving the data simply transpose each column into a separate select-option held on TVARV keyed by the 'variant name' + fieldname.  Then retrieve and transpose this back when executing the report.
    Other methods could be storing the data in cluster xy (see EXPORT TO DATABASE command).
    This seems a bit overkill for what would be a couple of maintenance dialogs.
    Cheers,
    Pete
    PS. The view cluster is just a way of hierarchically performing table maintenance across multiple related tables.  It offers a good UI for this purpose (header and item config tables) and is utilised extensively in the IMG.

  • Checkbox unchecked : How to check ?

    Hello,
    I am a ABAP & Web Dynpro beginner , and I try to modify a checkbox unchecked by default when the opening of a window.
    This window contains two tabs, the first tab contains various information and fields with my checkbox, and the other tab contains other information.
    So I have my box which is not checked 'IS_CNCT_PERSON_FLG' in my first tab.
    I have made  the code below:
    ZSET_IS_CNCT_PERSON_FLG method.
        TYPE REF TO DATA lo_nd_cp_basic_data if_wd_context_node.
        TYPE REF TO DATA lo_el_cp_basic_data if_wd_context_element.
        DATA TYPE ls_cp_basic_data wd_this-> Element_cp_basic_data.
        DATA TYPE lv_is_cnct_person_flg wd_this-> Element_cp_basic_data-is_cnct_person_flg.
    * Navigate from to via lead selection
        lo_nd_cp_basic_data = wd_context-> get_child_node (name = wd_this-> wdctx_cp_basic_data).
    * @ TODO handle non existent child
    * IF lo_nd_cp_basic_data IS INITIAL.
    * ENDIF.
    * Get element via lead selection
        lo_el_cp_basic_data = lo_nd_cp_basic_data-> get_element ().
    * Alternative access via index
    * = Lo_el_cp_basic_data lo_nd_cp_basic_data-> get_element (index = 1).
    * @ TODO handle not set lead selection
        IF IS INITIAL lo_el_cp_basic_data.
        ENDIF.
    * @ TODO fill attribute
    Lv_is_cnct_person_flg * = 1.
    * Set attribute single
        lo_el_cp_basic_data-> set_attribute (
          name = `` IS_CNCT_PERSON_FLG
          value = i_is_selected).
    EndMethod.
    I call this method:   WDDOMODIFYVIEW post-exit :
    IF = first_time abap_true.
        wd_this-> ZSET_IS_CNCT_PERSON_FLG (abap_true).
      ENDIF.
    Then, I open my window and my box is checked, except that when I click the second tab and I go back to the first, the checkbox is unchecked again.
    I don't know if you need more info :).
    Can you give me a solution to resolve my problem.
    Thank you in advance!
    Vincent

    Hi sanasrinivas,
    I have already test in WDDOINIT method, but I had an error :
    OBJECTS_OBJREF_NOT_ASSIGNED_NO
    Access via 'NULL' object reference not possible.
    Method: ZSET_IS_CNCT_PERSON_FLG of program /1BCWDY/51AE06KQDH8STUCI7DHL==CP
    Method: IF_V_BD_OIF_BASIC_DATA~ZSET_IS_CNCT_PERSON_FLG of program /1BCWDY/51AE06KQDH8STUCI7DHL==CP
    Method: PRE007PKSSCNUFQG630JDXNYTOIJ of program /1BCWDY/51AE06KQDH8STUCI7DHL==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_DO_INIT of program /1BCWDY/51AE06KQDH8STUCI7DHL==CP
    Method: DO_INIT of program CL_WDR_DELEGATING_VIEW========CP
    Method: INIT_CONTROLLER of program CL_WDR_CONTROLLER=============CP
    Method: INIT_CONTROLLER of program CL_WDR_VIEW===================CP
    Method: INIT of program CL_WDR_CONTROLLER=============CP
    Method: GET_VIEW of program CL_WDR_VIEW_MANAGER===========CP
    Method: BIND_ROOT of program CL_WDR_VIEW_MANAGER===========CP
    And I don't know how to resolve the problem.
    To be sure,  you confirm me the WDDOMODIFYVIEW method is not the solution ?
    Thanks

  • My iMac 27" is 2 years old. The screen just start to sleep every 2-3 minutes and then one has to reboot it. I bought the unit from Incredible Connections in South Africa. They sent it to the South African distributors Core. They report LCD screen defect?

    My iMac 27" is 2 years old. The screen just start to sleep every 2-3 minutes and then one has to reboot it. I bought the unit from Incredible Connections in South Africa. They sent it to the South African distributors Core. They report LCD screen defect and charged me R7500-00 to replace the screen  and sent it back after 4 weeks.
    It does not  go to sleep anymore; but when switch on; there appears a flickering band of lines on the screen which last for about 20 seconds before the machines starts to work normally.
    It seems there is still a screen problem!
    We had to send it back again.
    The other problem is that you just get no communication out of the Core workshop and you cannot communicate with the technician.
    They had still not provide a technical report in spite of repeated discussion with the manager of Incredible Connections.

    Sounds like the graphics card might be the problem. Run the Hardware Test in extended mode. If you get an error it can be trusted, but getting a negative may not be all that meaningful.  Bring it back to them and let them check out the machine again.
    http://support.apple.com/kb/ht1509

  • Hiding Screen fields in a Report selection screen

    Hi Experts,
    I have a requirement to hide/disable  screen fields in a report selection screen when the user clicks on some radio buttons .
    Here is the scenario,
    1) There are 4 radio buttons four radiobuttons in one group on the selection screen:--  
    Block no:1
    PARAMETER: r_not  TYPE c RADIOBUTTON GROUP a1 DEFAULT 'X'.
    PARAMETER: r_prgs TYPE c RADIOBUTTON GROUP a1.
    PARAMETER: r_remv TYPE c RADIOBUTTON GROUP a1.
    PARAMETER: r_noresp TYPE c RADIOBUTTON GROUP a1.
    2) Based on the user clicking/selecting the radio buttons no.2,3 nad 4 i need to hide some fields in the other selection block
    in the selection screen.The parameters are as follows:
    Block no:2( These fields need to be hidden/disabled)
    PARAMETER: r_occ(3) TYPE c OBLIGATORY DEFAULT '1'.
    PARAMETER: r_and TYPE c RADIOBUTTON GROUP g1.
    PARAMETER: r_or  TYPE c RADIOBUTTON GROUP g1.
    PARAMETER: r_days(3) TYPE c OBLIGATORY DEFAULT '1'.
    Thanks

    Contd.....
    AT SELECTION-SCREEN.
      CASE SSCRFIELDS-UCOMM.   
          "When Customer button is clicked set flag 1
        WHEN 'FC01'.
          L_FLAG = '1'.
          "When Sales Order button is clicked set flag 2
        WHEN 'FC02'. "Sales order
          L_FLAG = '2'.
          "When Execute button is clicked set flag 4
        WHEN OTHERS.
          L_FLAG = '4'.
      ENDCASE.
    AT SELECTION-SCREEN OUTPUT.
    CASE L_FLAG.
        WHEN '1'.  "When Customer button is clicked
          LOOP AT SCREEN.
            "Set the Production and Customer Block as inactive
            IF  SCREEN-GROUP1 = 'BL1' OR SCREEN-GROUP1 = 'BL3'.
              SCREEN-ACTIVE = '0'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN '2'. "When Sales Order button is clicked
          LOOP AT SCREEN.
            "Set the Production and Customer Block as inactive
            IF  SCREEN-GROUP1 = 'BL1' OR SCREEN-GROUP1 = 'BL2'.
              SCREEN-ACTIVE = '0'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN '3'.   "When Refresh button is clicked
          LOOP AT SCREEN.
            "Set the all Blocks as active
           IF  SCREEN-GROUP1 = 'BL2' OR SCREEN-GROUP1 = 'BL3' OR SCREEN-GROUP1 = 'BL1'.
              SCREEN-ACTIVE = '1'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN OTHERS."When Execute button is clicked
          "Set the Sales order and Customer Block as inactive
          LOOP AT SCREEN.
            IF  SCREEN-GROUP1 = 'BL2' OR SCREEN-GROUP1 = 'BL3'.
              SCREEN-ACTIVE = '0'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
      ENDCASE.
    ENDFORM.      

  • "error Report" "iTunes has encountered a problem and needs to close" HELP!!

    every time i try to load itunes i get this message
    "error Report" "iTunes has encountered a problem and needs to close". i have tried uninstalling and reinstalling. i tried removing quicktime through my control pannel and then reinstalling. ive tried running scans and pretty much anything else i can think of. at this point i might just return the ipod. anyone have any ideas.

    Have you tried uninstalling Quicktime? If not try that. If you are still having problems then do this.
    1. Uninstall both iTunes and Quicktime.
    2. Delete the folders iTunes and Quicktime where installed in.
    3. Reboot.
    4. Delete C:\Documents and Settings\<<Your User ID>>\Application Data\Apple Computer\
    5. Delete C:\Documents and Settings\<<Your User ID>>\Local Settings\Application Data\Apple Computer
    6. Delete if in your My Documents folder there is a folder called My Music with a folder in it called iTunes. Delete or rename the iTunes folder.
    7. Reboot.
    8. Turn off all anti virus and firewall software.
    9. Re-install iTuens.
    If you still get an error after that your Windows install is hosed. You will need to format and re-install it first.

  • How can we read the screen field values from the report selection screen wi

    Hi expart,
    How can we read the screen field values from the report selection screen with out having an ENTER button pressed  .
    Regards
    Razz

    use this code...
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_posnr.
    **Read the Values of the SCREEN FIELDs
    CALL FUNCTION 'DYNP_VALUES_READ'

  • My Ipod touch screen will not come  up unless I conect it to the computer. It never gets past the apple logo and never fully retores? My screen is crackd a little at the bottom. Is this a screen or software problem?

    My ipod touch 4will not respond unless  I hook it up to the computer. It never goes pasthe logo apple screen.It never restores fully. Cant tell if this is a screen or software problem.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       
    Apple will exchange your iPod for a refurbished one for $199 if a 64 GB one and $99 for the other 4G iPods. They do not fix yours.
      Apple - iPod Repair price

Maybe you are looking for

  • Help need to build a report query

    Hi all I am using reports 6i and 10 g db. I am asked to generate letter format report. The content of letter format will be from employee_deschange_details.edcd_desc field . The parameter i have to pass is emp_code and dsm_code. Based on it the conte

  • Runtime error: Creating a simple resource in a CM repository

    Hi All,      I am trying to create a simple Resource & a collection in a CM repository without properties.      <b>The list of my imports is as follows:</b> import com.sapportals.htmlb.event.Event; import com.sapportals.htmlb.page.DynPage; import com

  • Embedding an xspf player into a swf

    well it looke easy enough, adn nowi running in circles... i'm got a version of dynamic xspf (flash) swf player. i'm trying to add music to a site... i can get the player to play fine on its own.. http://www.creativenet.net/dev/novastar/xspf_player_sl

  • Pls help me in resolving this exception

    Unexpected Application Error Occurred. javax.servlet.jsp.JspException at org.apache.struts.taglib.template.GetTag.doStartTag(GetTag.java:207) at jsp_servlet._common.__template._jspService(__template.java:235) at weblogic.servlet.jsp.JspBase.service(J

  • JTree: Updating a single node

    I have a Jtree and need, during the course of the apps execution, update the information in the tree, specifically change the icons of individual nodes. setLeafIcon() allows you to change the icon for the entire model, but I just need to change it fo