How to retrieve a column when left linked to multiple columns

Hi,  I'm not having much luck tracking this down; not sure of the best keywords to use.  For some reason I seem to have never run into this before...
I have an app which allows 5 tax codes to be entered (State, County, City...) for a Customer.  Naturally, all 5 fields use the same table for drawing data.  Logically like this:
Table_Customer.Tax_Code 1 -> Table_Codes.Description
Table_Customer.Tax_Code 2 -> Table_Codes.Description
Table_Customer.Tax_Code 3 -> Table_Codes.Description
Table_Customer.Tax_Code 4 -> Table_Codes.Description
Table_Customer.Tax_Code 5 -> Table_Codes.Description
Simply, how do I get Table_Codes.Description for Table_Customer.Tax_Code 2, 3, 4, 5?  If I just use Table_Codes.Description, I only get Table_Customer.Tax_Code 1...

I not not too sure but I think
that you need to join to 5 copies of the Table_Codes.Description
when added in crystal it will warn you you already have them added and add alias for the last 4 Table_Codes_1 ,Table_Codes_2 ,Table_Codes_3, Table_Codes_4
once doen you can use a little trick to alias the original as Table_Codes_5 then link them
Table_Customer.Tax_Code 1 -> Table_Codes_1.Description
Table_Customer.Tax_Code 2 -> Table_Codes_2.Description
Table_Customer.Tax_Code 3 -> Table_Codes_3.Description
Table_Customer.Tax_Code 4 -> Table_Codes_4.Description
Table_Customer.Tax_Code 5 -> Table_Codes_5.Description

Similar Messages

  • How can I generate data when the link is click on?

    i have written a stackoverflow question ,
    would like some input if you have any , thanks, i would like to stay away from using jquery
    http://stackoverflow.com/questions/23143436/how-can-i-generate-data-when-the-link-is-click -on/23143813?noredirect=1#23143813

    I think you need to rephrase your question and be more specific. Also for me the images you are referring to do not exist. From your question I am interpreting it as "how do I program?"

  • How to retrieve Delivery address when entered manually in PO

    Hi All,
    I am trying to print PO through Smartform. I am retrieving the delivery address based on the adrnr number/Customer number/Vendor Number from EKPO table. Now when the user manually changed the address with out adrnr/Customer number/Vendor Number, how to retrieve that address in order to print as these three fileds will be blank in EKPO table. How and where the SAP will store that address. Any help thanks.

    Hi,
        In the sales order point of view I know it will be stored in the ADRC table for the VBPA-ADRC number entry. Similar to that I hope the EKPO ADRC will have an another entry in the ADRC table.
    Thanks,
    Greetson

  • How to start a workflow when a value in specific column is changed?

    HI !! 
    I would like that  my workflow will run only if a value on a specific colunm will change.
    is there a way to do it without using a third colunm ?
    thank you !
    nikita.

    Hi,
    According to your post, my understanding is that you wanted to start a workflow when a value in specific column is changed.
    When you create workflow, if you check the “start the workflow automatically when an item is changed”, the workflow will be started automatically once the item is edited.
    In the other word, no matter which column we changed, the the workflow will be started automatically.
    As a workaround, we can add condition or action to make the workflow excute the next step only if the value in specific column is changed.
    There are two options to achieve it.
    Use the “Wait for Field Change in Current Item" action”. If you add the action at the first,  the workflow will excute the next step until the column is chaned to the specific value.
       2. User the “If any value equals to value” condition. If you add the condition at the first, the workflow will excute the next step if the condition is satisfied.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to Display Columns when Query is returning No Columns?

    I am Creating a Load Status Dash Board and I want to Dispaly Columns when Load is Not Started  too. As of Now My query is returning no Results which needs to Modified and Display Columns and Status Not Started to it? Could you please suggest any solutions to it? Thanks

    Hi,
    if you like to show a message instead of NO RESULTS . then you could easily get it by changing the custom text in the properties
    if you want it in a table format . you need to have a table with some data according to the reporting requirement
    thanks

  • Repeat "Detail a" section when using "Format with Multiple Columns" layout

    I am using Crystal Reports for .NET (VS 2008) and I would like to get the "Detail a" section to repeat at top of a second column containing additional data in "Detail b" section. Please see below for example, specifically "Detail a (2)". Any tips or help much appreciated.
    Detail a (1)_____Detail a (2)
    Detail b (1-1)___Detail b (2-3)
    Detail b (1-2)___Detail b (2-4)
    --Detail b (1-3)___Detail a (3)
    Detail a (2)______--Detail b (3-1)
    --Detail b (2-1)
    --Detail b (2-2)
    Thx, Scott

    the format with multiple columns i dont believe will show you the value 2x, but allows you to display the values across instead of down.
    i think you may want to use a sub report

  • Split one column  value and insert into multiple columns

    hi
    am new to plsql .
    i want to split a characters from one column and insert into multiple columns
    i tried used substr function the symbol ',' vary his place dynamically ,so i can't apply substr function.
    for eg:  before split
    col1 :
    col2 :
    col3 :
    col4 :
    colu5: adsdf,fgrty,erfth,oiunth,okujt
    after split
    col1 :adsd
    col2 :fgrty
    col3 :erfth
    col4 :oiunth
    col5 : adsdf,fgrty,erfth,oiunth,okujt
    can anyone help me
    thanks
    Edited by: 800324 on Dec 23, 2010 8:28 AM
    Edited by: 800324 on Dec 23, 2010 8:36 AM

    How about:
    SQL> create table t
      2  (col1 varchar2(30)
      3  ,col2 varchar2(30)
      4  ,col3 varchar2(30)
      5  ,col4 varchar2(30)
      6  ,col5 varchar2(30)
      7  );
    Table created.
    SQL> insert into t (col5) values ('adsdf,fgrty,erfth,oiunth,okujt');
    1 row created.
    SQL> insert into t (col5) values ('x,y');
    1 row created.
    SQL> insert into t (col5) values ('a,b,c,d');
    1 row created.
    SQL> select * from t;
    COL1                           COL2                           COL3                           COL4                           COL5
                                                                                                                                adsdf,fgrty,erfth,oiunth,okujt
                                                                                                                                x,y
                                                                                                                                a,b,c,d
    3 rows selected.
    SQL>
    SQL> merge into t a
      2  using ( with t1 as ( select col5||',' col5
      3                       from   t
      4                     )
      5          select substr(col5, 1, instr(col5, ',', 1, 1)-1) col1
      6          ,      substr(col5, instr(col5, ',', 1, 1)+1, instr(col5, ',', 1, 2)- instr(col5, ',', 1, 1)-1) col2
      7          ,      substr(col5, instr(col5, ',', 1, 2)+1, instr(col5, ',', 1, 3)- instr(col5, ',', 1, 2)-1) col3
      8          ,      substr(col5, instr(col5, ',', 1, 3)+1, instr(col5, ',', 1, 4)- instr(col5, ',', 1, 3)-1) col4
      9          ,      rtrim(col5, ',') col5
    10          from   t1
    11        ) b
    12  on ( a.col5 = b.col5 )
    13  when matched then update set a.col1 = b.col1
    14                             , a.col2 = b.col2
    15                             , a.col3 = b.col3
    16                             , a.col4 = b.col4
    17  when not matched then insert (a.col1) values (null);
    3 rows merged.
    SQL> select * from t;
    COL1                           COL2                           COL3                           COL4                           COL5
    adsdf                          fgrty                          erfth                          oiunth                         adsdf,fgrty,erfth,oiunth,okujt
    x                              y                                                                                            x,y
    a                              b                              c                              d                              a,b,c,d
    3 rows selected.
    SQL> Assuming you're on 9i...

  • How to Open BPM worklist when a link is pressed in custom ADF application

    Hi Guru's
    I have a requirement where i have to open BPM worklist app when a user clicks on a custom ADF application link.
    Scenario
    1) In custom ADF application we have a link.
    2) user selects the link and we have to open the users BPM worklistapp page.
    Can you please let me know if this is possible or not? If so can you please help me out
    Regards,
    Ram

    Bill,
    Can you please let me know the steps or documentation that helps me out in achieving this?
    Regards,
    Raju
    Edited by: user080811 on Apr 18, 2013 12:12 PM

  • How to retrieve different data separated by comma into one column

    Hi all,
    We have a Custom View.In that some of the customer's Bill-To address is different remaining all columns contain same data.In that case if we query with that customer_number it displays more than one row with different Bill-to addresses,it is fine.But our requirement is we need to display only one row for that customer_number and Bill-to address column shows all Bill-to addresses corresponding to that customer separated by comma.
    Could anyone give us any idea to solve this.
    Thanks in Advance,
    Dhana

    i do not a concatenated data
    i have a data in a table with columns A & B of same size
    A B
    1 2
    2
    3 1
    4 2
    5 3
    6 5
    7 1
    8 4
    9
    10 8
    if my where condition is 'where A=2'
    my output should be
    1
    2
    3
    4
    5
    6
    8
    10
    i want my query to search as loop so that it keeps on searching
    for related data as in my case it is
    2 is linked to 1
    1 is linked to 3
    3 is linked to 4
    my query should keep on seaching for linked numbers till
    it does not find any mathing linked numbers
    and the resulted output should come in one single column

  • How to ristric the user when data enter in lov column.

    Hi all,
    i have one page,page having lov column and submit button.
    here user select the value in to lov column and click on the submit button details ll be displayed.
    but user did not select the value in to lov means user enter the value in manually and click on the submit button at that time lov window ll be open.so how to ristric the user.plz help me its very urgent.
    Thanks
    Seshu.

    Hi,
    What is your requirement?
    You want to validate value entered by user in LOV field or not?
    If yes, then this the correct behavior.
    In no, you can disable client validations. In this case the value entered won't be validated against the LOV vo and value will be stored in the vo attribute mapped to LOV bean.
    Thanks,
    Mukesh Uchaniya

  • HT3529 How to retrieve messages recieved when imessage is off

    If my iPad is off and someone sends me an iMessage, how can get them when turn imessage bac on?

    Restore from backup if the backup would have them
    iOS: How to back up and restore your content

  • How to retrieve Facebook pictures when I deleted them from iPhoto?

    Hi. I'm new to Mac and not very techy. Anyway, I synced my Facebook account to iPhoto and for some reason, I thought that iPhoto was just a back up of my facebook photos. I deleted the facebook pictures on iPhoto and now, I have lost all of my Facebook albums. Is there any way I can retrieve my Facebook Albums? They were 5 years worth of memories.

    REstore you backujp of the iPhoto library form before you did this
    and if you want photos only on Facebook then do not use iPhoto to upload them - iPhoto as documented does a two way sync with FB and any chnage made on FB or on iPhoto is syn=ced to the other platform
    LN

  • How to prevent mail from breaking web links into multiple lines?

    Hey all!
    When I send someone a long web link that is pretty long, Mail breaks it into several lines and at the end the user cannot use this link right away, he needs to "assemble it by parts" first.
    Is there a way to prevent mail from doing this?
    Thanks,
    Artemiy.

    Also you could use tinyurl - this is exactly what its designed for.
    ie
    Turn this URL:
    http://www.mapquest.com/maps/map.adp?ovi=1&mqma
    p.x=300&mqmap.y=75&mapdata=%252bKZmeiIh6N%252bI
    gpXRP3bylMaN0O4z8OOUkZWYe7NRH6ldDN96YFTIUmSH3Q6
    OzE5XVqcuc5zb%252fY5wy1MZwTnT2pu%252bNMjOjsHjvN
    lygTRMzqazPStrN%252f1YzA0oWEWLwkHdhVHeG9sG6cMrf
    XNJKHY6fML4o6Nb0SeQm75ET9jAjKelrmqBCNta%252bsKC
    9n8jslz%252fo188N4g3BvAJYuzx8J8r%252f1fPFWkPYg%
    252bT9Su5KoQ9YpNSj%252bmo0h0aEK%252bofj3f6vCP
    into this tinyURL:
    http://tinyurl.com/6
    its essential.

  • Outlook prompts for credentials when left open for multiple days

    Hi,
    We have a system setup with Outlook 2010 on it (connected to Exchange Online) and a 3rd party piece of software that interacts with it to send and process incoming messages.  This system remains up and running with no user interaction indefinitely. 
    The problem we're having is that after about a week or so, Outlook stops processing emails and prompts for credentials.  Outlook has been set to remember the password (and it's not an issue of the password being expired).  Is there a setting to stop
    this (I'm assuming it's Exchange that's the culprit)?

    First of all exchange online is not the culprit in this case. Can you check what method you're using to authenticate the user? ADFS? DirSync with Password Sync or cloud identitiy? Once checked please make sure that the time interval setup for login prompt
    once the user account is inactive is setup unlimited for this user. Thanks.
    Kindly Mark this as answer if found helpful. Thanks.
    Regards, Riaz Javed Butt | Consultant Microsoft | mstechtalk.com

  • Label Column When Formatting With Mutliple Columns

    When creating a report with multiple columns (setting the Format With Multiple Columns property in the Details section), is it possible to put a label column on the left side of the page, followed by multiple data columns?  The idea would be something like this:
                 8/1/08 8/2/08 8/3/08 8/4/08 8/5/08     
                 ====== ====== ====== ====== ======
    Metric Label 1   C1D1   C2D1   C3D1   C4D1   C5D1
    Metric Label 2   C1D2   C2D2   C3D2   C4D2   C5D2
    Metric Label 3   C1D3   C2D3   C3D3   C4D3   C5D3
    Metric Label 4   C1D4   C2D4   C3D4   C4D4   C5D4
    Metric Label 5   C1D5   C2D5   C3D5   C4D5   C5D5
    The date on top will be a group 1 header.  The metric labels to the left will be detail rows.
    Fuskie
    Who is turning once again to the CR Gurus...

    Hi Fuskie,
    A quick suggestion will be  to use a cross-tab instead of multiple columns to generate the desired output.
    Another suggestion will be to use a subreport. The main report will be used to type the labels on the left side, and the subreport will be used to display the multiple columns information.
    1. Create a report that will be used as a container for your multiple column report.
    2. Add labels in the Report Footer of the report.
    3. Insert your multiple columns report has a subreport in the Report Footer on the right of the labels
    you created in the main report. On the main report
    In the subreport, if you want to see the Group to appear as columns at the the top, you will have to include the group in the multiple-columns, and I will suggest to format the Group Footer with the option "Print at the Bottom of Page". This will ensure that your Group Header will always appear at the top like in a cross-tab, otherwise, it might display your data like:
                 8/1/08  C2D3
                 ===== C2D1
    Metric Label 1   C1D1   C2D1  
    Metric Label 2   C1D2   C2D2  
    Metric Label 3   C1D3   C2D3  
    Metric Label 4   C1D4  
                            8/2/08
                            ====
                            C2D1
                            C2D2

Maybe you are looking for

  • Data fields not filled in DSO Activation

    Dear All, I have written an End routine to extract data into a DSO to fill some data fields. The End routine will perform a lookup on another DSO and modifies the records of the result_package. The data fields are characteristics and hence in the tra

  • ITunes freezes when I try to sync my iPad

    I've got a black MacBook running 10.7.3 and the latest iTunes (I can't tell you the version right now because it is currently "(Not Responding)") and a first generation iPad. I don't sync it often, the last time being December, 2011.  I tried syncnin

  • Recipe Management for Food Retailers (Restaurants, Cafe etc)

    Hi , I am new to SAP Recipe Management. Have done a study and got to understand that it for a process manufacturing industry. Have you had experience in implementing SAP RM for food retailers like restaurants , cafes etc? Can it be integrated to SAP

  • Problems Exporting to Quicktime.  Would you use Profcast?

    Using the new Keynote, which is promising, we recording a seminar that was 2 hours long. We wanted to distribute it via CD. We have tried to export it so many ways to Quicktime. We get the old "Your slideshow cannot be exported as a Quicktime movie.

  • Users migration from ifs 9.0.1 to ifs 9.0.2

    I have 2 installations of ifs: 1) IFS 9.0.1.0.0 on Linux RH 7.1 (iAS) and Solaris (db) 2) IFS 9.0.2.0.0 on Linux RH Advanced Server 2.1 (Infrastructure and iAS on the same machine) On installation 1 I've some 50 users, which I want to migrate on inst