Text conversion for Queries

Hello,
I'd like to know how to convert text descriptions into another language of query which has been created in EN logon.
Scenario:
1. Log on with EN language
2. Create a query and this query has some calculate keyfigures and new variables.
3. When I logon with KO language, I want to see the same description which had been created in EN logon.
Please let me know how to convert texts into another language for query.
Regards

Hi,
In my case, infoobjects are no problem.
what I want to do is to convert a description for keyfigures or calculated keyfigures.
when I create a query in EN logon, I did renamed a description for column heading for a keyfigure. And then I want to use the same description when I logged on with KO language.
Please help me.
Regards,
HD Sung.

Similar Messages

  • Text index for UNION queries.

    Hi All,
    Can anyone please help me in tuning search query mentioned below
    select id from usr1.organizations where lower(ID_official_name)   like  'technology%'
    union
    select id from usr1.organizations where lower(ID_OFFICIAL_NORM_NAME)   like  'technology%'
    union
    select id from usr1.organizations where lower(ID_OFFICIAL_ENG_NAME)   like  'technology%'
    union
    select id from usr1.organizations where lower(ID_OFFICIAL_ENG_NORM_NAME)   like  'technology%'
    union
    select id from usr1.organizations where lower(ID_OFFICIAL_TRANS_NAME)   like  'technology%'
    union
    select id from usr1.ID_ALIAS_NAMEs where lower(ID_ALIAS_NAME)   like  'technology%'
    union
    select id from usr1.ID_ALIAS_NAMEs where lower(ID_ALIAS_NORM_NAME)   like  'technology%'
    union
    select id from usr1.ID_ALIAS_NAMEs where lower(ID_ALIAS_ENG_NAME)   like  'technology%'
    union
    select id from usr1.ID_ALIAS_NAMEs where lower(ID_ALIAS_ENG_NORM_NAME)   like  'technology%'
    union
    select id from usr1.ID_ALIAS_NAMEs where lower(ID_ALIAS_TRANS_NAME)   like  'technology%'
    union
    select id from usr1.ID_DOING_BUSINESS_AS_NAMES where lower(ID_dba_name)   like  'technology%'
    union
    select id from usr1.ID_DOING_BUSINESS_AS_NAMES where lower(ID_DBA_NORM_NAME)   like  'technology%'
    union
    select id from usr1.ID_DOING_BUSINESS_AS_NAMES where lower(ID_DBA_ENG_NAME)   like  'technology%'
    union
    select id from usr1.ID_DOING_BUSINESS_AS_NAMES where lower(ID_DBA_ENG_NORM_NAME)   like  'technology%'
    union
    select id from usr1.ID_DOING_BUSINESS_AS_NAMES where lower(ID_DBA_TRANS_NAME)   like  'technology%'
    union
    select id from usr1.ID_FKA_NAMES where lower(ID_fka_name)   like  'technology%'
    union
    select id from usr1.ID_FKA_NAMES where lower(ID_fkA_NORM_NAME)   like  'technology%'
    union
    select id from usr1.ID_FKA_NAMES where lower(ID_fkA_ENG_NAME)   like  'technology%'
    union
    select id from usr1.ID_FKA_NAMES where lower(ID_fkA_ENG_NORM_NAME)   like  'technology%'
    union
    select id from usr1.ID_FKA_NAMES where lower(ID_fkA_TRANS_NAME)   like  'technology%'Here organizations table is the parent table having primary key on id column, and rest all tables are children tables having foreign key on id column referencing to primary key id column in organizations table.
    Planning to implement multiple column(Userdatastore) text index on dummy column appended to organizations table. And write triggers on other child tables to trigger the sync for Text index.
    But not sure whether we can rewrite this above sql query by replacing union into joins, not sure why developer has not done so.
    Can anyone please help me in creating text index for this sql. I do not want to approach cartesian joins as these are having parent-child relationship.
    Oracle Version: 10.2.0.4
    Please let me know if you need more information

    1 .As text index is created in parent table on id column, can we somehow search only from particular columns(Parent or child) by using user_datastore and tags for sectioning it?
    Below are the sql which i need to make use of text index
    select m.id from id_ALIAS_NAMEs an
    join organizations m on(m.id=an.id)
    where lower(ID_ALIAS_NAME)   like  'technology%' and m.id_data_provider<100;
    select M.id,ID_ALIAS_NAME,'ID_ALIAS_NAME' AS NAMETYPE
    from id_alias_names an JOIN organizations m ON m.id=an.id
    where id_data_provider<100 AND coalesce(m.ID_COUNTRY_OF_DOMICILE,m.ID_COUNTRY_OF_INCORPORATION)='US'
    AND LOWER(ID_ALIAS_NAME) like LOWER('TECHNOLOGY%')
    and F_GetFirstWord(ORG_ALIAS_NAME)='TECHNOLOGY'
    The text index must be created on a text column, not a numeric id column. It is common to create it on a dummy column. You can name that column anything you like instead of dummy, like search_columns or some such thing. You can add tags in your procedure, so that your resulting virtual column is like xml data. You can then create a section group, so that you can search within each of those tags. In the example below, I used ctxsys.auto_section_group because it is the simplest to create, but you may get better performance by using another type of section group and naming each individual tag.
    SCOTT@orcl_11gR2> -- tables you already have:
    SCOTT@orcl_11gR2> create table organizations
      2    (id                    number primary key,
      3       id_official_name          varchar2 (10),
      4       id_official_norm_name          varchar2 (10),
      5       id_official_eng_name          varchar2 (10),
      6       id_official_trans_name          varchar2 (10),
      7       id_data_provider          number,
      8       id_country_of_domicile          varchar2 (10),
      9       id_country_of_incorporation  varchar2 (10))
    10  /
    Table created.
    SCOTT@orcl_11gR2> create table id_alias_names
      2    (id                    number references organizations (id),
      3       id_alias_name               varchar2 (10),
      4       id_alias_norm_name          varchar2 (10),
      5       id_alias_eng_name          varchar2 (10),
      6       id_alias_trans_name          varchar2 (10))
      7  /
    Table created.
    SCOTT@orcl_11gR2> create table id_doing_business_as_names
      2    (id                    number references organizations (id),
      3       id_dba_name               varchar2 (10),
      4       id_dba_norm_name          varchar2 (10),
      5       id_dba_eng_name           varchar2 (10),
      6       id_dba_trans_name          varchar2 (10))
      7  /
    Table created.
    SCOTT@orcl_11gR2> create table id_fka_names
      2    (id                    number references organizations (id),
      3       id_fka_name               varchar2 (10),
      4       id_fka_norm_name          varchar2 (10),
      5       id_fka_eng_name           varchar2 (10),
      6       id_fka_trans_name          varchar2 (10))
      7  /
    Table created.
    SCOTT@orcl_11gR2> -- test data:
    SCOTT@orcl_11gR2> insert all
      2  into organizations values (1, 'test', 'name2', 'name3', 'name4', 99, 'US', null)
      3  into organizations values (2, 'name1', 'name2', 'name3', 'name4', 99, null, 'US')
      4  into organizations values (3, 'name1', 'name2', 'name3', 'name4', 99, null, null)
      5  into organizations values (4, 'name1', 'name2', 'name3', 'name4', 101, 'US', 'US')
      6  into organizations values (5, 'technology', 'technology', 'technology', 'technology', 99, 'US', 'US')
      7  select * from dual
      8  /
    5 rows created.
    SCOTT@orcl_11gR2> insert all
      2  into id_alias_names values (1, 'technology', 'name6', 'name7', 'name8')
      3  into id_alias_names values (2, 'technology', 'test', 'name7', 'name8')
      4  into id_alias_names values (3, 'technology', 'name6', 'name7', 'name8')
      5  into id_alias_names values (4, 'technology', 'name6', 'name7', 'name8')
      6  into id_alias_names values (5, 'name5', 'technology', 'technology', 'technology')
      7  select * from dual
      8  /
    5 rows created.
    SCOTT@orcl_11gR2> insert all
      2  into id_doing_business_as_names values (1, 'name9', 'name10', 'name11', 'name12')
      3  into id_doing_business_as_names values (2, 'name9', 'name10', 'name11', 'name12')
      4  into id_doing_business_as_names values (3, 'name9', 'name10', 'test', 'name12')
      5  into id_doing_business_as_names values (4, 'name9', 'name10', 'name11', 'name12')
      6  into id_doing_business_as_names values (5, 'technology', 'technology', 'technology', 'technology')
      7  select * from dual
      8  /
    5 rows created.
    SCOTT@orcl_11gR2> insert all
      2  into id_fka_names values (1, 'name13', 'name14', 'name15', 'name16')
      3  into id_fka_names values (2, 'name13', 'name14', 'name15', 'name16')
      4  into id_fka_names values (3, 'name13', 'name14', 'name15', 'name16')
      5  into id_fka_names values (4, 'name13', 'name14', 'name15', 'test')
      6  into id_fka_names values (5, 'technology', 'technology', 'technology', 'technology')
      7  select * from dual
      8  /
    5 rows created.
    SCOTT@orcl_11gR2> -- revised procedure to join tables with tags:
    SCOTT@orcl_11gR2> create or replace procedure your_proc
      2    (p_rowid in           rowid,
      3       p_clob     in out nocopy clob)
      4  as
      5  begin
      6    for r1 in
      7        (select id,
      8             '<id_official_name>'
      9             || id_official_name
    10             || '</id_official_name><id_official_norm_name>'
    11             || id_official_norm_name
    12             || '</id_official_norm_name><id_official_eng_name>'
    13             || id_official_eng_name
    14             || '</id_official_eng_name><id_official_trans_name>'
    15             || id_official_trans_name
    16             || '</id_official_trans_name>' as tags_and_values
    17         from      organizations
    18         where  rowid = p_rowid)
    19    loop
    20        dbms_lob.writeappend
    21          (p_clob, length (r1.tags_and_values), r1.tags_and_values);
    22        for r2 in
    23          (select '<id_alias_name>'
    24               || id_alias_name
    25               || '</id_alias_name><id_alias_norm_name>'
    26               || id_alias_norm_name
    27               || '</id_alias_norm_name><id_alias_eng_name>'
    28               || id_alias_eng_name
    29               || '</id_alias_eng_name><id_alias_trans_name>'
    30               || id_alias_trans_name
    31               || '</id_alias_trans_name>' as tags_and_values
    32           from   id_alias_names
    33           where  id = r1.id)
    34        loop
    35          dbms_lob.writeappend
    36            (p_clob, length (r2.tags_and_values), r2.tags_and_values);
    37        end loop;
    38        for r3 in
    39          (select '<id_dba_name>'
    40               || id_dba_name
    41               || '</id_dba_name><id_dba_norm_name>'
    42               || id_dba_norm_name
    43               || '</id_dba_norm_name><id_dba_eng_name>'
    44               || id_dba_eng_name
    45               || '</id_dba_eng_name><id_dba_trans_name>'
    46               || id_dba_trans_name
    47               || '</id_dba_trans_name>' as tags_and_values
    48           from   id_doing_business_as_names
    49           where  id = r1.id)
    50        loop
    51          dbms_lob.writeappend
    52            (p_clob, length (r3.tags_and_values), r3.tags_and_values);
    53        end loop;
    54        for r4 in
    55          (select '<id_fka_name>'
    56               || id_fka_name
    57               || '</id_fka_name><id_fka_norm_name>'
    58               || id_fka_norm_name
    59               || '</id_fka_norm_name><id_fka_eng_name>'
    60               || id_fka_eng_name
    61               || '</id_fka_eng_name><id_fka_trans_name>'
    62               || id_fka_trans_name
    63               || '</id_fka_trans_name>' as tags_and_values
    64           from   id_fka_names
    65           where  id = r1.id)
    66        loop
    67          dbms_lob.writeappend
    68            (p_clob, length (r4.tags_and_values), r4.tags_and_values);
    69        end loop;
    70    end loop;
    71  end your_proc;
    72  /
    Procedure created.
    SCOTT@orcl_11gR2> show errors
    No errors.
    SCOTT@orcl_11gR2> -- examples of virtual columns that revised procedure returns:
    SCOTT@orcl_11gR2> declare
      2    v_clob  clob;
      3  begin
      4    for r in
      5        (select rowid, id
      6         from      organizations)
      7    loop
      8        dbms_lob.createtemporary (v_clob, true);
      9        your_proc (r.rowid, v_clob);
    10        dbms_output.put_line (r.id);
    11        dbms_output.put_line (v_clob);
    12        dbms_lob.freetemporary (v_clob);
    13    end loop;
    14  end;
    15  /
    1
    <id_official_name>test</id_official_name><id_official_norm_name>name2</id_official_norm_name><id_official_eng_name>name3
    </id_official_eng_name><id_official_trans_name>name4</id_official_trans_name><id_alias_name>technology</id_alias_name><i
    d_alias_norm_name>name6</id_alias_norm_name><id_alias_eng_name>name7</id_alias_eng_name><id_alias_trans_name>name8</id_a
    lias_trans_name><id_dba_name>name9</id_dba_name><id_dba_norm_name>name10</id_dba_norm_name><id_dba_eng_name>name11</id_d
    ba_eng_name><id_dba_trans_name>name12</id_dba_trans_name><id_fka_name>name13</id_fka_name><id_fka_norm_name>name14</id_f
    ka_norm_name><id_fka_eng_name>name15</id_fka_eng_name><id_fka_trans_name>name16</id_fka_trans_name>
    2
    <id_official_name>name1</id_official_name><id_official_norm_name>name2</id_official_norm_name><id_official_eng_name>name
    3</id_official_eng_name><id_official_trans_name>name4</id_official_trans_name><id_alias_name>technology</id_alias_name><
    id_alias_norm_name>test</id_alias_norm_name><id_alias_eng_name>name7</id_alias_eng_name><id_alias_trans_name>name8</id_a
    lias_trans_name><id_dba_name>name9</id_dba_name><id_dba_norm_name>name10</id_dba_norm_name><id_dba_eng_name>name11</id_d
    ba_eng_name><id_dba_trans_name>name12</id_dba_trans_name><id_fka_name>name13</id_fka_name><id_fka_norm_name>name14</id_f
    ka_norm_name><id_fka_eng_name>name15</id_fka_eng_name><id_fka_trans_name>name16</id_fka_trans_name>
    3
    <id_official_name>name1</id_official_name><id_official_norm_name>name2</id_official_norm_name><id_official_eng_name>name
    3</id_official_eng_name><id_official_trans_name>name4</id_official_trans_name><id_alias_name>technology</id_alias_name><
    id_alias_norm_name>name6</id_alias_norm_name><id_alias_eng_name>name7</id_alias_eng_name><id_alias_trans_name>name8</id_
    alias_trans_name><id_dba_name>name9</id_dba_name><id_dba_norm_name>name10</id_dba_norm_name><id_dba_eng_name>test</id_db
    a_eng_name><id_dba_trans_name>name12</id_dba_trans_name><id_fka_name>name13</id_fka_name><id_fka_norm_name>name14</id_fk
    a_norm_name><id_fka_eng_name>name15</id_fka_eng_name><id_fka_trans_name>name16</id_fka_trans_name>
    4
    <id_official_name>name1</id_official_name><id_official_norm_name>name2</id_official_norm_name><id_official_eng_name>name
    3</id_official_eng_name><id_official_trans_name>name4</id_official_trans_name><id_alias_name>technology</id_alias_name><
    id_alias_norm_name>name6</id_alias_norm_name><id_alias_eng_name>name7</id_alias_eng_name><id_alias_trans_name>name8</id_
    alias_trans_name><id_dba_name>name9</id_dba_name><id_dba_norm_name>name10</id_dba_norm_name><id_dba_eng_name>name11</id_
    dba_eng_name><id_dba_trans_name>name12</id_dba_trans_name><id_fka_name>name13</id_fka_name><id_fka_norm_name>name14</id_
    fka_norm_name><id_fka_eng_name>name15</id_fka_eng_name><id_fka_trans_name>test</id_fka_trans_name>
    5
    <id_official_name>technology</id_official_name><id_official_norm_name>technology</id_official_norm_name><id_official_eng
    _name>technology</id_official_eng_name><id_official_trans_name>technology</id_official_trans_name><id_alias_name>name5</
    id_alias_name><id_alias_norm_name>technology</id_alias_norm_name><id_alias_eng_name>technology</id_alias_eng_name><id_al
    ias_trans_name>technology</id_alias_trans_name><id_dba_name>technology</id_dba_name><id_dba_norm_name>technology</id_dba
    _norm_name><id_dba_eng_name>technology</id_dba_eng_name><id_dba_trans_name>technology</id_dba_trans_name><id_fka_name>te
    chnology</id_fka_name><id_fka_norm_name>technology</id_fka_norm_name><id_fka_eng_name>technology</id_fka_eng_name><id_fk
    a_trans_name>technology</id_fka_trans_name>
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- user_datastore:
    SCOTT@orcl_11gR2> begin
      2    ctx_ddl.create_preference ('your_datastore', 'user_datastore');
      3    ctx_ddl.set_attribute ('your_datastore', 'procedure', 'your_proc');
      4  end;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- dummy column:
    SCOTT@orcl_11gR2> alter table organizations add (dummy varchar2(1))
      2  /
    Table altered.
    SCOTT@orcl_11gR2> -- index with auto_section_group,
    SCOTT@orcl_11gR2> -- must be on a text column, like dummy, not numeric id column:
    SCOTT@orcl_11gR2> create index your_index
      2  on organizations (dummy)
      3  indextype is ctxsys.context
      4  parameters
      5    ('datastore     your_datastore
      6        section group     ctxsys.auto_section_group')
      7  /
    Index created.
    SCOTT@orcl_11gR2> -- example queries:
    SCOTT@orcl_11gR2> select id
      2  from   organizations
      3  where  contains (dummy, 'technology within id_alias_name') > 0
      4  and    id_data_provider < 100
      5  /
            ID
             1
             2
             3
    3 rows selected.
    SCOTT@orcl_11gR2> select m.id, an.id_alias_name, 'ID_ALIAS_NAME' as nametype
      2  from   id_alias_names an join organizations m on m.id = an.id
      3  where  contains (m.dummy, 'technology within id_alias_name') > 0
      4  and    m.id_data_provider < 100
      5  and    coalesce (m.id_country_of_domicile, m.id_country_of_incorporation) = 'US'
      6  /
            ID ID_ALIAS_N NAMETYPE
             1 technology ID_ALIAS_NAME
             2 technology ID_ALIAS_NAME
    2 rows selected.
    SCOTT@orcl_11gR2>

  • Need to know how to check text accuracy for CN language PDF's? I knew for EN and EU language, similarly i would like to know for Chinese language books in PDF compare process.

    Hi.
    This is for Ebook conversion purpose, Currently am doing the text accuracy for English(EN) and Latin(EU) books using Acrobat 11 Pro application with Source and Converted PDF(final output of epub/mobi).
    Similarly am trying to find the text accuracy for Chinese language books using PDF compare process, When i attempt, could see the compare report in PDF format for CN books, but i cannot catch the any text errors in it. Please advise and help me out whether i need to go for different version of acrobat or do i need to add any plug-ins with respect to language or chinese fonts here.

    Could any one please advise me on my question, so that it will be helpful to purchase the correct application before i go forward.

  • Is there a setting to apply timestamps to my text messages for iPhone 5?

    I just got the iPhone 5 yesterday and with my old phone (the Cosmos 2 from Verizon), I was able to see when each text was recieved.  I feel that this feature is very useful, but the iPhone 5 doesn't have a setting for me to see that.  I can only seen when "chunks" of back-and-forth texts were sent, i.e. another person would be texting me and we would be texting back and forth starting at 9 a.m. (and it would show this timestamp in the texting conversation) and only about 15 minutes later would it show another timestamp.  I would really like to get a timestamp for each text message.  Also note that I don't know much about the iPhone hardware or software, but I can work through it if the answer is explained well enough and pictures were provided (if need be).

    What you're seeing is expected behavior and there is no way to change it.
    The only way I've ever seen a time stamp for every message is when I archive my messages to my computer using PhoneView (Mac).
    Submit your feedback requesting such a feature directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback
    Best of luck.

  • UCM 11.1.1.4 : indexation : Text conversion of the file failed

    Hello,
    I'm facing an indexation issue with MS Office files, pdf, ...
    For instance :
    Text conversion of the file '/opt/oracle/middlewarehome/ucm/cs/weblayout/groups/public/documents/document/mdaw/mdaw/~edisp/virtuoz2dev000342.doc' failed.
    Content has been indexed with Info only. Resubmit should only be performed if the problem has been resolved.
    This a new installation of UCM 11.1.1.4 with Oracle DB 10.2.0.5.2 and WLS 10.3.4, all on a SUSE10 server.
    This issue is very similar to this one :
    Re: XML Not Indexing???
    But in my case, xml and txt files have no problem.
    thanks for your help,
    Vince

    Hi Srinath,
    Thanks for your reply. I checked the certification matrix and the certified version of DB with UCM 11g are :
    Oracle 10.2.0.4+
    Oracle 11.1.0.7+
    Oracle 11.2.0.1+
    It doesn't include 10.2.0.5 ??
    I managed to trace the server output.
    It seems there is a missing file : search.cfg
    also, what is the meaning of the "mdaw" directories ?
    thanks for your help,
    system/6 04.08 09:40:47.648 IdcServer-5934 Configuring tracing verbose: true; sections: indexer
    (internal)/5 04.08 09:40:47.652 IdcServer-5934 !csTraceChangedSectionsList,indexer!csTraceIsVerbose
    indexer/7 04.08 09:41:11.454 index update work /opt/oracle/middlewarehome/ucm/cs/search/search.cfg doesn't exist.
    indexer/7 04.08 09:41:11.455 index update work isRebuild?false; IndexerStep:Init; Class:intradoc.indexer.Indexer
    indexer/7 04.08 09:41:11.455 index update work isRebuild?false; IndexerStep:CheckCollection; Class:intradoc.indexer.IndexerCollectionManager
    indexer/7 04.08 09:41:11.456 index update work isRebuild?false; IndexerStep:BuildChanges; Class:entoracle.indexer.EOIndexerBuildChanges
    indexer/7 04.08 09:41:11.468 index update work Saving 1 update changes
    indexer/7 04.08 09:41:11.469 index update work isRebuild?false; IndexerStep:PreIndexingStep; Action:preIndexingStep
    indexer/7 04.08 09:41:11.469 index update work isRebuild?false; IndexerStep:CheckForWork; Class:intradoc.indexer.Indexer
    indexer/7 04.08 09:41:11.469 index update work Found work:Additions; Type:+; Change count: 1
    indexer/7 04.08 09:41:11.469 index update work isRebuild?false; IndexerStep:IndexAdditions; Class:intradoc.indexer.CommonIndexerBulkLoader
    indexer/7 04.08 09:41:11.470 index update work IndexerBulkLoader doing 'IndexAdditions' with m_change '+'; total count: 1; max count: 10000
    indexer/7 04.08 09:41:11.470 index update work WebChange retrieved. RevClassID:342; dID:364; Indexer State: ; ReleaseState:U
    indexer/7 04.08 09:41:11.477 index update work webFormat is application/msword
    indexer/6 04.08 09:41:11.477 index update work computeIndexableFileAttributes(); item:virtuoz2dev000342,formatType:webviewable,renditionCount:-1,format:application/msword,isAllowMap:true,isVault:false
    indexer/7 04.08 09:41:11.477 index update work Direct indexing allowed: false
    indexer/7 04.08 09:41:11.477 index update work Conversion allowed: true
    indexer/7 04.08 09:41:11.479 index update work Conversion handler for format 'application/msword' is 'TextIndexerFilter'
    indexer/6 04.08 09:41:11.479 index update work Added new item for indexing consideration. [format:application/msword, formatType:webviewable, filePath:/opt/oracle/middlewarehome/ucm/cs/weblayout/groups/public/documents/document/mdaw/mdaw/~edisp/virtuoz2dev000342.doc, fileSize:21504, url:/cs/groups/public/documents/document/mdaw/mdaw/~edisp/virtuoz2dev000342.doc,allowDirectIndex:false, allowConversion:true, conversionHandler:TextIndexerFilter, useMap:false, mapExtension:null
    indexer/7 04.08 09:41:11.480 index update work indexWebFile: true m_retryIndexing: false m_isFirstRetry: true
    indexer/6 04.08 09:41:11.494 index update work preparing 1 items
    indexer/6 04.08 09:41:11.549 index update work doing conversion with intradoc.indexer.TextConversionHandler@484f1ee on intradoc.indexer.IndexerInfo@47ef07e dID:364 key:null mdo:false iwf:true sta:-1 alone:true
    indexer/7 04.08 09:41:11.550 index update work InputFilePath is: </opt/oracle/middlewarehome/ucm/cs/weblayout/groups/public/documents/document/mdaw/mdaw/~edisp/virtuoz2dev000342.doc>
    indexer/7 04.08 09:41:11.550 index update work OutputFilePath is: </opt/oracle/middlewarehome/ucm/cs/search/IdcColl1/bulkload/~export/virtuoz2dev000342.txt> >indexer/7 04.08 09:41:11.550 index update work Sending document to conversion >(internal)/7 04.08 09:41:11.623 TextExport Abandon inattendu par le processus 'TextExport'. >indexer/6 04.08 09:41:11.624 index update work prepareDoc complete >indexer/7 04.08 09:41:12.001 index update work setting change on '364' to 'I' >indexer/7 04.08 09:41:12.005 index update work after handling indexing results: hasError: false m_retryIndexing: false m_isFirstRetry: true metaOnlyCount: 0 aSize: 1 >indexer/7 04.08 09:41:12.006 index update work isRebuild?false; IndexerStep:CheckForWork;  Class:intradoc.indexer.Indexer >indexer/7 04.08 09:41:12.006 index update work isRebuild?false; IndexerStep:DetermineSubscription;  Class:intradoc.indexer.DetermineSubscription >indexer/7 04.08 09:41:12.007 index update work isRebuild?false; IndexerStep:Replication;  Class:intradoc.server.IndexerReplication >indexer/7 04.08 09:41:12.008 index update work isRebuild?false; IndexerStep:PostIndexingStep;  Action:postIndexingStep >indexer/7 04.08 09:41:12.008 index update work isRebuild?false; IndexerStep:Cleanup;  Class:intradoc.indexer.Indexer >indexer/7 04.08 09:41:12.013 index update work cleanup for dID 364 change is I origChange is + newIndexerState is  >indexer/7 04.08 09:41:12.022 index update work isRebuild?false; IndexerStep:ContentRefresh;  Action:postDatabaseStep >indexer/7 04.08 09:41:12.024 index update work isRebuild?false; IndexerStep:Init;  Class:intradoc.indexer.Indexer >indexer/7 04.08 09:41:12.024 index update work isRebuild?false; IndexerStep:CheckCollection;  Class:intradoc.indexer.IndexerCollectionManager >indexer/7 04.08 09:41:12.024 index update work isRebuild?false; IndexerStep:BuildChanges;  Class:entoracle.indexer.EOIndexerBuildChanges >indexer/7 04.08 09:42:23.609 index update work /opt/oracle/middlewarehome/ucm/cs/search/search.cfg doesn't exist. >indexer/7 04.08 09:42:23.609 index update work isRebuild?false; IndexerStep:Init;  Class:intradoc.indexer.Indexer >indexer/7 04.08 09:42:23.609 index update work isRebuild?false; IndexerStep:CheckCollection;  Class:intradoc.indexer.IndexerCollectionManager >indexer/7 04.08 09:42:23.610 index update work isRebuild?false; IndexerStep:BuildChanges;  Class:entoracle.indexer.EOIndexerBuildChanges >indexer/7 04.08 09:42:23.613 index update work isRebuild?false; IndexerStep:Replication;  Class:intradoc.server.IndexerReplication >indexer/7 04.08 09:42:23.613 index update work isRebuild?false; IndexerStep:PostIndexingStep;  Action:postIndexingStep >indexer/7 04.08 09:42:23.613 index update work isRebuild?false; IndexerStep:Cleanup;  Class:intradoc.indexer.Indexer >indexer/7 04.08 09:42:23.617 index update work isRebuild?false; IndexerStep:ContentRefresh;  Action:postDatabaseStep >indexer/7 04.08 09:42:23.618 index update work isRebuild?false; IndexerStep:Init;  Class:intradoc.indexer.Indexer >indexer/7 04.08 09:42:23.618 index update work isRebuild?false; IndexerStep:CheckCollection;  Class:intradoc.indexer.IndexerCollectionManager >indexer/7 04.08 09:42:23.619 index update work isRebuild?false; IndexerStep:BuildChanges;  Class:entoracle.indexer.EOIndexerBuildChanges                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • HT3529 how to do i send a text conversation with all the detail to my email?

    How to do I send a text conversation with all the detail from my phone to my email?

    Take a screen shot of the text.  Hold the home/sleep button together for a sec.  Then go to your camera roll and then email it to yourself.

  • Can I resend  a whole text conversation on my iphone 4?

    Can I re-send an entire text conversation from

    I use the Mac application PhoneView for this. It allows me to create PDFs of my text conversations. I believe TouchCopy has similar functions. It's available for Mac and Windows.
    Best of luck.

  • Standard Display Roles For Queries in BW

    Dear All,
    Could you Please share the Standard Display Roles For Queries in BW.
    Thanks
    Regards,
    Sai

    Hi Sai,
    You can find query specific roles in metadata repository.
    Also try this table in
    SE16. AGR_OBJ
    Other useful tables might be:
    AGR_DEFINE -      Role definition
    AGR_USERS -      Assignment of roles to users
    AGR_HIERT           Role menu texts
    AGR_AGRS           Roles in Composite Roles
    If you need to find user specific roles, check Tcode SUIM.
    Hope this helps.
    Thanks

  • Implement a technical naming convention for queries depending on user

    Hello,
    I'd like to implement a technical naming convention for queries depending on the user, because I want to make sure that the users are taking care of the naming conventions.
    For example a user defines a query and would like to save this query.
    During the save process he should only have the possibility to save the query with the name C_Name-of-Infoprovider_Text.
    The C should be unchageable for the user.
    The Name-of-Infoprovider should set automatically (if possible).
    The Text could be defined by the user.
    Another user would have this naming convention: X_Name-of-Infoprovider_Text
    Is there a possibility to implement such a function? (or just a part of this)
    Thank you.

    Thank you for your answer!
    Your answer helped me to implement a part of the naming conventions.
    Maybe some as an idea to implement the rest of the naming convention.
    --> Technical query name depending on technical name of the InfoProvider.
    Has anyone an idea?

  • Need to Create a Report on 0TCT_C01 as No of  Navigations for Queries.

    Hi,
    I have  a report Requirement on 0TCT_C01 as Number of Navigations for Queries.
    already we are activated the Info Cube and loaded the data, now the data is avalible in the Cube.
    Report like  In Column Fields:
    Validity Period :Query:No of Navigations:Num Read Texts:
    Can any body let me know how can i work for built a Query on this Cube and we are working on BI 7.0 version.
    Best Regards
    Swapna.

    Dear  swapna devi, Welcome to SDN.
    As you are using standard business content cubes, standard queries also available on that particular cube. Try to activate queries also and use.
    Check: [SAP NetWeaver BI Administration Cockpit Technical Content BI Statistics|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/90080703-4331-2a10-cd98-9c1e95acdea0]
    Hope it Helps
    Srini
    [Dont forget to close the call by assigning points.... - Food for Points: Make a Difference through Community Contribution!|https://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/007928c5-c4ef-2a10-d9a3-8109ae621a82]

  • I accidentally deleted a text conversation, is there a way to retreive this ?

    I accidentally deleted a text conversation. Is there a way to retrieve this?

    If you synced you iPhone before you deleted it then it will be in the backup on your computer. Do a Restore from Backup and it will put it back. If not, it is gone but if you just need to access some information in it try doing a Search on your iPhone for a term that you recall is in the text message.

  • How to prepare the Format of Flat file(Excel or Text file) for sales order

    Hi All,
    My requirement is to prepare the Flat File formats(Excel or Text file) for sales order Conversion using BAPI by COB.
    Needed Sample Excel or Text flat file .
    Thanks for all.
    Regards,
    Chowdary
    Moderator message : Search for available information. Thread locked. 
    Your similiar question [Flat files formats|Flat files formats] has been already locked for similiar reason.  Read forum rules before posting.
    Edited by: Vinod Kumar on Jul 8, 2011 9:36 AM

    Hi,
    You can use something like this:
    switch(cell.getCellType()) {
      case Cell.CELL_TYPE_STRING:
        System.out.println(cell.getRichStringCellValue().getString());
        break;
      case Cell.CELL_TYPE_NUMERIC:
        if(DateUtil.isCellDateFormatted(cell)) {
          System.out.println(cell.getDateCellValue());
        else {
          System.out.println(cell.getNumericCellValue());
        break;
        case Cell.CELL_TYPE_BOOLEAN:
          System.out.println(cell.getBooleanCellValue());
          break;
        case Cell.CELL_TYPE_FORMULA:
          System.out.println(cell.getCellFormula());
          break;
        default:
          System.out.println();
    Hope it helps,
    Daniel

  • Why are the duscussion administrators archiving all cd-text conversations?

    Why are the duscussion administrators archiving all cd-text conversations?
    Looks like they are all archived... Is this to shut us up?
    Seeing how long it takes for my posts to be archived!
      Windows XP  

    I would try a reset. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. Once the phone restarts, see if it is working correctly. It sounds to me like you may have too many text messages in the Messages app. Have you deleted anything from there lately?

  • When viewing a text conversation, how can I see the person's first AND last names?

    When I view my text "inbox", they are listed according to how I have each contact entered...for example John Smith. When I look within the text conversation with that person, at the top it only says "John". This is very frustrating. (I only recently upgraded to iOS 7 and have a feeling this is one of many things I'm going to resent.) Can't I express a preference for the full name to appear?

    Settings App > Mail,Contacts,Calendars > [scroll down to CONTACTS] > Short Name [turn off, or select another display option)]

  • HT3529 Is there anyway to take my whole text conversation and convert it to a email or reading document

    Is there a way to take a entire text conversation and convert it or copy it to an email for easier reading?

    One way to do this, is to open the message, and choose one of the conversation bubbles.  If you hold it down, the conversation bubbles will have a small circle next to them.  If you select all of the circles you wish to keep, at the bottom of the screen there should be an arrow that you can use to forward the selected text to the email of your choice. Hope this helps.

Maybe you are looking for

  • OWB on Oracle 10G Release 2

    Dear all, I planned to use an Oracle 10G Release 2 database for a new OWB project. Research on the web just told me that this new version of the database does not support OWB, because of a check for DBA privileges. The website advises to either use a

  • Exchange 2010 user Non-deliverable message

    Any help is appreciated. We have a user who is trying to email a vendor who she normally can but now she is getting an NDR message stating: The following organization rejected your message: [XXX]. <- other company's IP Diagnostic information for admi

  • ABOUT DATABASE TABLE

    CAN I CREATE A FIELD  IN DATABASE TABLE WITHOUT A DATA-ELEMENT CAN I CREATE A FIELD   IN DATABASE-TABLE WITHOUT A DOMAIN

  • Print in both side of the paper

    Anyone can tell me how I can print in both side of the paper? Thanks

  • NOT a website issue; but the canned choices are bad. Why must the Extensions window launch with FF every time??

    This canned menu is as bad as the cable company's. I do NOT want to start in safe/without extensions; but I am tired of having the Extensions box pop up on every browser start. can this be stopped? == URL of affected sites == http://NA