How to get the context element of a F4 help of a column in ALV table?

Hello!
I know to get the context element of the current row normally through
lo_el = WDEVENT->get_context_element( 'CONTEXT_ELEMENT' ).
or: lo_el = lo_nd->get_element( index = r-parm->index ).
But this time, I have a F4 help on the cell of a column. After clicking on the F4 help I need to get the current context element. Do you have any idea, to help me?
Many thanks!
regards
Meer

Hello,
Kindly close the thread if your query is resolved now.
Thanks
Pradeep

Similar Messages

  • How to get the list element label ? Please help

    Dear all
    I have a problem.
    I need to get the current list element lable
    for example
    the emp_list displays the employee_name and return the employee_id
    I need the following:
    when_list_change , i need to put the label of the selected element in a text item :EMP_NAME_TEXT
    I can put the put the element value easily when the user select an element
    :EMP_NAME_TEXT := :emp_list ;
    I need to put the label not the value
    please help

    Hi,
    Try out the get_list_element_label built-in function.....
    Find info in the on-line help.....
    Regards,
    Simon

  • How to get the context data using java script in interactive forms

    Hi All,
    How to get the context data using java script in interactive forms by adobe,  am using web dynpro java
    thanks.

    Hi venkat,
    Please Refer this link.
      Populating one Drop-Down list from the selection of another Drop-down list
    Thanks,
    Raju.

  • How to get the number of decimal places configured for a site column

    Hi,
    I have a column 'SampleNumCol' of type Number, the number of decimal places to be displayed is configured as 2.
    The column conatins a value, but when retrieved programatically is displayed as 5.00000000  instead of 5.00.
    I am retrieving this column using listitem.Properties[field.InternalName].
    I need to trim the decimals based on  number of decimal places configured for the site column.
    How to get the number of decimal places configured for a site column?
    Thanks in advance,
    dhijit

    Get the field as SPFieldNumber and then check DisplayFormat which returns
    SPNumberFormatTypes
    SPFieldNumber numberField = list.Fields.GetFieldByInternalName("YourNumberFieldName") as SPFieldNumber;
    SPNumberFormatTypes numFormatType = numberField.DisplayFormat;

  • How to get the last element of a structure in a textfield in DesignStudio

    Hello,
    how can I get the last element of a structure within a bex query?
    Within the structure we are working with dates that dynamically are buiId (input date - offsets for several months).
    I have to show the last value in a single textfield within DesignStudio.
    Regards
    Frank

    Hi Frank,
    in DS 1.3 you can use forEach function to get the last element of BEx structure (or n-th element in general using if condition)
    var array = DS_CROSSTAB1.getMembers("DHGY5D6XEFO1K45SB00BXFH7A",10);
    var lastMember="";
    array.forEach(function(element, index) {
           lastMember = element.text;
    TEXT_1.setText("Last structure element: "+lastMember);

  • HT1390 i rented a movie on my ipad but I am unable to download it on my ipad not enough space.  So now I would like to watch the movie on my laptop .. but i don't know how to get the movie on my computer.. help?

    I rented a movie last night on my ipad but I am unable to download it on my ipad I have no space.. so I want to watch it on my laptop computer but do not know how to get the rented movie on it.  I checked the itune store and they said I have it rented.. So I need help on what to do to download it on my computer so I can watch it any suggestions?  Thanks.

    Niel wrote:
    Because rented movies from the iTunes Store are normally a one-time download per rental, and if that download was to an iOS device, they can't be transferred to any other device.
    Does that hold in the other sense as well? A rental on the computer is non-transferrable to the iGadget?

  • How to get the text elements for a particular program

    Hi All,
    I want to get the all text elements , selection texts for a particular program...How to get.
    I have used one FM READ_TEXTELEMENT_FROM_REPORT , but not much useful..
    please help me..
    Regards,
    raj

    Hi..
    You may use this statement to read the text elements:
    DATA: i_reptx  TYPE STANDARD TABLE OF textpool   WITH HEADER LINE.
    READ TEXTPOOL (reports) INTO i_reptx. " reports is the report name.
    Best Regards,
    Pradeep.

  • How to get the xml element and comment name in a page?

    I need to list all element and comment name in a page

    Hi,
    do
      //K2Vector<XMLReference> allXMLRefs;
                        std::vector<XMLReference> allXMLRefs;
      IActiveContext* context = GetExecutionContextSession()->GetActiveContext();
                        UIDRef documentUIDRef = ::GetUIDRef(context->GetContextDocument());
                        XMLReference rootXMLRef = GetRootXMLReference(documentUIDRef);
                        GetFlattenedElementList(documentUIDRef,allXMLRefs);
                        std::ostringstream os;
                        for(std::vector<XMLReference>::iterator it = allXMLRefs.begin(); it != allXMLRefs.end(); ++it)
                                  XMLReference nextref = *it;
                                  PMString tag_name;
                                  os.str("");
                                  os <<  AsString(nextref,tag_name).GetPlatformString().c_str();
      CAlert::WarningAlert(os.str().c_str());
              }while(kFalse);
    I use above code to get tag name.
    Any one help me to get the comment tag in XML

  • How to get the context id of a help file

    Hi, All,
    In my form I need to call the procedure CGHP$CALL_MS_HELP (included in the library OFG4HPL.PLL that comes with Designer/2000). How can I find out what is the context id of my help file (The help is created by easyhelp)?
    Thanks

    Hello,
    Kindly close the thread if your query is resolved now.
    Thanks
    Pradeep

  • How to get the second element in XML Response with same name

    Hi All,
    I am struck at this point, I have written a sample HTTP client which sends a request to the HTTP Server. In response to the request made the HTTP Server gives response in the XML format. eg: -
    <?xml version="1.0"?>
    <parent>
    <node1> Value1 </node1>
    <node1> Value2 </node1>
    <node2> Value3 </node2>
    </parent>
    In the HTTP Client I am getting the value of node1 using the following statement: -
    if (node instanceof Element && "node1".equals(((Element)node).getName()) )
    String node1 = node.getStringValue();
    System.out.println("Product Code:"+node1);
    This is always returning the first node1 value i.e. <node1> Value1 </node1>.
    The requirement is, I also need to get the <node1> Value2 </node1> value also. So can anyone tell me hw can I get the <node1> Value2 </node1> value. please tell me the piece of code that I should add to get the <node1> Value2 </node1>.
    My Mode is something like this: -
    try
                   Document document = (Document)DocumentHelper.parseText(response);
                   List<Node> transactionNodeList = document.selectNodes( "//parent" );
                   for(Node singleNode:transactionNodeList)
                        for(int i=0,j=0;i< ((Element)singleNode).nodeCount();i++ )
                             Node node = ((Element)singleNode).node(i);
                             if (node instanceof Element && "node1".equals(((Element)node).getName()) )
    node1= node.getStringValue();
    System.out.println("Air Way Bill Number:"+node1);
    if (node instanceof Element && "node1".equals(((Element)node).getName()) )
    node1= node.getStringValue();
    System.out.println("Product Code:"+node1);
    Thanks in Advance

    DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance();
         DocumentBuilder db=factory.newDocumentBuilder();
         Document doc=db.parse(new File(ur xml file"));
         Element root=doc.getDocumentElement();
         System.out.println("root "+root.getNodeName());

  • How to get the programs (elements and premiere)from my old computer on my new PC?

    Can I get the programs from my old computer and use tham on my new (windows 8.1) computer?
    what do I do?

    I just did this so I hope I can remember.  I have a MAC so I went into my MAC hard drive and then library > application support > adobe > photoshop elements > 10 > creations > effects.  I selected all of my files and copied them.  I then went back to photoshop elements > 12 > creations and pasted the files into effects.  I then restarted PSE and all of my files were there! 

  • How to Get the Context values

    Hi
    Please let me know the code to get the view context values.
    regards
    mmukesh

    hi mukesh,
          if you want to read the attribute values under the context then
    wdContext.currentcontextelement.get<attributename>();
    if you want to read the attribute values under a node then
    get the size
    int size = wdContext.node<nodename>.size();
    for(int i = 0; i<size;i++)
       wdContext.node<nodename>.get<nodename>elementat(i).get<fieldname>();
    Regards,
    Gopi

  • Trex Result in the ABAP API - how to get the context

    Hi all
    I have an ABAP application in which I would like to know and display the context of the result like on the sdn.
    E.g. a search for Trex could look like:
    "...configure Trex is done by..."
    - showing bold text where the search criteria appears.
    Is there a function module able to provide this information? (e.g. SRET_INDEX_STORAGE_SEARCHING?)
    Or is there another functionality available in the ABAP-context?
    All ideas are more than welcome
    Thanks in advance
    Peter Michael

    Hi Helmut and Peter,
    there is a FM -> TREX_EXT_SEARCH_DOCUMENTS which will return exactly what you are looking for.
    You pass it the index, etc AND the query string (eg."Trex") as VALUE1 in the structure TREXS_QUERY_ENTRY.
    It will return a list of type TREXT_RESULT_DOCS. The CONTENT field is where the text was found as a string.
    Regards,
    Robin

  • How to get the first element of a List?

    Hi,
    I have the following hierachy:
    A (top level)
    -A1 (child of A)
    -B1 (child of A)
    --B11 (child of B1)
    --B12 (child of B1)
    I have an UDA on members B11 and B12 that have the same name as A1, and I use it to allocate values from A1 to B11 and B12. After that I want to aggregate the hierachy so I can have B1 and A with values.
    I would like to use the ancestors function to do that but Ancestors need a member as parameter and the only relation between A1 and B11 and B12 is the UDA.
    I can't do @ANCESTORS(@UDA(dimName, "A1")) because of that, so I would like to use a function to get at least 1 member that has the UDA I want and to use Ancestors on it, however I can't seem to find a function that returns the first member of a List.
    Can someone help me on this?
    Thank you

    Unfortunately it doesn't work. @List requires members names so I can't provide a member set as an argument :(^^^Are you sure? Take a look at the below example from the Tech Ref. That sure looks like @LANCESTORS and @LIST is accepting more than just member names.
    FIX(@LANCESTORS(@LIST(@ATTRIBUTE(Caffeinated_True),@ATTRIBUTE(Ounces_12),"200-40")))Also note this:
    If the @LANCESTORS function is used alone (not within a FIX statement), you must use the @LIST function and specify member names. So you DO have to use @LIST if @LANCESTORS is to be used to do an aggregation. Or so it appears.
    Regards,
    Cameron Lackpour

  • How to get the context name for a proxied servlet container

    I have been using tags to build links for applications that use Tomcat and I was wondering if tags that detect the host url can be used if the servet container is behind a proxy.
    For example let's say that the Tomcat context is called
    app_under_test
    but this url is proxied as
    testing.host/beta_testing.
    All urls built by the application should be http://testing.host/beta_testing/... not http:localhost:8080/app_under_test/...
    The only way I can think of to do this is to have a property file with a proxy url property that is used to build all application links.
    Is there a way of doing this that would not require a property file?
    Thanks for any ideas and pointers,
    -=beeky

    Hi,
    1.Goto transaction SM37.
    2. Select the Job
    3. Click on "Step" tab in the Application tool bar.
    4. You'll see the program name under "Program Name/Command" in the list displayed.
    <REMOVED BY MODERATOR>
    Regards,
    Shiny
    Edited by: Alvaro Tejada Galindo on Feb 1, 2008 1:20 PM

Maybe you are looking for

  • ACS 4.2 authentication and Privelged exec mode on Test Router.

    The goal is to have ACS authenticate my username via ssh and allow me to get into privileged exec mode once authenticated. Details below. I have ACS 4.2 Solution Engine and I have a test router with the following commands setup: aaa new-model aaa aut

  • Strange prob... to get correct o/p we have to run this prog twice ?????????

    hi, my problem is that i have created one bat file and i want to run that file in java but it is not running properly. the problem is ....... i have created one bat file named "file1.bat" & content of this file is as follows :- [ ag > b.txt] (and con

  • Error when trying to build my Application

    Whenever I try to build my Mac Application (A Simple Text Editor) it comes up with the following error: Code Sign error: The identity 'Mac Developer' doesn't match any valid, non-expired certificate/private key pair in your keychains What's wrong?

  • Copy paste into dock

    If someone could please help Firstly im a complete novice I have had my mac for just over a year and great with no problems until now when i copy text from a webpage and drop it onto the safari icon in the dock it no longer works very frustrated and

  • Airport Express Isn't Playing Music Through Stereo

    I have recently purchased an Airport Express. I have managed to connect it to our home wi-fi but when i want to play music through Airplay through my stereo, no sound comes out. The option to play music through Airport is available on both iMac and I