Disable the Dynamic Selection Icon from T.Code FBL1N

Hi,
I want to disable the Dynamic Selection Icon from T.Code FBL1N...
Please Note that i found a link where some code is given for this problem.
Remove the dynamic selection screen.......
Please tell me where i paste that code....after initialization or where....
Thanks...
Edited by: Prince Kumar on May 16, 2009 8:59 AM

Hi,
1) COPY the program RFITEMAP and create a ZRFITEMAP
2) and added this code in the INITILIZATION event. You can search ZRFITEMAP with INITIALIZATION and add below code there.
  INTIALIZATION.
  DATA: t_exclude TYPE STANDARD TABLE OF sypfkey.
  APPEND 'DYNS' TO t_exclude.
  "DYNS is the dynamic selection screen function code.
  CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
    EXPORTING
      p_status        = sy-pfkey
    TABLES
      p_exclude       = t_exclude
Regards
Shital

Similar Messages

  • The dynamic selection for profit center in FBL1N isn't working

    Dear all,
    I have one one issue regarding FBL1N.
    The dynamic selection for profit center in FBL1N isn't working.
    If we enter profit center, we don't get any value.
    As per developer after debugging, table BSIK is not getting updated, hence values are not updating in the report.
    Please let me know, any configuration is missing.
    BR,
    Shailendra

    Try BSEG and see if its there for the particular doc. If its not there its a functional issue, you have to capture profit center at the time of entry. You can either make the profit center field mandatory or substitute it at the time of document generation. Consult your FI consultant. If u have activated New GL features the profit center may me in table FAGLFLEXA. but i don't think u can get the profit center from this table for your purpose, you may need to develop a zreport.
    And its not BISK its BSIK
    Edited by: Harisankar S on May 4, 2010 3:05 PM

  • Just upgraded to 5 from 3 - what happened to the page select icon? Can't find it in customize toolbars.

    Used to be you could select which page you wished to go back or forward to from the arrow icons on the navigation toolbar. The history menu item only shows 10 sites without having to open history for today. What happened? Is there another icon or a new plug in for this functionality? I used it all the time.

    ''what happened to the page select icon (Back/Forward)''
    The back/forward buttons have been moved to right-hand side of the navigation bar and the drop-down was removed. User right-click or hold click for one second to see the tab history. This is item #5 in my list.
    The History menu also has "Open Previous session" and "Open closed windows",
    to see more history use the History sidebar ("Ctrl+H") or the History Library List ("Ctrl+Shift+H") and sort or view by "Last visited".
    You can make '''Firefox 5.0.1''' look like Firefox 3.6.19, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 5.0.1, or 4.0.1, look like 3.6.*)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface

  • How to add a new Field in the Dynamic Selection screen section.

    HI,
    There is a requirement in which I need to add a field in existing program of dynamic selections.
    I need to add a field KNKK-DBRTG (Customer Rating) in dynamic selections screen of some existing report
    which has a dynamic selection screen with other fields like customer account, company code etc. Along with this i need to add Customer rating field also in the selection screen.
    I have used GET KNKK statement to select this in the Dynamic selection screen. But I need to make it appear
    on the screen.
    LDB used is the Customer Database.
    I have added GET KNKK statement after GET KNA1 statement.
    Can any one help me how we can make this rating field appear in the selection screen.
    With the GET statement Credit control area Fields can be selected in the selection screen but I have to permanantly add the field in the selection screen.
    Regards
    Prashant Prabhu

    Hi,
    So you need that this new field have data in old records?
    1.- If you are in BI 7.0 and the logic or data for that New field are in the same Dimension, you can use a Remodeling to fill it. I mean if you want if you want to load from a Master Data from other InfoObject in the same Dim.
    2.- If condition "1" is not yours.
    First add the new field, then create a Backup Cube (both cubes with the new field) and make a full update with all information in the original Cube. The new field willl be empty in both cubes.
    Create an UR from BackUp_Cube to Original_Cube with all direct mapping and create a logic in the Start Routine of the UR (modiying the data_package) you can look for the data in the DSO that you often use to load.
    To do that both cubes have to be Datasources ( right click on Cube-> aditional function-> and I think is "Extract Datasource")
    Hope it helps. Regards, Federico

  • How to Disable the Lead selection Action on aTable n How to Refreh a Page

    HI....
    1)How to Disable the Lead selection Action on aTable n How to Refreh a Page r web dynpro application.
    In my case i have a table n user enters data on multiple rows in table , n i have some input fields outside of table for those Inputs fields am settiing the data  at the screen initilization(in Init() moethod by hard code).the problem is whenever the is clicking in th 2nd row of a table the Lead Selection is triggerig and the data in the Input Fields outside the table is not displayinig.
    So by removing the lead Selection Action of a table i thought i can reslove this,
    2) How to refresha page(like we click F5 on key board),is it can be done thru code in web dynpro application
    Regards
    Rajesh

    Hi,
    You did not explained what is your functionality or coding in leadselection. Is that action on leadselection is necessary for you?.
    1)If you just want to remove the action then go to table properties and remove the action for leadselection.
    2)If you still want to continue with your leadselect action, then what you can do is.. write the code in leadselection action to again set the input fields which are out from table.  That is what you did in your init method.
    Page Refreshing
    3) What do you mean by page refreshing? is that refreshing your table only or both the table and input fields. 
         What I understood is you are allowing the user to enter values in table and soon after pressing a button the values should be saved and the data in input fields shld be deleted.  For this if you only invalidate the node then the user entered data will be lost. 
    So what you do is after getting the input data from the user add it to a ArrayList and then invalidate the node which clears the data in input field. Finally bind the Arraylist to your node.  see the following code. This is a concept make changes according to your requirement
    ArrayList list1=new ArrayList();
    wdContext.nodeAbc().bind(list1);
    IPrivateExcelviw.IAbcElement ele = wdContext.createAbcElement();
      ele.setNo(wdContext.currentAbcElement().getNo());
      ele.setName(wdContext.currentAbcElement().getName());
      ele.setMarks(wdContext.currentAbcElement().getMarks());
      list1.add(ele);
      wdContext.nodeAbc().invalidate();
    wdContext.nodeAbc().bind(list1);
    Revert me if you have any doubts
    Regards
    Raghu
    Edited by: Raghunandan Madarikuruva on Oct 16, 2008 8:07 AM

  • Disable the mouse pointer icon!

    As in the title, is there a way to disable the mouse pointer
    icon, ie when you rollover the button it changes to the "finger". I
    dont want to see the "finger" I just want it to remain as the
    "arrow"

    quote:
    Originally posted by:
    Newsgroup User
    I guess you never noticed how your OS works??? The pointer
    stays a pointer
    over all buttons. I find the finger pointer rather useless as
    well.
    Well, I must by now reply to all of you.
    First, "urami" made a good point when referring to kiosk
    interfaces. It makes sense to have no roll over in this case and I
    fully agree with this statement.
    But in the case of the interfaces we commonly create in Flash
    we need the finger icon to indicate that there is a photo-button or
    a drawing-button or a clickable text here and, if we want to "hide"
    it or if we do not want the user click it, we can with simple
    functions (related to _x and _y mouse position) disable or enable
    depending the circumstances the hot spot when the pointer rolls
    over it.
    The quoted remark of "DMennenoh" is not relevant.
    Why? Simply because in the OS all buttons are clearly
    designed as... buttons! There is no need to change the pointer icon
    as we perfectly know what we are going to do and where we must move
    the pointer to do the action: Open, Save, etc. And it is not only
    the case for buttons, it's also the case for the menu bar...
    In the interfaces we design, it is not always the case.
    In all my interfaces, I always have in mind these:
    How shall I react if I see this interface for the first time?
    What can I do and where?
    I suppose you'll agree with me if I say that some interfaces
    are so bad that it is very helpful to have the finger icon just to
    indicate that the area under the pointer is clearly a hot spot...
    I think this discussion is far from ending...

  • FAGL_FC_VAL in ECC 6.0 M not able to get the dynamic selection options

    Hi
    While executing the transaction FAGL_FC_VAL in ecc 6 we are not getting the dynamic selection option same as ecc 5 we need business area as selection option.
    Please provide solution.. if any note to be applied we will do that. we have recently migrated to ECC 6.0
    Regards,
    Abhijeet

    Sorry. This typo was only in this forum message. Within the BPEL process it's :
    <from expression="ora:countNodes('inputVariable','payload','/ns1:Transmission/ns1:TransmissionBody/ns1:GLogXMLElement/ns1:Release') "/>
    Still 0 count.

  • How can I disable the HP Updates Agent from running?

    HP pavilion D4100Y
    Windows XP  SP2 or 3 (not sure)
    No error message
    No recent changes
    Problem: The program "Updates from HP Agent" runs frequently and on no particular schedule, certainly not one I chose.  It takes over my computer for hours and uses most of the CPU, fluctuating from 13% to 87% to 1 etc.3% to 6%, etc. The computer hangs and I cannot use it for anything else. On the HP Updates screen, I set the updates to "NEVER" but that didn't work.  The programs still run. On the Windows Task Manager window the program is called "Updates from HP Agent".
    I cannot find anything about this problem in the support database.
    How can I disable the HP Updates Agent from running?
    This question was solved.
    View Solution.

    Select your start button and in the search box type "msconfig" then select msconfig.exe under programs.
    Look under the "Services" and "Boot" tabs. Uncheck HP update agent, select "Apply" and close.
    I work for HP

  • Is it possible to disable the Force closur button from QE11?

    Hi
    Is it possible to disable the Force closur button from QE11 transaction code level?
    Thanks and Regards
    GVD

    Hello Chanti,
    Disabling the force closure button is not possible by creating a security role as security restrictions work on organizational elements like co codes, plant, s loc etc.
    Could you please let me know if the requirement is for all users or few users.
    Also you may want to try the transaction variant/ Screen variant option. The force button is available in program SAPLQEEM and Function ABFO which you need to tick the inactive button during recording. Take help from ABAP if required.
    Thanks
    Sahil

  • How to get dynamic select options from logical database?

    Hi,
    in one of my extended reports (means - overwritten standard SAP functionality in Z-namespace) I'm using LDB 'DDF'. I've been requested to validate some of the dynamic selection options (for example - field HKONT at Document level) and to split the logic depending on the particular value(s).
    Tracking what is happened in the LDB program I found that this select option is added as dynamic WHERE clause to the SELECT statement - in a way:
    WHERE bukrs = p_burks AND ... AND
    (where_tab)
    Is there a way to get values of these LDB dynamic select options into my report and if yes - how?
    Thanks in advance.
    Regards,
    Ivaylo Mutafchiev
    Senior SAP Abap Consultant

    Hi,
    Try to use the following fm in your report and check
      call function 'RS_REFRESH_FROM_DYNAMICAL_SEL'
        exporting
          curr_report        = sy-cprog
          mode_write_or_move = 'M'
        importing
          p_trange           = gt_dyn_trange
        exceptions
          not_found          = 1
          wrong_type         = 2
          others             = 3.
    PS please make a whereused of this fm , how it has been used in LDB's to get dynmic selection values

  • How do i delete the icloud music icons from my iphone 5, i know the actual music is not on the phone but the icons clutter the music app

    How do i delete the icloud music icons from my iphone 5, i know the actual music is not on the phone but the icons clutter the music app

    Settings > Music > Show All Music (turn this option off).

  • How to get the default selection color from JTable

    Hi, there,
    I have a question for how to get the default selection color from JTable. I am currently implementing the customized table cell renderer, but I do want to set the selection color in the table exactly the same of default table cell renderer. The JTable.getSelectionBackgroup() did not works for me, it returned dark blue which made the text in the table unreadable. Anyone know how to get the window's default selection color?
    Thanks,
    -Jenny

    The windows default selection color is dark blue. Try selecting any text on this page. The difference is that the text gets changed to a white font so you can actually see the text.
    If you don't like the default colors that Java uses then use the UIManager to change the defaults. The following program shows all the properties controlled by the UIManager:
    http://www.discoverteenergy.com/files/ShowUIDefaults.java
    Any of the properties can be changed for the entire application by using:
    UIManager.put( "propertyName", value );

  • Need to Add BKTXT in the dynamic selection in FB03

    Hi Gurus,
    In the dynamic selection FB03, the field BKTXT is not included in the dynamic selection. Would it be possible to add this field?
    Youre inputs would be greatly appreciated.
    Thanks and best regards,
    JeCCas_DJ

    Hi,
    You wants to add the BKTXT field on the selection screen of FB03?
    Why? for what purpose?
    Better copy the program related FB03 to some Zprogram and modify it by writing a select statement to get this BKTXT firld form BKPF/BSEG tables.
    SInce this is a text field, normally we don't put onthe selection screen.
    Regards,
    Anji

  • Two fields needed in the dynamic selection of standard tcode CN47N

    In tcode CN47N,In the dynamic selection Under Dates Network/Order, Two fields start and finish date are needed.

    Hi,
    I already did this in SE36. The problem is that my Z-fields do not appear in BSIK. They appear only in BKPF... And in SE36 if I try to select the Z-fields in BKPF, they do not appear in the dynamic selections.
    Thanks for your answer. Kind regards,
    Isabel

  • How to change the Dynamic Selection screen

    Dear Freinds,
                I have requirement where in on the selection of Dynamic Selections ( iam using PNP logical database) i want to add another fields , could  any one tell me how to change  Dynamic Selections as per my requirement.
    please let me know .
    regards
    divya

    Hi Prat,
               I have done similar way and saved the view ( i.e se80> ediobject>table>table name > given all the tables required for me and i try to saved it is not allowing to save and giving message as empty view cannot be saved. Therefore i have selected the tables which have been added and made one by table and selected them . some how it got saved. Now when i added this name of the view in the custom report caterogy and executed my custom report and selected the > dynamic selections i found as empty and in debugging i can see all the 4 tables which i have mentioed while createing view are there . But i dint understood why the custom View is empty.
    please correct me where i went wrong.
    regards
    divya'

Maybe you are looking for

  • How Can I make Use of XI

    Hi Friends, I am a kind of newbie in to this world of XI, I have a  quick question,Before stepping into the question please look in to my Existing process. I have a J2EE product, which needs the business data from differant versions of R/3 systems (f

  • NAMM show report

    I was at the NAMM show on thursday. Apple was showing Logic version 7.2 it's the universal binary version the will run on both intel macs and power macs. They fixed up some things. 1. Worked with Digidesign to get Logic to work better with Digi hardw

  • How to make a video from Photobooth small (the easiest fastest way)

    need an easy fast way to make a photo booth video smaller to send to a windows computer.  But not through email.

  • Upgrading to DW CS5.5  11.5.1

    Hello. I have DW CS5.5 and, like many others, are having a problem with getting the Android SDK setup. I understand that the 11.5.1 update is meant to fix this issue. I selected updates in DW and downloaded the 11.5.1 update, installed and restarted

  • Will my ipod touch work with qwest wifi?

    will my ipod touch work with qwest wifi?