How to include Search Help which has been created using SE11

Hi all,
I have created the custom search help in SE11. What is the way to include it in my code? Thanks in advance.

Hi Mil,
There are different ways of using the search help created by SE11 depending on the kind of application you are using.
1. Search help can be attached to a <i><b>DATA ELEMENT</b></i> under the tab <i><b>FURTHER CHARACTERISTICS</b></i>.
Now wherever this data element will be used, automatically the search help will be available on the output screen. e.g. in selection screen using parameters statement etc.
<i>PARAMETERS: P_VAL1 TYPE Z_DATAELE.</i>
2. Search help can be also attached to <i> database table fields</i> directly in the tab <i>Entry help/check</i>. Now wherever this database table field is used e.g. in SELECT-OPTIONS statment, the search help will be automatically available on output selection screen.
3. Also, search helps can be directly used in the programs using function modules and event.
<i><b>PROCESS ON VALUE-REQUEST.
  FIELD <f> MODULE <mod>.</b></i>
Here in the module, you can use following function module for fetching the search help on the screen.
<i><b>F4IF_FIELD_VALUE_REQUEST</b></i>
4. Search help can be direclty attached to the selection screen statements like SELECT-OPTIONS using MATCHCODE object extension
<i><b>SELECT-OPTIONS: LP_STATS  FOR TJ30-ESTAT MATCHCODE OBJECT ZH_TJ30 NO-EXTENSION NO INTERVALS.</b></i>
Hope this sort out your issue.
PS If the answer solves your query, plz close the thread by rewarding each reply.
Regards
Message was edited by:
        Sapna Modi

Similar Messages

  • Impdp specific schema from dump which has been created using full=y

    Hi,
    I have received a dump (expdp) which has been created using the parameter FULL=Y. I just want to import (impdp) only one schema into my database. I have used remap_schema and exclude=grants. The schema i want to import is carried out successfully, but in my import log i keep getting the messages such as :
    ORA-31684: Object type TABLESPACE:"TS_BCST1" already exists
    ORA-31684: Object type USER:"OUTLN" already exists
    ORA-31684: Object type SEQUENCE:"SYSTEM"."MVIEW$_ADVSEQ_GENERIC" already exists
    How can i use impdp only to import objects under my specific schema and not have impdp attempt to create system/sys users and its objects, create tablespaces, etc etc.
    Kindly assist.
    Regards,
    Karan

    Use SCHEMAS parameter in the impdp command to import the scpecific schema.
    Eg.
    impdp system/password schemas=user1 remap_schema=user1:user2 directory=dir dumpfile=user1.dmp...........
    You can specify list of schemas you want to import with , (comma) saperated in the SCHEMAS parameter.

  • Issues with SBO 2005 form load which has been created using  XML

    Am converting SBO 2004A addon into SBO 2005 addon, am loading a wizard form (wizard.xml)using following code.
       Dim oXMLDoc As MSXML2.DOMDocument
        Dim sXMLString As String
        Set oXMLDoc = New MSXML2.DOMDocument
        oXMLDoc.Load (App.Path & "FILESWizard2.xml")
        Dim strXml As String
        strXml = oXMLDoc.xml
        mobjSBOApplication.LoadBatchActions strXml
    But when we runs above code in SBO 2005, LoadBatchActions display error "Invalid Form - Item" "3006".
    It seems there are some change in the UI for the loadBatchActions to read the XML file.
    Would appreciate if you could advise on the same urgently.

    Hi Adele,
    Thanks for your reply.
    But this is the error comes with LoadBatchActions method of application object. I have check the same in debug mode but this is not item event error because i followed the loading event in form but action does not move ahead after the LoadBatchActions..
    I have also written GetLastBatchResults just below the LoadBatchActions and the same shows the below error message.
    <?xml version=""1.0"" encoding=""UTF-16""?><result><errors><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""-7037"" descr=""Argument is out of Range""/><error code=""3006"" descr=""<b>Form - Invalid Form Item""/><error descr=""Could not recover from previous errors""/</b>></errors></result>"
    but the same is working perfectly ok with 2004A.. would appreciate if you could advise on the same.

  • How do I change template designs once a form has been created using another template design?

    How do I change template designs once a form has been created using another template design?

    I talked to a service Representative and he told me there isn't a function to change a form using one template to a different template. For example, I used template for "Accommodation registration" and wanted to change it to "admissions application." I was hoping I could just select a "Change template" rather than having to copy/paste everything to the new template. But that's what i had to do. Maybe the next version of this software will make it easier to change design templates.

  • How to know weather Vendor ID  has been created for a Particular employee

    HI Experts,
    We have got ticket from  emploee pertaining to  his Vendor Id.
    How we can check weather the vendor Id has been created for him.
    What is the transaction code we use to check this.
    Thanks in advance.
    Sairam.

    Hi,
    For this you need to go for coustom only..
    Before the following should be identify.
    1. Personnel number should be assign in vendor master single field only because in vendor master there are five fields can mapp with personnel number.
    2. For vendor creation of employee should have different vendor group in Vedor master
    3. vender nuber range must be same as Employee number range.
    Based on above conditions you can create coustom report.

  • How to read a PrivateKey that has been generated using Openssl.

    I used openssl to generate the key pairs,,the commands are as follows
    openssl req -config openssl.cnf -new -out buyer.csr
    openssl rsa -in privkey.pem -out buyer.key
    openssl x509 -in buyer.csr -out buyer.cert -req -signkey buyer.key -days 365
    openssl x509 -in buyer.cert -out buyer.der.crt -outform DER
    now i have buyer.key as my private key,,,i like to read it to sign a file but i get error while doing it,,the code for doing it is as follows
    import java.io.*;
    import java.security.*;
    import java.security.spec.*;
    import java.security.spec.X509EncodedKeySpec;
    class clientEncrypt {
    public static void main(String[] args) {
    PrivateKey priv=null;
    try{             
    FileInputStream in = new FileInputStream("C:/certificates/suepkb");
    byte[] encodedKey = new byte[in.available()];
    in.read(encodedKey);
    in.close();
    X509EncodedKeySpec privateKey = new X509EncodedKeySpec(encodedKey);
    KeyFactory kf = KeyFactory.getInstance("RSA");
    priv = kf.generatePrivate(privateKey);
    }catch(Exception e){
    System.out.println("subhash"+e.getMessage());
    try{  
    Signature dsa = Signature.getInstance("SHA1withRSA");
    dsa.initSign(priv);
    /* Update and sign the data */
    FileInputStream fis = new FileInputStream("c:/sub.txt");
    BufferedInputStream bufin = new BufferedInputStream(fis);
    byte[] buffer = new byte[1024];
    int len;
    while (bufin.available() != 0) {
    len = bufin.read(buffer);
    dsa.update(buffer, 0, len);
    bufin.close();
    /* Now that all the data to be signed has been read in,
    generate a signature for it */
    byte[] realSig = dsa.sign();
    /* Save the signature in a file */
    FileOutputStream sigfos = new FileOutputStream("c:/ssig");
    sigfos.write(realSig);
    sigfos.close();
    /* Save the public key in a file */
    } catch (Exception e) {
    System.err.println("Caught exception " + e.toString());
    plz do help me out,,,asap
    with regd and thnx in advnce
    Subhash

    use bouncycastle provider.
    there are some classes and a sample code for this.

  • How to unblock a row which has been partial received?

    Dear everyone,
    I just have a trouble and need anyone help me.
    Here is the case...
    There is a PO with a row of 200pcs ordered.
    Partial of them, say 50pcs, are received.
    Then what happened on that row is that, as you know, the fields in that row except Qty and 'Del. Date' are all blocked, even for UDF.
    -- I really need to be able to rewrite info on those UDFs in the row. Is there any way to enable me update data on those UDFs.
    Thank you
    Tony

    Thanks, Gordon
    The situation is that the client has a needs to record shipment status for each row (or each item). Continuing the example I gave in the first thread, the client ordered 200pcs on 08/15. later the vendor sends a notification that 50pcs will be delivered on 09/21. It means that the rest of them must be received on or after 10/18. (Because the vendor has a delivery schedule.)
    On 09/21, the 50 pcs are received.
    on 10/02, the vendor sent the second notification that 30pcs will be delivered. at this time, I need to record the follow info:
    "--- 30pcs for 10/18, 70pcs for 11/19(following the vendor schedule) "
    there are many rows(items) in a PO.
    since the row is partial received, I just cannot update the above info in the row.
    thanks
    Tony

  • How to delete an attachment which has been published to a catalog

    Hi folks,
    11.5.10.2
    We have enabled the Attachments function on JTF Define Resources (JTFRSDEF) form.
    Once an attachment is uploaded, we also publish it to a catalog.
    Is there any way to delete an uploaded / published attachment?
    Kindly help.
    Thanks in advance.
    Edited by: user12003895 on Jul 15, 2010 2:42 PM

    You should not delete an asset. You should retire it. Period.
    If you have 300k assets to be retired, then instead of doing it manually, you can try the following options.
    1) Mass Transactions > Retirements
    2) Retirement API
    3) Using the FA_MASS_EXT_RETIREMENTS interface. First populate FA_MASS_EXT_RETIREMENTS table and then run the "Post Mass External Retirements" concurrent request.
    Hope this answers your question
    Sandeep Gandhi
    Omkar Technologies Inc.
    Independent Techno-functional Consultant

  • Using a Circle object which has been created outside a Group

    Hi all!
    I have one trouble:
    I create a Circle object outside a Group object.
    I trying to use th Circle in the Group and I have got compilation error.
    It's my code:
    * testfx.fx
    * Created on 24.03.2009, 21:19:00
    package testfx;
    import javafx.scene.effect.*;
    import javafx.scene.paint.*;
    import javafx.scene.shape.*;
    import javafx.scene.*;
    import javafx.scene.text.*;
    import javafx.scene.control.*;
    import javafx.scene.transform.*;
    import javafx.stage.Stage;
    var MyCircle : Circle = Circle{
        centerX: 200
        centerY: 200
        radius: 15
        fill: Color.BLUE
    function run(){
        Stage {
            title: "Button"
            width:400
            height:400
            scene: Scene{
                fill: Color.BLACK
                content:[
                    Group{
                        content:[
                            Rectangle{
                                x: 125
                                y: 175
                                width: 150
                                height: 50
                                arcHeight: 5
                                arcWidth: 5
                                stroke: Color.GRAY
                                fill: LinearGradient{
                                    startX: 0.0
                                    startY: 0.0
                                    endX: 0.0
                                    endY: 1.0
                                    proportional: true
                                    stops:[
                                        Stop{offset: 0.0 color: Color.WHITE},
                                        Stop{offset: 1.0 color: Color.BLACK}
                            MyCircle                           <------- (SIC!)    
                        effect: Reflection{
                            fraction: 1.0
                            topOffset: 3
                            topOpacity: 0.8
                            bottomOpacity: 0.2
    }My error:
    Note: The following error is an internal error in the OpenJFX compiler (1.1.0).
    Please file a bug at the Openjfx-compiler issues home (https://openjfx-compiler.dev.java.net/Issues) after checking for duplicates. Include the following diagnostic in your report and, if possible, the source code which triggered this problem. Thank you.
    Where is my mistake here?
    I'm sorry for my English, I have not enough knowledge in it at the moment.
    //Best regards!
    //Alexander

    Try this:
    package testfx;
    import javafx.scene.effect.*;
    import javafx.scene.paint.*;
    import javafx.scene.shape.*;
    import javafx.scene.*;
    import javafx.stage.Stage;
    var myCircle : Circle = Circle{
    centerX: 200
    centerY: 200
    radius: 15
    fill: Color.BLUE
    Stage {
    title: "Button"
    width:400
    height:400
    scene: Scene{
    fill: Color.BLACK
    content:[
    Group{
    content:[
    Rectangle{
    x: 125
    y: 175
    width: 150
    height: 50
    arcHeight: 5
    arcWidth: 5
    stroke: Color.GRAY
    fill: LinearGradient{
    startX: 0.0
    startY: 0.0
    endX: 0.0
    endY: 1.0
    proportional: true
    stops:[
    Stop{offset: 0.0 color: Color.WHITE},
    Stop{offset: 1.0 color: Color.BLACK}
    myCircle
    effect: Reflection{
    fraction: 1.0
    topOffset: 3
    topOpacity: 0.8
    bottomOpacity: 0.2
    By the way, you could define the Circle inline, like this:
    package testfx;
    import javafx.scene.effect.*;
    import javafx.scene.paint.*;
    import javafx.scene.shape.*;
    import javafx.scene.*;
    import javafx.stage.Stage;
    Stage {
    title: "Button"
    width:400
    height:400
    scene: Scene{
    fill: Color.BLACK
    content:[
    Group{
    content:[
    Rectangle{
    x: 125
    y: 175
    width: 150
    height: 50
    arcHeight: 5
    arcWidth: 5
    stroke: Color.GRAY
    fill: LinearGradient{
    startX: 0.0
    startY: 0.0
    endX: 0.0
    endY: 1.0
    proportional: true
    stops: [
    Stop{
    offset: 0.0
    color: Color.WHITE
    Stop{
    offset: 1.0
    color: Color.BLACK
    Circle{
    centerX: 200
    centerY: 200
    radius: 15
    fill: Color.BLUE
    effect: Reflection{
    fraction: 1.0
    topOffset: 3
    topOpacity: 0.8
    bottomOpacity: 0.2
    Thanks,
    Jim Weaver
    JavaFXpert.com (Learn JavaFX blog)
    Edited by: JimWeaver on Mar 25, 2009 1:15 PM
    Edited by: JimWeaver on Mar 25, 2009 1:17 PM

  • I cannot open a file *.pages which has been created few days ago

    Hi All,
    2 weeks ago I created a document with extension *.pages. I sent it to my private email box and today I downloaded it.
    When I am trying to open it, it gives me an error that this file cannot be opened.
    What happened?
    How I can open this file?
    Thanks in advance
    Alex

    what error do you get?

  • Adobe X Standard cannot load/create EuroRoman.ttf font after file has been created using AutoCAD LT 2015. File was loaded and refereneced with Distiller X. Font has been installed to Win7

    Need suggestion on how to get Adobe X to create/load the font. Others in the office can create the same Adobe file with no issues. Help please.

    You have the required Xorg drivers and those errors appear to be expected (https://www.virtualbox.org/ticket/4789). As a matter of fact, Xorg is terminating successfully. Just to make sure, is your ~/.xinitrc setup correctly?

  • How to add search help to customer field of field selection on ESS Screen?

    Hi all,
    I am able to get customer field CUSTOMER01 from field selection customization on leave application ESS Screen. How to attach search  help which contains Holiday date & its description to this field?
    Thanks,
    Swapnali

    Hi,
    This is for working time -> leave request screen
    In field selection there is one field 'code for description of illness'. I have done required config for getting this field on ESS Screen. This field already has standard search help. So I m able to view the values of this field on ESS screen .
    So I thought to try assigning custom search help to this CUSTOMER0 field. Is there any method in BADI PT_ABS_REQ through which I can achieve the same. Please help.
    -Swapnali

  • How to get value of a textfield which has been set as Renderd false.

    Hi all
    how to get value of a TEXTFIELD which has been set as Renderd false.
    i am getting the value of this textfield from an lov but dont want to show it to the user.
    getting error as:
    attribute xxxx required for view object yyyyy.
    pls help
    naveen

    You can create item inside your LOV region, set the item style to formValue. You can associate this to a View Object field. It can also act as mirror of any other text input field.
    FormValue can hold the value and will not be diaplyed to user. You can read value from it controller
    example
    OAFormValueBean orgValue = (OAFormValueBean)webBean.findChildRecursive("OrgIdFormVal");
    Or you can read it fro the VO associated with this form value.

  • Just purchased a new pc. Downloaded Itunes. Downloaded some new music. Went to add the new music to my iphone off my new computer but it wants to wipe all of my existing music which has been purchased from itunes. HELP! What should i do?

    Just purchased a new pc. Downloaded Itunes. Downloaded some new music. Went to add the new music to my iphone off my new computer but it wants to wipe all of my existing music which has been purchased from itunes. HELP! What should i do?

    Kford_red wrote:
    Feel a bit gutted as spent £££'s downloading music tonight and not been able to get the songs onto my phone so far!
    The music you just downloaded tonight to your new computer is safe. The music you purchased on your phone is safe.  You shouldn't feel gutted.  It's your other music that you should have taken better care of.  That would include any music you ripped yourself or purchased outside of iTunes.  That you can't get back.
    It has always been the user's responsibility to back up and protect downloaded music.  If you didn't have a backup of your computer before it started acting funny, that's your fault.  It would be no different than if you lost a music CD.  It would not be a record store's responsibility to replace if you lost it.  Digital music is no different.  Similarly, a phone is not a backup medium.  Phone's break, get misplaced or stolen all the time and are not a substitute for a backup copy of your music and media.
    Computers WILL break.  Hard drives WILL fail.  That's why you back up your data. 

  • I recently connected my new ipad to my itunes, but now itunes will not recognise my ipod classic, and 50gig of music has gone. ipad connects ok but no longer ipod which has been there for two years! help!!!

    I recently connected my new ipad to my itunes, but now itunes will not recognise my ipod classic, and 50gig of music has gone. ipad connects ok but no longer ipod which has been there for two years! help!!!

    What happens when the iPod is plugged in?  anything?  any errors?
    Why is 50GB of music gone?  All music should exist on the computer.  Only a fool would rely on a single device which could easily be lost or stolen to store their content on.

Maybe you are looking for

  • Need help with many devices and one itunes account!!

    I recently purchased each of my kids an Ipod Touch.  They all three are now using my Itunes account which has become a little bit of a problem.  The biggest issue now is with iMessage.  When a friend send a text message or tries to Facetime one of th

  • How can I auto load Safari thru a non-Admin user account

    Okay, maybe I don't want to do this - - but can I? I have my old iMac setup to turn on at 8am. I would like to access it remotely through LogMeIn.com. But I need Safari running for remote access. I'd prefer to have Safari running in a 'Guest' User Ac

  • Project Management in SAP Enhancements

    Hi , I have a table with 2 custom fields added to it ZZ* hence, I also had to append the datasources with these fields based on the table assosiated with it. 1) What should be the approach to populate these fields in the datasource with appended stru

  • Doubt abt select-option

    select-options : kunnr for kna1-kunnr. on the selection screen there is a data base accses for kunnr. on the selection screen if i want to have my own selected values like 100 200 300 400 500.hw to do that.

  • Experiences from customer who have converted from MDMP to Unicode

    I would be interested in seeing a weblog or article from a customer who has gone through the conversion from MDMP to Unicode on an R/3 system.  I would be interested in how the process went, what kind of problems were encountered, how long it took, h