Which column refers organization_id in RA_CUSTOMER_TRX_LINES_V  ?

Hi All,
We ae trying pick value of ITEM AND ITEM DESCRPTION based on TRX NUMBER we use below query for that
SELECT CH.TRX_NUMBER,
MTL.SEGMENT1,
MTL.DESCRIPTION
FROM APPS.RA_CUSTOMER_TRX_LINES_V CL, APPS.RA_CUSTOMER_TRX_PARTIAL_V CH,
APPS.MTL_SYSTEM_ITEMS_B MTL
WHERE MTL.INVENTORY_ITEM_ID(+)=CL.INVENTORY_ITEM_ID
AND MTL.ORGANIZATION_ID(+) = CL.WAREHOUSE_ID
AND CH.CUSTOMER_TRX_ID=CL.CUSTOMER_TRX_ID
AND CL.LINE_TYPE='LINE';
I used Warehouse_id of RA_CUSTOMER_TRX_LINES_V as ORGANIZATION_ID to map with MTL_SYSTEM_ITEMS_B s ORGANIZATION_ID
Am i mapping correct? Can any one give the better query for this..
I search in etrm also i dint find that which column refers organization_id in RA_CUSTOMER_TRX_LINES_V. Can any one help on this...

I used Warehouse_id of RA_CUSTOMER_TRX_LINES_V as ORGANIZATION_ID to map with MTL_SYSTEM_ITEMS_B s ORGANIZATION_IDThat is correct mapping.
Edited by: Sandeep Gandhi, Independent Consultant on Jan 14, 2011 1:10 PM

Similar Messages

  • Solution to allow users to specify which columns of a sql report to search

    Starting Point:
    1) You have an existing SQL Report.
    2) You want to provide functionality to search through the result set.
    Start -----
    1) add a text_item for searching PX_search where X is page number
    2) add a button which resubmits the page. Go
    3) You modify your query by adding the following to the end of the where clause.
    and (PX_SEARCH is null or instr(column_name1,PX_SEARCH) > 0 )
    4) So far so good but it only allows searches on 1 column, so you add a few other columns
    and (PX_SEARCH is null or instr(column_name1,PX_SEARCH) > 0 or instr(column_name2,PX_SEARCH) > 0 or instr(column_name3,PX_SEARCH) > 0 )
    Now when you enter some text if it is in any of the columns that row will be displayed.
    This can be good or bad depending on your requirement. lets say my users want to specify the column they are searching on.
    5)further enhancement
    i) add a LOV to your page which queries the all_users data dictionary view
    select column_name d, column_name r from all_users where table_name = 'MY_TABLE_NAME' and column_name not in ('COLUMN_NAME1,COLUMN_NAME2) order by column_name
    The idea here is to use the oracle data dictionary to get all the columns for your table(s) and ignore the columns you do not want.
    ii) add an item to your page e.g. PX_select_column which gets populated from the list of values.
    Now for each column you are going to allow a search on, the sql needs to be modified.
    Lets pretend that my firstcolumn is called member_id, my second column is called firstname and my third column is lastname
    Before we had this SQL
    (select * from table where 1=1)
    and (PX_SEARCH is null or instr(memberid,PX_SEARCH) > 0 or instr(firstname,PX_SEARCH) > 0 or instr(lastname,PX_SEARCH) > 0 )
    Remember we have added PX_SELECT_COLUMN which should contain what we have selected from the LOV.
    iii) So now we modify the query to be as follows:
    and (PX_SEARCH is null or decode(:PX_SELECT_COLUMN,'MEMBERID',instr(memberid,PX_SEARCH),0) > 0 or
    decode(:PX_SELECT_COLUMN,'FIRSTNAME',instr(firstname,PX_SEARCH),0) > 0 or
    decode(:PX_SELECT_COLUMN,'LASTNAME',instr(lastname,PX_SEARCH),0) > 0 )
    The user can now choose which column to filter their results on.

    Here is a basic one (http://apex.oracle.com/pls/otn/f?p=2230:1). You can select an object type and put in criteria for the object name like '%b%'. The SELECT statement is dynamically generated with only the pieces of the WHERE clause that are needed. You do not need all the DECODE and INSTR OR logic.
    The main part of this example is the computation of the SQL SELECT statement:
    DECLARE
      v_sql VARCHAR2(2000) := 'SELECT *'||CHR(10)||'  FROM USER_OBJECTS';
      v_and BOOLEAN := FALSE;
      v_where VARCHAR2(2000);
    BEGIN
      -- P1_OBJECT_TYPE has value of 'ALL' for '%'
      IF (:p1_object_type != 'ALL') THEN
        v_sql := v_sql || chr(10) ||
                 ' WHERE object_type = '''||:p1_object_type||'''';
        v_and := TRUE;
      END IF;
      IF (:p1_object_name IS NOT NULL) THEN
        IF (v_and) THEN
          v_sql := v_sql || chr(10) ||
                   '   AND object_name LIKE UPPER('''||:p1_object_name||''')';
        ELSE
          v_sql := v_sql || chr(10) ||
                   ' WHERE object_name LIKE UPPER('''||:p1_object_name||''')';
        END IF;
        v_and := TRUE;
      END IF;
      :p1_sql := v_sql;
      RETURN (v_sql);
    END;Mike

  • How can i extend the filter function to also include an option to select which column to filter on?

    Hi.
    I have built an spry test-page (testing it on my localhost  so i cannot give you direct access to it) here i have an XML file that i show in an dynamic/ repeat table with 5 columns.
    I hvae included an spry filter function to easy filter out records, but the code only allows me to filter on one of the columns.
    I would like to add an extra "select-menu" to define which column the filter should be active for, how can i do that
    Here is the filter code and also the html code for the select-menu and the box to type in what to filter.
    The bold parts is the important parts, i would like the options values from the select menu to be inserted in the filterData function to be able to define which column to do the filtering on.
    var ds1 = new Spry.Data.XMLDataSet("report3.xml", "orders/order", {sortOnLoad: "@id", sortOrderOnLoad: "descending"});
    ds1.setColumnType("date", "date");
    ds1.setColumnType("BUTIKNR", "number");
    ds1.setColumnType("EXTRAFRAKT", "number");
    ds1.setColumnType("job/@idx", "number");
    var jobs = new Spry.Data.NestedXMLDataSet(ds1, "job");
    function FilterData()
        var tf = document.getElementById("filterTF");
        var menu = document.getElementById("searchIdent");
        if (!tf.value)
            // If the text field is empty, remove any filter
            // that is set on the data set.
            ds1.filter(null);
            return;
        // Set a filter on the data set that matches any row
        // that begins with the string in the text field.
        var regExpStr = tf.value;
        if (!document.getElementById("containsCB").checked)
            regExpStr = "^" + regExpStr;
        var regExp = new RegExp(regExpStr, "i");
        var filterFunc = function(ds, row, rowNumber)
            var str = row["@id"];
            if (str && str.search(regExp) != -1)
                return row;
            return null;
        ds1.filter(filterFunc);
    function StartFilterTimer()
        if (StartFilterTimer.timerID)
            clearTimeout(StartFilterTimer.timerID);
        StartFilterTimer.timerID = setTimeout(function() { StartFilterTimer.timerID = null; FilterData(); }, 100);
    html:
                <select name="searchIdent" size="1" id="searchIdent">
                    <option value="@id" selected="selected">ID</option>
                    <option value="date">DATUM</option>
                    <option value="time">TID</option>
                    <option value="BUTIKNR">BUTIK</option>
                    <option value="REF">REFERENS</option>
                  </select>
              <input type="text" id="filterTF" onkeyup="StartFilterTimer();" />
    Contains:
      <input type="checkbox" id="containsCB" /></td>
    Thanks in advance.
    //Rickard H

    Now it works, i had to do it like this:
        var filterFunc = function(ds, row, rowNumber)
            var str = row["@id"];
            if (str && str.search(regExp) != -1)
                return row;
            var str1 = row["date"];
            if (str1 && str1.search(regExp) != -1)
                return row;
            var str2 = row["time"];
            if (str2 && str2.search(regExp) != -1)
                return row;
            var str3 = row["BUTIKNR"];
            if (str3 && str3.search(regExp) != -1)
                return row;
            var str4 = row["REF"];
            if (str4 && str4.search(regExp) != -1)
                return row;
            return null;
    I also had to remove the line "ds1.setColumnType("BUTIKNR", "number");" from the code, otherwise it would not search at all (only searches string types?).

  • How to Get Resource value which are referred in code behind file using IResourceProvider

    Hi Everyone,
    Currently I'm working on moving the Resource file from "App_GlobalResources" to Database by using IResourceProvider. I created a CustomResourceProvider project using ResourceProviderFactory and able to get the resource values from DB which
    are used in aspx page.
    But i'm not able to get the values which are referring from code behind file.
    Ex: Label1.Text = Resources.Common.Car; // This is still coming from resx file.
    Can any one please let me know how to get the value from DB instead of resx file which are referred in cs file.
    Appreciate your help. 
    The below code uses the ResourceProviderFactory which calls this method and gets it from DB. Please let me know if you need any more info.
    public class DBResourceProviderFactory : ResourceProviderFactory
            public override IResourceProvider CreateGlobalResourceProvider(string classKey)
                return new DBResourceProvider(classKey);
            public override IResourceProvider CreateLocalResourceProvider(string virtualPath)
                 // we should always get a path from the runtime
                string classKey = virtualPath;
                if (!string.IsNullOrEmpty(virtualPath))
                    virtualPath = virtualPath.Remove(0, 1);
                    classKey = virtualPath.Remove(0, virtualPath.IndexOf('/') + 1);
                return new DBResourceProvider(classKey);
    Regards, Ravi Neelam.

    Hi Ravi Neelam.
    >>Currently I'm working on moving the Resource file from "App_GlobalResources" to Database by using IResourceProvider.
    Based on this message, your issue related to web application, questions related to Asp.Net should be posted in
    Asp.Net forum.
    Please reopen a new thread in that forum. You will get more efficient response.
    Regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Process works fine... how to track which column is causing error..

    hi, i have a big sp which does lets say tasks A, B, C, D...
    After every task i.e A, B, C, D I have an update or insert
    statement. The update & insert both work fine, except that I
    have coldfusion catch code for sp execution and it returns String
    or binary data would be truncated error. Normally this means
    inserting something into a column whose lenght is less than whats
    being inserted. I understand this , but how can i determine which
    column is causing problem since after tasks A,B,C,D the insert or
    update i have is working fine. It would be have easy if i couldnt
    have seen inserted or updated records, but in this case the
    functionality is working fine except that coldfusin gives an error
    which i want to avoid.
    Thanks in advance.

    quote:
    Originally posted by:
    MikerRoo
    Yes, if the database column is smalldatetime then then
    @start_date should be smalldatetime.
    However, the SP's input variable (call it say,
    "RawStartDate") can still be varchar for the reasons you stated.
    Just be sure to return the appropriate error and/or insert a valid
    smalldatetime always.
    Sorry for confusion... GetDate was just an example , it could
    another variable @end_date which is varchar(20).
    so we could have SET @start_date =
    CAST(convert(varchar(20),@enddate,101) as datetime)
    Now coming back to main problem.. I am not calling the SP
    from coldfusion. I am directly running it thru Query Analyser and
    here is what iam getting for a date value passed as '2006-05-24
    00:00:00.000'
    Server: Msg 295, Level 16, State 3, Procedure WS_AUTO_INTAKE,
    Line 263
    Syntax error converting character string to smalldatetime
    data type.
    here is the query starting at line 263
    INSERT INTO intake_seq (intake_id, intake_seq, absence_type,
    start_date, start_time, end_date, end_time)
    VALUES (@intake_id, 1, @absence_type, cast(@start_date as
    smalldatetime), DATEADD ( hh , 8, cast(@start_date as
    smalldatetime)), cast(@end_date as smalldatetime), DATEADD ( hh ,
    16, cast(@start_date as smalldatetime)) )
    You would say, ok try just datetime instead of
    smalldatetime...tried that also .. it gives this error
    Server: Msg 241, Level 16, State 1, Procedure WS_AUTO_INTAKE,
    Line 263
    Syntax error converting datetime from character string.
    Its all got to do with this value '2006-05-24 00:00:00.000'
    which is passed as one of the parameters to sp call... I tried with
    this and gives error... when i removed the last 3 zeroes with . ,
    it works fine ...example '2006-05-24 00:00:00'
    What is wrong here? Iam I missing something????
    by the way , this SP is working fine for 99% of time... its
    just that on very few occassions iam seeing the error... thats the
    reason i persisted with SP INPUT VARIABLES declared as VARCHAR
    rather than int or datetime, ....
    any ideas????
    I know I can have convert(varchar(20), @start_date,101) to
    get the format dd/mm/yy but then I have to cast it to datetime
    which will again make it in format dd/mm/yy hh:mi:ss... any other
    way to just keep it dd:mm:yy ???

  • OTA_DELEGATE_BOOKINGS which column holds the customer's id

    Hi,
    Can someone tell me which column in OTA_DELEGATE_BOOKINGS table hold the customer's id to identify the classes he registered in. e.g. How do I find out what classes some specific customer have enrolled. e.g. if there's a customer with id=1234 and he enrolls in some class which column in ota_delegate_bookings does it store the id of the customer.
    Thanks

    Take a look on eTRM* on MetaLink. This will describe the tables and views in OLM.
    Regards
    Tim

  • Invoice amount is stored in which column?

    Hi
    In ra_customer_trx_lines_all Invoice amount is stored in which column?
    Thanks
    Prakash

    Hi Prakash,
    Please check links:
    http://prasanthapps.blogspot.com/2011/05/ar-query-to-get-open-invoices-for.html
    http://ebsanil.blogspot.com/2012/09/query-to-find-ar-invoices-posted-to-gl.html
    http://www.shareoracleapps.com/2011/05/query-open-ar-invoices-in-oracle-apps.html
    Thanks &
    Best Regards,

  • Parsing which columns used in a query

    Hi,
    i try to write my own advisor :-) I´m looking for a package that can help me to find out which columns a used in query in a codition
    Example:
    select 1 from emp
    where deptno=10
    and job='CLERK';
    => deptno and clerk
    I worked with col_usage$, but it seems not always correct, and it´s not updated when you zuse explain plan ...
    Does anybody know, how Oracle´s dbms_advisor/dbms_sqltune finds out which columns are used in a condition ?
    Thanks
    Marco

    mpatzwahl wrote:
    i try to write my own advisor :-)Oh dear, that is completely insane. Why not use the one provided?
    You would need to write a SQL parser.
    The language definition is here
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/toc.htm
    And don't forget that a function could be used in the condition so you will need to parse PL/SQL also
    http://docs.oracle.com/cd/E11882_01/appdev.112/e25519/toc.htm
    Try it out on something simple like this and see how far you get
    {message:id=1908539}
    SQL> create or replace function f1 return varchar2 as
      2  l_dummy dual.dummy%type;
      3  begin
      4    select dummy into l_dummy from dual;
      5    return l_dummy;
      6  end;
      7  /
    Function created.
    SQL> edi
    Wrote file afiedt.sql
      1  create or replace function f2 return varchar2 as
      2  begin
      3    return 'X';
      4* end;
    SQL> /
    Function created.
    SQL> create or replace view v as
      2  select
      3      dummy a,
      4      (select dummy from dual) b,
      5      f1 c,
      6      f2 d,
      7      'X' e
      8  from dual;
    View created.
    SQL> select * from v where c = 'X';
    A B C D E
    X X X X X

  • How to determine which column is currently sorted on?

    When my application closes down I grab all important state information from the various views in my application and persist the state information to a db. On application startup I retrieve the state information and reload all my views with their previous state. I currently save things like column order, column visibility, column size, applied filters, etc... for the tables that are in my app. I would also like to persist which column in each of my tables is currently sorted on, if any, but have been unable to locate an API method that gives me this information. I use the default sorting that is controlled by clicking on one of the column headers so I don't know which column has been sorted on. I don't listen for sorting events. I simply want to ask my table which column is sorted and get back the column or column identifier and the sort order whether ascending or descending.

    Just wanted to update the thread. Your post made also pointed me towards myTable.getSortOrder(Object identifier) which takes a column identifier and returns a SortOrder enumeration of that columns sort state (one of: Ascending, Descending, Unsorted) this allowed me to quickly save the state of each column by iterating through the columns and getting their individual SortOrder property.

  • Customize Which Column to Display from UDT in UDF when Linked to UDT

    Problem:
    I have a UDF that links to a UDT. The problem is that when I select the UDF, it only displayes the columns from the UDT Code & Name. And for our purposes Code & Name are meaningless data points.
    Question:
    Can I choose which column is displayed from the UDT in the UDF?
    Please see the attached image. THANKS!

    Hi,
    This is SAP B1 standard behavior, But you can change name as terminal code. Other wise you can  detach the UDT from UDF and then assign one FMS in the UDF for serach terminal code instead of code and name.
    Hope this will work.
    Regards
    Sridharan

  • Which column raised the exception?

    SQL&gt; desc test
    Name Null? Type
    A NUMBER(5)
    B VARCHAR2(10)
    SQL&gt; insert into test values(1,'abcdefghijkl');
    insert into test values(1,'abcdefghijkl')
    ERROR at line 1:
    ORA-01401: inserted value too large for column
    How do I know that which column/value raised this exception? In this case, is there a way to identify that the column "B" has raised this exception?

    What version of oracle are you running? Here is a run on 10.2
    SQL> desc afb
    A VARCHAR2(1)
    B VARCHAR2(2)
    C VARCHAR2(3)
    SQL> select version from v$instance;
    VERSION
    10.2.0.1.0
    SQL> insert into afb values ('A','BBB','CC');
    INSERT INTO AFB VALUES ('A','BBB','CC')
    ERROR at line 1:
    ORA-12899: value too large for column "TEST"."AFB"."B" (actual: 3, maximum: 2)
    The error message tells you. In prior versions you could tell in pro from the indicator variable and OCI had a similar method, but in straight SQL you were more or less out of luck.

  • Find out which column is encrypted in oracle 9i

    Hi,
    I would like to know that which table/column is encrypted in oracle 9i?
    Is it any Data dictionary view or any other query?
    Appreciate your help!
    thanks,

    If your application is storing encrypted data in Oracle, the Oracle data dictionary will have no idea that the data is encrypted. Assuming you're storing encrypted data in RAW/ BLOB columns rather than risking storing it in VARCHAR2 columns, you could query the data dictionary for columns whose data type is RAW or BLOB, but that's a rather imprecise metric. There might well be non-encrypted columns that are storing binary data in RAW or BLOB columns.
    In 10g and later, if you are using transparent data encryption (TDE), you will see entries in the DBA_ENCRYPTED_COLUMNS view which will tell you which columns Oracle is encrypting. But, again, since Oracle has no idea whether the data Java is sending is encrypted or unencrypted, if your application is doing the encryption, these tables won't reflect that fact.
    Justin

  • At which column i will create index ????

    my query is as follows and please tell me at which column of the table i would create an index
    select code, detail, nvl(sum(dr)-sum(cr),0) from spda
    where sdate < '01-feb-09'
    order by codebecause the query result very slow as there is above 3 million record in a table
    Regards
    M. Laeeque A.
    Edited by: MLA on Feb 27, 2009 12:02 PM

    MLA wrote:
    my query is as follows and please tell me at which column of the table i would create an index
    select code, detail, nvl(sum(dr)-sum(cr),0) from spda
    where and sdate < '01-feb-09'because the query result very slow as there is above 3 million record in a tableYou've posted this request three times (with three different versions of above statement).
    Which one would you like to get replied to?
    If this is the nested subquery that is part of the query posted here: Query Response Very Slow
    you should consider that the nested subquery is correlated to the outer query by this additional predicate:
    WHERE  SUBSTR(spda.mcode,1,2) || '-' || SUBSTR(spda.mcode,3,4) =
                    SUBSTR(ac.code,1,2)    || '-' || SUBSTR(ac.code,3,4)So in order to optimize the nested subquery access path this should be taken into account.
    As I've already pointed out in the other thread, getting rid of the nested subquery and instead using regular joins probably offers the best performance.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Htmlb_tableview - how to define which columns are visible

    Hello
    i am working on an MVC BSP application that renders to the screen 5 fields.
    Yet in the bsp definition I see it reads pt-requisition-list which has many fields.
    <htmlb:tableView id                  = "requilistTab"
                       headerText          = "<%= controller->tv_header %>"
                       headerVisible       = "true"
                       columnHeaderVisible = "true"
                       table               = "<%= controller->pt_requisition_list %>"
                       design              = "alternating"
                       width               = "100%"
                       visibleRowCount     = "20"
                       footerVisible       = "true"
                       emptyTableText      = "<%= otr(paoc_rcf_ui/no_requi) %>"
                       sort                = "SERVER"
                       onHeaderClick       = "dummy"
                       keyColumn           = "OBJID"
                       iterator            = "<%= controller %>"
                       filter              = "SERVER"
                       visibleFirstRow     = "<%= controller->visible_first_row %>"
                       selectedRowKey      = "<%= controller->selected_record-objid %>"
                       selectionMode       = "SINGLESELECT" />
    My question: how do you tell the bsp what fields to display?
    Thanks in advance
    yuval

    iterator = "<%= controller %>"
    this is what makes controlling the columns visible.
    go to the class (referenced by variable controller) and see the method IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS  to see the coding behind this.
    alternative method to show/hide columns without using iterator.
    page attribute:
    col_control_tab     TYPE     TABLEVIEWCONTROLTAB
    col_wa     TYPE     TABLEVIEWCONTROL
    layout
    <%
      clear col_wa .
      move: 'CARRID' to col_wa-columnname ,
      'This is the title of carrid' to col_wa-title ,
      'LEFT' to col_wa-horizontalalignment ,
       'ICON_PLANE' to col_wa-icon ,
      ' ' to col_wa-encode ,
      ' ' to col_wa-wrapping .
      append col_wa to col_control_tab .
      clear col_wa .
      clear col_wa .
      move: 'CONNID' to col_wa-columnname ,
      '<B>Connection</B>' to col_wa-title ,
      'X' to col_wa-sort ,
       'DESCENDING' to col_wa-preSelectedSortDirection ,
      'mycellclick' to col_wa-ONCELLCLICK ,
      'LEFT' to col_wa-horizontalalignment ,
      'X' to col_wa-encode .
      append col_wa to col_control_tab .
      clear col_wa .
    clear col_wa .
      move: 'FLDATE' to col_wa-columnname ,
      'Price' to col_wa-title ,
      'X' to col_wa-sort ,
      'LEFT' to col_wa-horizontalalignment ,
      ' ' to col_wa-encode .
      append col_wa to col_control_tab .
      clear col_wa .
          %>
    <htmlb:tableView id                  = "tv1"
                           design              = "ALTERNATING"
                           selectionMode       = "MULTISELECT"
                           onRowSelection      = "MYROWSELECTION"
                           table               = "<%= flights %>"
                         columnDefinitions   = "<%= col_control_tab %>"
                           tableLayout         = "AUTO"
                           width               = "50%"
                           columnHeaderVisible = "true"/>
    in this example  columnDefinitions  attribute determins which columns to be shown.

  • GEOCODING: Indices on GC_Tables on which columns?

    Hi
    We use ORACLE 10gR2 Geocoder for geocoding Europe.
    In order to tune performance to the max, which columns shall be indexed on tables GC_ROAD_SEGMENT_XX, GC_ROAD_XX, GC_POSTAL_CODE_XX.
    Any field reports or developers' advice?
    Many thanks.
    Sebastian

    Here are the indexes required for the geocoder tables.
    Make sure the indexes are named with these names as we use hints
    in some SQL statements to force the optimizer to pick
    these indexes for certain queries.
    The three columns here are:
    Table Name Index-Name indexed-Columns
    gc_road_segment_<table_extension>     idx_<table_extension>roadgeom     geometry
    gc_road_segment_<table_extension>     idx_<table_extension>roadseg_rid     Road_id, start_hn, end_hn
    gc_road_<table_extension>     idx_<table_extension>roadsetbn     settlement_id, base_name
    gc_road_<table_extension>     idx_<table_extension>roadmunbn     municipality_id, base_name
    gc_road_<table_extension>     idx_<table_extension>roadparbn     parent_area_id, country_code_2, base_name
    gc_road_<table_extension>     idx_<table_extension>roadsetbnsd     settlement_id, soundex(base_name)
    gc_road_<table_extension>     idx_<table_extension>roadmunbnsd     municipality_id, soundex(base_name)
    gc_road_<table_extension>     idx_<table_extension>roadparbnsd     parent_area_id, country_code_2, soundex(base_name)
    gc_intersection_<table_extension>     idx_<table_extension>inters      Countrycode_2, road_id_1, road_id_2
    gc_area_<table_extension>     idx_<table_extension>areaname_id     Country_code_2, area_name, admin_level
    gc_area_<table_extension>     idx_<table_extension>areaid_name     area_id, area_name, Country_code_2
    gc_poi_<table_extension>     idx_<table_extension>poiname     Country_code_2, name
    gc_poi_<table_extension>     idx_<table_extension>poisetnm     Country_code_2, settlement_id, name
    gc_poi_<table_extension>     idx_<table_extension>poi munnm     Country_code_2, municipality_id, name
    gc_poi_<table_extension>     idx_<table_extension>poi regnm     Country_code_2, region_id, name
    gc_postal_code_<table_extension>     idx_<table_extension>_ postcode     Country_code_2, postal_code
    siva

Maybe you are looking for

  • Structres and cells in Bex query designer?? urgent plz

    hi experts, could you please give me the useful info. regarding structres and cells with the examples. thanks in advance regards vadlamudi

  • Can you use a webcam as an external iPhone 5 camera?

    Reason I ask is because it would help me out at my job, and might be helpful to someone else. I work a resident manager at a storage facility (live on site) and we have to mirror check units to make sure people aren't storing what they are not suppos

  • XL report Job via Email

    Dear Friends, I would like to know if is possible to send a XL report to filtered by Business Partner to the specific Business partner email box. Giuseppe

  • Razr problems

    Many problems lately  (last 2 -3 months) with my RAZR. Have to manually turn on WIFI all of a sudden. My screen would start jumping and flashing. Most websites I visit are "not responding". That is, if the screen doesn't go black when I try to get to

  • Dev box in 9.3.3 and Prod in 9.3.1 - any risk ofmoving application Dev 2 QA

    Hi, My Development environement is running in Hyperion Planning 9.3.3 where as the QA and Production environment is running in 9.3.1 I am about to complete the Development in Dev box in 9.3.3 , Do we have any risk when i migrate to QA&PROD 9.3.1 envi