Conditional Criteria Search

I have a form which uses Get to post fields to another page
which list real esate results.
the form works fine it searches
Area
Property Type:
Min Price: etc by pasing the form fields where I have an sql
query that processes the results.
The client wants to add an extra filed for searching a
reference number field in the smae form which if entered will mean
the search only returns the reference number and nothing else.
How do I do this in DW
this is my exsisting sql code for the search of the existing
fileds
SELECT *
FROM Proeprt
WHERE Price BETWEEN Varmax AND VarMin AND Areaname LIKE
Varareasort AND types.PropertyType LIKE VarTypes AND Bedrooms LIKE
VarBeds
Regards
Andrew Newton

My first name is Madhu. The content of the last post changed but the problem did'nt change.
I don't know if this would make any difference, but one thing I wanted to mention is that, I make my query in a package in the backend and create 15 collections using htmldb_collection.create_collection_from_query and actually return the query
select c001,c002, c003,c004,c005,c006,c007,c008,c009,c010,c011,c012,c013 from htmldb_collections where collection_name = '''||v_function_name||'''';
Also, I split my 15 regions into 3 different pages and flow runs perfectly irrespective of how many search criteria entered. But of the main requirements of this application is that, all the regions have to be on one page, unless there is a limitation in APEX.

Similar Messages

  • Multiple criteria search with 4 dropdown lists

    I want to perform a multiple criteria search on a MySQL
    database. Users should be able to use from 4 dropdown lists in a
    form only one criterium, all 4 of them or 2 or 3.
    Each used dropdown list gives a numeric variable: Fvar1 ...
    Fvar4. The variables from the dropdown lists used should be matched
    with numeric fields in the database: DBvar1...DBvar4
    The numeric variables from the dropdown lists that are not
    used, should be ignored.
    Example: a user selects a value in dropdown list 2 and 3 and
    does not use dropdown lists 1 and 4. Fvar1 and Fvar 4 should then
    be ignored for the search, that has to be performed with Fvar2 and
    Fvar3, who have to be matched with DBvar2 and DBvar3.
    Anyone who can help me out with the WHERE statement in my SQL
    query?
    Your help will be greatly appreciated.
    Erik

    Erik61 wrote:
    > I want to perform a multiple criteria search on a MySQL
    database. Users should
    > be able to use from 4 dropdown lists in a form only one
    criterium, all 4 of
    > them or 2 or 3.
    Start by using the Advanced Recordset dialog box to create a
    query that
    looks for all four variables. Then switch to Code view and
    start carving
    up the code created by Dreamweaver.
    The query will look something like this:
    $query_getProducts = sprintf("SELECT product_name, price
    FROM products
    WHERE prod_type = %s AND colour = %s AND size = %s AND range
    = %s
    ORDER BY price ASC",
    GetSQLValueString($var1_getProducts, "text"),
    GetSQLValueString($var2_getProducts, "text"),
    GetSQLValueString($var3_getProducts, "text"),
    GetSQLValueString($var4_getProducts, "text"));
    Change it like this:
    $query_getProducts = "SELECT product_name, price
    FROM products
    WHERE ";
    $where = false;
    if (!empty($_GET['prod_type')) {
    $query_getProducts .= sprintf("prod_type = %s ",
    GetSQLValueString($var1_getProducts, "text"));
    $where = true;
    if (!empty($_GET['colour'])) {
    if ($where) {
    $query_getProducts .= 'AND ';
    $query_getProducts .= sprintf('colour = %s ',
    GetSQLValueString($var2_getProducts, "text"));
    $where = true;
    if (!empty($_GET['size'])) {
    if ($where) {
    $query_getProducts .= 'AND ';
    $query_getProducts .= sprintf('size = %s ',
    GetSQLValueString($var3_getProducts, "text"));
    $where = true;
    if (!empty($_GET['range'])) {
    if ($where) {
    $query_getProducts .= 'AND ';
    $query_getProducts .= sprintf('range = %s',
    GetSQLValueString($var4_getProducts, "text"));
    That builds the query in stages using $where to decide
    whether to add
    "AND" in front of the second, third, and fourth variables.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Conditional Formatted Search

    We have a formatted search in Sales Order to pull the Ship To Code from Sales Quotation based on the line #. But we want the formatted search NOT to happen for certain customers.
    How can we write a conditional formatted search so that when this condition is met, this formatted search does NOT carry out?
    thanks!

    Hi Yi Liao,
    try to use IF ELSE condition in the query.
    cheers,
    erwine

  • Question about setting conditions in searches using SQL

    I am trying to search through a table where the "Score" column hs to be in between two numbers.
    Table Test:
    Name: #
    Tom 40
    Tom 60
    Tom 50
    joe 60
    If i were to search for "Tom" nomally i get all 3 back. Regardless of the code for SQL(assume it works) will the search display only Tom 40 and Tom 50 is i want between 40 and 60? In other words if the condition field has a valid sql expression that works do i need to write anything to display the data in SQl or it will be fixed automatically?

    SQL> select * from test;
    NAME SCORE
    Tom 40
    Tom 60
    Tom 50
    Joe 60
    SQL> select * from test
    2 where name = 'Tom';
    NAME SCORE
    Tom 40
    Tom 60
    Tom 50
    SQL> select * from test
    2 where score between 40 and 60;
    NAME SCORE
    Tom 40
    Tom 60
    Tom 50
    Joe 60
    When you use the 'between' operator the search for score includes both 40 and 60. In case of this example, if you were to display only Tom's scores of 40 and 50, you should use the following select statement.
    Select * from test
    where score >= 40
    and score < 60;
    SQL> Select * from test
    2 where score >= 40
    3 and score < 60;
    NAME SCORE
    Tom 40
    Tom 50

  • Override existing view Link Bind Condition to search within a Master Detail

    Hi All,
    I have 4 level master detail with View Links setup with all of them
    First Level -> Area
    Second Level -> Row
    Third Level -> Locator
    Fourth Level -> item
    All these are rendered graphically with the help of multiple af:iterators.
    Now my requirement is to search for items inside this. So ideally it should only the items that match the search criteria entered in af:quickQuery
    In the queryListener of the quickQuery i have added a viewCriteria dynamically based on the search result.
    But the problem is it doesnt return any row because the bindVariable automatically created because of viewLink gets added to the VO query and it doesnt return any rows.
    Any pointers to overcome this. Please Advise.
    Thanks,
    Ajith

    Hi,
    overriding executeQueryForCollection allows you to access bind variable values for view accessors.
    Frank

  • Flexible Criteria Search?

    Greetings
    I contsructed a form that allows the user to search up to five criteria:
    Date range,
    appraiser,
    order status,
    client
    priority
    I've attempted to set the action page:
    <cfquery name="search_flexible_criteria" datasource="#Request.BaseDSN#">
    SELECT order_ID, order_number, order_client_ID, order_rush_status_ID, main_orders.order_status_ID, order_appraiser_ID, order_create_date, order_property_street, order_property_city, client_ID, client_company, appraiser_ID, appraiser_fname, appraiser_lname, lookup_order_status.order_status_ID, order_status, rush_status_ID, rush_status
    FROM  main_orders MO, lookup_clients LC, lookup_appraisers LA, lookup_order_status LS, lookup_rush_status LR
    WHERE 1 = 1
    <cfif IsDefined("Form.StartDate")>
    <cfset Session.StartDate = "#CreateODBCDate(FORM.StartDate)#">
    <cfset Session.EndDate = "#CreateODBCDate(FORM.EndDate)#">
    AND (order_create_date BETWEEN #Session.StartDate# AND #Session.EndDate#)</cfif>
    <cfif IsDefined("Form.order_client_ID") AND Form.order_client_ID NEQ 0>
    AND    client_ID  = #Form.order_client_ID# </cfif>
    <cfif IsDefined("Form.order_appraiser_ID") AND Form.order_appraiser_ID NEQ 0>
      AND  appraiser_ID  = #Form.order_appraiser_ID#</cfif>
    <cfif IsDefined("Form.order_status_ID") AND Form.order_status_ID NEQ 0>
       AND   MO.order_status_ID = #Form.order_status_ID#
       </cfif>
    <cfif IsDefined("Form.order_rush_status_ID") AND Form.order_rush_status_ID NEQ 0>
        AND  rush_status_ID = #Form.order_rush_status_ID#
        </cfif>
    ORDER BY order_create_date DESC
    </cfquery>  
    The first error encountered is "AND  rush_status_ID = #Form.order_rush_status_ID#"
    Not yet got this to work- any advice would be greatly appreciated.
    Thanks
    seasonedweb

    Carl:
    Thanks so much for your help (and patience).
    Run without a form search, the page now returns all records. But when using the form,
    Error Executing Database Query.
    [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near ','.
    The error occurred in C:/inetpub/wwwroot/appraiseri/admin/reports/reports_multiple_search_action.cfm: line 99
    97 : <cfif StructKeyExists(Form, "order_rush_status_ID") AND Form.order_rush_status_ID NEQ 0> 98 : 99 : AND order_rush_status_ID = #Form.order_rush_status_ID#</cfif> 100 : 101 : ORDER BY order_create_date DESC
    VENDORERRORCODE
      102
    SQLSTATE
      HY000
    SQL
       SELECT mo.order_ID, mo.order_number, mo.order_property_type_ID, mo.order_order_type_ID, mo.order_report_type_ID, mo.order_client_ID, mo.order_appraiser_ID, mo.order_status_ID, mo.order_rush_status_ID, mo.order_property_street, mo.order_property_city, mo.order_create_date, ls.order_status_ID, ls.order_status, lc.client_ID, lc.client_company, la.appraiser_ID, la.appraiser_fname, la.appraiser_lname, lo.order_type_ID, lo.order_type, lp.property_type_ID, lp.property_type, lr.report_type_ID, lr.report_type, lrs.rush_status_ID, lrs.rush_status FROM main_orders mo LEFT JOIN lookup_order_status ls ON mo.order_status_ID = ls.order_status_ID LEFT JOIN lookup_clients lc ON mo.order_client_ID = lc.client_ID LEFT JOIN lookup_appraisers la ON mo.order_appraiser_ID = la.appraiser_ID LEFT JOIN lookup_order_type lo ON mo.order_order_type_ID = lo.order_type_ID LEFT JOIN lookup_property_type lp ON mo.order_property_type_ID = lp.property_type_ID LEFT JOIN lookup_report_type lr ON mo.order_report_type_ID = lr.report_type_ID LEFT JOIN lookup_rush_status lrs ON mo.order_rush_status_ID = lrs.rush_status_ID WHERE 1 = 1 AND appraiser_ID = 0,0 AND mo.order_status_ID = 10 ORDER BY order_create_date DESC
    DATASOURCE
      appraiseriSQL
    Resources:
    Check the ColdFusion documentation to verify that you are using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser 
    Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.2)
    Remote Address 
    127.0.0.1
    Referrer 
    http://127.0.0.1/appraiseri/admin/reports/reports_multiple_search.cfm
    Date/Time 
    25-Nov-13 08:03 PM
    Stack Trace (click to expand)
    at cfreports_multiple_search_action2ecfm1645272818.runPage(C:/inetpub/wwwroot/appraiseri/adm in/reports/reports_multiple_search_action.cfm:99) at cfreports_multiple_search_action2ecfm1645272818.runPage(C:/inetpub/wwwroot/appraiseri/adm in/reports/reports_multiple_search_action.cfm:99)
    java.sql.SQLException: [Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near ','. at macromedia.jdbc.sqlserverbase.ddca.b(Unknown Source) at macromedia.jdbc.sqlserverbase.ddca.a(Unknown Source) at macromedia.jdbc.sqlserverbase.ddb9.b(Unknown Source) at macromedia.jdbc.sqlserverbase.ddb9.a(Unknown Source) at macromedia.jdbc.sqlserver.tds.ddr.v(Unknown Source) at macromedia.jdbc.sqlserver.tds.ddr.a(Unknown Source) at macromedia.jdbc.sqlserver.tds.ddr.a(Unknown Source) at macromedia.jdbc.sqlserver.ddj.m(Unknown Source) at macromedia.jdbc.sqlserverbase.ddel.e(Unknown Source) at macromedia.jdbc.sqlserverbase.ddel.a(Unknown Source) at macromedia.jdbc.sqlserverbase.ddel.v(Unknown Source) at macromedia.jdbc.sqlserverbase.ddel.r(Unknown Source) at macromedia.jdbc.sqlserverbase.ddel.execute(Unknown Source) at coldfusion.server.j2ee.sql.JRunStatement.execute(JRunStatement.java:359) at coldfusion.sql.Executive.executeQuery(Executive.java:1442) at coldfusion.sql.Executive.executeQuery(Executive.java:1201) at coldfusion.sql.Executive.executeQuery(Executive.java:1131) at coldfusion.sql.SqlImpl.execute(SqlImpl.java:406) at coldfusion.tagext.sql.QueryTag.executeQuery(QueryTag.java:1056) at coldfusion.tagext.sql.QueryTag.doEndTag(QueryTag.java:685) at cfreports_multiple_search_action2ecfm1645272818.runPage(C:\inetpub\wwwroot\appraiseri\admin\reports\reports_multiple_search_action.cfm:99) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:244) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:444) at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at coldfusion.filter.IpFilter.invoke(IpFilter.java:64) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:443) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:112) at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:30) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:94) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:151) at coldfusion.CfmServlet.service(CfmServlet.java:204) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:224) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:169) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:928) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:414) at org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:203) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:539) at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:298) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:662)

  • How do I do multiple criteria searches?

    I am so frustrated. When I search in mail I want to be able to type in a keyword ("books") and once those results are up, only look for that search term in emails from or to one person during a certain date range. Any idea if this is possible???

    I think it is probably possible to use logical
    operators
    Yes, that's why I mentioned and-or-not above.
    But back to the poster's question - the search field seems pretty limited, the scenario he described seems to require a Smart Mailbox.

  • How to add one more values in Search Criteria,

    Hi All,
    OAF page Search Criteria :
    Search By "name"only Available already have in the search criteria .we are need to add Description in search criteria .How to add one more filed “Description” in Search Criteria,
    Please Help Me
    Thanks
    Rajavel

    "Set the Search Allowed property to True for any LOV result items you want to present to the user as searchable values. These items are listed in the search poplist the user sees in the LOV window.
    At a minimum you must set the Search Allowed property to True for the the result table item corresponding to the LOV field on the base page.
    This is from the devguide, I suggest you read it once at least if you have started work on the framework.
    Tapash

  • Cappture search button click of a view criteria

    Hi is it possible to capture the click of a view criteria "Search filter". Search button click?
    Also, is it possible to have teh default of a view criteria to be set at "ALL" or "ANY"

    To listen to the search button's click, you can use the ADF JavaScript API. The AF:Query compoment will raise an event of type "query" when the search button is clicked.
    See the first code snippet in the post below:
    http://myadfnotebook.blogspot.com/2011/09/loading-screen-spinner-pop-up-v20.html
    -Jeevan

  • IProcurement -- Add new search condition in shopping lists

    Hello,
    Has any one ever added an extra condition to the search page.
    My requirement is, in iProcurement - Shopping Lists page.
    I would like to add a new search region with Text box to enter the Item and display the search results in the existing Results region.
    Has anyone done similar customization .. please help.
    Satya

    OK, Le me explain this way.
    in iPorcurement -- Shopping Lists page there is feature to add the items to the Personal favourites list when we order them, so that we can just refer to the Favourite list next time when we order the same item.
    Now, in Shopping lists page, there is a list box(poplist) when i select the "Personal favourites" in that list box it displays all the items that are added to the Personal favorites list. Assuming that this favorite list has some 200 items in it. i want to add a search condition to search a specific item(s) in this list.
    Thanks,
    Satya

  • E-Recruiting Search functionality for Candidate in Talent Pool

    For search functionality of candidates in the talent pool, does anyone have any idea how the ranking percentage is calculated??  There is no clear documentation out there about what factors are used and how they are weighted.  I am aware that additional ranking that can be defined in the configuration and also questionaire results can influence this ranking as well.
    However, in the absence of this additional ranking in talent management and questionaire results to job postings, are the selection criteria for the search the only items taken into account for calculation for this ranking percentage? 
    What is everyone else's experiences in the fact that search functionality tends to treat the various selection criteria as 'OR' conditions?  The client I am working for is unhappy that candidates who don't match every set of selection criteria are being displayed on the hitlist.  Would like to hear what other client's responses has been to this...
    Sandra

    Had directed this question to SAP and did not get an adequate response to date with regards to how ranking is calculated.
    However, SAP did respond to why search functionality treating the various selection criteria as 'OR' conditions for searching candidates in Talent Pool.  This is due to configuration values in tables T77RCF_SRCH_ATTC and T77RCF_SRCH_ATTR.  The field RANKING must be set to blank value.  SAP delivers this as 'X' - ranking percentage is calculated.  This change now makes the combination of various selection criteria elements as 'AND' conditions, and the ranking percentage is no longer displayed.
    Sandra

  • Saved Search peoblem

    Hi,
    I am using saved search in quotations.It is working fine.once i click on go button ,it is displaying all the quotes with the condition and search fields are in hidden mode(Search view is not displaying).
    Up to this everything is fine.
    Now i am clicking on the quote search in the navigation area,it is still displaying the same sceen as saved search screen(The behaviour is different in other system ,there it is displaying the all the search fields in serach view and results in results view)
    Please help me ,if any body faces this problem.
    Thanks,
    Adi.

    Hi Adi,
    i'm not sure wheter i got your problem.
    If you launch a start a saved search out of the "saved searches" box, you only get the result list. If you want to see the search criteria you can either click on "Advanced" or on "Show Search Fields" in the right upper corner.
    If you launch a search via the navigation bar. The search fields are usually empty, beside you performed a search before. In this case, you get the former search criteria.
    Does this help?
    Regards
    Christian

  • Customize Search region of LOV - Basic mode

    I created an Input text with List of Values in JDev 11.1.1.2 and designed the search region of this LOV in Basic mode (disable the Advance mode) so the combo box to choose the condition of Search fields like: Contains, Start with, Equal to... disappear.
    I wonder if in this Basic mode there is way to make all the search fields in "Contains" condition (Because now, by default, in my Search region, some of the search fields in "Contains" and some in "Equal to" ).
    Does any one know how, please help. Thanks.
    Edited by: Mun on Jan 30, 2010 10:11 PM

    Hi Mitesh,
    I provide here some more details:
    I want to create the LOV component as unbounded, like the Countries LOV in this post http://andrejusb.blogspot.com/2008/02/list-of-values-component-in-search-and.html. However, JDev 11.1.1.2 seems not support to do like this.
    So I find another way to create my LOV as below:
    Let's say: The view Object is MainVO which contains 2 fields: AAA and BBB.
    1. Open the MainVO, in View Accessors tab, I create a view accessor named viewAss and choose the MainVO from the available View Objects and shuttle it to the View Accessors part
    2. In Attributes tab of the MainVO, set the List of Values of AAA attribute to viewAss.
    In my jspx page:
    drag the AAA from the data controls to a this jspx page by choosing: Create -- List of Values -- ADF LOV input.
    So the problem here is I can't find in my viewAss the place to choose operators like Contains or Start with etc (as you suggested in the View Criteria).

  • Images not showing up in keyword searches in Bridge CS6

    Using Bridge CS6, I'm dropping in stock photos (JPEG) and tagging them with persistent keywords. When it comes time to do a search, a couple of these images are being skipped in the results. Other images with the same keywords are being returned, but not these few offenders.
    I've tried resetting Bridge and purging the central Cache.
    Any idea why some files would be invisible to the find function?

    I've performed the search using both the search field in the top right corner, and using the Find command.
    I'm searching the proper source folder, searching for "Keywords" "Containing" <search term>
    Matching "any criteria", searching all subfolders and including non-indexed files.
    The problem is, if I have 3 files with a keyword of Cathedral or cathedral — delimited by semicolons — a search for "cathedral" in the above manner will return 2 of those files, but not the third.
    It looks like I have some problem files that appear in the regular Bridge browser window and have viewable, persistent keywords, but won't appear in search results. They open fine, and the keyword metadata is visible in Photoshop. I'm just wondering if anyone else has experienced something similar.
    If it helps, it's an iStock image: iStock_000025903682Small

  • Recruiting problem with the candidate search by trex with questionnaires

    Hi Gurus,
    I am trying to search candidates using trex in recruiting by candidate_questionnaires but the trex does not show any result. How can I solve it?
    When candidates register theirselves on internet, they complete questionnaires that I have added in the apllication wizard.
    But the problem starts when I want to search candidates by the answers that they have complete in this questionnaire. So I select the criteria search candidate questionnaire, then I select the questionnaire and then the answer and I run the searh. I know that the results shown are always about others requisitions and not the one that I am doing the search. But in my case candidates are assigned in other requisition with the same process template so I do not know where is the problem, because other sort of search works fine. This is the only one that it does not work.
    In addition, I have run the report RCF_CHECK_SEARCH_SETTINGS but the result is that all the parameters are fine except that I have not implement the badi HRAHAP00_FOLLOW_UP_SES. May I have to implement?
    Moreover I have seen that when I select the answer to search, any operator (element of selection mask) is assigned but I have read that it is correct because I am using the search profile "int_cand" with the category "candidate_document" that it use in the mask search candidate_questionnaire.
    In conclusion, I don't know how I can solve this problem with trex? Any idea?
    Thanks in advance,
    Juanjo Garcin.

    I've already done it.
    Do you think this will help?
    I doubt that Apple will listen to us. Users with a problem that occurs quite a lot.

Maybe you are looking for

  • Is Ardence RTX required when I use PCI-7831R with labview real-time module for RTX target

    I am new in the labview real-time field. I want to use labview real-time module for RTX target on only one desktop. My card is PCI-78331R.  Is Ardence RTX necessary? Why I cannot find my card in the MAX after I configured the RTX? Thank you very much

  • Second Access Number

    Hi.  I have an Australian Access number but I work in Malaysia.  HOw do I set up a second access number so that I can make calls to outside phones using skype from Malaysia? Thanks

  • How to enable hardware acceleration in desktop Adobe AIR app

    Hello, As the author of this post How do I enable hardware acceleration in an air exe? , I am trying to enable hardware acceleration inside my AIR application If the user has disabled hardware acceleration in his flash player's settings, context3d.dr

  • Any clues on this error trace? Flash Builder compiling for iOS...

    Hi, All of a sudden, I am seeing the following when I try to compile an app for iOS: [code]   Error occurred while packaging the application: # A fatal error has been detected by the Java Runtime Environment: # Internal Error (0xe06d7363), pid=3736,

  • InDesign CC crashes when selecting text

    Hello folks! I have a serious issue here on my Windows 7 64bit notebook: InDesign CC (and also CS6 before) keep crashing when selecting text. I was still on CS6 when this failure appeared first. The strange thing is, it happens not always. When InDes