EREC - How to use link generated by application group?

How to use link generated by application group?

Hello Vishal,
You provide the link eg. in a list and candidates just have to click on that if they want to apply.
Regards
Nicole

Similar Messages

  • How to use "Find my iPhone" application ?

    How to use "Find my iPhone" application ?

    Find My Phone would have had to be activated/turned on before your phone was lost/stolen.. There is no way to do that now, thus no way to use such to locate your phone. Had you done so, you would login to iCloud.com from any computer & see if you could locate your phone.

  • How to use GUI_DOWNLOAD inside BSP Application event

    Hi All,
    I am facing one issue while using GUI_DOWNLOAD inside BSP Application. When the processing goes at GUI_DOWNLOAD it gives me unknown error where as the same code is working when used in report program. My requirement is to save password into excel file at my local machine. I am using FM MS_EXCEL_OLE_STANDARD_DAT to save password in excel file but this function module fail when it reach at GUI_DOWNLOAD . Can you please help me out.
    Thanks and Regards
    Pradeep Kr. Rai

    Dear Pradeep,
    Find the below link which explains a simple data download to excel from a table view.
    www.sapt echnical.com/Tutorials/BSP/Excel/Index.htm
    Try to avoid the way your using in the BSP application and it is abdicable to use the standard methods / class available like "cl_bsp_utility"
    Hope this will be helpful.
    Regards,
    Gokul.N
    Edited by: Gokul on Oct 8, 2009 9:57 AM

  • How to use a ".generate" file in JDeveloper 11g ?

    hi
    Using JDeveloper 11g (11.1.1.0.1) I created a Database Diagram and dropped both SCOTT.EMP and SCOTT.DEPT tables on it, creating Offline Database Objects.
    After that I used the "Generate..." option from the right-click menu on the SCOTT Offline Database Source in JDeveloper, to generate a SQL script.
    Step 6 of 6 allowed me to "Save settings for reuse", resulting in a ".generate" file (see GenerateSQLFromDatabaseObjectsStep6Of6.png).
    question
    How should I be able to reuse such a ".generate" file, the right-click menu does not have a "Generate" option (like JDeveloper 10g has) or something similar, see GenerateSQLRightClickMenuForGenerateFile.png.
    many thanks
    Jan Vervecken

    Thanks for your reply Susan.
    You were not able to access it via metalink as it was categorized as an internal bug rather than a production version bug. Since it has now been fixed it is unlikely that I can get it changed to allow it to be seen via metalink.about "unlikely", see also ...
    ... Steve Muench : "Re: Request for "WHERE  -   IN" Combination with Bind Variables."
    ... Keimpe Bronkhorst : "Re: Generics : compiler option : unchecked conversion warnings"
    ... Brian Duff : "Re: Surround With Try/Catch : comments issue"
    ... Frank Nimphius : "Re: Jdev 11g: Warnings in structure window for jspx (makeCurrent)"
    But there is probably an explanation.
    regards
    Jan

  • How to use SES in my application?

    Hi, everybody:
    My manager plan to use SES in our application which maybe resolve our requirements. So he ask me to take a test. But now I'm in trouble.
    First, our application have more than about 500 tables, and one third of them need to be searched.shall I create each table source for them?
    Second, In the administrator's guide -- Web Services API -- search operations -- doOracleSearch Message , the parameter of groups, it says: Limit the search result to the documents from specified source groups. The default is for all groups if not set explicitly. So my code is following like this:
    OracleSearchResult searchResult = stub.doOracleSearch(req.getParameter("searchTerm"),new Integer(1), new Integer(10), Boolean.TRUE,Boolean.TRUE,null, "en", "en", Boolean.TRUE, null, null,null);
    I want get the default value, So I write null. But the result isn't all of the hits, just come from one of the table source groups. why?
    Third, Global Settings -- Translate Source Group Name, I translated my source group, I checked the search result element(oracle.search.query.webservice.client.ResultElement), the group's name and display name were same with written in English, but the infoSourcePath was translated. Where was my mistake?
    Fourth, I defined a private search attribute for a source from Global settings -- Search Attributes.
    And in the Home -- Sources , I choose a column with this attribute. When I search this hit use doOracleSearch, I get this attribute name, display name, type ,but how can I get this column value which mapped with this attribute?
    Can anyone help me?
    Thanks a lot!

    In answer to your first question, no - you probably don't want to create a table source for each table. Instead, try to create a view which combines as many as possible of these tables (perhaps with UNIONs) then create a "table" source on that.
    Not sure of the answers to your other questions, hopefully someone else will be able to answer them.
    - Roger

  • How to use prepared statement by Application Module on ADF?

    Hello
    i am using a prepared statement on the view side of my project,
    this is my code, i'm not sure about using this code.
    AppModuleGFTImpl am = (AppModuleGFTImpl) Configuration.createRootApplicationModule(amDef,config);
    try {
    ps =am.getDBTransaction().createPreparedStatement("Select * from XXXXXX where kullanici_id=? and sifre=?",0);
    ps.setString(1, kullanici);
    ps.setString(2, sifre);
    rs = ps.executeQuery();
    if (rs.next()) {
    girebilir = true;
    } else {
    girebilir = false;
    ps.close();
    rs.close();
    //am.getDBTransaction().closeTransaction(); ? I'm not Sure
    //Configuration.releaseRootApplicationModule(am, true); ? I'm not Sure
    Is it True? How we use this code on the project view side? Must we close Transaction, or release application Module.
    thanks for interest.
    sorry my english.

    Hello, for the SP you can use something like this in your application module
      private static final String BULKSTAMMENN =
        "begin IVA_OWNER.IVA_UI_ALGEMEEN_PCK.USM_SNELLE_INVOER_GUI( P_RLE_ID => :1, P_AANTAL => :2, P_OJR_JAAR => :3, P_RAS_ID => :4, P_TOELICHTING => :5, P_SUCCES => :6 ); end;";
    public void bulkStamen ( int rasId, int telerId, int jaar, int aantal, String toelichting ) {
        CallableStatement bulkStamenSP = null;
        try {
          bulkStamenSP = getDBTransaction().createCallableStatement( BULKSTAMMENN, 0 );
          bulkStamenSP.setInt( 1, telerId );
          bulkStamenSP.setInt( 2, aantal );
          bulkStamenSP.setInt( 3, jaar );
          bulkStamenSP.setInt( 4, rasId );
          bulkStamenSP.setString( 5, toelichting );
          bulkStamenSP.registerOutParameter( 6, Types.VARCHAR );
          bulkStamenSP.executeUpdate();
        } catch ( Exception e ) {
          log.warning( "Aanroep naar " + BULKSTAMMENN + " gefaald, " + e.getMessage() );
        } finally {
          if ( bulkStamenSP != null ) {
            try {
              bulkStamenSP.close();
            } catch ( Exception e ) {
              log.warning( e.getMessage() );
        log.info( "Stammen bulk uitgevoerd voor " + rasId + " " + telerId + " " + jaar + " " + aantal + " " +
                  toelichting );
      }You can then drag this method onto your page or right into your task flow if your using JDev 11.
    Also you can access it from a backing bean although the methods above are preferred
    -Anton

  • How to use media in another application?

    Say I wish to use some of my video clips in After Effects. How do I import them into AE? The FCPX Library, of course, cannot be opened by the AE import dialog.

    Managed media should really only be ever used by someone working by themselves with their own material that doesn't need to be shared or used in any other application or by anybody else. Frankly I don't recommend managed media for any production, but there's nothing inherently wrong in it unless the library bundle gets to simply be too large.
    External media is really simple to use. When you make a new library, you select the library in FCP and in the inspector you'll see the library properties.
    The defaults for Media and Cache is In Library. Click the Modify Settings button and then create a folder for the media, assign that folder to the cache as well. Done. When you import media from a camera, it gets imported into that folder and goes into a folder called Original Media. When I have graphics files I want to use in the production I simply put them in that folder, and then when I import the graphics I use the leave in place function. Everything for the production in in one location and backed up. Think of the folder as the Capture Scratch location. The library itself stays small. Multiple libraries, multiple users on a network can access the same folder. The media inside it is available to any application.

  • How to use PDF generator installed on dedicated machine

    Hi!
    According to Adobe official recommendation I have installed PDF generator on dedicated machine, separed from rest of LiveCycle modules. But now I don't know how to use such a PDF generator from my LC processes. Obviously I may use webservice component and call PDF generator using SOAP. But that is not elegant. I searched in adminui for some URL or IP address settings, but found nothing.
    And what to do when I have more then one PDF generator server? Probably I need some sort of load balancing. Is LC ES capable of work in such configuration?
    Thanks for some ideas.
    --- Jaroslav

    There is possible to specify PDF generator location in file repository:///assembler.properties . So I created the file:
    serverType=JBoss
    protocol=soap
    endPoint=http://192.168.2.1:8080
    username=administrator
    password=password
    and put it to repository root. Unfortunetally nothing happened. I restared server also but no effect. Do you have some experience with configuring server location in LiveCycle?
    --- Jaroslav

  • How to use more than one application server during initial load?

    Hi,
    we plan to use more than one application server in CRM during initial download in order to increase the number of parallel requests and to decrease the time for the initial load. Is there a way to allocate requests to more than one server? Is is possible via multiple rfc connections for consumer CRM in CRMRFCPAR?
    Thanks.
    Alexander Schiffer

    Hi Naresh,
    thanks for your answer. It has solved my problem. SMLG is the transaction that I was looking for.
    Two more OSS notes that helped me to guide our basis into the right direction:
    OSS 593058 - New RFC load balancing procedure
    OSS 1413986 - SMLG: Possibility to select a favorite type for Ext.RFCs
    Thanks again.
    Alexander Schiffer

  • How to use single column in a group by clause

    hi frs
    i hve used sum function in a sql how to use a single column in a query.
    for ex
    select sum(sal),ename,job,deptno,empno from emp
    group by deptnowhether its possible to use single column in a group by class.
    i want like this because in my custom report i need it. Report query has more than 30 column so its not possible to use 30 columns in a group by.
    pls help.
    Thanks
    Rajesh

    Maybe something like this -
    Select ename, job, deptno, empno, sal, col1, col2, col3, col4 ......, coln
    From
    Select SUM(sal) sal, deptno deptno_i
    From Emp
    Group By deptno
    ,Emp
    Where deptno = deptno_i
    Shailender Mehta

  • How to use partition by instead of group by?

    Hi,
    I am having trouble using partition by clause in following case,
    column other_number with null values contains 10 records in 'some_table'
    5 records with date 11-01-2009, item_code = 1
    5 records with date 10-01-2009, item_code = 2
    This query returns all 10 records, (which suppose to return 2)
    SELECT count (a.anumber) over (partition by TO_char(a.some_date,'MM'), a.item_code) AS i_count, a.item_code,
    TO_char(a.some_date,'MM')
         FROM some_table
         WHERE to_char(a.some_date,'yyyy') = 2009
         AND a.other_number IS NULL
    Works fine if I wrote like this,
    SELECT count (a.anumber) AS i_count, a.item_code,
    TO_char(a.some_date,'MM')
         FROM some_table
         WHERE to_char(a.some_date,'yyyy') = 2009
         AND a.other_number IS NULL
    group by TO_char(a.some_date,'MM'), a.item_code
    How to use partition by in this case?

    Hi,
    Almost all of the aggregate functions (the ones you use in a GROUP BY query) have analytic counterparts.
    You seem to have already discovered that whatever values are returned by
    an aggregate funcition using "GROUP BY x, y, z" can also be found with
    an analytic function using "PARTITION BY x, y. z".
    Aggregate queries collapse the result set.
    The aggregate COUNT function:
    SELECT    deptno
    ,         COUNT (*)   AS cnt
    FROM       scott.emp
    GROUP BY  deptno
    ;tells how many of the 14 employees are in each of the 3 departments.
    So does the analytic COUNT function:
    SELECT    deptno
    ,         COUNT (*) OVER (PARTITION BY deptno)   AS cnt
    FROM       scott.emp
    ;but the first query produces 3 rows of output, the second query produces 14.
    You could get 3 rows of output using the analytic function and SELECT DISTINCT , but it's inefficient.
    Which should you use? Like so many other things, the answer depends on what data you have, and what results you want from that data.
    If you want collapsed results (one row per group), that's a striong indication that you'll want aggregate, not analytic functions.
    If you want one row of output for every row in the table, that's a strong indication that you'll want analytic functions.
    If you have a particular question, ask it. Post some sample data and the results you want from that data, as Rob said.
    There is another important difference between aggreate and analytic functions: analytic functions can easily be restricted to a window , or subset, of the data set. This is something like a WHERE clause, but a WHERE clause applies to the whole query: a wondowing condition applies only to an individual row.
    If you need to compute a SUM of rows with an earlier order_date than this row or an average of the last 5 rows, then you proabably want to use analytic function.

  • How to use the generated SQL of "Recommendation"

    Dear Experts,
    I am using KXEN recommendation function. After trained the model, I expose the result in form of HANA SQL. However, I am really have no idea how to make this SQL runnable because there are some subqueries like:
    FROM $Dataset "SPACEIN"
      LEFT OUTER JOIN (SELECT * FROM  WHERE "GRAPH_NAME" = 'Transactions') "PRODUCTS" ON ("PRODUCTS"."KXNODEFIRST" = "SPACEIN".MemberID)
      LEFT OUTER JOIN (SELECT * FROM  WHERE "GRAPH_NAME" = 'Product') "RULES" ON ("PRODUCTS"."KXNODESECOND" = "RULES"."KXNODESECOND")
      LEFT OUTER JOIN (SELECT * FROM  WHERE "GRAPH_NAME" = 'Transactions') "NOTIN" ON ("RULES"."KXNODESECOND_2" = "NOTIN"."KXNODESECOND") AND ("NOTIN"."KXNODEFIRST" = "SPACEIN".MemberID)
    Please pay attention to the red parts. While $Dataset, I assume it should be the data source which is used to train the model, but how to handle the "GRAPH" parts(the next 3 subqueries)? There are something missing after "FROM" clause, what should I fill in here? why the XKEN will generate sucn incomplete codes?
    Thanks for your help!

    Hi Richard,
    To apply a recommendation model, you first need to save your model in your database. (saving the model in the database for such models and for what you want to do is mandatory).
    Once you saved it, you will see many tables starting with "Kx" : KxInfos, KxLinks, KxNodes...
    These tables contains information on the nodes available in the data used, on the links between products.
    Now, if you generate the SQL code for Hana, the name of your KxLinks table should now be used in the SQL code.
    When prompted for $Dataset and $Key, you should specify in place of $Dataset the name of the table on which you want to apply your model. In place of $Key, you should enter the name of the key of this table (e.g. UserId).
    In my case $Dataset =>KAR_UniqueCustomers and $Key=>UserID
    My generated code looks like this :
    FROM KAR_UniqueCustomers "SPACEIN"
    LEFT OUTER JOIN (SELECT * FROM KxLinks1 WHERE "GRAPH_NAME" = 'Transactions') "PRODUCTS" ON ("PRODUCTS"."KXNODEFIRST" = "SPACEIN".UserID)
    LEFT OUTER JOIN (SELECT * FROM KxLinks1 WHERE "GRAPH_NAME" = 'ItemPurchased') "RULES" ON ("PRODUCTS"."KXNODESECOND" = "RULES"."KXNODESECOND")
    Note that your application table must contain:
    - A column with the same name as your users identifier in the training dataset. It contains the list of distinct users (stricly 1 row for each customer id)
    - A column with the same name as your products name in the training dataset. It can contain the name of the same product for all customers.
    I hope you'll make it work !
    Armelle

  • How to use Theme generator?

    Hi All,
    My iViews are displaying the table icon instead of the actual table with grid (as what we see in R/3). I sent a message to OSS and they asked me to regenerate the theme under Portal Display -> ITS theme generator. They also advise to clear the browser cache.
    My question is which theme should I generate? Which login should I use to in the username and password fields? I tried a few times to generate but it keep gives the following error message.
    http://epprd.mycompany.com.my:50400/irj/portalsap_generate/!?sap-user=administrator&sap-password=abc123&language=en&webTransactionType=EWT
    At the same time as I can see there are many upload after I choose a theme, do I need to upload any graphics? How can I generate a theme and clear my cache?
    Thanks
    Regards,
    Bryan

    Hi,
    First you have to create a new Theme using Theme Editor....Refer this link
    http://help.sap.com/saphelp_nw04/helpdata/en/d9/c67c91923a11d5b57d006094b9451c/frameset.htm
    Second use portal user & password...more info, refer this link
    http://help.sap.com/saphelp_nw04/helpdata/en/af/807f72a20d11d5b580006094b9451c/frameset.htm
    Regards,
    Senthil K

  • How to use Designer Generator in JHS 10.1.3

    I have migrated a sample form using JHS 10.1.2 on Jdev 10.1.2.
    Now I am trying to do the same on Jdev 10.1.3 using JHS 10.1.3.
    But I could not locate Designer Generator which will locate Modules of Repository of Oracle Designer, How should i do this?
    Also, What is the equivalent connection in Jdev 10.1.3 for WorkArea Connection?
    Note: I have successfully created a sample JSF-ADF BC project using the BC components generated from the HR Schema using the Wizard.
    Kind Regards
    Srihari

    Hi Steven,
    Thanks for your response.
    I tried it in the same way, but while generating application, it is throwing the following errors:
    JAG-00001.0 [ init ] Invalid property in application structure file. XML processing logged the following errors:
    JAG-XML : <Line 22, Column 48>: XML-24538: (Error) Can not find definition for element 'Service'
    Unable to validate service
    This error is thrown during "Validating Application Definition using XSD."
    Also, when I set the xmlns attribute of Service Tag Element to "http://www.oracle.com/jheadstart/applicationStructure", it is throwing different errors as few attributes were not expected.
    Kind Regards
    Srihari

  • How to use BundleTransformer in Console Application?

    Hi, I have a scss file (style.scss) and I want to transformer it to CSS using BundleTransformer.
    How to do it in a Console Application? I'm looking for example code or something like that :)

    Hi Shlomi,
    In my opinion, this thread is related to ASP.NET forum. So please post thread on that forum for more effective response. Thank you for understanding. Please refer to the following link.
    http://forums.asp.net/.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • When & How do I get new Multi-Pass episodes?

    So I bought a Multi-Pass of The Daily Show with Jon Stewart this evening. A new episode broadcasted an hour ago. I'm wondering how this whole multi-pass thing works regarding when and how I get new episodes. I was hoping/wishing the new episode would

  • Email links in safari go to chrome

    when I click an email link it goes to Chrome instead of Mail.app I'm having a brain **** where do I correct this? Buko

  • Deployment error with netbeans vwp

    when i try to run my vwp project i get this error. Starting server Bundled Tomcat (5.5.17) Starting of Tomcat failed. D:\Documents and Settings\Erdal\erdalWEB\nbproject\build-impl.xml:475: Deployment error: Starting of Tomcat failed. See the server l

  • How to use photoshop brushes in Illustrator

    HI, I finally took the plung and purchased Illustrator. Can anyone tell me how to use Photoshop brushes in Illustrator please? Illistrator does not seem to like the .abr extension. Thank you for your help. Cheers. Onearmjohn..

  • TS3694 error code 2324

    I get an error code 2324 and don't seem to be able to find a solution to clear this. I am trying to install the latest version of iTunes.