Select Vendors character format only from LFA1

hi ,
I have an internal Table with 53,890  vendors in first column.
the others columns contains vendor descirptions and their address.
for e,g say i have records in  my internal table as follows.
     LIFNR
1)   0000001109
2)   0000001111
3)   0000005581
4)   E-115174
5)   E-115175
6)   E-115176
7)   E-115177
8)   MR84
9)   MR85
10)  MR86
now i want to delete records starting from 1 to 3 as they are number format
but i don't want to delete records from 4 to 10 as they are character format.
i can do that deletion based on number and character formats
using the below code.
*Final Table for Diplsay of Vendors
    LOOP AT t_lfa1 INTO wa_lfa1.
      CALL FUNCTION 'NUMERIC_CHECK'
        EXPORTING
          string_in = wa_lfa1-lifnr
        IMPORTING
          htype     = w_type.
      IF w_type = 'NUMC'.
        DELETE t_lfa1 WHERE lifnr = wa_lfa1-lifnr.
      ENDIF.
    ENDLOOP.
the above code fulfills my requirement but it takes lot of time when moved for testing since there are
53,890 records and DELETE will always increases the index cost and performance problem comes.
My requirement is there any condition we can put in my SELECT syntax where in i can select only
those records in character format

Hi Murali
I don't think that you can do anything in select query for this, instead enhance your current code.
1. For loop, use a field symbol, This will enhance your loop performance as the overhead to copy values into a work area is reduced.
2. Add another field of type CHAR 1 (let's say NUM_CHECK) to declaration of T_LFA1. If you find the vendor as numeric then set this field to X in loop. Do not delete anything in loop.
3) After loop, use DELETE T_LFA1 WHERE NUM_CHECK = 'X'.
This will take lesser time.
Thanks
Anuraag

Similar Messages

  • SSRS Multi Value Parameter-- though multiple checkboxes ie values are selected ,data is retrieved only from first selected checkbox

    Hello Forum Members,
    I have a Multi Valued Parameter as text field.
    Input field Sale_Month is of the type Nvarchar in the Database and has 2014.01,2014.02,2014.05 etc.
    I can multi select the values but when I run the report only values from first check box are retrieved though I have data for all.
    Please advise me.
    Sqlquery9

    Go to tablix properties, under Filter tab make sure that the Sale_Month filter expression has "IN" operator. Also make sure that the value expression has =Parameter!Sale_Month.Value
    Regards, RSingh

  • Displaying non existing vendors from lfa1 table..

    Hi All..
    I have a selection screen range for vendor number: LIFNR.
    I want to display all the vendor numbers that are not present in the LFA1 table.. ( If the user gives the vendor range on the selection screen)..
    Any idea or suggestions on how to approach would be great..
    Thanks a lot..

    OK then , pl try thye following piece of code...
    report  zlif                                    .
    data:  w_num type i.
    data: begin of itab occurs 0,
            lifnr type lifnr,
          end of itab.
    data itab2 like itab occurs 0 with header line.
    data w_lifnr type lifnr.
    select-options: s_lifnr for w_lifnr.
    ranges: r_lifnr for w_lifnr.
    select lifnr into table itab from lfa1.
    find the number of entries
    w_num = s_lifnr-high - s_lifnr-low.
    w_num = w_num + 1.
    do w_num times.
      if sy-index = 1.
        w_lifnr = s_lifnr-low.
      else.
        w_lifnr = w_lifnr + 1.
      endif.
      r_lifnr-sign = 'I'.
      r_lifnr-option = 'EQ'.
      r_lifnr-low = w_lifnr.
      append r_lifnr.
    enddo.
    loop at r_lifnr.
      read table itab with key lifnr = r_lifnr-low.
      if sy-subrc ne 0.
        write:/ r_lifnr-low.
      endif.
    endloop.
    Regards,
    Suresh Datti

  • SAP Standard Text (SO10) Character format in Adobe forms

    Hi Friends
    I created a standradrd text using 'S010' with Few character formats like 'bold' and 'italic' but when created 'Inlude text' element in adobe forms i could see only text coming in pdf output but not the formatting. Is there any way i could get the text character formatting also from standard text to adobe?. I appreciate your help.
    Thanks

    Total Posts:  534 
    Total Questions:  183 (4 unresolved) 
    Forum Points:  0 
    You ask a lot, but never helped a living soul. Why would anybody help you/ do your job?
    By the way the same question was asked a zillion times, so if you would care to search you would not receive this comment.
    Otto

  • Select vendors in character format

    hi ,
    I have an internal Table with 53,890 vendors in first column.
    the others columns contains vendor descirptions and their address.
    for e,g say i have records in my internal table as follows.
    LIFNR
    1) 0000001109
    2) 0000001111
    3) 0000005581
    4) E-115174
    5) E-115175
    6) E-115176
    7) E-115177
    8) MR84
    9) MR85
    10) MR86
    now i want to delete records starting from 1 to 3 as they are number format
    but i don't want to delete records from 4 to 10 as they are character format.
    i can do that deletion based on number and character formats
    using the below code.
    *Final Table for Diplsay of Vendors
    LOOP AT t_lfa1 INTO wa_lfa1.
    CALL FUNCTION 'NUMERIC_CHECK'
    EXPORTING
    string_in = wa_lfa1-lifnr
    IMPORTING
    htype = w_type.
    IF w_type = 'NUMC'.
    DELETE t_lfa1 WHERE lifnr = wa_lfa1-lifnr.
    ENDIF.
    ENDLOOP.
    the above code fulfills my requirement but it takes lot of time when moved for testing since there are
    53,890 records and DELETE will always increases the index cost and performance problem comes.
    My requirement is there any condition we can put in my SELECT syntax where in i can select only
    those records in character format

    HI,
         Declare another internal table and append the record to that internal table instead of deleting regenerating index. Once your other internal table filled clear the contents of the first internal table. see below the sample code, this might help you.
    TYPES : BEGIN OF ty_lfa1,
             lifnr TYPE lfa1-lifnr,
            END OF ty_lfa1.
    DATA : it_lfa1 TYPE TABLE OF ty_lfa1,
           it_lfa2 TYPE TABLE OF ty_lfa1,
            wa_lfa1 TYPE ty_lfa1.
    DATA : w_lifnr TYPE lfa1-lifnr,
           w_type TYPE dd01v-datatype.
    LOOP AT it_lfa1 INTO wa_lfa1.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
        EXPORTING
          input  = wa_lfa1-lifnr
        IMPORTING
          output = wa_lfa1-lifnr.
      CALL FUNCTION 'NUMERIC_CHECK'
        EXPORTING
          string_in = wa_lfa1-lifnr
        IMPORTING
          htype     = w_type.
      IF w_type NE 'NUMC'.
        APPEND  wa_lfa1 TO it_lfa2.
      ENDIF.
    ENDLOOP.
    FREE it_lfa1.
    BREAK-POINT.
    Regards
    Bala Krishna

  • GR to be done against only Inbound delivery for selected vendors

    GR to be done against only Inbound delivery for selected vendors. If the user putsthe combination " Goods Receipt+ Purchase Order+ Purchase Order Number " in MIGO , the error should be displayed as "Create MIGO with Ref to ASN"
         At the time of MIGO, when user put the combination of Goods Receipt+ Purchase Order and purchase order number, BADI will activate.
         BADI will search the vendor code from the entered purchase order in the Z table in which user maintain the vendor codes.
         If BADI finds the vendor code in the Z table then, will give error as u201CPlease create inbound delivery firstu201D.
         If BADI does not find the vendor code in Z table then it will inactive.
         In short we are restricting the selected vendor for MIGO with reference to PO.

    Hi,
    If u had used confirmation control key (0001) - In Item details of PO, as per standard SAP u cannot proceed for GR without inbound delivery. Otherwise use MB_MIGO_BADI. Thanking you

  • Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the rows? Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the records?
    Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    The Oracle documentation has a good overview of the options available
    Generating XML Data from the Database
    Without knowing your version, I just picked 11.2, so you made need to look for that chapter in the documentation for your version to find applicable information.
    You can also find some information in XML DB FAQ

  • Vendor batch is retrieved from LIPS-LICHN only if LIPS-LICHN is not blank,

    (Current design)
    Batch is retrieved from LIPS-CHARG
    Vendor batch is retrieved from LIPS-LICHN
    (If there is no record in LIPS, blank will be printed out for both fields)
    REQUIREMENT:
    Batch is retrieved from LIPS-CHARG
    Vendor batch is retrieved from LIPS-LICHN only if LIPS-LICHN is not blank.
    If LIPS-LICHN is blank, vendor batch is retrieved from LIPS-CHARG.
    (If there is no record in LIPS, blank will be printed out for both fields. If both LIPS-CHARG and LIPS-LICHN are blank, blank will be printed out for both fields)
    t-lips is the internal table :
    DATA: BEGIN OF t_lips OCCURS 0,
             vbeln LIKE lips-vbeln, "Delivery document no
             posnr LIKE lips-posnr, "Item number for Delivery document
             charg LIKE lips-charg, "Batch number
             lichn LIKE lips-lichn, "Vendor Batch number
          END OF t_lips.
    Following is the piece of code:
    *&      Form  f_collect_final
          Routine to collect all the display data into the final internal
          table t_display.
    FORM f_collect_final.
      DATA: l_std_pac_no LIKE eket-menge,
            l_std_pac_no_out(13) TYPE p,
            l_tot_std_pt(13) TYPE c,
            l_rmdr(13) TYPE n,
            l_qtnt(13) TYPE n,
            l_tabix TYPE i.
      LOOP AT t_eket.
        t_display-ebeln = t_eket-ebeln.
        t_display-ebelp = t_eket-ebelp.
        t_display-etens = t_eket-etens.
        t_display-eindt = t_eket-eindt.
        t_display-menge = t_eket-menge.
        t_display-meins = t_eket-meins.
        t_display-matnr = t_eket-matnr.
    mod begin CR1591
       t_display-maktx = t_eket-maktx.
        READ TABLE t_makt WITH KEY matnr = t_eket-matnr
                          BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-maktx = t_makt-maktx.
        ENDIF.
    mod end CR1591
        t_display-vpnam = t_eket-vpnam.
        t_display-lifnr = t_eket-lifnr.
        t_display-charg = t_eket-charg.
        READ TABLE t_mlgn WITH KEY matnr = t_eket-matnr
                                          BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-lhmg1 = t_mlgn-lhmg1.
          t_display-lhme1 = t_mlgn-lhme1.
          t_display-lety1 = t_mlgn-lety1.
          t_display-ltkze = t_mlgn-ltkze.
        ENDIF.
        READ TABLE t_marm WITH KEY matnr = t_eket-matnr
                                               BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-umrez = t_marm-umrez.
          t_display-meinh = t_eket-meins.
        ENDIF.
        READ TABLE t_marc WITH KEY matnr = t_eket-matnr
                                             BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-zzjp_nyu_sop = t_marc-zzjp_nyu_sop.
          t_display-zzjp_dos_frm = t_marc-zzjp_dos_frm.
          t_display-zzjp_aprn    = t_marc-zzjp_aprn.
          t_display-zzjp_re1     = t_marc-zzjp_re1.
        ENDIF.
        READ TABLE t_lfa1 WITH KEY lifnr = t_eket-lifnr
                                          BINARY SEARCH.
        IF sy-subrc = 0.
          t_display-name1 = t_lfa1-name1.
        ENDIF.
        READ TABLE t_lips WITH KEY vbeln = t_eket-vbeln
                                   posnr = t_eket-vbelp
                                   BINARY SEARCH.
        l_tabix = sy-tabix.
        IF sy-subrc = 0.
          t_display-charg = t_lips-charg.(I think this is the place to change).
         t_display-lichn = t_lips-charg.
        ENDIF.
    I have tried with the following code, but it is not working.
    IF sy-subrc = 0.
          t_display-charg = t_lips-charg.
    IF not t_lips-lichn is initial.
         t_display-lichn = t_lips-lichn.
        ELSE.
       t_display-lichn = t_lips-charg.
        ENDIF.
    ENDIF.

    Hi,
    Find the modification below, consider the bold text and remove the old one:
    READ TABLE t_lips WITH KEY vbeln = t_eket-vbeln
    posnr = t_eket-vbelp
    BINARY SEARCH.
    l_tabix = sy-tabix.
    IF sy-subrc = 0.
    <b>if t_lips-lichn EQ space AND
    t_lips-charg NE space.
    t_display-charg = t_lips-charg.
    t_display-lichn = t_lips-charg.
    endif.</b>
    <i>t_display-charg = t_lips-charg.(I think this is the place to change).
    t_display-lichn = t_lips-charg.</i>ENDIF.

  • Limit users to execute "SELECT" statemes only from SQL Developer

    Hi:
    Is there a way to control what SQL command can be executed from SQL Developer?
    I am trying to limit users to execute "SELECT" statements only from SQL Developer.
    I believe SQL*Plus used to have the product profile where I can control what SQL command can be executed from what user.
    Thanks in advance.

    There's nothing special in sqldev to enforce privileges, the database does all that already. See the database documentation on the GRANT and REVOKE statements. Basically, you would only want to grant SELECT privileges to your users...
    Have fun,
    K.

  • SELECT on year month only in '2013-Jan' format?

    Hi,
    is there a way of selecting on year month only in sql when the format of the date passed is '2013-Jan'. I'm not sure at the moment if I have any control of the date format passed so wanted to explore the sql options.
    using sql server 2008 r2
    thanks,

    Since SQL is a database language, we prefer to do look ups and not calculations. They can be optimized while temporal math messes up optimization. A useful idiom is a report period calendar that everyone uses so there is no way to get disagreements
    in the DML. The report period table gives a name to a range of dates that is common to the entire enterprise. 
    CREATE TABLE Something_Report_Periods
    (something_report_name CHAR(10) NOT NULL PRIMARY KEY
       CHECK (something_report_name LIKE <pattern>),
     something_report_start_date DATE NOT NULL,
     something_report_end_date DATE NOT NULL,
      CONSTRAINT date_ordering
        CHECK (something_report_start_date <= something_report_end_date),
    etc);
    These report periods can overlap or have gaps. I like the MySQL convention of using double zeroes for months and years, That is 'yyyy-mm-00' for a month within a year and 'yyyy-00-00' for the whole year. The advantages are that it will sort with the ISO-8601
    data format required by Standard SQL and it is language independent. The pattern for validation is '[12][0-9][0-9][0-9]-00-00' and '[12][0-9][0-9][0-9]-[01][0-9]-00'
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking in
    Sets / Trees and Hierarchies in SQL
    Dear Celko,
    You replied with this exact same answer, word for word, over three weeks ago. Look further up the thread of replies.
    Thanks.

  • TS1347 IPhone5 on 6.1.4 - missing named contacts on contact list. Can see missing named contacts when messaging, but when selected come up as only phone numbers in the sent to window. What is resolution? Can I sync only contact list from to iTunes backup?

    IPhone5 on 6.1.4 - missing named contacts on contact list. Can see missing named contacts when messaging, but when selected come up as only phone numbers in the sent to window. What is resolution? Can I sync only contact list from to iTunes backup?

    Just to recap, this is a collection of ports I have collected over time for people who needed this information when setting up the HP ePrint app so that they could view their email from within the app.  I am certain other applications also need this information.  Although lengthy, I could not find a more comprehensive place to retrieve this information.  Feel free to post additional information, faulty information, or other related topics below as this is simply a collection of data and it would be practically impossible to test all of them. Thank you!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • How can I set Firefox 8.0 to accept 3rd party cookies ONLY from selected sites but NOT from any other sites?

    I do not like to accumulate 3rd party cookies and would simply not check the Accept 3rd Party Cookies box in Preferences. BUT in order to use my bank's web page I have to accept 3rd party cookies from a separate site that manages some of their transactions (like paying bills). This means I have to accept 3rd party cookies and then delete them by hand OR I have to check the accept box each time I use the bank's website and then uncheck it when I am done.

    Thanks, but that is not what I was trying to do. I do not want to block cookies from a single site. I do not want to block all 3rd party cookies.
    What I want to do is ACCEPT 3rd party cookies only from ONE site but NOT from any other site.

  • Problem on Chinese subtitle - missing some character when import from STL

    Dear All,
    I have a problem when I import the Chinese subtitle from STL file. Both Traditional and Simplified Chinese on separate file.
    The STL is in correct format and coding. The file can be imported but some of the character were missing from the very beginning of most sentences. I do not know what it going on. I also tried other coding but they only show garbage.
    I tested as again and again with different combination and I retype few sentences again but they show the same result.
    Is there anyone facing this problem before? Please help!
    I am using the Final Cut Studio.
    Below is my STL file with some example sentence for reference.
    //Font select and font size
    $FontName = DFHeiBold-B5
    $FontSize = 40
    //Character attributes (global)
    $Bold = TRUE
    $UnderLined = FALSE
    $Italic = FALSE
    //Position Control
    $HorzAlign = Center
    $VertAlign = Bottom
    $XOffset = 0
    $YOffset = 0
    //Contrast Control
    $TextContrast = 15
    $Outline1Contrast = 15
    $Outline2Contrast = 10
    $BackgroundContrast = 0
    //Effects Control
    $ForceDisplay = FALSE
    $FadeIn = 0
    $FadeOut = 0
    //Other Controls
    $TapeOffset = FALSE
    //$SetFilePathToken = <<:>>
    //Colors
    $ColorIndex1 = 3
    $ColorIndex2 = 1
    $ColorIndex3 = 1
    $ColorIndex4 = 3
    //Subtitles
    00:00:23:13,00:00:27:01,自有人類社會以來,便有教育
    00:00:27:02,00:00:29:08,任何一個人類社會…
    00:00:29:09,00:00:31:03,任何動物都需要…
    00:00:31:04,00:00:35:19,將各種技能傳給下一代
    00:00:35:20,00:00:40:05,獅子獵食,以至人的各種生活方式
    00:00:40:06,00:00:43:24,這個便是教育的基本意義
    00:00:44:00,00:00:47:00,至於學校教育的功能
    00:00:47:01,00:00:49:08,便是當人類社會變得愈來愈複雜
    00:00:49:09,00:00:53:08,已不能單靠在家庭內教導小朋友
    00:00:53:09,00:00:56:10,遂獨立出現一個制度名為學校制度
    00:00:56:11,00:00:59:14,有正規的課程、正規的結構
    00:00:59:15,00:01:00:23,教育下一代
    00:01:02:15,00:01:04:14,在現今的教育制度下
    00:01:04:15,00:01:07:00,可說是人人都要讀書
    00:01:07:01,00:01:09:19,回學校上課,學習各種知識
    00:01:09:20,00:01:11:02,對於學生來說
    00:01:11:03,00:01:13:20,可能都是理所當然的
    00:01:13:21,00:01:17:06,但是古代的教育情況又是怎樣呢?

    Tony,
    try to add a space before each line of text in STL file. That should do the trick. Of course your encoding should be UTF-16.

  • How do I get "CO" variable 01 to 67 in character format?

    Post Author: Dennis Hernan
    CA Forum: Data Connectivity and SQL
    I have 2 databases. "DBA"."RMS_A0_SEGMENT" & "DBA"."RMS_G0_SEGMENT". The A0 segment has a CNTY variable. We create table B from A only to create SELYEAR & CO. SELYEAR is numeric because it is "2007 as". CO is numeric because it is "CNTY as". The values in CNTY are 1 to 67 numeric. How do I get "CO" variable 01 to 67 in character format?
    Is this standard SQL or would you call it Crysal SQL format? Select "B"."CNTY", "B"."SR", "B"."SEG", "B"."FED_AID",         "B"."TBK_CODE", "B"."PAVE_CYC", "B"."SURFACE",  "B"."LENGTH",         "B".SELYEAR, "C"."KEY_YEAR", "C"."SEG", "C"."SR", "C"."CNTY", "C"."SLDSTATU", "B"."CO" FROM (SELECT "A"."CNTY", "A"."SR", "A"."SEG", "A"."FED_AID",         "A"."TBK_CODE", "A"."PAVE_CYC", "A"."SURFACE",  "A"."LENGTH",         2007 as SELYEAR, CNTY as CO             FROM   "DBA"."RMS_A0_SEGMENT" "A") "B" LEFT JOIN "DBA"."RMS_G0_SEGMENT"  "C"  ON ("B"."SEG" = "C"."SEG") AND ("B"."SR" = "C"."SR") AND ("B"."CNTY" = "C"."CNTY") AND         ("B".SELYEAR = "C"."KEY_YEAR")

    Post Author: Dennis Hernan
    CA Forum: Data Connectivity and SQL
    Here's a simple example: SELECT "A"."A01_CTY_CDE", "A"."DIST_CODE","A"."CTY_NAME", A01_CTY_CDE AS CO NUMERIC(2) FROM SYSADM.CNTY_DIST_XREF "A" I'm trying to create the CO variable numeric(2) from the A01_CTY_CDE which is character(2). The values in A01_CTY_CDE are 1 to 67 character, I need CO to be numeric to merge with another linked table. "I am using the Add Command In Database Expert". I need 4 variables when this is done in the Command Database, A01_CTY_CDE, DIST_CODE,CTY_NAME all charater from the original database "SYSADM.CNTY_DIST_XREF". Also I'm trying & need your help, to create a variable CO with a numberic format, and the values equal to the A01_CTY_CDE variable. Call If you like, Dennis, 717.787.7293.

  • Character Formats showing up in TOC

    TOC entries for, say, "Heading4", are nominally controlled by the paragraph format of the generated "Heading4TOC" format.
    Sometimes the body narrative will have local mods to the Heading4 text. Depending on what you're doing, you may want those mods to show up in the TOC, or you may not. In my case, I did not, and was surprised to see a TOC entry show up in color.
    It turns out that if you apply a Character Format to text used for TOC (and perhaps IX, LOF etc) generation, that ChrFmt is retained when rendering the TOC.
    So if you want the local enhancement to appear in the TOC, use Chr Fmt. I verified this by setting a heading word to Character Format "Symbol" (which applies the Symbol font`, all else As-Is). The TOC entry had that word in Symbol glyphs.
    if you don't want the local enhancement to appear in the TOC, use local overrides. I verified this by just doing a Format > Font > Symbol on the same word of the heading. The TOC entry had that word in roman.
    In my case, I have a table imported (as EPS) from a spreadsheet. I want the table title to appear in TOC, but of course Frame can't "see" that text. So the anchor line is that title in Heading4, which does appear in TOC. This particularly H4 has a local color override that is set invisible via Color Views. I want the TOC entry to be visible, but the Heading4 text in the body to be invisible. This works if the Heading4 has the invisible color applied with the graphics tools. It doesn't work if I use an invisible text Character Format.
    Another way to hack this particular problem is to put the Heading4 title in a text frame behind the imported image. Then it requires no character formatting magic. But you can't see it during edit, and you need to hope that the table white fills really are, and aren't just transparent.

    The TOC will only reproduce the character format of the heading if it  has that character format in its catalogue.
    Thanks for contributing that. It stands to reason that if TOC gen is honoring and replicationg the ChFmt, the easiest way to implement that is just to drag the format in with the text being cloned.
    Building on this, you can control the  appearance of the TOC entry by defining the character format – if you  wish, differently from how it is defined in the main text. So your  Heading 4 override may be coloured white in the main text, but black in  the TOC.
    Thanks again. I'm going to use this starting now, since the present manual set has need of it.
    The key aspects of the implementation:
    The ChFmt name needs to be something very self-evident to future document stewards, like "Hide_Except_TOC".
    In all .fm files except TOC, its definition is
    all As-Is, except for Color,
    which is an existing author-use-only color "Invisible Text" already set Invisible by Color Views during render.
    In the TOC file, the definition of "Hide_Except_TOC" is
    100% As-Is.
    (first time I've ever defined a format like that)

Maybe you are looking for

  • How do I install a programme from disc?

    Hi,   It probably is the most stupid question ever... but I have a copy of Microsoft Office 2004 on a disc (it is not the original one which is a long story) and can use it at the moment from the disc on my Macbook Pro laptop OSX 10.6.8, although I h

  • How do I remove Aperture trial and go back to iPhoto (be kind, I'm new).

    How do I remove the Aperture trial and go back to iPhoto.  For my usage (just iPhone pics/movies) iPhoto is okay for me, but now I cannot figure out how to remove Aperture, when I drag to Trash I get a warning that Aperture is a system file. Please h

  • Allocation table for Purchase Order

    Hi there, Could you please advise me what should I do with my issue? When trying to create allocation table: Purchase Order Reference, got message 'No data corresponding to selection exists' Please tell me detail the step that I need to do. Greatly t

  • Interactive Image Panning within a Mask

    Hey guys thanks for the help so far. The last piece to the puzzle for me is figuring out how to scroll a movie clip within a mask. I'm currently working with the script taken from the Interactive Image Panning tutorial on kirupa.com as a base. Right

  • Thinkpad T61 LCD dim, go with led upgrade???

    Hey I just got a T61 and the LCD screen is very dim/dull when the laptop is plugged in or on highest setting, its nearly as dim as my Lenovo N500 on lowest brightness setting!!! I know I will need to replace most likely the inverter and possibly the