Accessing value of a textfield mapped to an infobus column

I am attempting to access the text value of a textfield mapped to an Infobus column.
In this instance, I am trying to get an account type from the appropriate textfield to pass it to a new query.
I have tried using getText - this returns a string of "oracle.sql.STRUCT@nnnn" (where nnnn is an hexidecimal bnumber)
I also tried creating a method on the textfield using code I found here to retrieve the dataItem, map it to an immediate access control and retrieve the value using getValueAsString().
This approach also returns "oracle.sql.STRUCT@nnnn" of course the numbers are different but as far as I can see, I have know way of knowing if this is the same class or not.
What I am wanting to do is this....
jpLookup.getRowSetInfo().setQueryCondition("ACCOUNTTYPENAME" = '"+tfType.getFieldContents()+"'");
jpLookup.getRowSetInfo().executeQuery();
for testing, I took out the internal single quotes so I could see what was being generated through the sql error dialog. With them in place, I simply get an empty result set since I don't have any account types of 'oracle.sql.STRUCT@nnnn'
SO, could someone point me in the right direction??

TextFieldControl tField = new TextFieldControl();
((ImmediateAccess)tField.getDataItem()).getValueAsString();
Linda

Similar Messages

  • Accessing values during runtime in value mapping

    Hi all,
    We have a specific requirement , where in we have a set of fields coming from the source system. All the fields have values expect few. The few which don't have values are reserved for future use, and for each source field there is a corresponding target value and we need map them.
    We have used value mapping here, but it doesn't work for fields which don't have values.
    We have thought of  accessing the fields which do not have values, dynamically or at runtime by connecting the database of the source system.
    Is it possible to do this, if yes, please provide with your inputs and alternatives.
    thanks,
    younus

    Go through this:
    http://help.sap.com/saphelp_nw70/helpdata/en/13/ba20dd7beb14438bc7b04b5b6ca300/frameset.htm
    <b>To implement Value Mapping, following activities have to be performed:</b>
    <b>1.</b> Register Java Proxies. This is one time activity for each installation. Following URL has to be called for registering asynchronous replication scenario:
    http://<Server>:<Port>/ProxyServer/register?ns=http://sap.com/xi/XI/System&interface=ValueMappingReplication&bean=localejbs/sap.com/com.sap.xi.services/ValueMappingApplication&method=valueMappingReplication
    <b>2.</b> Application Programming: ABAP program has to be written to perform following tasks:
    <b>a.</b> Read Value Mapping data from table.
    <b>b.</b> Call Outbound Proxy to push the data into a message to Integration Server.
    <b>3.</b> Configuration of Replication scenario in Integration Directory.
    Regards,
    Sarvesh

  • Access promoted value in an outbound map

    Hi all,
    Is there any way to access a promoted value in my outbound map. I tried using xpath but that works only if we I give the property schema in source. I wanted to know if there is any functoid that can accomplish this work of accessing a promoted value from
    property schema, not in orchestration maps, but in outbound map so that I will have 1 source schema and 1 destination schema.
    Thanks in advance.
    BizTalk Developer, Bangalore, India

    Hi Nazeer,
    Not all promoted properties are added to the context of every message. And No, you can use this ContextAccessor functoid to access promoted values which are not promoted in the source schema
    context.
    Let’s explain this process with an example. If your source schema is named-Employee schema and contains three elements in it like ID, Name, Age. And in your schema if you have promoted ID
    element using property promotion, then in the context of this particular message instance along with other system-defined properties you will have ID and its value. This ID can be accessed in the various BizTalk Server components, including pipelines and orchestrations.
    If you have another schema named as Machine which contains element like MachineID, Name and if you have promoted MachineID using property promotion then 
    in the context of the this particular message instance (Machine) you will have MachineID along with other system-defined properties.
    In your outbound map, if your source schema is Employee and if you want to access the MachineID, you will not able to access it because MachineID is part of the Machine message instance.
    But if you want to access the MachineID in your map where Employee scheme is used, then you can copy the context property from an Machine message instance to Employee message instance. If you have any Orchestration before the map you can do so like:
    Employee(PropertySchema.SomePropertyFiled) = Machine(PropertySchema.MachineID)
    So when the Outbound map executed at the send port, using the
    ContextAccessor functiod.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • JPR - Access Value Mapping

    Hi,
    How can I access a value mapping defined in ID from a Java Server Proxy?
    I've tried to that with the following code:
    import com.sap.aii.mapping.value.api.*;
    public class MIGetDocsIn_PortTypeImpl extends com.sap.aii.proxy.xiruntime.core.AbstractProxy implements MIGetDocsIn_PortType {
    public DTGetDocsResponse_Type mIGetDocsIn(DTGetDocsRequest_Type mTGetDocsRequest)
    throws com.sap.aii.proxy.xiruntime.core.SystemFaultException, com.sap.aii.proxy.xiruntime.core.ApplicationFaultException{
    String senderAgency = "Source";
    String senderScheme = "Source1";
    String receiverAgency = "Target";
    String receiverScheme = "Target1";
    IFIdentifier src = XIVMFactory.newIdentifier(senderAgency, senderScheme);
    IFIdentifier dst = XIVMFactory.newIdentifier(receiverAgency , receiverScheme);
    try {
    String res = XIVMService.executeMapping(src, dst, "var1");
    } catch (ValueMappingException e) {}
    Do I need to add package com.sap.aii.mapping.value.api in application-j2ee-engine.xml?? What is the reference target for that package?
    Thanks,
    Pedro Leal

    Hi,
    It seems is not possible to access value mapping in java proxy.
    Alternatively can someone give me some advices about the best to way to read configuration parameters in a java proxy server scenario?
    Properties file is a solution. Is there any other way to achieve similar functionality?
    Thanks,
    Pedro Leal

  • Access values stored in 2D Array in HashMap

    Hi everyone i would like to know how to access values stored in a 2D array inside a HashMap
    Here is a drawing representation of the map.
    So to get the KEYS I just have to execute this code:
    this.allPeople = personInterests.keySet();But how can I get acces to the actual values inside the 2D Array?
    My goal is to create a treeSet and store all the elements of the first array in it, then look at the second array if any new elements are detected add them to the treeset, then third array and so on.
    I tried this code:
    Object[] bands = personInterests.values().toArray();
         for( int i=0; i<bands.length; i++)
              this.allBands.add(bands.toString());
    }But this.allBands.add(bands[i].toString())seems to be the problem, Dealing with a 2D array, this code only return a string representation of the Arrays and not a string representation of their elements.
    Using my logic I tried to execute:
       this.allBands.add(bands[0][i].toString());But i get a ARRAY REQUIRED BUT JAVA.LANG.OBJECT FOUND
    I really don't know the way to go.
    Thanks to anyone that will help.
    Regards, Damien.
    Edited by: Fir3blast on Mar 3, 2010 5:27 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    You'll just need to cast the object to the correct type. This is nothing to do with HashMap at all. If you don't know what that means then your google keywords are "java cast tutorial".

  • Accessing index directly from backing map

    Hi Guys,
    I have an interesting problem and would greatly appreciate some input.
    I am trying to find the minimum or maximum values of a specific field from data held
    in the backing map for a cache.
    I have seen examples of PofValue being used to extract individual entries - or being used in
    Iterators, working through the entries in the backing map.
    However, I was wondering if there is a faster way to do this, given that the field I'm interested in
    has an ordered index created against it.
    My thoughts were along the lines of trying to extract the Mapindex entries for the field, and just then
    taking the first value (which, I'm assuming, would be the smallest since the index is ordered).
    Does this make sense, or do I need to abandon the idea of using the pre-existing index and just iterate through
    the PofValues? Is it even possible to access the index entries for values directly from the backing map?
    Many Thanks,
    Adrian.

    Hi Adrian,
    you should be able to write an index-aware filter which makes this really fast, provided that you have a sorted index on the particular attribute which sorts according to the same order (or reverse) according to which you want the least or highest value. The following Filter implementation filters for the entries with the least extracted value:
    import java.util.Map;
    import java.util.Set;
    import java.util.SortedMap;
    import com.tangosol.util.Filter;
    import com.tangosol.util.MapIndex;
    import com.tangosol.util.filter.ExtractorFilter;
    import com.tangosol.util.filter.IndexAwareFilter;
    public class LeastExtractedValueFilter extends ExtractorFilter implements IndexAwareFilter {
       public LeastExtractedValueFilter(ValueExtractor extractor) {
          super(extractor);
       public LeastExtractedValueFilter() {
       @Override
       protected boolean evaluateExtracted(Object extractedValue) {
          throw new UnsupportedOperationException("This filter is only usable with a sorted index");
       @Override
       public Filter applyIndex(Map mapIndexes, Set candidateKeys) {
          MapIndex mapIndex = (MapIndex) mapIndexes.get(m_extractor);
          if (mapIndex != null && mapIndex.isOrdered()) {
             SortedMap reverseMap = (SortedMap) mapIndex.getIndexContents();
             if (reverseMap.isEmpty()) {
                candidateKeys.clear();
             } else {
                candidateKeys.retainAll((Set)reverseMap.values().iterator().next());
             return null;
          throw new UnsupportedOperationException("This filter is only usable with a sorted index");
       @Override
       public int calculateEffectiveness(Map mapIndexes, Set candidateKeys) {
          MapIndex mapIndex = (MapIndex) mapIndexes.get(m_extractor);
          if (mapIndex != null && mapIndex.isOrdered()) {
             return 1;
          throw new UnsupportedOperationException("This filter is only usable with a sorted index");
    }You can then try to extract whatever you want from the candidates in a parallel aggregator, e.g.:
    import java.io.IOException;
    import java.io.Serializable;
    import java.util.Collection;
    import java.util.Set;
    import com.tangosol.io.pof.PofReader;
    import com.tangosol.io.pof.PofWriter;
    import com.tangosol.io.pof.PortableObject;
    import com.tangosol.util.InvocableMap;
    import com.tangosol.util.ValueExtractor;
    import com.tangosol.util.InvocableMap.EntryAggregator;
    import com.tangosol.util.InvocableMap.ParallelAwareAggregator;
    public class FirstEntryExtractorAggregator implements ParallelAwareAggregator {
       public static class Parallel extends FirstEntryExtractorAggregator implements PortableObject, Serializable {
          public Parallel() {
             super(null);
          public Parallel(ValueExtractor extractor) {
             super(extractor);
          @Override
          public void readExternal(PofReader in) throws IOException {
             extractor = (ValueExtractor) in.readObject(0);
          @Override
          public void writeExternal(PofWriter out) throws IOException {
             out.writeObject(0, extractor);
       protected ValueExtractor extractor;
       public FirstEntryExtractorAggregator(ValueExtractor extractor) {
          super();
          this.extractor = extractor;
       @Override
       public Object aggregate(Set entries) {
          if (!entries.isEmpty()) {
             InvocableMap.Entry entry = (InvocableMap.Entry)entries.iterator().next();
             return entry.extract(extractor);
          return null;
       @Override
       public Object aggregateResults(Collection collResults) {
          Comparable least = null;
          for (Object object : collResults) {
             least = leastOf(least, object);
          return least;
       private Comparable leastOf(Comparable least, Object other) {
          if (other == null) return least;
          Comparable compOther = (Comparable) other;
          if (least == null) return compOther;
          return compOther.compareTo(least) > 0 ? least : compOther;
       @Override
       public EntryAggregator getParallelAggregator() {
          return new Parallel(extractor);
    }You would then run this as:
    Object leastExtractedValue = cache.aggregate(new LeastExtractedValueFilter(extractor), new FirstEntryExtractorAggregator(extractor));Best regards,
    Robert
    Edited by: robvarga on Sep 21, 2010 3:00 PM
    Edited by: robvarga on Sep 21, 2010 7:44 PM

  • Problem of defining value to a textfield in MovieClip

    hello,dear everyone
    there is problem that realy confused me.that is the
    textfield(or other display objects) in MovieClip can't be defined
    when i jumpto that frame.check these simple code:
    mc.stop()
    function goNext(evt:Event){
    mc.nextFrame()
    dosth()
    function dosth()
    if(mc.currentFrame==2)
    mc.mytext.text="hello"
    nextBT.addEventListener("click",goNext)
    the mc is a simple MC that have 2 frames,and the textfield
    object is in the second frame.
    and what i try to do is when i clicked the button,the mc
    jumpto the second frame.and i define a value to that textfield.but
    it's failed when i try to do like that.
    as i debug the program.i found that when i define the value
    to the textfield,that textfield is a Null Object(should be the
    TextField object).not only the textfield not work,but also other
    elements such as Button objects.
    so,i am thinking that must because the objects are too late
    to initialized before they be used.maybe there are some event can
    tell me that all elements has been initialized,as i can use them
    then.what do you think,my friend?

    If all of the code you have is in the first frame, then it
    has processed long before anything ever moved to the second frame.
    What you could try is to have a variables layer that extends
    both frames, and assign the value of the textfield text to that
    variable. Make the textfield associate with that variable (in the
    properties section for it), So when the movieclip moves to the
    second frame the text field should automatically acquire the
    variable value.
    I may not have interpretted your problem correctly, so you
    might have to clarify things if I missed the target.

  • Unable to access values from database in login page..

    Hey all,
    Friends I have a login.jsp page and I want if i enter username and password then it will be accessed from database and after verifying the details it will open main.jsp.I made a database as "abc" and created DSN as 1st_login having table 1st_login. But the problem is that I am unable to access values from database.
    So Please help me.
    Following is my code:
    <HTML>
    <body background="a.jpg">
    <marquee>
                        <CENTER><font size="5" face="times" color="#993300"><b>Welcome to the"<U><I>XYZ</I></U>" of ABC</font></b></CENTER></marquee>
              <br>
              <br>
              <br>
              <br><br>
              <br>
         <form name="login_form">
              <CENTER><font size="4" face="times new roman">
    Username          
              <input name="username" type="text" class="inputbox" alt="username" size="20"  />
              <br>
         <br>
              Password          
              <input type="password" name="pwd" class="inputbox" size="20" alt="password" />
              <br/>
              <input type="hidden" name="option" value="login" />
              <br>
              <input type="SUBMIT" name="SUBMIT" class="button" value="Submit" onClick="return check();"> </CENTER>
              </td>
         </tr>
         <tr>
              <td>
              </form>
              </table>
    <%
    try {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection connection = DriverManager.getConnection("jdbc:odbc:1st_login");
    Statement statement = connection.createStatement();
    String query = "SELECT username, password FROM 1st_login WHERE username='";
    query += request.getParameter("username") + "' AND password='";
    query += request.getParameter("password") + "';";
    ResultSet resSum = statement.executeQuery(query);
    //change: you gotta move the pointer to the first row of the result set.
    resSum.next();
    if (request.getParameter("username").equalsIgnoreCase(resSum.getString("username")) && request.getParameter("password").equalsIgnoreCase(resSum.getString("password")))
    %>
    //now it must connected to next page..
    <%
    else
    %>
    <h2>You better check your username and password!</h2>
    <%
    }catch (SQLException ex ){
    System.err.println( ex);
    }catch (Exception er){
    er.printStackTrace();
    %>
    <input type="hidden" name="op2" value="login" />
         <input type="hidden" name="lang" value="english" />
         <input type="hidden" name="return" value="/" />
         <input type="hidden" name="message" value="0" />
         <br>
              <br><br>
              <br><br>
              <br><br><br><br><br>
              <font size="2" face="arial" color="#993300">
         <p align="center"> <B>ABC &copy; PQR</B>
    </BODY>
    </HTML>
    and in this code i am getting following error
    C:\Project\SRS\build\generated\src\org\apache\jsp\loginjsp.java:93: cannot find symbol_
    C:\Project\SRS\build\generated\src\org\apache\jsp\loginjsp.java:93: cannot find symbol_
    C:\Project\SRS\build\generated\src\org\apache\jsp\loginjsp.java:94: cannot find symbol_
    C:\Project\SRS\build\generated\src\org\apache\jsp\loginjsp.java:95: cannot find symbol_
    4 errors
    C:\Project\SRS\nbproject\build-impl.xml:360: The following error occurred while executing this line:
    C:\Project\SRS\nbproject\build-impl.xml:142: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 6 seconds)

    As long as you're unable to compile Java code, please use the 'New to Java' forum. This is really trival.
    To ease writing, debugging and maintenance, I highly recommend you to write Java code in Java classes rather than JSP files. Start learning Servlets.

  • Unable to get the value from the textfield in valueChangeEvent

    Hi,
    I have created one custom textField by extending the CoreInputText. Now i have attched default ValueChangeListener to it. I am using this textField in my application.
    Now i type some thing and do a focus lost, the value change listener get called. i want to validate the value entered. In that listener method if i take the getSource() from ValueChnageEvent object and do a getValue() I am getting the entered value.
    My problem is that if i do a getValue() of the textField i am not gettting the value entered.
    How can i get the entered value from the textfield.? Is there any method to notify to do this?
    Thanks in advance.

    Hi,
    I tried to the value from coreInputText also. If i check the getValue method of the component, i am getting the last updated value. I have debug the FlowPhaseListsner also. And i found that this listener is calling before the updateModel phase. Due to that i am not getting the value from the Field.

  • How to add two values from a textField ???

    Hi all,
    I'm new to Java and the J2ME, I jumped to J2ME immediately, and I'm wondering how can I compute two values coming from textField. Let say I would add this two values,.
    like
    txtAnswer = txtNum1 + txtNum2 ; (in some other PL)
    Here's my snippet code in J2ME
    TextField txtAnswer = new TextField("Answer ","",10,TextField.NUMBER);
    TextField txtNum1 = new TextField("Number1 ","",10,TextField.NUMBER);
    TextField txtNum2 = new TextField("Number2 ","",10,TextField.NUMBER);
    Command cmdAdd = new Command("ADD",Command.SCREEN,1);
    // add the UI
    What would be the code inside my commandAction method?
    Thanks a lot.
    God Bless.

    Thanks JC,
    I already solved the problem, JC you provided the right answer, it's my fault why my program does not run at the first time.
    Thanks,. I'm just wondering the difference between these two implementaiton and why does the first implementation causes an error, (an error that I posted before this.)
    Implementation 1
    public class myClass extends...... implements .... {
    private TextField txtNum1, txtNum2, txtAns;
    public void myFunctionAdd( )
    TextField txtNum1 = new TextField("Number1 ","",10,TextField.NUMERIC);
    TextField txtNum2 = new TextField("Number2 ","",10,TextField.NUMERIC);
    TextField txtAns = new TextField("Answer","",10,TextField.NUMERIC);
    public void commandAction(Command c, Displayable s )
    if ( ....... )
    int answer = Integer.parseInt(txtNum1.getString()) + Integer.parseInt(txtNum2.getString() );
         txtAns.setString(String.valueOf(answer));
    Implementation 2:
    public class myClass extends...... implements .... {
    private TextField txtNum1, txtNum2, txtAns;
    public void myFunctionAdd( )
    txtNum1 = new TextField("Number1 ","",10,TextField.NUMERIC);
    txtNum2 = new TextField("Number2 ","",10,TextField.NUMERIC);
    txtAns = new TextField("Answer","",10,TextField.NUMERIC);
    public void commandAction(Command c, Displayable s )
    if ( ....... )
    int answer = Integer.parseInt(txtNum1.getString()) + Integer.parseInt(txtNum2.getString() );
         txtAns.setString(String.valueOf(answer));
    What's seems to be the difference?
    Thanks for any kind reply....

  • Rate and accessable value is not displaying for the tax invoice output

    Hello All,
      Rate and accessable value is not displaying for the tax invoice output. Rest of all outputs for invoices shows Rate and accessable value.
    Scenerio is free of charge sales order (samples) removing the goods from pant so excise invoice has been created and also updated. but for tax invoice out put rate and access value is not displaying.
        Pricing procedure: In pricing procedure account keys have not been maintained because there is not gl account upadation during billing for free of charge delivery.
    Thanks & Regards,
    ramesh

    hi Gurpreet,
    You can add values to that transient column programatically,either by getiing the row from the iterator and then row.setAttribute('Column_name','Value');
    Or providing value to it in the SQL...

  • How do we update the value of a textfield in a dialog box by clicking a button/ textbutton ?

    How do we update the value of a textfield in a dialog box by clicking a button/ textbutton ?

    Hi,
    If you create a function to return wwctx_api.get_user you could
    call this inside an update trigger, you could put in an
    exception to return USER if there is an error, this would then
    work for users connected directly and users using Portal.
    Regards Michael
    e.g.
    CREATE OR REPLACE FUNCTION F_PORTAL_USER RETURN VARCHAR2 IS
         vRet VARCHAR2(50) := wwctx_api.get_user;
    BEGIN
         RETURN(vRet);
    EXCEPTION
         WHEN OTHERS THEN
              RETURN (USER);
    END F_PORTAL_USER;

  • Radio buttons that pass a value to a textfield

    Hi everybody;
    I’m trying to create a “Rating Matrix” for the evaluation of new raw material. On this form I create a group of radio buttons (i.e. Radio1 to Radio5).
    Each radio represents a rating value “Poor=1, Fair=3, Average=5, Good=7, Excellent=9” and I would like to capture this rating (1 or 3 or 5, etc) into a Texfield.
    I work in solving this issue without success, if any of you have any example that I could look at it, I will really appreciate.
    Thanks in advance.

    Thanks for your fast response! WowWhat I'm trying to do, is being able to pass a value to a TextField depending on the ratio button selected.If I choose one of the ratio buttons of the group "Opacity" (Opacity1, Opacity2, Opacity3, Opacity4 or Opacity5), I like the TextField "Rank" to show the value.If Opacity1 selected, Rank field value = 1.If Opacity2 selected, Rank field value = 3.If Opacity3 selected, Rank field value = 5.If Opacity4 selected, Rank field value = 7.If Opacity5 selected, Rank field value = 9.
    You think this can work?
    if(Opacity1.value == "On") {Rank.value==1; // value is added to the texfield;}
    if(Opacity2.value == "On") {Rank.value==3; // value is added to the texfield;} Else if(Opacity3.value == "On") {Rank.value==5; // value is added to the texfield;}
    Sorry not a programmer.I understand the loop, but is not very clear where I need to add this script, on the radio or in the textfield?Thanks.
    Date: Thu, 18 Jul 2013 11:48:28 -0700
    From: [email protected]
    To: [email protected]
    Subject: Radio buttons that pass a value to a textfield
        Re: Radio buttons that pass a value to a textfield
        created by GKaiseril in JavaScript - View the full discussion
    Do you want to count the occurrence of each value and report that in a given text field?
    Do you understand that when no radio button or check box when not selected has a value of the string "Off".
    Assuming that the value for various radio buttons in a group is the value you want to test
    // custom calculation script;
    // count occurrences of "9" values
    var nTest = 9; // value to test for;
    var nCount = 0; // count of occurrences;
    // loop through the fields;
    for(i = 1; i < 6; i++) {
    var nValue = this.getField("Radio" + i).value;
    // test if field value equals test value;
    if(nTest == nValue) {
    nCount++; // values equal so increment count;
    } // end test of field value
    } // end field name loop;
    event.value = nCount; // set field value;
    // end custom calculation script;
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5518047#5518047
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5518047#5518047
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5518047#5518047. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in JavaScript by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How do i prepopulate a listbox depending on the value of a textfield

    I am getting an custmerid value in a textfield depending on the selected customer name after getting this value i need to pass this customer id to a rowset query for populating the customer address listbox with that customers addresses only (he has multiple address ) iam doing so by doing setobject(1,custid) on that particular rowset.
    How ever on deploying iam getting invalid parameter binding exception.
    what do i do ? how do i get that customers addresses ?when does the creator look for the parameter bindings in the rowset.or trather when does it execute that particular rowset.?

    Hi,
    Check the following tutorial:
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/listbox_components.html

  • Copy value function in message mapping?

    can someone help me understand copy value function in message mapping???

    Hi,
    Here's a good example providen yesterday by Mark in a thread.
    [Re: different contexts to different targets]
    And here's SAP help: [http://help.sap.com/saphelp_nwpi71/helpdata/EN/26/d22366565be0449d7b3cc26b1bab10/content.htm]
    Then play...
    Mickael

Maybe you are looking for

  • Giving Error while forwarding a page from another page

    Hi I am getting below error while forwarding a page from another page. Please reply as i am new to OA frame work. oracle.apps.fnd.framework.OAException: No data found for region (/mhe/oracle/apps/ak/susanta/webui/EmployeeUpdatePG).      at oracle.app

  • Accessing ext3 partitions from Windows with FS Driver

    Hi everyone, I have a slight probem. I'm dual-booting ArchLinux and Windows. Here is my partition scheme: /dev/sda1 (NTFS) Lenovo Recovery partition /dev/sda2 (NTFS) Windows /dev/sda3 (ext2) /boot /dev/sda5 (JFS) / /dev/sda6 (JFS) /home /dev/sda7 (ex

  • 2.01 Available

    Aperture 2.0.1 addresses issues related to performance and overall stability. It also fixes a number of other minor issues. This update is recommended for all Aperture users. For more information about this release, go to http://support.apple.com/kb/

  • TS1541 How do I close applications so that I can install new software?

    I am trying to install office:mac but I get the mesage I must close Firefox and safari before I can continue the application installation. I'm stuck! Help. How do I close the applications?

  • [FlaMX] =?UTF-8?B?R2FsZXLDrWEgd2ViIHByb3BpYTogwr9kb25kZSBlc3TDoSA=?=   =?UTF-8?B?ZWwgZmFsbG8/?=

    Hola, estoy diseñando una pequeña galerÃa de fotos para mi página web en Flash. El caso es que la he probado en mi pc y en la red con la ruta de los archivos, pero me carga la imagen mal, y no sé donde puede estar el fallo. Os cuelgo el código p