FPM_SEARCH_UIBB: Fine Tuning of the Search Area

Hello experts,
I created a search application using FPM_SEARCH_UIBB. The user should only have a fixed search area with twelve search criterias, two of them should be mandatory.
The general setup of the search area is done and works fine. But there are some nasty details I'm struggling with.
Hide + / - Signs
In IF_FPM_GUIBB_SEARCH~GET_DEFINITION I set MAX_1_VALUE to abap_true. This prevents the user from adding search critera which is already on the search area. So far so good.
But is it possible to hide the + / - signs completely? If there is a plus-sign the user will click on it. If all criterias are already on the screen the user will receive an ugly error message. So the signs should be hidden.
Make Operators Read-Only
For all search criterias only the 'is' operator i relevant. All other operators are already excluded. But in the UI the operators are still displayed as drop-down fields and the user has the possibility to open it just to see that there is only one entry in the list.
Is it possible to make the operator field read-only? Hiding it would also be an option.
Mark search fields as mandatory
As mentioned two of the search fields should be mandatory. In IF_FPM_GUIBB_SEARCH~GET_DEFINITION I set attribute mandatory = abab_true with the result that the minus signs on the right side are hidden and the label is read-only so that the attribute cannot be changed.
The check whether a value is maintained is implemented in IF_FPM_GUIBB_SEARCH~PROCESS_EVENT.
Now the question:
The search attributes are not marked with a red star as mandatory as it is standard for form UIBBs. Is there somewhere a setting to mark the attributes consistently with a star? I know that this is a minor issue but there are people who are very keen on red stars for mandatory fields.
Best regards,
Markus

Which NW release are you talking about? As of release 7.03/7.31 there is the possibility to define a result list in the GUIBB Search that is based on the new GUIBB List ATS. This offers highest flexibility to the application developer.
Edited by: Jens Ruths on Jan 23, 2012 12:36 PM

Similar Messages

  • IO7 in good, but the fine lines of the characters are a nuisance. Is there a way to convince Apple to offer a better style for aging persons with limited vision?

    iO7 in good, but the fine lines of the characters are a nuisance. Is there a way to convince Apple to offer a thicker letter type for aging persons with limited vision?

    I turned on Bold Text - the phone will restart itself, that's normal - and it is now MUCH easier on my eyes.
    Give it a try.

  • When I print to pdf on Mac, the first page comes out fine but all the rest are magnified and shifted up and right

    I click File>Print. Whether I open pdf in Preview, save to pdf, or just print, I get this error. The first page is fine, but all the rest are shifted up and to the right and magnified.
    I've never been able to print out a multi-page document on Firefox with my new computer. I can copy/paste the address to Safari (gross) and it prints just fine, either to pdf or to a hard copy.
    Save me from having to use Safari!

    Making sure the fonts were embedded helped some, but it's still hit and miss. Sometimes I'm still missing pieces. One workaround I have found that works is just print one page without security to PDF, and then go back and replace the bad page(s) with them. So it will print properly, just not all the time. I have a copy of a word page and then what acrobat did to it. I just need to figure out how to post it here.
    Kim

  • Noise reduction - RAW fine tuning and the Noise Reduction tool

    Hi,
    1- If I get it right, Aperture's RAW fine tuning "Automatic noise compensation" (translated from French) option uses the camera's information to adjust the noise. Is that correct?
    2- The Noise Reduction tool is there to provide additional noise reduction, but this makes you lose some details. Is that correct?
    3- How do you use them? I often find the Noise Reduction tool a bit overkill, but that's me.
    4- This one is just out of curiosity. How does A3 compare to LR3 beta for you in that regard? In my testing, LR3 did a slightly better job (but A3 totally beats the crap out of LR2 for noise). BUT I have an old D50, and newer cameras handle noise better (especially Nikon), so does it really make a difference for a 2008 or newer camera?
    Thanks!
    Manu

    Manusnake wrote:
    pilotguy74 wrote:
    I don't even have this option/checkbox in my Raw Fine Tuning brick.
    I wonder if it's due to the type of files (Canon 7D). Do you still have those 7D files I sent you? Does the checkbox appear in Raw Fine Tuning for you with them?
    I noticed this option in the manual the other day, but forgot about it until now.
    True, it doesn't have the checkbox with the 7D files. However, it as a slider "noise suppression" (again translated) in the RAW fine tuning options (and still has the Noise suppression brick).
    If you don't have this one too, have you reprocessed your images with Aperture 3? Since it has a new raw engine, it may be the cause of it.
    I find it strange that Apple didn't tout the new RAW engine on Aperture 3 new feature, it clearly is an improvement over Digital Camera RAW 2, especially in noise suppression.
    I agree the built-in noise suppression is much better than A2, but IMHO it pales in comparison with the Noise Ninja plugin from Picturecode. The key is that you calibrate a profile for Noise Ninja by shooting a color chart full screen on your computer at varying iso settings with each of your cameras. You then feed the images back in to Aperture, and tell Noise Ninja to create a noise profile for each setting. The results are amazingly good.
    Now with a lot of new cameras, noise processing is getting less important because the high iso performance is so good....but this is what makes Noise Ninja special...even when the noise adjustment is subtle, because it is working from a profile created with your camera, at the iso the shot was made at, its effects are seamless. They just announced a 64 bit plugin for Aperture 3, so no bouncing into 32 like other plugins at the moment...
    Sincerely,
    K.J. Doyle

  • Fine tuning of the report

    Hi Friends,
    1)I have thousands of production order in my internal table list.
    2)Now for each production order I have more than 40 operations .
    3)I have to take the latest operations from this 40 operations.
    4)the latest operation and the corresponding work Center I have to take from the S022 among this 40 opearation
    5) this work center I have to pass to CRHD and take objectid (OBJID)
    6) now I have to pass this object id (OBJID) to CRCO and take the cost center
    ie the crco-kostl.
    Actually this is a specific client requirement where the same logic I have to follow. when iam running the following code the report is taking long time . I can say the situation is like report hanging.
    Iam using the following code .
    loop at list.
    if list-BWART eq '261' or list-BWART eq '262'.
    select max( VORNR )  into  bet   from S022
            where AUFNR  = list-AUFNR and
            werks = list-werks.
    SELECT SINGLE ARBPL FROM  S022  INTO ARBPL
            where AUFNR  = list-AUFNR and
            werks = list-werks
            and vornr = bet .
    select single KOSTL from CRCO into list-KOSTL where OBJID = OBJID.
    clear CARBPL.
    clear OBJID.
    modify list.
    clear list.
    clear bet.
    endif.
    endloop.
    Please help me to fine tune this scenario .

    Hi,
    IMP:  Never use select single in loop!! instead use for all entries in option using second itab and as ur data is too high process ur data in itabs using BINARY SEARCH.
    select aufnr max( vornr ) ARBPL into table itab2
    for all entries in list
    group by aufnr "(and ARBPL, this will reduce second select stmt..)
    where aufnr = list-aufnr and....
    "same for third select stmt.
    All above stmts are not in loop , now u can process itabs and get desired o/p.
    use BINARY SEARCH for read itabs.
    Abvoe logic will improve ur code perfromance..
    Jogdand M B

  • My iphone 3S camera was working fine, but now the pics are getting very blurry. I've already tried cleaning the lens. What else should I try doing?

    My iphone 3GS pics are getting really blurry. At first it didn't happen. I`ve tryed cleaning the lens, but it didn`t work. What else should I try doing?

    I would call Apple tech support, which is excellent.  Or take the phone to your local Apple store - not AT&T or Verizon, as the Apple techs specialize in Apple products and are somewhat fanatical about them.
    Regarding the photos, they are probably still on the simm card in the phone and recoverable.  Check with the Apple folks to get them back... sorry about your pet!

  • Is there a plug-in for Firefox 4.01 that allows tabs to open at the end? Millions of people do multiple searches on eBay and Craig's List - it is a pain to have to look at the results after each search instead of reviewing them when the searches are done

    The the only answer I have found to this question does not apply to Firefox 4.01. The Plug-in for allowing tabs to open at the end that works in older versions of Firefox does not work in 4.01. I would like to know if there is a plug-in that works for 4.01 or when or if we can expect one.

    Open new tabs on far right, restore pre Fx3.6 behavior, set '''browser.tabs.insertRelatedAfterCurrent''' to '''false''' in '''about:config'''
    For more information see item #36 in ...
    You can make Firefox 4.0.1 look like Firefox 3.6.17, 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 4.0 look like 3.6)]
    '''''More information on configuration variables''' available in
    [http://kb.mozillazine.org/About:config_entries about:config (entries)] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config (How to change)] -- Specialized list of only [http://dmcritchie.mvps.org/firefox/tabs_config.htm Tabs configuration] variables.''

  • Small fine tuning is required in the calculation

    Hi Gurus,
       BI PM module for the report Schedule attainment filtered for one order.
    The result supposed to be Total job scheduled = 1, completed orders = 1 and No of orders completed on Schedule = 0. However, the report shows, Total job scheduled = 7, completed orders = 1 and No of orders completed on Schedule = 0.
       By this what happens is that total jobs scheduled become 930 for Plant = 2200, Planner Group = P01, Order Type = PM03 while Completed orders and Completed orders on Schedule is correct.
        ie Formulae in update routine IF( IS_INITIAL( /BIC/ZIBFDCH ), 1, 0 ).
        Please tell the small fine tuning in the calculation, points will be assigned.
    Regards,
    Kiran A

    Answer Finded

  • After Merging the search tool Area and Mast head ivew its giving error

    Hi Porat Gurus,
                      I have merged the Mast head Ivew with the top level tool area and  added all  the components that is required for tool area search in mast head Ivew in the lightheader page and deploying its giving error
    Portal Runtime Error
    An exception occurred while processing your request
    Exception id: 11:50_14/10/08_0008_7205750
    See the details for the exception ID in the log file.
    plz tell where do i search for this exception
    i could nt find anything in default trace
    thanks in advance
    johny

    Hi,
    Steps need to for Merging the search tool Area and Mast head iview,
    1. copy the search area properties from the tool area and paste the properties in masthead property file.
    2. copy the tool area jar in the lib folder of the tool area par and paste that in to lib folder of masthead par.
    3. copy the search area variables and methods from the tool area jsp and paste variables and methods in masthead HeaderiView.jsp file.
    4. copy the search area properties from the tool area portalapp xml and paste the properties in masthead portalapp xml file.
    Check these steps are done.i hope this will help u.
    Regards,
    Kathiresan R

  • Search for Follow-Up Activity in CIC Search Area

    Hi CRM Experts,
    I am new in CRM world, so in customizing(IMG) path: CRM --> Transactions --> Settings for Activities --> Mantain Categories, Goals and Priorities --> Mantain Categories, I created an entry for a new category called Survey.
    In Tcode CIC0 I create a Follow up activity with category survey.
    But when I execute Tcode CIC0, and in the search area I limit the search to the BP that logged the
    call->find:Business activty->By:Category->Category:Survey->Valid from:01.01.2006->Valid to:31.12.2006
    But no follow-up activity is found.
    What am I doing wrong?
    The search works fine if I create a normal Business activity with category Survey, but as soon as I create a Follow up activity with category survey, the searh area cannot locate the activity, it even fails to locate it by transaction number??
    Can anyone help me?
    We are implementing CRM4.0, IC Winclient.
    Message was edited by: Pragasen Govender

    Hi Robert,
       Thanks for your reply
       I checked the link, But I didnt get the full information there.
       Firstly, my problem is not with upgrade and
       the second thing is before implementing the note 660016, I am able to see both in CRM GUI and Web
       UI all the business acitivities and tasks along with other transaction types as follow-up transactions.
       After implementing the note, I am not able to see only the business activities and tasks in the Web UI
       as follow-ups and in CRM GUI, its appearing as follow-ups.
       Hope you got my question now...
       If this is not done in customization I need to code according to my scenario..
       When I kept a break point this class is triggering from another class.
       Do I need to code in the class CL_CRM_UIU_BT_ACT_CUST_GET, according to my scenario.
       Again I have a question here, will you please tell me in which component this class exists, so that I
       will enhance that component.
       Because when I debug after clicking on the Follow-Up button,this class is calling some where
       down...So I am unbale to get the right component for this.
    Regards,
    Raghu
      I

  • RAW Fine Tuning Instructions

    Am I missing it somewehere? I can't fine instructions or a guide to "RAW Fine Tuning" in the Adjustments secction. There doesn't seem to be anything under the Help menu-with either guide.

    Found in a review of Aperture 1.1:
    In addition to the reworking of the algorithms for RAW conversions, Apple has provided more control over RAW conversion parameters. In the new RAW Fine Tuning Adjustments HUD are the following sliders, all of which impact the RAW conversion specifically:
    Boost - This is a simple tone curve control. When set to the far right, you get Apple’s standard conversion contrast. By moving the slider to the left, the picture becomes flatter. When the slider is all the way to the left, the tone curve is basically flat, or linear (though it appears a brightness-boosting gamma adjustment is still being applied).
    Sharpening – There are two parameters, each with its own slider: Intensity and Edges. Sharpening can also be turned off altogether, though as we noted above, the sharpening was looking pretty darned effective in our session with Apple’s Schorr.
    Chroma Blur – For controlling the level of smoothing applied to colour noise. Like Sharpening, Chroma Blur can be switched off completely by setting the single slider, Radius, all the way to the left.
    Plus, Auto Noise Compensation, a new type of noise reduction in v1.1 that factors in ISO and length of exposure. This is a checkbox, not a slider, and is therefore either on or off.

  • Can I use the search engine and run a web application under the same iPlanet 6.0 virtual server?

    I've got an iPlanet 6.0 SP2 virtual server with the search engine enabled, which was tested and working. I then deployed a web application to it (mapped to "/"), and the web application works fine but now the search functionality is completely broken. Browsing to /search results in a directory index being displayed. Is there some trick to getting the two working together? I tried shuffling NameTrans directives around, but can only get either the search or the web app working, not both.

    Ok, I'm going to answer my own question now...
    The issue has been resolved after some additional experimentation on my part. There were two causes for my problem:
    1. The NameTrans directives in obj.conf are in the wrong order when Java and Search are enabled from the administration interface.
    Here's the admin server generated obj.conf I started with initially, when the web application was working, but requests to the URI "/search" returning a 404 error:
    <Object name="default">
    NameTrans fn="NSServletNameTrans" name="servlet"
    NameTrans fn="pfx2dir" from="/search-ui" dir="/usr/local/iWS-6.0/plugins/search/ui" name="es-internal"
    NameTrans fn="pfx2dir" from="/mc-icons" dir="/usr/local/iWS-6.0/ns-icons" name="es-internal"
    NameTrans fn="pfx2dir" from="/manual" dir="/usr/local/iWS-6.0/manual/https" name="es-internal"
    NameTrans fn="es-search-nametrans" from="/search"
    NameTrans fn="NSServletNameTrans" name="servlet"
    NameTrans fn="document-root" root="$docroot"
    </Object>
    Here's my obj.conf now, which works perfectly:
    <Object name="default">
    NameTrans fn="pfx2dir" from="/search-ui" dir="/usr/local/iWS-6.0/plugins/search/ui" name="es-internal"
    NameTrans fn="pfx2dir" from="/mc-icons" dir="/usr/local/iWS-6.0/ns-icons" name="es-internal"
    NameTrans fn="pfx2dir" from="/manual" dir="/usr/local/iWS-6.0/manual/https" name="es-internal"
    NameTrans fn="es-search-nametrans" from="/search"
    NameTrans fn="NSServletNameTrans" name="servlet"
    NameTrans fn="document-root" root="$docroot"
    </Object>
    The "servlet" NameTrans directive needs to go below all others which map a URI to a function or directory (but before "document-root"), or they break. This is consistent with the iPlanet documentation on NameTrans, but the admin server doesn't get it right!
    2. The developer who wrote the web application uploaded a directory named "search" in the root of his application, which caused the server to display a directory index of "/search", instead of executing the search function. I believe this issue is covered in an iPlanet knowledge base article.

  • Configure My DataFinder's Search Area with vbscript

    Hello,
    I am using the following vbscript to load data into the DIAdem Data Portal:
    Set dataFinder = Navigator.ConnectDataFinder("My DataFinder")
    Set queryForm = Navigator.CreateQuery(eAdvancedQuery)
    queryForm.ReturnType = eSearchFile
    Call queryForm.Conditions.Add (eSearchFile, "name", "=", "*.tdm")
    dataFinder.Search(queryForm)
    Set dataFinderResults = dataFinder.Results
    Call Navigator.LoadData (dataFinderResults).
    This works fine as long as the My DataFinder's Search Area has been previously defined via the DIAdem Navigator Panel.
    We are starting DIAdem from a Visual C# application and the vbscript above is part of a vbscript that is passed into DIAdem when it is started via the /CScriptStart argument.  I would like to dynamically set the My DataFinder's Search Area based a path argument that is also passed into DIAdem.
    Is there a way to configure the My DataFinder's Search Area with vbscript?
    Also,
    Is there a way to have DIAdem run in the background without having the DIAdem screen flash when it is first started?
    Thank you so much for any help with this,
    Renette
    Message Edited by rlj on 08-21-2009 06:06 PM
    Solved!
    Go to Solution.

    Hi Renette,
    As of DIAdem 11.1, newly released this past July, we now have a VBScript interface to define Search Areas and other aspects of the DataFinder.  DIAdem 11.1 also has the ability to save off a DataFinder configuration file and load it, both interactively and programmatially.  Earlier versions of DIAdem did not have any way to programmatically affect Search Areas.
    Note that setting the Search Areas programmatically will not immediately result in all files being indexed and ready to be queried-- that may take a little time after you set the new Search Areas, depending on how many files are in each Search Area you add.
    You are currently starting DIAdem with a DOS extension to have it run a VBScript right after launching.  The advantage of this approach is that DAdem persists as an independent application even after the calling application ends.
    You could alternatively call one of DIAdem's two ActiveX servers, which would invisibly start DIAdem and allow you to stay in contact with that DIAdem instance and read DIAdem variables and execute further DIAdem commands or VBScripts.  The disadvantage of this approach is that if your calling program terminates, so does the ActiveX connection, and that shuts down the DIAdem instance launched by that ActiveX connection.
    Ask if you have further questions,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • When I export a playlist and then open in excel, do whatever sorting I want, I then save the file and reimport into itunes but not all the songs are there. It appears to be from "comma's" in the song name. Any solutions?

    I see songs such as "Monday, Monday" or "Paint It, Black" or even the artist name such as "Fireballs, with Jimmy Gilmer" which have comma's in them, being a problem when I try to do the following:
    1. Export a playlist which contains songs which are all there and play fine, but some have comma's in the title such as listed above.
    2. I then open that file in Excel and bring it in as a Tab-delimited file.  Everything lays out fine, and all the songs are thing (including those with comma's).
    3. I then sort the varoius fields I want (which I can't do in i-tunes because i-tunes won't sort it properly), and resave the file as a newly named file, which is also a .txt file.
    4. I then import that playlist into my itunes. It is exactly the same songs that I just had exported but i-tunes says some of the songs can't be found.
    I have traced this problem to comma's in the file name of the song such as listed above.  There must be a solution to this either as the file is opened in excel or in how it's saved or some other solution short of having to rename song/artists without using comma's. 
    Thanks.

    The additional problem is the file name of the song itself.  Even if I were able to delete the commas or replace with a space for example, changing the file name would result in itunes not being able to find the file.  I would have to go through each file (out of about 15,000+ songs) to find any that have titles such as described in this thread and change not only the song and artist in the fields, but changing the mp3 file itself. 
    I fear that I am really pretty much going to have to start with a list of songs that have no comma and then do a file compare to find those songs with commas and then just physically moving them into a new playlist I'm trying to create, but this is a royal pain as I want to be able to create a variety of playlists based on these chart dates/peak positions. 
    I'm trying to sort the songs in this manner:  I use different fields in itunes so that I can put the "peak position" of each song based on Billboard charts, as well as the date the peak position was acheived. I use the "comment box" for that.  I use the "grouping" field for my peak position.
    So I end up with something like "10/14/1980" in the comment box as the peak position for a song which is in the grouping field, and so forth.  If I try to sort the comments column in itunes for example, it won't sort properly. If I sort the Grouping field, it will bring up all the "1's", but that's followed by "10", 11, ...19, then "2", etc.  This is why I want to export the playlist and sort it as I want, and then reimport the playlist into itunes. 
    What I'm ultimately trying to achieve is a year-by-year peak position playlist so that I end up with every #1 song (in this case) from, say, January 1st 1980 and then every #1 song in sequential order for the rest of the year falls in line.  I have chart position dates from 1955 through 1999.  I have entered in all the data from Billboard books I own so I can really create some amazing playlists, but these commas are problematic. Had I known this ahead of time I would have made "Monday, Monday" as "Monday Monday" and not included commas, but it's too late for that.
    Any suggestions?

  • I am home sharing songs from my computer (library) to another authorized computer (library), the songs will import, but once i sync the iphone (4s) to this computer the songs are shaded and will not import onto the iphone, what the heck is going on?

    I am transfering songs from one computer to another using home share.  Both machines are authorized in home sharing.  The songs import from (my) windows computer to the other (my wifes) authorized MacBook Pro, computer just fine.  Once the songs are in the library and i try to sync her Iphone (4s) to her computer the songs ar greyed out and i can't play them nor see them under iPhone after sync is complete.  What the heck is going on?  BTW, the songs that i have imported are either songs i burned from a CD or songs i have purchased from the iTunes store, so they should sync no problem!?  Help please.

    screen print of issue...

Maybe you are looking for