SUBTLE, apparent COLOR changes of selected screen images

This affects multiple programs; so would seem to be a system setup aspect.
Lately, the windows of opened programs have a color shading in areas that were once clear white background. Example is Mail 2.1.2 the left bar of mail boxes used to have a white background, now it is a soft light blue. The bar at the top is now blue-gray (actually quite nice coloration).
Images in Safari, of this site are a different tone of gray with a tinge of blue.
Also, apparent in web pages in some cases.
Web pages, via Firefox, of ChangingChange.net are more salmon coloration that before.
And pop up boxes (to fill in information) come up in a tinge of coloration..
My Display settings are SyncMaster - Preferences Display is a SAMSUNG SyncMaster 910T
This coloration is not distractive, rather it's quite soothing... Is my computer now changing itself so it's more restful -customizing it to the user!!
Way to Go!!
Or??
Way out?
Can a Mac be affected by and pass-on energies of the user? In the 80's a friend acquired a Mac PLus that had been used by the author of a book on Human Consciousness and reported that it was helping her in a way of understanding and applying aspects she otherwise did not know previously.

Can a Mac be affected by and pass-on energies of the user?
In my estimation, yes, the Universe is ONE, nothing is disconnected other than the cognizance of that fact.
There is not one photon, erg, or iota that does not affect the whole & vice versa, but there are none so blind as those who will not see.
"A human being is a part of the whole, called by us the "Universe," a part limited in time and space. He experiences himself, his thoughts and feelings as something separated from the rest, a kind of optical delusion of his consciousness. This delusion is a kind of prison for us, restricting us to our personal desires and to affection for a few persons nearest to us. Our task must be to free ourselves from this prison by widening our circle of compassion to embrace all living creatures and the whole of nature in its beauty."
~Albert Einstein.
"There comes a time when the mind takes a higher plane of knowledge but can never prove how it got there. All great discoveries have involved such a leap."
~Albert Einstein.
"Imagination is more important than knowledge. Knowledge is limited; imagination encircles the world."
~Albert Einstein.

Similar Messages

  • Changing the selection screen based on the option in list box option

    Hi Experts,
    I have a list box parameter in my selection screen,
    i have four options and i am changing my selection screen based the option selected.
    see my code below,
    at selection-screen output.
      GS_VRM_VALUES-KEY = '1'.
      GS_VRM_VALUES-TEXT = TEXT-S02.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '2'.
      GS_VRM_VALUES-TEXT = TEXT-S03.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '3'.
      GS_VRM_VALUES-TEXT = TEXT-S04.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      GS_VRM_VALUES-KEY = '4'.
      GS_VRM_VALUES-TEXT = TEXT-S05.
      APPEND GS_VRM_VALUES TO GT_VRM_VALUES.
      CLEAR: GS_VRM_VALUES.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          ID                    = 'P_DROP'
          VALUES                = GT_VRM_VALUES
      EXCEPTIONS
        ID_ILLEGAL_NAME       = 1
        OTHERS                = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    LOOP AT SCREEN .
        CASE P_DROP .
          WHEN '1'.
            IF SCREEN-GROUP1 = 'M2' OR
              SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '2'.
            IF SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '3'.
            IF SCREEN-GROUP1 = 'M2' OR
                SCREEN-GROUP1 = 'M4' .
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN '4'.
            IF SCREEN-GROUP1 = 'M2' OR
            SCREEN-GROUP1 = 'M3'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
          WHEN OTHERS.
            IF SCREEN-GROUP1 = 'M2' OR
               SCREEN-GROUP1 = 'M3' OR SCREEN-GROUP1 = 'M4'.
              SCREEN-INPUT = 0.
             SCREEN-ACTIVE = 0.
          screen-invisible = 1.
              MODIFY SCREEN.
            ENDIF.
        ENDCASE.
      ENDLOOP.
    my problem is when i change the option in the list box, the particular modify group ie, the screen is getting changed only after i press enter, So please suggest me how i can change the screen without pressing enter.

    Hi,
    without using VRM_SET_VALUES...you just create one data element by going se11....create one domain for it...now give the values in the "value range" tab....and at the time of declaration just write ..
    PARAMETERS var1 TYPE <your created data element>
                        AS LISTBOX VISIBLE LENGTH 20
                        USER-COMMAND onli
                        DEFAULT <one value>.
    You will get the same effect as list box....and make it mandatory..
    Arunima

  • Dynamic selection screen change in Selection Screen.

    Hi Experts,
    I am not getting dynamic screen change on selection screen. can you give solution for the following scenario.
    I have 3 radio buttons on selection screen. Example: R1, R2, R3.
    I have 5 fields on selection screen. Example : F1, F2, F3, F4, F5.
    When i select radio button 1 i will get F1 field screen only.
    When i select radio button 2 or 3 i will get F2 and F3 fields screen only.
    When i select radio button 3 i will get F4 and F5 fields screen only.
    Any one give me solution for the above scenario very much thankful.
    Thanks in advance,
    Sai

    Hi
    try this code,
    REPORT ZTEST_3RB.
    TABLES : KNA1,EKKO,VBRK.
    PARAMETERS : SALES RADIOBUTTON GROUP VIJJ USER-COMMAND VJY ,
    PUR RADIOBUTTON GROUP VIJJ ,
    BILL RADIOBUTTON GROUP VIJJ ,
    TOTAL AS CHECKBOX.
    SELECT-OPTIONS : S_CUSTNO FOR KNA1-KUNNR MODIF ID AKP DEFAULT 1000 TO 1033,
    S_PONO FOR EKKO-EBELN MODIF ID VKP,
    S_BNO FOR VBRK-VBELN MODIF ID PKP.
    INITIALIZATION.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF SALES = 'X'.
    IF SCREEN-GROUP1 = 'VKP'.
    SCREEN-INPUT = 0.
    SCREEN-ACTIVE = 0.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'PKP'.
    SCREEN-INPUT = 0.
    SCREEN-ACTIVE = 0.
    MODIFY SCREEN.
    ENDIF.
    ELSEIF PUR = 'X'.
    IF SCREEN-GROUP1 = 'PKP'.
    SCREEN-INPUT = 0.
    SCREEN-ACTIVE = 0.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'AKP'.
    SCREEN-INPUT = 0.
    SCREEN-ACTIVE = 0.
    MODIFY SCREEN.
    ENDIF.
    ELSEIF BILL = 'X'.
    IF SCREEN-GROUP1 = 'AKP'.
    SCREEN-INPUT = 0.
    SCREEN-ACTIVE = 0.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'VKP'.
    SCREEN-INPUT = 0.
    SCREEN-ACTIVE = 0.
    MODIFY SCREEN.
    ENDIF.
    ENDIF.
    ENDLOOP.
    i think this will help your problem,
    Regards,
    Vijay

  • User exists for changing the selection screen of the transaction CS11

    Hi,
    I want to change the selection screen of the transaction cs11 and modify the ALV output.
    I searched the old forums but not got satisfactry results.
    I want to change the plant and material from the parameter to the select option.
    i dont want to copy the transaction for the zcs11.
    any suggestion on this ?
    Regards,
    udupi

    one more requirement i have is that, i need to remove all the header fields such as material , plant etc and place that field in the item level. i can use the user exists PCSD0002 for the adding the customer field in the item. but how can i removed the header level field such as plant and material. whether we have any user exits for that?

  • How to Change Color of White Selection Screen in BW 3.5 and Higher

    Has anyone come up with a method to change the backround color of the BEX selection screen to the pervious blue (or alternative color).  The white backround much different than the old one and we would like to keep the transition after our upgrade to be a transparent as possible.
    Thanks,
    Grant

    Hi,
    Custom Look and Feel can only be set at Site, Application, Responsibility, Server, or User level.
    It cannot be set for a single page.
    Therefore, if you want to keep the SWAN look and feel elsewhere but want to edit the Login Page only then one option is to utilize the .LoginBg style which is available on that page only.
    So you can update swan-desktop.xss with the following
    <style selector=".LoginBg .FooterBottomBackground">
    <property name="background-image">url("/OA_HTML/cabo/images/swan/XXX.gif") !important</property>
    <property name="background-color">#000000</property>
    </style>
    <style selector=".LoginBg .p_OraSandGradient">
    <property name="background-image">url("/OA_HTML/cabo/images/swan/XXX.gif") !important</property>
    <property name="background-color">#000000</property>
    </style>
    Make sure you delete your temporary internet files and clear cache files from /OA_HTML/cabo/styles/cache/swan... before refreshing your page to see changes. The above should remove the blue images and replace with black if applied correctly.
    You can use any images or color you want, just replace the values above.
    I would normally have advised making this change via personalization but Oracle has been changing some of the hard-coded styles recently so I think editing the swan-desktop.xss file directly would be your best bet in this specific example.
    Mike

  • How to change standard selection-screen fields

    hi i am kishore.
    i have requirement.
    i have to change selection-screen label purchase order to purchase docuement in request for quatation.
    pls suggest that how to change the standard selection screen field labels.

    Hi.
    This is possible.
    Just try out this way.Heres is an example. 
    TABLES: pernr.
    data: i_tab type standard table of RSSELTEXTS with header line.
    initialization.
    i_tab-name = 'PNPPERNR'.
    i_tab-kind = 'S'.
    i_tab-text = 'Employee ID'.
    append i_tab.
    CALL FUNCTION 'SELECTION_TEXTS_MODIFY'
      EXPORTING
        program                           = 'ZESO_TEST'
      tables
        seltexts                          = i_tab
    EXCEPTIONS
      PROGRAM_NOT_FOUND                 = 1
      PROGRAM_CANNOT_BE_GENERATED       = 2
      OTHERS                            = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks and regards,
    Maheshwari.V

  • Dynamic text changes in selection screen

    i want to change the title of block into a selection screen after clicking radio button .the changes will be done dynamically.

    Hi Pravik,
    try this code:
    selection-screen : begin of block b1 with frame title text-034.
    selection-screen begin of line.
    parameter : r_mas_dl radiobutton group r user-command btn default 'X'.
    selection-screen comment 3(50) text-060.
    selection-screen end of line.
    selection-screen begin of line.
    parameter:  r_new_dl radiobutton group r.
    selection-screen comment 3(50) text-058.
    selection-screen end of line.
    selection-screen begin of line.
    parameter: r_chn_d1 radiobutton group r.
    selection-screen comment 3(50) text-059.
    selection-screen end of line.
    selection-screen skip 3.
    parameter p_file  type rlgrap-filename modif id a.
    select-options: s_sernr for risa0-sernr modif id b no-extension no intervals.
    selection-screen : end of block b1 .
    at selection-screen output.
      if r_mas_dl = c_x.                                      " For the first Radio button
        set titlebar 'MAS' with text-041. " Header Text1.
        loop at screen.
          if screen-group1 = c_a.
    *        CLEAR p_file.
            if screen-name = text-052. "'P_FILE'.
              screen-invisible = 0.
              screen-input = 1.
            endif.
          endif.
          if screen-group1 = c_b.
            screen-invisible = 1.
            screen-input = 0.
          endif.
          if screen-group1 = c_c.
            screen-invisible = 1.
            screen-input = 0.
          endif.
          modify screen.
        endloop.
      elseif r_new_dl = c_x.                             " For the second radio button
        clear p_file.
        set titlebar 'SIN' with text-058. " Header Text2
        loop at screen.
          if screen-group1 = c_a.
            clear s_sernr.
            screen-input = 0.
            screen-invisible = 1.
          endif.
          if screen-group1 = c_b.
            screen-input = 1.
            screen-invisible = 0.
          endif.
          if screen-group1 = c_c.
            screen-invisible = 1.
            screen-input = 0.
          endif.
          modify screen.
        endloop.
      elseif r_chn_d1 = c_x.                               " For the third radion button.
        clear p_file.
        set titlebar 'CHG' with text-059. " Header Text3.
        loop at screen.
          if screen-group1 = c_a.
            clear s_sernr.
            screen-input = 0.
            screen-invisible = 1.
          endif.
          if screen-group1 = c_b.
            screen-input = 0.
            screen-invisible = 1.
          endif.
          if screen-group1 = c_c.
            screen-invisible = 0.
            screen-input = 1.
          endif.
          modify screen.
        endloop.
      endif.
    hope it helps.

  • Changing the Selection Screen on the selection of a radio button

    Hi experts,
    I am stuck with a situation here.
    I have a selection screen with 2 blocks.
    The first block contains 5 radio buttons.
    The second block contains 7 select options fields.
    Now i want to show different select options when the user selects different radio buttons.
    For example, when the user selects radio button 1, select options 1, 2, 3, 4,  and 5 should be shown.
    When the user selects radio button2,  select options 3, 4, 5, 6, and 7 should be shown.
    How do i go about implementing this????
    I guess i need to do the coding in event "AT SELECTION-SCREEN OUTPUT".
    Should i use MODIF ID????
    Please help.
    Points will be awarded.
    Thanks and Regards
    Gaurav Kumar Raghav

    Use AT SELECTION-SCREEN  
    not AT SELECTION-SCREEN OUTPUT.
    cause output addition makes it a PBO not PAI
    check ur requirement & use the events accordingly
    group all select options under one group which you want to show on selection of radio button
    under AT SELECTION-SCREEN   
    loop at screen and change the property "ACTIVE (0/1)" for the group you want
    & don't forget to modify screen table in the end.
    one more thing u should do is use addition USER-COMMAND with your radio buttons.
    PARAMETERS : r1 RADIOBUTTON GROUP r1 USER-COMMAND f1,
                 r2 RADIOBUTTON GROUP r1.
    PARAMETERS : p1 TYPE c MODIF ID a,
                 p2 TYPE c MODIF ID b.
    AT SELECTION-SCREEN . " output
      LOOP AT SCREEN .
        IF r2 = 'X' AND screen-name = 'P1'.
          screen-active = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Edited by: mrugesh phatak on Oct 8, 2008 11:00 AM

  • Fireworks CS3-Color changes when importing Photoshop images

    Hello,
    I created a background image in Photoshop CS3 but whenever I import it into Fireworks CS3 the color changed. It seems that the saturation level is changing. The hue is close however. I tried using the color palette to type in the exact RGB & Hexadecimal number but it is still not working.
    Please help. Thank you

    Here are  couple of good articles on the color profile-Web export issue:
    At Smashing Magazine: http://www.smashingmagazine.com/2009/10/12/setting-up-photoshop-for-web-app-and-iphone-dev elopment/
    At Viget Inspire:http://www.viget.com/inspire/save-for-web-simply/
    (Useful info in the comments, too!)

  • Selection screen changes at selection screen output

    Hi all,
    I have to make my one block in selection scren invisible based on a particular condition.
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS:  s_status FOR g_status NO INTERVALS.
    PARAMETERS    :  p_trans(3) TYPE c,
                     p_hub(3) TYPE c.
    SELECT-OPTIONS:  s_auart  FOR g_auart.
    PARAMETERS:      p_buyt(1) TYPE c.
    SELECT-OPTIONS:
                     s_order  FOR g_vbeln,
                     s_zzhrt  FOR g_zzhrtosec,
                     s_vbeln1 FOR g_vbeln1,
                     s_dccode FOR g_dccode NO INTERVALS,
                     s_pgi   FOR g_pgi.
    SELECTION-SCREEN END OF BLOCK blk1.
    SELECTION-SCREEN BEGIN OF BLOCK blk2 WITH FRAME TITLE text-002.
    PARAMETERS    : p_c1 AS CHECKBOX USER-COMMAND cmd.
    SELECT-OPTIONS: s_list FOR g_list NO INTERVALS MODIF ID sc1.
    SELECTION-SCREEN END OF BLOCK blk2 .
    SELECTION-SCREEN BEGIN OF BLOCK blk3 WITH FRAME TITLE text-003.
    PARAMETERS    :  p_c2 AS CHECKBOX USER-COMMAND cmd2.
    SELECT-OPTIONS:  s_mail FOR g_mail NO INTERVALS MODIF ID sc2.
    PARAMETERS:   p_accld LIKE g_saknr DEFAULT '1342009999' MODIF ID sc2
                                                          OBLIGATORY,
                  p_accit LIKE g_saknr DEFAULT '1365009999' MODIF ID sc2
                                                          OBLIGATORY,
                  p_opacc LIKE g_saknr DEFAULT '346100XX99' MODIF ID sc2
                                                          OBLIGATORY,
                  p_lmacc LIKE g_saknr DEFAULT '1393009999' MODIF ID sc2
                                                          OBLIGATORY,
                  p_lmopa LIKE g_saknr DEFAULT '3471009999' MODIF ID sc2
                                                          OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK blk3.
    The block 3 'blk3' should be made invisible based on a condition.
    I have tried loop at screen-name but its not working.
    Kindly advice.
    Thanks and Regards,
    Divya

    Hi Divya,
    Check the below code.
    tables: pa0000, pa0001.
    parameters: p_chk1 as checkbox user-command rusr,
    p_chk2 as checkbox user-command rusr,
    p_chk3 as checkbox user-command rusr,
    p_chk4 as checkbox user-command rusr,
    p_chk5 as checkbox user-command rusr.
    selection-screen: begin of block blk1 with frame.
    select-options: s_pernr for pa0000-pernr modif id ABC,
    s_stat2 for pa0000-stat2 modif id DEF,
    s_werks for pa0001-werks modif id GHI,
    s_persg for pa0001-persg modif id JKL,
    s_persk for pa0001-persk modif id MNO.
    selection-screen: end of block blk1.
    AT SELECTION-SCREEN output.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'ABC'.
    IF p_chk1 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'DEF'.
    IF p_chk2 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'GHI'.
    IF p_chk3 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'JKL'.
    IF p_chk4 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'MNO'.
    IF p_chk5 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    *Note
    *Titles for check boxes and select options
    *P_CHK1 Personal Number
    *P_CHK2 Employment Status
    *P_CHK3 Personnel Area
    *P_CHK4 Employee Group
    *P_CHK5 Employee Sub group
    *S_PERNR Personal Number
    *S_PERSG Employee Group
    *S_PERSK Employee Sub group
    *S_STAT2 Employment Status
    *S_WERKS Personnel Area

  • Color changes (darkens) in screen capture - color sync gamma setting?

    I encountered this weird effect that the color darkens when I did a screen capture in one Mac but not the other.
    In fact, it darkens more with shift-ctrl-cmd-4 (selection capture) than with shift-ctrl-cmd-3 (whole screen capture).
    The knowledge base mentioned the gamma setting in http://support.apple.com/kb/ht3712 but the color darkens in the clipboard, so there is no way to change the color sync if it is not a file. I tried to re-calibrate my display using different gamma setting, but it didn't change any color.
    In my other Mac, I can do a screen capture and the color is preserved as is. It is only in one Mac that did this. The color darkens so much that it practically becomes black-and-white.
    Any suggestion would help. I think it has something to do with the color sync profile setting.

    I found out that the darkening of the color in screen capture is caused by screenshot captured into jpeg. The darkening happens when the lines are thin, due to the averaging effect of jpeg. If the lines are thick, then the change in color is not apparent.
    Now, the problem is, I can't change screen capture to capture in png. I used Tinker Tool, and deleted com.apple.screencapture.plist , nothing would change it back to capture in png.

  • Roadmap : color change of selected step

    Hi All,
            I am using roadmap in my application.... but in that when my step changes,then its color does not change i.e. i am not able to differentiate the selected step from the rest of steps.
           I have binded the selected step property with the context node.
          Thanks in advance...

    Hey Vishal these r the steps ,
    1.Define a node with attributes Step & Next Step.
    2.When ever you click on next Button , in event handler call this method .
    wd_Comp_Controller->Continue(  ).
    3. In Method Continue() code this.
    Node_Roadmap = wd_Context->get_Child_Node( Name = IF_COMPONENTCONTROLLER=>wdctx_Roadmap ).
    * get element via lead selection
      Elem_Roadmap = Node_Roadmap->get_Element(  ).
    * get single attribute
      Elem_Roadmap->get_Attribute(
        exporting
          Name =  `STEP`
        importing
          Value = Item_Step ).
    CASE Item_Step.
    **Set Next step
    When 'STP_DIMENSION'.
    Stru_Roadmap-STEP = 'STP_INPUT'.
    Stru_Roadmap-NEXT_ENABLED = abap_true.
    *set next step
    When 'STP_INPUT'.
    Stru_Roadmap-STEP = 'STP_RESULT'.
    Stru_Roadmap-NEXT_ENABLED = abap_false.
    When others.
    Stru_Roadmap-NEXT_ENABLED = abap_false.
    Endcase.
    Node_Roadmap->set_static_attributes( Stru_Roadmap ).
    wd_this->fire_navigate_evt( Stru_Roadmap-STEP  ).

  • Can we change the selection screen of f.27

    actually i want to have  print the account statement at sales area level instead of company code as in standard transaction F.27. so can we use exits to solve this
    and can any guru suggest the appropriate exit.

    Hi Prakash,
    I think user exit is not  available in f.27.
    I suggest you first try this in SD Module.
    If u r not able to get this there, go for a Zprogram copying old one and adding other changes req..
    I think this will solve ur problem.
    Assign points if useful.
    Thank You,
    Purnachandra RM

  • Change selection screen in LDB (KDF logical database - NOT HR)

    Hi All,
    Iu2019d like to use KDF logical database to keep the dynamic selections since user wants to use it but I need to change the selection screen itself. The existing variants for KDF donu2019t meet the user requirements. Some fields I need to hide some add. Like I want to u201Cremoveu201D the field u2018Posting periodu2019 (MONAT) (which is available in dynamic selection screen) and put it on the u201Cmainu201D selection screen.
    Do I need to create my own logical database or there is a way around?
    Could someone give me a practical advice or sample of solution?
    Thanks a lot.

    Thanks Himanshu,
    I did as you suggested but problem is that it does not allow me to hide the whole block.
    I have 3 filelds actually on block KD_0 I need to hide (its from selection screen of KDF logical database.)
      SELECT-OPTIONS: KD_LIFNR FOR LFA1-LIFNR MATCHCODE OBJECT KRED.
      SELECT-OPTIONS: KD_BUKRS    FOR  LFB1-BUKRS.
    SELECTION-SCREEN END OF BLOCK KD_0.
    PARAMETERS KD_INDEX AS SEARCH PATTERN FOR TABLE LFA1.
    What I did is below.  I used sp instead of  u201C=u201D since it has many screen for field KD_LIFNR(for frame, text etc).
    And when I did just for KD_LIFNR it was hidden but when I did the same for KD_BUKRS it was not hidden . The field has stars u201C*********u201D in it.
    Same happen with KD_INDEX. The name of the field is hidden but field not and it filled with ********. Do you have any ideas what it can be?
    I debugged it to catch all screen names but no luck
      loop at screen.
        if screen-name cp 'KD_LIFNR' or
        screen-name cp 'KD_BUKRS' or
        screen-name cp 'KD_INDEX' or
        screen-name = '%B000003_BLOCK_1000' or       
        screen-name = 'SSCRTEXTS-FRAME_TEXT' or
        screen-name = 'SSCRTEXTS-MCID_TEXT' or
        screen-name = 'SSCRTEXTS-STRNG_TEXT' or
        screen-name = 'SSCRFIELDS-SEARCH_BTN' or
        screen-name =  '%B025008_BLOCK_1000' or
        screen-name =  '%F021010_1000' or
        screen-name =  'ALCUR' or
        screen-name =  '%F022012_1000' or
        screen-name =  'EXCDT' or
        screen-name = 'SSCRFIELDS-UCOMM'.
          screen-invisible = '1'.
          modify screen.
        endif.
      endloop.

  • Selection Screen Change & Impact on background scheduled reports

    Hi,
    I have modified the selection screen of a report program by adding additional selection criteria. This report is background scheduled and runs several times with different variants in a day. I am worried that the background jobs may fail in Production if the latest changes are moved. But I think, background jobs will not fails unless the selection criteria that are part of variants that used in the background jobs not modified. But not sure. I just want to make sure, I am doing correct thing.
    Please let me know your thoughts. Appreciate your help!
    Thanks,
    Kannan.

    >
    Advait Gode wrote:
    > When you transport the program to production after changing the selection screen, you will have to re-create all the variants once again. Otherwise the scheduled jobs will fail.
    >
    > regards,
    > Advait
    I don't think so.
    But of course you will have to update the variants to reflect the new selections.
    Rob
    Edited by: Rob Burbank on Jan 14, 2009 10:56 AM

Maybe you are looking for

  • Run-time error "PXA_NO_SHARED_MEMORY" occurred

    Hi All, My production system is running fine. And when i check SM21 I saw a lot of error message Run-time error "PXA_NO_SHARED_MEMORY" occurred and Run-time error "SYSTEM_NO_ROLL" occurred. However I can't see any error in ST22. I had read sap note 3

  • Add file name script not working in CS3

    I have this wonderful script (written by Brian Price) back in 2004 for PS7 that adds the file name to an image ( I use it for adding file names to small images to be used in a slideshow). It works great ion Photoshop CS, but when I try to use it as p

  • Re-submit a form

    Hey VC experts, I've got the following scenario that I need your help with: - One "Input Form" accepts "Calendar Day" as input and executes more than 10 queries which in turn feed data to more than 10 forms each displaying either a "Guage" or a "Prog

  • TREX 7.0 administration tool

    I'm trying to connect to an RFC connection that was setup with the TREX Administration tool to connect to my SRM system and I get 'Error: too many values to unpack' When in the SRM system in transaction TREXADMIN the RFC tests ok. Any ideas? Message

  • Publishing queries in the Portal

    Hi experts I have a requirement for having queries publishe din the portal I know I can do it by creating web template, but it time consuming I've tried the following: 1) on query designer I published query to the portal. Issue is that selection crit