Achieving functionality of many preferences using one context index

Hi Gurus,
We have a table of following format
SCOTT@orcl_11gR2> insert all
2 into test_sh values (1, 'Mark Antony')
3 into test_sh values (2, 'Mark-Antony')
4 into test_sh values (3, 'markantony' )
5 into test_sh values (4, 'markantony' )
6 into test_sh values (5, 'Cleopatra' )
7 select * from dual
8 / We need to achieve following functionality in this table
1) fuzzy
2) stem
3) synonym
4) near
5) soundex
6) As mentioned in thread Text Search help using ndata section
7) As mentioned in thread Re: Phrase Serach with special charaters in between using a lexer preference
Please guide me as to how to achieve everything in one shot.
I was thinking to write individual select statement and then do a distinct of id as given below but if we need to achieve #6 and #7 we need to add
a preference and other queries for sundex,stem etc will not work properly. Please guide me how I can achieve all functionality using one index.
> select * from test_sh where id in
select distinct id from (
select id from test_sh where contains (text_nm ,'markantony') > 0
union
select id from test_sh where contains (text_nm ,fuzzy('markantony')) > 0
union
select id from test_sh where contains (text_nm ,fuzzy('!markantony')) > 0
select id from test_sh where contains (text_nm ,fuzzy('$markantony')) > 0
) Thanks & Regards,
Vikas Krishna

I do not get the errror that you get and I get the correct results, as shown below. Please post a copy and paste of a complete test case, run from SQL*Plus, as I have done below.
SCOTT@orcl_11gR2> create table test_sh
  2    (text_id  number,
  3       text      clob)
  4  /
Table created.
SCOTT@orcl_11gR2> insert all
  2  into test_sh values (1, 'Mark Antony')
  3  into test_sh values (2, 'MARK ANTONY')
  4  into test_sh values (3, 'mark antony')
  5  into test_sh values (4, 'MarkAntony')
  6  into test_sh values (5, 'MA RK ANTONY')
  7  into test_sh values (6, 'm a r k antony')
  8  into test_sh values (7, 'Cleopatra' )
  9  select * from dual
10  /
7 rows created.
SCOTT@orcl_11gR2> begin
  2    ctx_ddl.create_preference ('nd_mcds', 'multi_column_datastore');
  3    ctx_ddl.set_attribute ('nd_mcds', 'columns', 'text nd, text text');
  4    ctx_ddl.create_section_group ('nd_sg', 'basic_section_group');
  5    ctx_ddl.add_ndata_section ('nd_sg', 'nd', 'nd');
  6    ctx_ddl.create_preference ('test_lex', 'basic_lexer');
  7    ctx_ddl.set_attribute ('test_lex', 'whitespace', '/\|-_+');
  8  end;
  9  /
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> create index ix_test_sh
  2  on test_sh (text)
  3  indextype is ctxsys.context
  4  parameters
  5    ('datastore  nd_mcds
  6        section    group nd_sg
  7        lexer         test_lex')
  8  /
Index created.
SCOTT@orcl_11gR2> variable search_string varchar2(100)
SCOTT@orcl_11gR2> column text format a30
SCOTT@orcl_11gR2> exec :search_string := 'Mark Antony'
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> select * from test_sh
  2  where  contains
  3             (text,
  4              'ndata (nd,' || :search_string || ') or
  5            syn (?!$' || replace (:search_string, ' ', ';?!$') || ')') > 0
  6  /
   TEXT_ID TEXT
         1 Mark Antony
         2 MARK ANTONY
         3 mark antony
         4 MarkAntony
         5 MA RK ANTONY
         6 m a r k antony
6 rows selected.
SCOTT@orcl_11gR2> exec :search_string := 'MARK ANTONY'
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> /
   TEXT_ID TEXT
         1 Mark Antony
         2 MARK ANTONY
         3 mark antony
         4 MarkAntony
         5 MA RK ANTONY
         6 m a r k antony
6 rows selected.
SCOTT@orcl_11gR2> exec :search_string := 'mark antony'
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> /
   TEXT_ID TEXT
         1 Mark Antony
         2 MARK ANTONY
         3 mark antony
         4 MarkAntony
         5 MA RK ANTONY
         6 m a r k antony
6 rows selected.
SCOTT@orcl_11gR2> exec :search_string := 'MarkAntony'
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> /
   TEXT_ID TEXT
         1 Mark Antony
         2 MARK ANTONY
         3 mark antony
         4 MarkAntony
         5 MA RK ANTONY
         6 m a r k antony
6 rows selected.
SCOTT@orcl_11gR2> exec :search_string := 'MA RK ANTONY'
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> /
   TEXT_ID TEXT
         1 Mark Antony
         2 MARK ANTONY
         3 mark antony
         4 MarkAntony
         5 MA RK ANTONY
         6 m a r k antony
6 rows selected.
SCOTT@orcl_11gR2> exec :search_string := 'm a r k antony'
PL/SQL procedure successfully completed.
SCOTT@orcl_11gR2> /
   TEXT_ID TEXT
         1 Mark Antony
         2 MARK ANTONY
         3 mark antony
         4 MarkAntony
         5 MA RK ANTONY
         6 m a r k antony
6 rows selected.

Similar Messages

  • Does ARD support many client using one server separately simultaneity?

    Does ARD support more than one client using one server separately simultaneity, like Remote Desktop on Windows?
    Thank you!
    Message was edited by: tohy

    Thanks for your reply. Does Mac OS X (or server) supports the function that different accounts remote login in simultaneously and use the applications separately at the same time?

  • Using One Context Node's Info in the Setter of Another

    I am very new to WebUI.
    I have a view.  In its context, it already uses context node BUILHeader .  I need to create a field based on BP_NUMBER info in BUILHeader and place the derived information on the screen.
    I created a new context node that has a field  DerivedValue in it. I think I am supposed to populate it in it's P_Setter.  How do I make he information from BUILHeader available to my setter.
    I think this is simple, but I'm new. so I need a good code example here.
    Thank you .
    ...Mike

    Hi
    Like Amar pointed out if it is possible pleae make sure that the field is also in BUILHeader context nide itself.
    If you want it to be in different context node then
    you can use me->typed_context -> "<context_node name >"
    create an attribute  "typed_context" pointing to the context class.
    "<context_node name >" --- Here you can replace the any of the context node which is present in your view!! you can use
    this anywhere inside the view. Hence you will be able to access other context nodes as well within the purview of the view.
    Thanks
    Abishek

  • Creative cloud complete,  how many can use one membership

    Dear Adobe,
    We both using adobe cs6. One in windows and other is in Mac. If i take membership in CC complete, how we both can use it?
    Anoob

    Not sure what you are asking. If you already have working CS6 licenses for different platforms, you have 4 activations and each could use it on 2 systems. That will be the same if you upgrade two 2 licenses of CC.
    Mylenium

  • Trying to understand context indexes and contains-help

    Hi
    i am using
    Achieving functionality of many preferences using one context index
    to understand context indexes and contains
    and i get the following
    Error starting at line 1 in command:
    begin
    ctx_ddl.create_preference ('nd_mcds', 'multi_column_datastore');
    ctx_ddl.set_attribute ('nd_mcds', 'columns', 'text nd, text text');
    ctx_ddl.create_section_group ('nd_sg', 'basic_section_group');
    ctx_ddl.add_ndata_section ('nd_sg', 'nd', 'nd');
    ctx_ddl.create_preference ('test_lex', 'basic_lexer');
    ctx_ddl.set_attribute ('test_lex', 'whitespace', '/\|-_+');
    end;
    Error report:
    ORA-06550: line 5, column 15:
    PLS-00302: component 'ADD_NDATA_SECTION' must be declared
    ORA-06550: line 5, column 7:
    PL/SQL: Statement ignored
    06550. 00000 - "line %s, column %s:\n%s"
    *Cause:    Usually a PL/SQL compilation error.
    *Action:
    so i am using the following to check for the error
    http://docs.oracle.com/cd/E18283_01/text.112/e16593/cddlpkg.htm#BABCBFCB
    plus
    oracle text application developer's guide
    plus
    oracle text reference
    but these have not listed that error (i have even googled this in vain)
    background::we were actually using catsearch but because of its downsides i want to implement this
    Is Achieving functionality of many preferences using one context index a good place to start when one does not know about
    context and contains??
    please post any other useful link for contains and context index that even explains
    1) fuzzy
    2) stem
    3) synonym
    4) near
    5) soundex
    6)ndata
    7)lexer
    thanks in advance

    Ndata is new to Oracle 11g. Your other posts indicate that you are using Oracle 10g, so you don't have ndata, so you get an error when you try to use it. If you want to use the 11g features that enable context indexes with contains to do all of the things that ctxcat indexes with catsearch do, then you need to upgrade to 11g.
    The online documentation is searchable. Most things regarding Oracle Text are contained in either the Oracle Text Reference or the Oracle Text Application Developer's guide.
    I suggest that you start with something very simple, then build from there.
    The following is similar to your other post that used catsearch:
    SCOTT@orcl_11gR2> CREATE TABLE mv_cat_seg_reg_prod
      2    (cat_ids       VARCHAR2 ( 7),
      3       act_status    VARCHAR2 (10),
      4       name           VARCHAR2 ( 1),
      5       email           VARCHAR2 ( 1),
      6       address1      VARCHAR2 ( 1),
      7       address2      VARCHAR2 ( 1),
      8       contact_name  VARCHAR2 ( 1),
      9       mobile           VARCHAR2 ( 1),
    10       telephone     VARCHAR2 ( 1))
    11  /
    Table created.
    SCOTT@orcl_11gR2> INSERT ALL
      2  INTO mv_cat_seg_reg_prod VALUES
      3    ('1', 'Y', 'A', 'B', 'C', 'D', 'E', 'F', 'G')
      4  INTO mv_cat_seg_reg_prod VALUES
      5    ('2', 'N', 'H', 'I', 'J', 'K', 'L', 'M', 'N')
      6  SELECT * FROM DUAL
      7  /
    2 rows created.
    SCOTT@orcl_11gR2> CREATE INDEX mv_cat_seg_reg_prod_idx
      2  ON mv_cat_seg_reg_prod (cat_ids)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    Index created.
    SCOTT@orcl_11gR2> SELECT token_text FROM dr$mv_cat_seg_reg_prod_idx$i
      2  /
    TOKEN_TEXT
    1
    2
    2 rows selected.
    SCOTT@orcl_11gR2> SELECT *
      2  FROM   (SELECT SCORE (1), name, email, address1, address2, contact_name, mobile, telephone
      3            FROM   mv_cat_seg_reg_prod
      4            WHERE  CONTAINS (cat_ids, '1', 1) > 0
      5            AND    act_status = 'Y'
      6            ORDER  BY DBMS_RANDOM.VALUE)
      7  WHERE  ROWNUM < 8
      8  /
      SCORE(1) N E A A C M T
             4 A B C D E F G
    1 row selected.

  • Stylus and using One Note on Yogo

    Good day,
    I keep trying to find an answer, but no luck so far.
    Can you use One Note and a Stylus with the Yogo?  I've bought two stylus's so far and both don't work very well.  I can't use One Note since the screen also picks up my hand.  I had a Motion Computer prior to this and One Note worked great with thier digitizer stylus.  Like the Yogo but really miss the Stylus pen capability.
    Thanks

    If your iPod is formatted for Mac it won't run natively on a PC because the Windows OS does not support the HFS Plus file system and therefore will not see the drive.
    Macs can read Windows drives so you could restore and format the iPod on a PC, this would mean though that any future software updates would have to be done on Windows. Strictly speaking apart from the iPod shuffle, using a Windows formatted iPod on a Mac isn't supported however many people use one without any issue. Alternatively there are third party programs that will allow you to use a Mac formatted iPod on Windows, this is one for instance gets good reviews: XPlay 2
    You can read another user's experience of using XPlay at this link: iPod on Mac and Windows

  • Oracle 10g  – Performance with BIG CONTEXT indexes

    I would like to use Oracle XE 10.2.0.1.0 only for the full-text searching of the files residing outside the database on the FTP server.
    Recently I have found out that size of the files to be indexed is 5GB.
    As I have read somewhere on this forum before size of the index should be 30-40% of the indexed text files (so with formatted documents like PDF or DOC even less).
    Lets say that the CONTEXT index size over these files will be 1.5-2GB.
    Number of the concurrent user will be max. 5.
    I can not easily test it my self yet.
    Does anybody have any experience with Oracle XE or other Oracle Database edition performance with the CONTEXT index this BIG?
    Will Oracle XE hardware resources license limitation be sufficient to handle one CONTEXT indexe this BIG?
    (Oracle XE license limitations: 1 GB RAM and 1 CPU)
    Regards.

    That depends on at least three things:
    (1) what is the range of words that will appear in the document set (wide range of documents = smaller resultsets = better performance)
    (2) how precise are the user's queries likely to be (more precise = smaller resultsets = better performance)
    (3) how many milliseconds are your users willing to wait for results
    So, unfortunately, you'll probably have to experiment a bit before you'll know...

  • Performance of context index with sorting

    Dear All,
    I've got a problem and don't know how to solve this.
    there has a table which have a XMLTYPE field to store the unstructred xml, and created with context index.
    When I try to select a record from it by using contains (res, '[searchingfield]')>0, the response time is quick, but when I try to order by another field which in the same table, the response time is drop down slightly. (ex. select id, path, res, update_date from testingtbl where contains(res, 'shopper')>0 order by update_date desc.
    Actually there is a context index build for field 'res', any other index build for field 'update_date', when sql without 'order by update_date', the context index will use, but the update_date index will not be used even have ordering criteria.
    Is there any expect can tell how to solve this? how to keep the performance even doing the sorting process?
    Thanks and Regards
    Raymond

    Thanks for your quick reply.
    The mentions information provide after back to office, actually I just want to know if there is any method(s) which can use the context index (with contains keyword) and sorting without slow down the performance.
    Thanks and Regards
    Raymond

  • Context indexing and PDFs

    I recently used application express to create an upload system to house word docs, Excel files and PDFs in a BLOB. I used a context index to index them and a CONTAINS query to search through the BLOB and have it find which documents contained certain words.
    My Problem is some PDFs are not indexing correctly, and I wondered what limitations there were to this and if we could fix them. Has anyone else encountered this?

    I am logged in as the user who owns the index.
    I set a filter "token_text = 'oracle' " when I am viewing the data in the DR$TEMP_INDEX$I table and I don't get anything returned(oracle is obviously listed in the 10g product guide, but it isn't in anything else). It returns other keywords in other documents.
    I am thinking it may be the embedded fonts issue? thets the only difference in the files I can see.
    Message was edited by:
    in3d

  • Context Problem when using Use One As Many

    Hi SapGuru's.
    i have got a requirement in an IDOC To File Interface where the segments in the IDOC are like E1LFA1M->E1LFM1M->E1WYT3M
    THE Test data is like below
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:IDOC_Test_Mt xmlns:ns0="urn:sap.shoprite.co.za:ecc.md">
       <ZCREMAS>
          <IDOC>
             <E1LFA1M>
                <LIFNR>0000641065</LIFNR>
                <E1LFM1M>
                   <EKORG>1001</EKORG>
                   <E1WYT3M>
                      <PARVW>BA</PARVW>
                   </E1WYT3M>
                   <E1WYT3M>
                      <PARVW>LF</PARVW>
                   </E1WYT3M>
                   <E1WYT3M>
                      <PARVW>RS</PARVW>
                   </E1WYT3M>
                </E1LFM1M>
             </E1LFA1M>
             <E1LFA1M>
                <LIFNR>0000641065</LIFNR>
                <E1LFM1M>
                   <EKORG>1002</EKORG>
                   <E1WYT3M>
                      <PARVW>BA</PARVW>
                   </E1WYT3M>
                   <E1WYT3M>
                      <PARVW>RS</PARVW>
                   </E1WYT3M>
                </E1LFM1M>
             </E1LFA1M>
             <E1LFA1M>
                <LIFNR>0000641065</LIFNR>
                1002
             </E1LFA1M>
             <E1LFA1M>
                <LIFNR>0000641065</LIFNR>
                <E1LFM1M>
                   <EKORG>1004</EKORG>
                   <E1WYT3M>
                      <PARVW>BA</PARVW>
                   </E1WYT3M>
                   <E1WYT3M>
                      <PARVW>LF</PARVW>
                   </E1WYT3M>
                   <E1WYT3M>
                      <PARVW>RS</PARVW>
                   </E1WYT3M>
                </E1LFM1M>
                <E1LFM1M>
                   <EKORG>1005</EKORG>
                   <E1WYT3M>
                      <PARVW>BA</PARVW>
                   </E1WYT3M>
                   <E1WYT3M>
                      <PARVW>LF</PARVW>
                   </E1WYT3M>
                   <E1WYT3M>
                      <PARVW>RS</PARVW>
                   </E1WYT3M>
                </E1LFM1M>
             </E1LFA1M>
          </IDOC>
       </ZCREMAS>
    </ns0:IDOC_Test_Mt>
    the Target xsd is like below :
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema targetNamespace="urn:sap.shoprite.co.za:demo.trans" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="urn:sap.shoprite.co.za:demo.trans" xmlns:p1="urn:sap.shoprite.co.za:bluecube">
       <xsd:import namespace="urn:sap.shoprite.co.za:bluecube"/>
       <xsd:element name="Vendor_masterTest1" type="p1:Vendor_masterTest"/>
    </xsd:schema>
    the EKORG Field from source is mapping to Purchase Organisation(field) in target file .
    so here when i use one as many and iam mapping EKORG->MAP WITH DEFAULT ->USE ONE AS MANY and as in the above test data if there are multiple E1LFM1M's the first paramter of Use one as many is getting 2 ekorg's in only one context but here i want them to be created on separate context(please have a look at 4th E1LFA1M in the test data to get clear idea.
    can any of you help me in this.
    regards.
    Varma

    Hi,
    Try this.
    Source Code:
    IDOC
    --->E1LFA1M
                    -->E1LFM1M
                          --> EKORG = 1000
                          --> E1WYT3M
                          --> E1WYT3M
                    -->E1LFM1M
                    -->E1LFM1M
                          --> EKORG = 1001
                          --> E1WYT3M
                          --> E1WYT3M
                    -->E1LFM1M
                          --> EKORG = 1006
                          --> E1WYT3M
                          --> E1WYT3M
    Output:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:target xmlns:ns0="http://test">
    <Data>
       <M>1000</M>
    </Data>
    <Data>
       <M>1000</M>
    </Data>
    <Data>
       <M></M>
    </Data>
    <Data>
       <M>1001</M>
    </Data>
    <Data>
       <M>1001</M>
    </Data>
    <Data>
       <M>1006</M>
    </Data>
    <Data>
       <M>1006</M>
    </Data>
    </ns0:target>
    Use below Mapping:
    Use If then Else Function.
    1. If condition: E1WYT3M Exists
    2. Then pass E1WYT3M
    3. Else Pass E1LFM1M with "Map with Default"
    Lets Consider Output of this step as "A".
    Use One As Many.
    First Input: E1LFM1M to exists to Split By Each Value
    Second and Third Input will be Out Put of "A" (Above Step).
    Lets Consider Out put of this Step as "B"
    Use If without Else.
    If "B" is true then pass "A"  to exists.
    Out put  of this to Remove context to Target Vendor Master Node. In my sample it will be Node "Data"
    Now for Mapping of Field Purch Org/In my case field "M"
    Use If without Else.
    If "B" is true then Pass "C". Output of this to Split by each value to target.
    For C:
    Use if then else
    if E1WYT3M exists then pass EKORG else pass constant blank.
    Hope its clear!!
    -Gouri

  • "Use one as many "function

    Hi All
    I have a scenario from RFC to WSDL in which if certain conditions fulfil only then can I pass the value to the target field "SERVCODE".
    The problem is there are many conditions which are to be fulfilled to have the value passed.
    I tried using the function "use One As Many" but I got stuck at the "OR" condtion because its taking only boolean values.
    Please have a look at the scenario and help me!!
    Also I am preferring to have a graphical mapping but if nothing works out User defined function would do.
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS <> BLANK & MARA-MATKL = 800001031----
    then  SERVCODE = 400 (400 is the Value to be passed to the target field to SERVCODE)
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS<> BLANK & MARA-MATKL <> 800001031 & VBAK u2013AUART = Z000 & MVKE u2013 MVGR2 = 001 -
    then   SERVCODE= 201(201is the Value to be passed to the target field  to SERVCODE)
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS <> BLANK & MARA-MATKL <> 800001031 & VBAK u2013AUART = Z000 & MVKE u2013 MVGR2 = 002 -
    then  SERVCODE= 202 (202 is the Value to be passed to the target field to SERVCODE)
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS <> BLANK & VBAK u2013AUART = Z001& MVKE u2013 MVGR2 = 001 -
    then SERVCODE= 301(301 is the value to be passed to the target field to SERVCODE)
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS <> BLANK& VBAK u2013AUART = Z001 & MVKE u2013 MVGR2 = 002 -
    then SERVCODE= 302 (302 is the Value to be passed to the target field to SERVCODE)
    u2022     IF VBAP-PSTYV <> Z004 VBAP-AUART = Z000 -
    then  SERVCODE = 1 (1 is the Value to be passed to the target field to SERVCODE)     
    u2022     IF VBAP-PSTYV <> Z004 VBAP-AUART = Z001 -
    then  SERVCODE = 101(101 is the Value to be passed to the target field to SERVCODE)
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS = BLANK &VBAP-AUART = Z000 & MVKE-MVGR2 = 001 -
    then SERVCODE = 201(201 is the Value to be passed to the target field to SERVCODE)
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS = BLANK & VBAP-AUART = Z000 & MVKE-MVGR2 = 002 -
    then SERVCODE = 202(202 is the Value to be passed to the target field to SERVCODE)
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS = BLANK & VBAP-AUART = Z001 & MVKE-MVGR2 = 001 -
    then SERVCODE = 301(301 is the Value to be passed to the target field to SERVCODE)
    u2022     IF VBAP-PSTYV = Z004 & VBAP-UEPOS =BLANK & VBAP-AUART = Z001 & MVKE-MVGR2 = 002----
    then SERVCODE = 302 (302 is the Value to be passed to the target fieldto SERVCODE)
    Thanks a lot in advance !!

    You may post it on a wrong forum.  Here is SAP Business One Core forum, a forum dedicate to SAP Business One - a solution to SME.  Please close your thread and try this forum to start:
    Process Integration (PI) & SOA Middleware
    Thanks,
    Gordon

  • Can I use iCloud to since many users to one account for my business and have me as a administrator to oversee and change peoples calendars?

    Can I use iCloud to since many users to one account for my business and have me as a administrator to oversee and change my employees calendars and contacts??

    Go to System Preferences and click Sign Out, select Delete at all the prompts, then sign back in with the changed ID?   (Your iCloud data will disappear from your Mac when you sign out and choose Delete, but will still be in iCloud.  Provided you are signing back into the same account your data will reappear on your Mac when you sign back in.)

  • I created my first movie using one long video (all photos) clip created in Keynote and imported to Imovie.  I added many music clips, some overlapping. I now want to lay down a new updated video clip, eliminate the original but retain the audio. Can I?

    I created my first movie using one long video (a montage of photos) clip created in Keynote and imported to Imovie.  I added many music clips, some overlapping. I now want to lay down a new updated video clip, eliminate the original video, but retain the audio. Can I?  And if so, how.  I cant seem to
    find the info anywhere in help.

    I would suggest that you go to iMovie/Preferences and make sure that Advanced Tools are enabled.
    Then, you can drag your new video clip on top of your old clip and a popup menu should appear. Choose REPLACE.

  • After a month of using CS6 Master, Acrobat ceased functioning. Many other customers with the same problem suggested deactivating Flash Pro to reactivate Acrobat. After following these instructions, the entire suite was deactivated and now dipalys a messag

    After a month of using CS6 Master, Acrobat ceased functioning. Many other customers with the same problem suggested deactivating Flash Pro to reactivate Acrobat. After following these instructions, the entire suite was deactivated and now dipalys a message that our trial that will expire in 10 days (in the middle of an upcoming charity event). Is there any way to reactivate CS6? Is the only option to delete all CS programs? Can we download CS6 again with the same product key?

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • I have a PowerBook G4 with a non-functioning monitor.  It used to work with an external monitor, but I reinstalled the OS, which cleared the display preferences and now when I restart it won't detect the external monitor. How do I fix?

    I have a PowerBook G4 with a non-functioning monitor.  It used to work with an external monitor, but I reinstalled the OS, which cleared the display preferences and now when I restart it won't detect the external monitor. This means I can't use the computer anymore. How do I fix? I tried using the Command+F2 keyboard shortcut, but it doesnt' work.  It's possible that since I reinstalled the OS, it still needs to be set up, so there's only a welcome screen (but since I can't see it I'm not sure).

    There is no limit to the number of times you can re-install Office on the same computer.
    You can activate by telephone:
    The last paragraph is the relevant bit

Maybe you are looking for