How to link two different columns in two different UDTs

hi all
by using linkedtable() i am able to link to a particular table but my requirement is linking to a particular column of that table how to do this . can i get a sample code

SAP Business One only supports linkage between UDTs (e.g. @NMS_Person / @NMS_PersonX; NMS is your namespace (use XX if this is just about customer functionality)) through @NMS_PersonX.Code to be linked to @NMS_PersonID.PersonID.
If this doesn't meet your requirements you have to work with non-B1-UDTs (any "stand-alone"/"custom" table) + e.g. use foreign keys - or do the linkage through some checks in your code.

Similar Messages

  • How to link two combo boxes? (urgent)

    Hello,
    I am wondering how to link two combo boxes in Acrobat Pro 9. Basically, I need to link a building with a list of rooms. There are 3 building choices in my first combo box. For the sake of example, Building A, Building B and Building C. When one of the buildings is selected, I want a 2nd combo box to display the rooms that are located in that building. So by selecting building A, you would then be able to choose a room from the list of available rooms in the second drop box. The buildings cannot share a list of rooms because they have the same room numbers. Is anyone able to help?
    - Travis

    You can also use ajax. When the first combo box element is selected, it will call the ajax function and that ajax function will bring the data from the database and place it in second combo box.

  • HI. How to link two different language website

    For example, I have built two different language website english and Somali  which work together. If someone who read Somali can go to Somali pages in somali website or someone who read English can go to English pages in English website, so Please is there anyone can help this situation?

    Hi,
    Please check the following threads,
    how to set up a multilingual website with Adobe Muse and push it live to Adobe Business Catalyst
    Re: How can i create different languages for my page?
    Hope this helps. Do let me know if you have any question.

  • How to link two controls?

    Hi,
    I'm trying to link two controls together, a slider and a numeric, so that if I change the value of one control, the other will also show the new value.
    Does anyone knows how to do that? Is that even possible?
    Thank you for your help
    Solved!
    Go to Solution.

    altenbach wrote:
    Tim's answer is correct and appropriate. No code needed.
    That's different.  Usually Christian shows me yet another, more efficient way, to code something.  Well, I guess you can't get more efficient than no code.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to link two databased

    I have to link two tables from two differen databases.
    select vendor from table a database e
    select vendor from table b database c
    how can i combine this two tables

    You create a database link. Assuming you are on database e:
    CREATE DATABASE LINK c_link
      CONNECT TO name_of_c_database_user_with_select_privilege_to_table_b
      IDENTIFIED BY password_of_c_database_user_with_select_privilege_to_table_b
      USING 'c_database_tns_entry_name'
    /Keep in mind 'c_database_tns_entry_name' must exists in tnsnames.ora on database e server.
    Now you can:
    select vendor from table_a
    union all
    select vendor from table_b@c_link
    /SY.

  • How to link two authorizations to an object.

    Hello,
    In the EWA report I received the following recommendation:
    "If you do not want to disable development in your system, you have to exclude OBJTYPE=DEBUG with ACTVT=02 from the profile and allow any other object type for S_DEVELOP. This means that development and debugging with visualization are still possible.
    You can do this by linking two authorizations to object S_DEVELOP: One with all object types (except "DEBUG") and all activities and another for object type DEBUG only with all activities (except 02)."
    How to achieve this?
    Thanks
    Galina

    > I try not to maintain transactions in SU24. 
    >...
    > We have a small user population. 
    I can understand that, however it still has a downside when your user base grows, or you move on and someone else needs to take over, or the functional consultants leave the building and when you upgrade or apply support packs and need to make some changes, then you don't know why the authorization was added manually - at least not without having to sieve through a sea of documentation and mails etc.
    It is easier to find a transport request and it's documentation IMO, and who knows about it, approved it, tested it, etc.
    It is just a little organizational discipline thing, but it does go a long way.
    Cheers,
    Julius

  • How to link two XL Reporter  templates into single sheet

    Hi
    I'm Using SAP Business One 2005B, PL 04.
    I want to link one template into another XL Reporter Template. Kindly guide me, how to link.
    Thanking You

    How to create a to  new template with these two templates,  linking it  to a  base table.
    I have taken delivery document based on Item delivered. I have grouped it by item Group. I want to link the Instock based on warehouse for those Items. If i try it in a single template i cant get the value for either one of them. How to get these data.

  • How to link two tables?

    Hello,
    I'm trying to create invoices with Pages, but my question is how can I link two tables in one Pages document?
    Or having two Header Rows with some 'normal' rows between would also be great. (even better)
    I'm trying to calculate my subtotal etc. below my overview of articles.
    Thanks in advance!
    Andy

    (1) no way to link two tables in Pages.
    (2) you may have several header rows, several footer rows but you can't have standard rows between header (or footer) ones.
    You may achieve what you describe without the asked feature.
    Use correct ranges and you will be able to calculate subtotals.
    Yvan KOENIG (VALLAURIS, France) lundi 28 décembre 2009 19:02:38

  • How to Link two Portlet

    Hi ,all.
    I am beginning study Porttal, I had build two Portlets by Java, The Portlet1 and Portlet2 .
    How to link to Portlet1 from Portlet2 ?
    How to pass value to Portlet1 and Portlet2 ?
    Thanks and Best Regards!

    Steps
    1) create 2 Oracle PDK portlets (p1 and p2 with same parametr name. let say 'param') using Jdeveloper and register with Portal
    2) p1's code
    <%@page contentType="text/html; charset=windows-1252"
    import="oracle.portal.provider.v2.render.PortletRenderRequest,oracle.portal.provider.v2.http.HttpCommonConstants,oracle.portal.provider.v2.ParameterDefinition,oracle.portal.provider.v2.url.*"
    %>
    <%
    PortletRenderRequest pReq = (PortletRenderRequest)
    request.getAttribute(HttpCommonConstants.PORTLET_RENDER_REQUEST);
    %>
    <P>Welcome <%= pReq.getUser().getName() %>.</P>
    <P>This is the <b><i>Show</i></b> render mode!</P>
    <%
    ParameterDefinition[] params =
    pReq.getPortletDefinition().getInputParameters();
    %>
    <p>This portlet's input parameters are...</p>
    <table align="left" width="50%" ><tr><td><span class="PortletHeading1">Name</span></td><td><span class="PortletHeading1">Value</span></td></tr>
    <%
    String name = null;
    String value = null;
    String[] values = null;
    for (int i = 0; i < params.length; i++)
    name = params.getName();
    values = pReq.getParameterValues(name);
    if (values != null)
    StringBuffer temp = new StringBuffer();
    for (int j = 0; j < values.length; j++)
    temp.append(values[j]);
    if (j + 1 != values.length)
    temp.append(", ");
    value = temp.toString();
    else
    value = "No values have been submitted yet.";
    %>
    <tr>
    <td><span class="PortletText2"><%= name %></span></td>
    <td><span class="PortletText2"><%= value %></span></td>
    </tr>
    <%
    %>
    <form action="<%=UrlUtils.htmlFormActionLink(pReq, UrlUtils.PAGE_LINK)%>" method="get">
    <%=UrlUtils.htmlFormHiddenFields(pReq, UrlUtils.PAGE_LINK) %>
    <input name="param" type="text" size="10">
    <input name="submit" type="submit">
    </form>
    </table>
    3) no change in P2's code.
    4) run portal you can pass value from p1 to p2
    cheers

  • How to link two ID account to only one

    I have two Apple ID account, and I would like to link them into one account without losing my purchase on both account. How this is possible?

    You cannot link two Apple ID's together.  You can only log into one and download its purchases, and then log out and into the other account.  You should choose one to continue using for the foreseeable future, and hope that someday Apple allows you to link accounts.

  • How to link two modules of data when querying the data ?

    Hi ,
    I am using Designer editor to create a form .
    I am having two modules with the tables EMPLOYEE and department .
    In my form ,I want to display the data of each employee with the department data .
    How to link the two tables data in the designer ?
    How to View the generated triggers in the designer ?
    Thanks
    Sai

    Two modules means two forms. These are unrelated.
    Or do you mean that you have one form with two blocks (master-detail)?
    How to link the two tables data in the designer ?You have to define the foreign key on the tables. Based on this FK Forms Generator will generate the code if you create two Module Components (master-detail) in the module. Don't forget to define the Key Based Link on the master block.
    How to View the generated triggers in the designer ?You can't. You have tom open the generated FMB file in Forms Builder to see what code is generated.

  • How to link two .java files together?

    hello everybody,
    is it possible to link two or more .java files together? I mean is if I have 3 .java files. (a.java, b.java, c.java) then I have 3 .class files too. How do I use the method in other .java files. For example :
    public a extends Applet {
    // call b.class
    b();
    public b extends Applet implements ActionListener {
    void title1() {
    How to call the b.class? How to call the title1() method?
    Is it related to JAR or package??
    Thanks for helping me. v(^_^)v

    O.K, you do not link ".java" files together.
    You compile them into class files and they can create new instances of each other and and access their variables and work together.
    I recommend "Sam's Teach Yourself Java in 21 Days".
    It will start you out with the basics.
    --Ian                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

  • How to link two selectOneListBox?

    Hello, I'm trying to link two selectOneListBox. The operation is as follows, when you select a value in the first select, the second select will be charged with the values related.
    I'm building the components in a programmatic way. A example code for the first select is:
    ProcesosBean.java
    HtmlSelectOneListbox select= new HtmlSelectOneListbox();
    select.setId("select"  +i);
    select.setSize(1);
    UISelectItems items = new UISelectItems();
    ArrayList arr = new ArrayList();
    for (int i = 0; i < list.size(); i++) {
         arr.add(new SelectItem((ListBean) list.get(i)).getId(), ((ListBean) lista.get(i)).getValue()));
    items.setValue(arr);
    comboCampos.getChildren().add(items);
    MethodBinding mb = FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{processAction .loadSelect}",     new Class[] { ActionEvent.class });     
    comboCampos.addValueChangeListener(new ValueChangeListener() {
         public void processValueChange(ValueChangeEvent arg0) throws AbortProcessingException {
    comboCampos.setValueChangeListener(mb);     I tried to use "addValueChangeListener" and "setValueChangeListener" but does not work.
    In the ProcessAction class, I will get the values of the second select, for the selected value, and it will charge the second select, in a programmatic way.
    I thought this could be done with javascript, but I don't know how to call the ProcessAction method. Any suggestion?
    Edited by: dcastellar on Oct 15, 2009 1:03 AM

    Well, I found a problem in the first implementation (with the a4j function), you can't change the view (ej: the values of the inputs), but it's works fine in the rest.
    The second alternative, I was wrong about the object that I used. It wasn't the ValueChangeEvent not the ActionEvent. This alternative works correctly.
    a example of the code that I use is: (I do not use the jsf tags, I show the components programmatically)
    the bean class
    HtmlSelectOneListbox select= new HtmlSelectOneListbox();
    select.setValue("");
    MethodBinding mb = FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{processAction.loadSelect}",new Class[] { ValueChangeEvent.class });
    select.setValueChangeListener(mb);the action class
    public void cargarComboFormato(ValueChangeEvent  event) {
    }thanks for all, and sorry for my bad english.

  • I'm using pages 5.2 and feeling completely stupid by not knowing how to link two text pages together. Can anyone help? please...

    Hi there, I'm trying to use pages 5.2 for the first time and I cannot find how to connect two consecutive pages together as I use to do with earlier versions of Pages... Any help?

    Word Processing templates have what is called a Document Body.
    That is the area defined by the margins and holds a default text area which flows from page to page.
    Examples of WP templates are the Letters, Reports, CVs etc.
    Layout templates have that switched off and require you to add Textboxes or Shapes into which you can type text. Each page is an individual Section and no text flows from page to page.
    Examples of Layout templates are the Brochures, Business Cards, Posters, Newsletters etc
    In Pages '09 you can manually link Textboxes to flow in your own set order and across pages. Pages 5 has dropped this along with 100 other features.
    Peter

  • How to link two text boxes so that text flows from one to the other.

    In Adobe Acrobat XI Pro,  I have managed to link two text boxes with JavaScript.
    I have deselected the "scroll long text" and selected auto text size.
    I have entered the script into the "custom keystroke script"
    if ( event.fieldFull || event.willCommit ) this.getField("Details2").setFocus();
    Now my problem is this works for IE but I can't get it to work with adobe reader or pdf expert on iPad.
    I need my forms to work with both, windows & ios.
    Any suggestions?

    See the following article:
    JavaScript - setFocus Method for tabbing to next form field
    And see if iOS can even handle the sample form.
    iOS and android devices are not a powerful as your desktop of laptop computer and have limited support for JavaScript within PDF forms. This limitation for specific apps ranges from none to quite a bit but not all JavaScript.

  • How to link two hierarchies

    Is it possible to link two hierarchies?
    Like , I have two hierarchies, Date and time. Date hierarchy have (Year->Month->Week->Day) and Time hierarchy have (Hour->Min->Sec).
    Now I want the drilling from day to hour. If user will click on Day then it should drill to hour.
    Is it possible? .
    Regards,
    Sudi

    I have done the same thing. But it showing error.
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14025] No fact table exists at the requested level of detail: [SA,Date,Hour,User,]. (HY000)

Maybe you are looking for

  • How to execute an application on the client?

    hello we have a client/server architecture, with the Oracle Discoverer running on the clients, and the rest of the applications on the server. How can we run an application that is on the client from an application that is running on the server??

  • Combine Files Dialog 8.1.6--drag and drop broken?

    I just reinstalled Acrobat 8, and the Combine Files panel is "all whacky". If I drag one or more documents into the panel, they are added normally. But if I then add another batch of 1 or documents, the FIRST SET OF DOCUMENTS is added again. To be cl

  • Database in RAC

    Hi, Could anybody tell me how could I put an existing database for the APPS in RAC? I run the database on Linux and on that server I have only the database. thanks, Paul

  • Line-size 220

    hi   if i will use LINE-SIZE 220 in my report , will i be able to get print out on A4 landscape , of this out put.

  • Sybase,ODBC,Solaris, Generic connectivity

    Please tell me what do I need to do to set up Oracle Generic Connectivity? I have Oracle9i EE 9.2.0.5.0 64bit for Solaris. Do I need to install Sybase Client? Where can I get ODBC driver? Thanks! Ilya