Order of words, fuzzy and utl_match

Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
PL/SQL Release 10.2.0.1.0 - Production
"CORE     10.2.0.1.0     Production"
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
create table category(cat_id number(20),cat_type varchar2(3000));
create table category_match(cat_id number(20),cat_type varchar2(3000));
Insert into category (CAT_ID,CAT_TYPE) values (12790,'AUTO CONSULTANTS');
INSERT INTO CATEGORY (CAT_ID,CAT_TYPE) VALUES (23803,'AUTO CONSULTANT');
Insert into category (CAT_ID,CAT_TYPE) values (23804,'CONSULTANT FOR AUTO FINANCE');
Insert into category_match (CAT_ID,CAT_TYPE) values (12790,'AUTO CONSULTANTS');
INSERT INTO CATEGORY_match (CAT_ID,CAT_TYPE) VALUES (23803,'AUTO CONSULTANT');
Insert into category_match (CAT_ID,CAT_TYPE) values (23804,'CONSULTANT FOR AUTO FINANCE');
CREATE INDEX "LOOKING4"."MYINDEX" ON "CATEGORY_MATCH"
    "CAT_TYPE"
  INDEXTYPE IS "CTXSYS"."CONTEXT" ;
CREATE INDEX "LOOKING4"."CAT_TYPE_IDX" ON "CATEGORY"
    "CAT_TYPE"
  INDEXTYPE IS "CTXSYS"."CTXCAT" ;
select cat_id,CAT_TYPE,UTL_MATCH.edit_distance_similarity(CAT_TYPE,'AUTO CONSULTANT') from
select * from category where catsearch(cat_type,
'<query>
      <textquery grammar="context">
      <progression>
      <seq>auto consultant</seq>
      <seq>?(auto) and ?(consultant)</seq>
        </progression>
        </textquery>
</query>'
,NULL)>0
)where rownum<5
23803     AUTO CONSULTANT     100
12790     AUTO CONSULTANTS     94
23804     CONSULTANT FOR AUTO FINANCE     26
update category set cat_type='CONSULTANTS AUTO' WHERE CAT_ID=12790
select cat_id,CAT_TYPE,UTL_MATCH.edit_distance_similarity(CAT_TYPE,'AUTO CONSULTANT') from
select * from category where catsearch(cat_type,
'<query>
      <textquery grammar="context">
      <progression>
      <seq>auto consultant</seq>
      <seq>?(auto) and ?(consultant)</seq>
        </progression>
        </textquery>
</query>'
,NULL)>0
)where rownum<5
23803     AUTO CONSULTANT     100
12790     CONSULTANTS AUTO     32
23804     CONSULTANT FOR AUTO FINANCE     26
select score(1),cat_id,cat_type from CATEGORY_MATCH where cat_id in(
select cat_id from category where catsearch(cat_type,
'<query>
      <textquery grammar="context">
      <progression>
      <seq>auto consultant</seq>
      <seq>?(auto) and ?(consultant)</seq>
        </progression>
        </textquery>
</query>'
,NULL)>0) AND
contains(cat_type,'?(auto) and ?(consultant)',1)>0
9     23803     AUTO CONSULTANT
9     12790     AUTO CONSULTANTS
9     23804     CONSULTANT FOR AUTO FINANCEi have been using catsearch to use progressive relaxation
there are many "cat_types" like "cat_id" =23803,12790 ,the order of words in a sentence changes
there are upto 10 words in each row of "cat_types" column
among others i have referred
Achieving functionality of many preferences using one context index
and
Re: Fuzzy search - more accurate score??
there is very less possibility of repetition of words in a row
utl match seems to work perfect only when the order of appearance of words is same
if you can suggest a way to get a very close score for cat_id 23803 and 12790 it would be much appreciated
thanks and regards

select *
    FROM   (SELECT score(1),score(2),score(3),score(4),GREATEST (SCORE(1), SCORE(2) - 1, SCORE(3) - 2, SCORE(4) - 3) g_scores,
                  UTL_MATCH.EDIT_DISTANCE_SIMILARITY (CAT_TYPE,'AUTO CONSULTANT') EDS,
                  CAT_ID, CAT_TYPE
              FROM   category_match
              WHERE  CONTAINS (cat_type, 'solar water heater* 10 * 10', 1) > 0
              OR     CONTAINS (cat_type, 'NEAR ((?solar, ?water ,?heater), 0, TRUE) * 10 * 10', 2) > 0
             OR     CONTAINS (cat_type, 'NEAR ((?solar, ?water ,?heater), 0, FALSE) * 10 * 10', 3) > 0
             or     CONTAINS (CAT_TYPE, '(?solar AND ?water AND ?heater) * 10 * 10', 4) > 0
             order  by g_scores desc, EDS desc)
   WHERE  ROWNUM<100
100     100     100     100     100     23     4                  SOLAR WATER HEATER-ANU
100     100     100     100     100     22     26901          SOLAR WATER HEATER SUDARSHAN SAUR
100     100     100     100     100     21     30                  SOLAR WATER HEATER INDUSTRIAL
100     100     100     100     100     20     17379          SOLAR WATER HEATER DEALERS-TATA
100     100     100     100     100     20     26906          SOLAR WATER HEATER NUETECH
100     100     100     100     100     20     11465          SOLAR WATER HEATER DEALERS-ANU
100     100     100     100     100     20     21                  SOLAR WATER HEATER-ZING TATA BP
100     100     100     100     100     20     11463          SOLAR WATER HEATER MANUFACTURERS-ANU
100     100     100     100     100     19     8                  SOLAR WATER HEATER MANUFACTURERS
100     100     100     100     100     19     23                  SOLAR WATER HEATER EVACUATED TUBE
100     100     100     100     100     19     49                  SOLAR WATER HEATER-HOTMAX NOVA TATA BP
100     100     100     100     100     19     13357          SOLAR WATER HEATER INDUSTRIAL DEALERS
100     100     100     100     100     18     16300          SOLAR WATER HEATER-TECHNOMAX
100     100     100     100     100     18     9                  SOLAR WATER HEATER DEALERS-TATA BP
100     100     100     100     100     18     20                  SOLAR WATER HEATER-ZING
100     100     100     100     100     18     18                  SOLAR WATER HEATER-ORB SOLAR
100     100     100     100     100     18     22552          SOLAR WATER HEATER-KOTAK URJA
100     100     100     100     100     18     26908          SOLAR WATER HEATER SUPREME
100     100     100     100     100     17     26907          SOLAR WATER HEATER TECHNOMAX"
100     100     100     100     100     17     13322          SOLAR WATER HEATER DISTRIBUTORS
100     100     100     100     100     17     22                  SOLAR WATER HEATER-ETC TATA BP
100     100     100     100     100     17     48                  SOLAR WATER HEATER-VAJRA PLUS TATA BP
100     100     100     100     100     17     27084          SOLAR WATER HEATER SALES
100     100     100     100     100     16     16236          SOLAR WATER HEATER DEALERS-RACOLD
100     100     100     100     100     16     15                  SOLAR WATER HEATER-NUTECH
100     100     100     100     100     16     1                  SOLAR WATER HEATER DEALERS
100     100     100     100     100     15     2                  SOLAR WATER HEATER DEALERS-TATA BP SOLAR
100     100     100     100     100     15     31                  SOLAR WATER HEATER DOMESTIC
100     100     100     100     100     15     13                  SOLAR WATER HEATER DEALERS-V GUARD
100     100     100     100     100     14     17                  SOLAR WATER HEATER-KAMAL SOLAR
100     100     100     100     100     13     11467          SOLAR WATER HEATER DEALERS-GILMA
100     100     100     100     100     13     19                  SOLAR WATER HEATER-GILMA
100     100     100     100     100     13     10                  SOLAR WATER HEATER REPAIRS & SERVICES-TATA SOLAR
100     100     100     100     100     12     10578          SOLAR WATER HEATER
100     100     100     100     100     11     3                  SOLAR WATER HEATER REPAIRS & SERVICES
0      0     100     100     98     25     10120          WATER HEATER SOLAR INDUSTRIAL
0      0     100     100     98     20     12953          WATER HEATER SOLAR-RACOLD
0      0     100     100     98     17     10119          WATER HEATER SOLAR RESIDENCIAL
{code}
the query is working accurately technically
but is there any way to get 10578 on top
the requirement is
---first
solar water heater
solar water heater dealers
solar water heater manufacturers
solar water heater distributors
solar water heater sales
solar water heater repairs and servicing
---followed by
SOLAR WATER HEATER REPAIRS & SERVICES-TATA SOLAR
SOLAR WATER HEATER-KAMAL SOLAR
SOLAR WATER HEATER DEALERS-TATA BP SOLAR   etc etc
so if the end user types in "solar water" the top row would have a row from the table that has what the end user has entered followed by "dealers" or "manufacturers" or "distributors" or "sales" or "repairs and servicing"
so if a row contains "solar water dealer" it shows up on top
or(if "solar water dealer" is not there and "solar water manufacturers" or  "solar water distributors" etc is not present)
a row from the table that has what the end user has entered PLUS "heater" followed by "dealers" or "manufacturers" or "distributors" or "sales" or "repairs and servicing"
so "solar water heater dealers" shows up on top
these words - "dealers" , "manufacturers" , "distributors" , "sales" , "repairs and servicing"  etc remain constant
what i am using right now is
{code}
create or replace
procedure HOME_OLD
p_cat_type in varchar2,
P_LOC IN NUMBER,
P_MAX IN NUMBER,
P_MIN IN NUMBER,
P_OUT OUT SYS_REFCURSOR
as
VARIAB varchar2(500);
VARIAB2 varchar2(500);
VARIAB3 varchar2(500);
VARIAB4 varchar2(500);
begin
--VARIAB2:='?'||replace(P_CAT_TYPE,' ',', ?');
--VARIAB3:='?'||replace(P_CAT_TYPE,' ',' ?');
--DBMS_OUTPUT.PUT_LINE(VARIAB2);
--DBMS_OUTPUT.PUT_LINE(VARIAB3);
SELECT stragg(cat_id) into variab
   FROM   (SELECT GREATEST (SCORE(1), SCORE(2) - 1, SCORE(3) - 2, SCORE(4) - 3) score,
                                  CAT_ID, CAT_TYPE
              FROM   category_match
              -- exact words in order:
              WHERE  CONTAINS (cat_type,get_basic(P_CAT_TYPE), 1) > 0
              -- similar words next to each other in order:
              OR     CONTAINS (cat_type, get_near_syntax(P_CAT_TYPE), 2) > 0
             -- similar words next to each other in any order:
             OR     CONTAINS (cat_type, get_near_syntax_desc(P_CAT_TYPE), 3) > 0
             -- similar words anywhere in any order:
             OR     CONTAINS (cat_type, get_anywhere(P_CAT_TYPE), 4) > 0
             order  by score desc)
   where  rownum < 3;
DBMS_OUTPUT.PUT_LINE(VARIAB);
open p_out
   FOR select * from(select rownum r,name,address1,telephone,mobile,CAT_TYP,cat_id,
(case when  address2=p_loc and ACT_STATUS='Y'  then '1' when  address2=p_loc  then '2' when address2 in
(select NEARBY_LOC from NEAR_BY where LOCALITY_ID=p_loc) and ACT_STATUS='Y' 
then '3' when ADDRESS2 in (select NEARBY_LOC from NEAR_BY where LOCALITY_ID=p_loc)
then '4' when ACT_STATUS='Y' and address2<> p_loc then '5' else '6' end) as marker
  FROM TEST_TEST
  WHERE
  CAT_ID in(select * from table(STRING_TO_TABLE_NUM(variab))) and rownum<P_MAX order by marker) where r>P_MIN;
IF VARIAB IS NULL THEN
OPEN P_OUT
   FOR SELECT * FROM(SELECT rownum r,name,address1,telephone,mobile,CATS
   FROM   (SELECT GREATEST (SCORE(1), SCORE(2) - 1, SCORE(3) - 2, SCORE(4) - 3) score,
                                  NAME,ADDRESS1,TELEPHONE,MOBILE,CATS
              FROM   TEST_TEST2
              -- exact words in order:
              WHERE  CONTAINS (NAME,get_basic(P_CAT_TYPE), 1) > 0
              -- similar words next to each other in order:
              OR     CONTAINS (NAME, get_near_syntax(P_CAT_TYPE), 2) > 0
             -- similar words next to each other in any order:
             OR     CONTAINS (NAME, get_near_syntax_desc(P_CAT_TYPE), 3) > 0
             -- similar words anywhere in any order:
             OR     CONTAINS (NAME, get_anywhere(P_CAT_TYPE), 4) > 0
             ORDER  BY SCORE DESC)
   WHERE  ROWNUM < P_MAX)where r>P_MIN;
END IF;
end home_old;
{code}
the flow is to find what the end user has entered in category table ,if a match exists,find all reg_ids from test_test materialized view that have selected the matched cat_id..
the test_test materialized view lists each company cat_id-selected-by-that-company number of times 
if no match is found in category table what the end user has entered could be a company so  a search in name column of test_test2 materialized view..
this materialized view has one entry for each  company
{code}
create or replace
FUNCTION GET_BASIC(P_CAT_TYPE VARCHAR2)
    RETURN VARCHAR2
  is
  VARIAB2 VARCHAR2(3000);
      begin
VARIAB2:='{'||P_CAT_TYPE||'}*10*10'; 
return(VARIAB2);
END;
create or replace
FUNCTION GET_NEAR_SYNTAX(P_CAT_TYPE VARCHAR2)
    RETURN VARCHAR2
  is
  VARIAB2 VARCHAR2(3000);
      begin
VARIAB2:='NEAR((?{'||replace(P_CAT_TYPE,' ','}, ?{')||'}),10,TRUE)*10*10'; 
return(VARIAB2);
END;
create or replace
FUNCTION GET_NEAR_SYNTAX_DESC(P_CAT_TYPE VARCHAR2)
    RETURN VARCHAR2
  is
  VARIAB2 VARCHAR2(3000);
      begin
VARIAB2:='NEAR((?{'||replace(P_CAT_TYPE,' ','}, ?{')||'}),10,FALSE)*10*10'; 
return(VARIAB2);
END;
{code}
can anything be done to ameliorate this whole flow
can anything be done to eliminate the near_by and act_status and locality checking in ordering by "marker" clause
below is the materialized view creation ddl
SELECT IN_V.REG_ID,
    IN_V.NAME,
    IN_V.TELEPHONE,
    IN_V.MOBILE,
    IN_V.ADDRESS1,
    IN_V.ADDRESS2,
    IN_V.ACT_STATUS,
    resec.cat_id,
    UPPER(STRAGG(IN_V.CAT_TYPE)) AS cat_typ
  FROM
    (SELECT RSC.REG_ID,
      R.NAME,
      RSC.CAT_ID,
      C.CAT_TYPE,
      R.ADDRESS1,
      R.ADDRESS2,
      R.ACT_STATUS,
      R.TELEPHONE,
      R.MOBILE,
      ROW_NUMBER() OVER (PARTITION BY RSC.REG_ID ORDER BY rsc.reg_id) AS TT
    FROM REG_SEG_CAT RSC,
      category C,
      REGISTRATION R
    WHERE C.CAT_ID=RSC.CAT_ID
    AND R.REG_ID  =RSC.REG_ID
    ) IN_V,
    REG_SEG_CAT RESEC
  WHERE in_v.reg_id=resec.reg_id
  AND IN_V.TT      <6
  GROUP BY IN_V.REG_ID,
    IN_V.NAME,
    IN_V.TELEPHONE,
    IN_V.MOBILE,
    IN_V.ADDRESS2,
    IN_V.ACT_STATUS,
    IN_V.ADDRESS1,
    resec.cat_id;
  and sql>desc test_test
REG_ID
NAME
TELEPHONE
MOBILE
ADDRESS1
ADDRESS2
ACT_STATUS
CAT_ID
CAT_TYP
please let me know if you need more info
Edited by: 946207 on Apr 19, 2013 6:22 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Since loading IOS 7.0.4, the images and letters/words on my ipad Mini are fuzzy and less clear. It appears the revised IOS has created this degradation to clarity and sharpness. Anyone else seeing this problem?

    My ipad mini display, including letters/words, was crystal clear until the last software upgrade. Now everything is fuzzy and less clear. I'm reading many complaints about this on the Internet forums. Since I read a lot of books on my ipad , this is particularly irritating. Anyone else seeing this issue?

    Hi Fitz,
    Welcome to the Support Communities!
    I found adjusting the size, boldness and contrast settings on the iPad mini were very helpful.
    Here is a link to the information in the iPad User Guide on page 112:
    manuals.info.apple.com/MANUALS/1000/MA1595/en_US/ipad_user_guide.pdf
    Large, bold, and high-contrast text
    Display larger text in apps such as Calendar, Contacts, Mail, Messages, and Notes. Go to Settings > General > Accessibility > Larger Type, where you can turn on Larger Dynamic Type and adjust the font size.
    Display bolder text for items on iPad. Go to Settings > General > Accessibility and turn on Bold Text.
    Increase the contrast of text where possible. Go to Settings > General > Accessibility and turn on Increase Contrast.
    I hope this information helps ....
    Have a great day!
    - Judy

  • Firefox 16.0 and the last 15.0.1 I had issues with yahoo mail page turning fuzzy and an error message firefox is unresponsive. Page froze up and could not close

    I signed into yahoo mail okay. what happens is after I open my mail the past two days all of a sudden the page would get fuzzy and I couldn't read anything or it would turn white. This never happened before and I looked at the top of the browser and it said mozilla firefox is unresponsive. I tried signing out and nothing worked. I tried minimizing the page and closing it manually and it would not let me. I tried deleting cookies and what happened it that the temporary files kept deleting for about five minutes. it was very upsetting. I have no idea what is causing this. Even when I went to control panel-internet options-delete cookies it sometimes went unresponsive. that's a first. any advise is helpful

    Firefox keeps its own temporary files and cookies, separate from the ones stored by IE which you can manage through the Windows menu. If you haven't already done the following, please give it a try:
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove your yahoo.com cookies (save any pending work first) using either of these:
    * While viewing a page on the site, right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help at all?
    When Yahoo goes blank or fuzzy moving to a different task, it may be doing some kind of animated transition. Have you noticed any graphics or font rendering anomalies?
    Try disabling Firefox's hardware acceleration of graphics. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You usually need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    orange Firefox button ''or'' classic Tools menu > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    If you restart Firefox, is the issue improved?

  • Process Order Basic Finish Date and Scheduled Finish Date

    Folks,
    I have a requirement from the business to be able to update the Process Order Basic Finish Date and Scheduled Finish Date independently from each other.
    In other words, update the Basic Finish Date and the Scheduled Finish Date cannot change or update the Scheduled Finish Date and the Basic Finish Date cannot change.
    I believe the reason for this is to be able to use the Basic Date to maintain the ATP accurately and keep the Scheduled Date to mark when the order was originally due from the shop floor to be able to measure if orders are being completed on time or late.
    I have worked in tnx OPUZ and had some success with other issues with these dates but I can't seem to make them work independently from each other.
    Or does anyone have any ideas how to measure proces order performance to the production schedule?
    Thank you for your help,
    Greg

    Rajesha, thank you for your reply but it doesn't solve my problem.
    Let me restate my scenario:
    I start a process order and both the basic and scheduled finish dates are the same, June 1.
    At some point, shop floor tells me they will be late and cannot deliver until June 15.
    I need to update a date in the system so the ATP and the MRP planning runs have correct information for promising customers, I will update the Basic Finish date with June 15.
    I also need to keep the original June 1 date in order to measure the shop floor performance to the production schedule to measure how early or late the  order was delivered. How can I keep the original finish date or how can I measure if a process order is early or late??
    Thank you for your help,
    Greg

  • Color touchscreen is fuzzy and not in color

    color touchscreen is fuzzy and not in color

    Please follow the instructions here in order and answer all questions in detail.
    http://h30434.www3.hp.com/t5/Printer-Networking-and-Wireless/Want-Good-Answers-Ask-Good-Questions/td...
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • DOC should be a normal Word document and we should be able to define the header style

    Hi Team,
    We are facing a issue with the pre assigned headers assigned by Adobe acrobat Pro Xl.
    Our actual requirement is as follows:
    1. As we convert a PDF to DOC there shouldn't be any pre assigned headers (header levels defined).
    2. DOC should be a normal Word document and we should be able to define the header style.
    We have tried working out on the same but nothing is going our way.
    We tried couple of step which are as follows:
    1. Deleting pre assigned TAG's.
    2. Clearing headers with the help of Touch Up Reading Order Tool (TURO).
    Request you to kindly revert on the same.

    1. As we convert a PDF to DOC there shouldn't be any pre assigned headers (header levels defined).
    You cannot control how Acrobat creates the word file.
    2. DOC should be a normal Word document and we should be able to define the header style.
    The word file is a normal Word document file. You may wish it was designed for it to be easiest to edit. Acrobat is making a Word file to most reliably resemble the original pdf file. I have no trouble creating any header style I want. The text in the header frequently consists of text boxes. Acrobat does this to insure accurate representation of the pdf file.

  • I have word, iTunes, and other application that starts automatically when I start my laptop and how can i change start up options?

    I have word, iTunes, and other application that starts automatically when I start my laptop and how can i change start up options?

    Go to System Preferences / Accounts - Login Items.
    In order to make changes, click the lock icon bottom left corner of the pane. You may be prompted for your admin password.
    Select the apps you don't want to launch on startup then click - (minus).

  • Hi I have a MacBook Pro 2011 i7 and it stays on for about 4 hours then the screen go's fuzzy and I have to turn it off by the power button has anyone had this problem thanks mike

    I Have a MacBook Pro i7 2011 it stays on for about 4 hours then the screen go's all fuzzy and I have to turn it off by the power button has any body else had this problem thanks mike

    My guess would also be a failling connection between your logicboard and your GPU. See 2011 MacBook Pro and Discrete Graphics Card
    For most users it starts with some random crashes and freezes like you describe it. And then it just gets worse and worse. There are still no "good" solutions, sadly. This is a hardware problem from the production.

  • Report to Purchase Orders with Good Receipt and pending for Invioce Receipt

    Hello,
    I'm looking a report bring me Purchase Orders with Goods Receipt and waiting for Invioce Verificacion (MIRO).
    I appreciate any help.
    Regards,
    Hector

    Hi,
    ME2N - In selection screen, enter Selection parameters as
    WE102 i.e. Goods receipt exists and in output screen put a filter on "Still to be invoiced (qty)" and "Still to be invoiced (val.)" as not equal to zero OR greater than Zero.
    OR use RECHNUNG i.e. Open invoices and execute the report
    OR Use MB5S - GR/IR Balances

  • Report Internal Order needed - showing Plan and Budget Values?

    Hello,
    I want to create a report (Report Writer/Painter) which shows for example in one column the planned values and in another column the budget value of an order group.
    I know the standard reports S_ALR_87012993 - Orders: Actual/Plan/Variance and the other standard report S_ALR_87013019 - List: Budget/Actual/Commitments.
    My question: Is it possible at all to have these both values plan and budget by order/order group in one report? - Or it is not possbile because these values are stored in different tables and different libraries?
    If it is possible with Report Writer, I would be very glad - if not, is there any other chance (e.g. individual programmed report)?
    For any comments or hints thank you in advance.
    Regards,
    VCG

    HI,
    both are report painter reports for libraries 6O1 and 6O2 which are based on reporting tables CCSS and RWCOOM.
    Try to find all value fields that you need in 6O2 / RWCOOM as this is the "big brother" of 6O1/ CCSS.
    Best regards, Christian

  • Why is does my apple run SLOW.you go to open a program and the circle thing just spins for a delayed period of time.  You change from typing in a word doc and go to say email or internet and it takes several minutes to allow you open anything up.  Like it

    Why is does my apple run SLOW.you go to open a program and the circle thing just spins for a delayed period of time.  You change from typing in a word doc and go to say email or internet and it takes several minutes to allow you open anything up.  Like it is frozen.  I have tried rebooting the computer and it works for a few minutes then gets stuck.

    Which model iMac do you have?
    How large is your HD and how much space do you have left?
    Check out the following & do the necessary: 
    User Tip:  Why is my computer slow?
    What to do when your computer is too slow
    Speeding up your Mac
    OS X (10.6.6)
    Use Software Update or the OS 10.6.8 combo update to update your OS.  Also, update everything SU has to offer for your computer.  When done, repair permissions and restart your computer.

  • How to get all open sales orders of a customer and also account group

    I want to know the logic to find all open sales orders of a customer and also account group

    Hi,
    You can check the status weather a Sales order is Open or not by checking its billing status form the following:
    Check table VBUK and VBUP for delivery status "LFSTK" and billing status "FKSTK".
    Rward points if helpful answer.
    Ashven

  • Purchase Order released date field and table name

    Hi,
    Please tell me the  Purchase Order released date field and table name.
    Regards
    Deepak

    Hi,
    Table : EKKO.
    Fields : FRGKE,FRGZU.
    You can get release date of PO from CDHDR  table.
    give object value as your po number and check.dont forget to give leading zeros.
    The udate will be date field and transaction will be me29n for relaesed po.

  • Using PowerShell to Copy the content of a Word Document and Paste that content into a New Message in Outlook

    So, I'm a little new to PowerShell and I came across a PowerShell which allow me to copy the content od a spreadsheet, into the new message in Outlook 2007.  I have search and search on a way to do the same with a Word Document.  I would like to
    create a PowerShell Script that copies the content of a Word Document and paste that content in an email message.
    I am basing my script on this
    #Create and get my Word Obj
    $w1 = New-Object  -comobject Word.Application
    $w1.Visible = $True
    $UserWord = $w1.Workbooks.Open("C:\Users\hhhh\Documents\Powershell\test.docx")
    #create outlook Object
    $Outlook = New-Object  -comObject  Outlook.Application 
    $Mail = $Outlook.CreateItem(0)
    $Mail.SentOnBehalfOfName = "[email protected]"
    $Mail.Recipients.Add("[email protected]")
    #Add the text part I want to display first
    $Mail.Subject = "Test email"
    $Mail.Body = "My Comment on the Excel Spreadsheet"
    #Then Copy the Word using parameters to format it
    $Mail.Getinspector.WordEditor.Range().PasteExcelTable($true,$false,$false)
    #Then it becomes possible to insert text before
    $wdDoc = $Mail.Getinspector.WordEditor
    $wdRange = $wdDoc.Range()
    $Mail.Display()
    Any Help would be great!

    My requirements are the Word documents are a template of sorts.  The document will be changes prior to its email with some changes.  The other twist is that the customer might more that one recipients, and each recipient will have to have a separate
    email, with the same content of the word document. 
    For example: Say I'm doing maintenance. The Word doc might descript that maintenance, in a set format. Once save the script is run to generate 3 to 10 email with separate recipients with the body of the email containing what was in the Word document.

  • WORD, EXCEL, and POWERPOINT now crashing when saving new file

    I have Microsoft Office 2004 WORD, EXCEL, and POWERPOINT, which were working just fine for several days on 10.5.1. (all updates are current). Now, every time I try to save a new document, all 3 apps crash, with the following thing in common in the crash log:
    0xb80ec881 gettimeofday_wrapper + 37593
    This doesn't happen when opening an existing file, and saving changes to it. Note: A few days ago, I ran Disk Utility to do a permissions repair for another issue - could this have caused this issue?
    Any ideas???
    Thanks,
    Below is the complete crash log from one of the EXCEL crashes:
    Process: Microsoft Excel [144]
    Path: /Applications/Microsoft Office 2004/Microsoft Excel
    Identifier: com.microsoft.Excel
    Version: 070724 (11.3.7)
    Code Type: PPC (Translated)
    Parent Process: launchd [69]
    Date/Time: 2007-11-26 18:33:08.466 -0500
    OS Version: Mac OS X 10.5.1 (9B18)
    Report Version: 6
    Exception Type: EXC_CRASH (SIGILL)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 ??? 0x801a194a 0 + 2149194058
    1 translate 0xb80ec881 gettimeofday_wrapper + 37593
    Thread 1:
    0 ??? 0x800bb8e6 0 + 2148251878
    1 ??? 0x800c30dc 0 + 2148282588
    2 translate 0xb818b69a CallPPCFunctionAtAddressInt + 202826
    3 ??? 0x800ec075 0 + 2148450421
    4 ??? 0x800ebf32 0 + 2148450098
    Thread 2:
    0 translate 0xb8152b0b spinlockwrapper + 92383
    1 translate 0xb817b5d8 CallPPCFunctionAtAddressInt + 137096
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813d2cf spinlockwrapper + 4259
    Thread 3:
    0 translate 0xb8152bc4 spinlockwrapper + 92568
    1 translate 0xb817b2ee CallPPCFunctionAtAddressInt + 136350
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813d2cf spinlockwrapper + 4259
    Thread 4:
    0 translate 0xb8152803 spinlockwrapper + 91607
    1 translate 0xb816e76d CallPPCFunctionAtAddressInt + 84253
    2 translate 0xb80bd6fb 0xb8000000 + 775931
    3 translate 0xb80b6b77 0xb8000000 + 748407
    4 translate 0xb80d4530 0xb8000000 + 869680
    5 translate 0xb813c9e9 spinlockwrapper + 1981
    Thread 5:
    0 translate 0xb815298f spinlockwrapper + 92003
    1 translate 0xb8183603 CallPPCFunctionAtAddressInt + 169907
    2 translate 0xb8186194 CallPPCFunctionAtAddressInt + 181060
    3 translate 0xb80df67b 0xb8000000 + 915067
    Thread 6:
    0 translate 0xb815298f spinlockwrapper + 92003
    1 translate 0xb8183603 CallPPCFunctionAtAddressInt + 169907
    2 translate 0xb8186194 CallPPCFunctionAtAddressInt + 181060
    3 translate 0xb80df67b 0xb8000000 + 915067
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0xb813cb3c ecx: 0xb7fffa6c edx: 0x801a194a
    edi: 0xb81d8794 esi: 0x00000004 ebp: 0xb7fffa98 esp: 0xb7fffa6c
    ss: 0x0000001f efl: 0x00000246 eip: 0x801a194a cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xb8135118
    Binary Images:
    0xb8000000 - 0xb81d7fe7 translate ??? (???) /usr/libexec/oah/translate
    Translated Code Information:
    NO CRASH REPORT

    I just fixed my own issue, based on a posting I saw in one of the other discussions. I did the same thing, by downloading the standalone update and then installing. After the required restart, everything worked fine!!! It seems like there was definitely a problem with the version that was installed via Software Update.

Maybe you are looking for

  • Reading in from File w/out path name

    Does anyone know why netbeans requires an entire path name to read from a file? I am trying to read from a file and I want the program to just look in the directory that the jar file is in to find the file to read from. I do not want the file to be I

  • Final cut pro x Expired

    Hello there i was just working on a movie project as my final cut pro x trail expired. Does anyone know if my project is saved on the computer? If so how do i access it?

  • Job error when registering Azure VM

    Trying to register one of my Azure VMs (Windows 2008R2) with Backup Vault but receiving an error to contact support.  Tried a few times including a reboot of the VM but no luck. JOB ERROR DETAILS: Microsoft Azure Backup encountered an internal error.

  • How to Hide/Remove Name from Photo Stream Public Website?

    I'm using Aperture 3 to share a photo stream on public website and just noticed that my full name is shown at top right corner. Is there a way to hide this for privacy concerns and still share pictures with non-iCloud members?

  • IDoc type for LR Returns delivery

    Hi all, I want to use SHP_OBDLV_SAVE_REPLICA02 IDoc type to distribute LR delivery for a return SO to Decentralized WM. With this IDoc type, I get the error "IDoc type SHP_OBDLV_SAVE_REPLICA02 cannot be processed by  IDOC_OUTPUT_DELVRY" IDoc type DEL