Update asset PO Number

Hi,
In oracle apps 11i how can i update an asset source line; in particular the PO Number.
The case is we are having that for assets that are not coming from the payables module the user needs to enter the PO number manually.If the assets is saved without entering the PO number, how can we update or modify the existing blank source line of the assets. It appears as greyed out and does not allow update.

Hi
try out this link -
Re: BADI for Purchase  Order
regards
prashant

Similar Messages

  • Update Purchase order number in Sales order item level from inbound ORDCHG iDoc

    Hi Gurus,
    I want to update purchase order number from the iDoc 'ORDCHG' to sales order item level (sold to party purchase order number) i.e, VBAK-BSTKD.
    Which exit I need to use?  where to update?  Can you please help.
    Thank you in advance.
    Regards,
    San

    Finally Resolved the problem by writing 2 exits.
    one exit 'EXIT_SAPLVEDB_007'  for identify correct item in the sales order by updating the customer purchase order item number i.e., VBAP-POSEX.  if we update the POSEX field then it wont create new item instead, it will update the item which it is referring to .
    2nd exit for updating the purchase order number. 
    I have tried to pass the program name, screen number, field name, field value etc to bdcdata in the exit 'EXIT_SAPLVEDB_002'. but I observed that it is not going to that screen in the debugging.
    when I try E1EDP02 with QUALF '044' it will update ship-to party's purchase order number.  so to update ship-to party's purchase order number it is going to that screen. 
    so I have used that thing to update purchase order number in sold-to party's purchase order number.
    so when it is going that screen iam changing the field name 'VBKD-BSTKD_E' to 'VBKD-BSTKD' in bdcdata.  Then it is worked.
    This is the solution I found in my time.
    Any way it is solved.  Hope it will be helpful for others who will get this problem.

  • IB:How to update a serial Number which has Inventory Material Transactions?

    Dear friends
    first of all thanks for your time and valuable solutions
    Install base: How to update a serial Number which has Inventory Material Transactions
    problem description:
    Install base > quick search
    Here is Installbase record, when I query from quick search
    Rec#     Item          Item Instance           Serial Number          Status
    1     300-7000-01      3000000           1000XXX-0538JQ0003 Return for Adv Exchange
    2     300-7000-01     8000000               1000XXX-0538JQ0003-     Return for Adv Exchange
    3     300-7000-01     5000000               1000XXX-0538JQ0003-A     Return for Adv Exchange
    looking above data, first and third records are the legitimate serial numbers(correct according to the client specs), second record is not legitimate since it has a dash as suffix, we found there are many illegitimate serial Numbers exists, needs to be updated with the right serial Numbers which I analyzed in excel after pulling data from mtl_material_transactions , oe_order_lines_all , mtl_serial_numbers , mtl_system_items_b
    basically these are all RMAs
    I need to update the second record as 1094SUZ-0538JQ0003-B as per the guidelines, while updating I need to keep all the existing contracts, Warranty, what ever material transations it has, need to be same.
    we have a package updating the serial numbers using IB API (csi_Item_Instance_Pub.update_item_instance) but it is updating only the records which has no serial numbers present for that instance, if there is a serial number already exists it is not working.
    user define error msg "Serial Number 1094SUZ-0538JQ0003- has Inventory Material Transactions. This serial number cannot be used to update an existing Item Instance", but I need to update this anyway!! or am I missing something here, please advice me
    below post looks like similar issue, talks about hard update, I have no clue, by doing that the updated serial number will have same transations, contracts, dates....attached to it like the previous serial number
    IB UPDATE_ITEM_INSTANCE ERROR - doesn't allow ACTIVE_START_DATE to change
    would be great If you guys help me out, really appreciated!!
    unfortunately I couldn't find any solutoin in metalink for the existing serial number update
    code for updating the serial number using IB API
              x_msg_count := 0;
    x_msg_data := '';
    p_instance_rec.instance_id := rec.child_instance_id;
    p_instance_rec.serial_number := rec.child_serial_number;
    p_instance_rec.object_version_number := rec.child_object_number;
    p_txn_rec.transaction_id := Fnd_Api.g_miss_num;
    p_txn_rec.transaction_date := SYSDATE;
    p_txn_rec.source_transaction_date := SYSDATE;
    p_txn_rec.transaction_type_id := 1;
    csi_Item_Instance_Pub.update_item_instance
    p_api_version => 1.0,
    p_commit => Fnd_Api.g_false,
    p_init_msg_list => Fnd_Api.g_false,
    p_validation_level => 1,
    p_instance_rec => p_instance_rec,
    p_ext_attrib_values_tbl => p_ext_attrib_values_tbl,
    p_party_tbl => p_party_tbl,
    p_account_tbl => p_account_tbl,
    p_pricing_attrib_tbl => p_pricing_attrib_tbl,
    p_org_assignments_tbl => p_org_assignments_tbl,
    p_asset_assignment_tbl => p_asset_assignment_tbl,
    p_txn_rec => p_txn_rec,
    x_instance_id_lst => x_instance_id_lst,
    x_return_status => x_return_status,
    x_msg_count => x_msg_count,
    x_msg_data => x_msg_data
    Thanks
    Suri

    Suri
    Used this. May not be perfect but should get you there. Only if the table is registered (all the seeded tables should be registered) this will work.
    select distinct a.table_name,b.column_name from fnd_tables a, fnd_columns b
    where a.table_id=b.table_id
    and upper(b.column_name) like '%SERIAL%'
    Also this is very old one but if you need history for this change add the history insert logic as well..
    DECLARE
    l_return_err VARCHAR2 (80);
    PROCEDURE debug (p_message IN VARCHAR2)
    IS
    BEGIN
    dbms_output.put_line (SUBSTR (p_message, 1, 255));
    END debug;
    BEGIN
    debug('======================================================================');
    debug('Switching from serial number XDT07406. to XDT07406 ');
    debug('======================================================================');
    UPDATE fa_additions_b
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in fa_additions_b updated :'||sql%rowcount);
    UPDATE fa_mass_additions
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in fa_mass_additions updated :'||sql%rowcount);
    UPDATE rcv_serial_transactions
    SET serial_num = 'XDT07406'
    WHERE serial_num = 'XDT07406.';
    debug('No of rows in rcv_serial_transactions updated :'||sql%rowcount);
    UPDATE mtl_serial_numbers
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in mtl_serial_numbers updated :'||sql%rowcount);
    UPDATE mtl_unit_transactions
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in mtl_unit_transactions updated :'||sql%rowcount);
    UPDATE csi_item_instances_h
    SET new_serial_number = 'XDT07406'
    WHERE new_serial_number = 'XDT07406.';
    debug('No of rows in csi_item_instances_h updated :'||sql%rowcount);
    UPDATE csi_t_txn_line_details
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in csi_t_txn_line_details updated :'||sql%rowcount);
    UPDATE csi_item_instances
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in csi_item_instances updated :'||sql%rowcount);
    UPDATE wsh_delivery_details
    SET serial_number = 'XDT07406'
    WHERE serial_number = 'XDT07406.';
    debug('No of rows in wsh_delivery_details updated :'||sql%rowcount);
    debug('======================================================================');
    debug('Switching from serial number jct20591 to JCT20591 ');
    debug('======================================================================');
    UPDATE fa_additions_b
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in fa_additions_b updated :'||sql%rowcount);
    UPDATE fa_mass_additions
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in fa_mass_additions updated :'||sql%rowcount);
    UPDATE rcv_serial_transactions
    SET serial_num = 'JCT20591'
    WHERE serial_num = 'jct20591';
    debug('No of rows in rcv_serial_transactions updated :'||sql%rowcount);
    UPDATE mtl_serial_numbers
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in mtl_serial_numbers updated :'||sql%rowcount);
    UPDATE mtl_unit_transactions
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in mtl_unit_transactions updated :'||sql%rowcount);
    UPDATE csi_item_instances_h
    SET new_serial_number = 'JCT20591'
    WHERE new_serial_number = 'jct20591';
    debug('No of rows in csi_item_instances_h updated :'||sql%rowcount);
    UPDATE csi_t_txn_line_details
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in csi_t_txn_line_details updated :'||sql%rowcount);
    UPDATE csi_item_instances
    SET serial_number = 'JCT20591'
    WHERE serial_number = 'jct20591';
    debug('No of rows in csi_item_instances updated :'||sql%rowcount);
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_return_err :='Updating in one of the script has this error:'|| substrb(sqlerrm, 1, 55);
    debug('Value of l_return_err='||l_return_err);
    END;
    Thanks
    Nagamohan

  • Automatic creation of asset sub number in order

    Hi  Guruz,
    i have an urgent issue regarding asset topic  and sub number.
    my issue is my client purchased 100 computer sets. Each computer set  has an unique asset number. now we are using multiple account assignment concept. Earlier my client use to purchase 100 computers by including 100 line items in the purchase order in item overview  each having an asset number(that belongs to a particular asset class which is in turn assigned to one G/L account). So we can see that it is a very lengthy job. Instead my client wants that they should enter only one line item containing the asset number in the item overview of the PO.
    At present we are using multiple account assignment as we are creating the asset sub number under one main asset.
    With this we are able to prevent entering 100 line items in the item overview but we are entering the 100 sub number data in item details of the PO.
    item overview look out:
    Ex: asset no: 100268           quantity -100       price- 20000
    item detail look out:
    quantity           asset         sub number
    1                       100268          1
    1                      100268            2.....
    similarly upto 100......
    THis is done in account assignment tab of PO.
    REQUIREMENT:
    when i am giving asset number 100268  sysytem should automatically give/propose 100 sub number as we have defined 100 sub number in as11 for that asset number. I.e: when we are putting asset number 100268 in the item overview it should reflect 100 quantities in item detail.
    is it possible???
    pl discuss...
    in the sub item field the asset number 100268 will automatically divide into 100 sub numbers automatically.

    Hi,
    This is unfortunately not possible with standards but you may try using Badi ME_PROCESS_PO_CUST => PROCESS_ACCOUNT.
    Regards

  • HT3702 when im trying to update my CARD NUMBER IT KEEPS TELING ME THAT MY SECURITY CODE IS WRONG AND IS NOT

    im trying to update my card number n it keeps telling me is wrong when is not

    Is the address on your iTunes account exactly the same (format and spacing etc) as on your credit card bill : http://support.apple.com/kb/TS1646 ? If it is then you could try what it says at the bottom of that page :
    If the issue persists, contact your credit card company and verify that they and any company they use to process credit card authorisations have the correct information on file.
    And/or try contacting iTunes support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • AUTOMATIC MAPPING OF ASSET SUB NUMBER IN PO IN ITEM DETAILS

    Hi Guruz,
    i have an urgent issue regarding asset topic and sub number.
    my issue is my client purchased 100 computer sets. Each computer set has an unique asset number. now we are using multiple account assignment concept. Earlier my client use to purchase 100 computers by including 100 line items in the purchase order in item overview each having an asset number(that belongs to a particular asset class which is in turn assigned to one G/L account). So we can see that it is a very lengthy job. Instead my client wants that they should enter only one line item containing the asset number in the item overview of the PO.
    At present we are using multiple account assignment as we are creating the asset sub number under one main asset.
    With this we are able to prevent entering 100 line items in the item overview but we are entering the 100 sub number data in item details of the PO.
    item overview look out:
    Ex: asset no: 100268 quantity -100 price- 20000
    item detail look out:
    quantity asset sub number
    1 100268 1
    1 100268 2.....
    similarly upto 100......
    THis is done in account assignment tab of PO.
    REQUIREMENT:
    when i am giving asset number 100268 sysytem should automatically give/propose 100 sub number as we have defined 100 sub number in as11 for that asset number. I.e: when we are putting asset number 100268 in the item overview it should reflect 100 quantities in item detail.
    is it possible???
    pl discuss...
    in the sub item field the asset number 100268 will automatically divide into 100 sub numbers automatically.

    Hi,
    This is unfortunately not possible with standards but you may try using Badi ME_PROCESS_PO_CUST => PROCESS_ACCOUNT.
    Regards

  • Update Purchase Order number.(Link GL to PO)

    Hi all,
    Currently i am using the below query for one of our report(R12). However there is a need to update Purchase Order Number .Could anyone please help on how to link GL to PO and provide the updated query.The query is as follows.
    SELECT gjl.je_line_num,
        gjl.code_combination_id,
        SUM(NVL(GJL.accounted_dr, 0))                                     AS Accounted_DR,
        SUM(NVL(GJL.accounted_cr, 0))                                     AS Accounted_CR,
        ( SUM(NVL(GJL.accounted_dr, 0)) - SUM(NVL(GJL.accounted_cr, 0)) ) AS Accounted_Balance,
        gjb.actual_flag,
        NULL     AS "Check Number",
        gjb.name AS "Batch Name",
        TO_CHAR(gjh.currency_conversion_date, 'DD-Mon-YYYY') currency_conversion_date,
        ROUND(gjh.CURRENCY_CONVERSION_RATE,4) CURRENCY_CONVERSION_RATE,
        gjh.currency_conversion_type,
        NULL                                                          AS Document_Number,
        SUM(NVL(GJL.entered_dr, 0))                                   AS Entered_DR,
        SUM(NVL(GJL.entered_cr, 0))                                   AS Entered_CR,
        ( SUM(NVL(GJL.entered_dr, 0)) - SUM(NVL(GJL.entered_cr, 0)) ) AS Entered_Balance,
        gcc.segment1
        || '.'
        || gcc.segment2
        || '.'
        || gcc.segment3
        || '.'
        || gcc.segment4
        || '.'
        ||gcc.segment5
        || '.'
        || gcc.segment6
        || '.'
        || gcc.segment7
        || '.'
        || gcc.segment8 "Account Code",
        gl.currency_code AS "Ledger Currency",
        gjh.name         AS "Header Name",
        gjl.description  AS "Journal Line Description",
        NULL             AS party_name,
        NULL             AS party_id,
        GJH.period_name,
        TO_CHAR(gjh.POSTED_DATE, 'DD-Mon-YYYY') POSTED_DATE,
        NULL AS "Purchase Invoice Number",
        NULL AS "AP Invoice Line Description",
        NULL AS "Sales Invoice Number",
        gcc.segment1 Company ,
        gcc.segment2 Account,
        DECODE(gcc.segment2,NULL,'',apps.gl_flexfields_pkg.get_description_sql(gcc.chart_of_accounts_id,2,gcc.segment2)) AS "Seg2 Desc",
        gcc.segment3 AS "Business Model",
        gcc.segment4 Region,
        gcc.segment5 AS "Cost Profit Center",
        gcc.segment6 AS "Product Group",
        gcc.segment7 AS "Related Company",
        gcc.segment8 AS "Reserve",
        gjl.status   AS "Journal Line Status",
        GL.name      AS "LEDGER NAME",
        GJH.currency_code,
        GJH.je_category je_cat_f,
        GJCT.user_je_category_name je_category,
        GJH.je_source,
        NULL AS "Sales_order" ,
        NULL AS "Purchase Order Number"
      FROM APPS.gl_je_headers gjh,
        APPS.gl_je_batches gjb,
        APPS.gl_ledgers gl,
        APPS.gl_je_lines gjl,
        APPS.gl_code_combinations gcc,
        (SELECT je_category_name,
          user_je_category_name
        FROM APPS.GL_JE_CATEGORIES_TL
        WHERE language='E'
        ) GJCT
      WHERE gjh.je_from_sla_flag IS NULL
      --AND gjh.EXTERNAL_REFERENCE IS NULL
      AND gjb.je_batch_id         = gjh.je_batch_id
      AND gjh.ledger_id           = gl.ledger_id
      AND gjh.je_header_id        = gjl.je_header_id
      AND gcc.code_combination_id = gjl.code_combination_id
      AND GJH.JE_CATEGORY         = GJCT.je_category_name(+)
      AND GL.name NOT IN('NL ABX RepCorp USD (EUR)')
      GROUP BY gjl.je_line_num,
        gjl.code_combination_id,
        gjb.actual_flag,
        gjb.name,
        gjh.currency_conversion_date,
        ROUND(gjh.CURRENCY_CONVERSION_RATE,4),
        gjh.currency_conversion_type,
        gcc.segment1
        || '.'
        || gcc.segment2
        || '.'
        || gcc.segment3
        || '.'
        || gcc.segment4
        || '.'
        ||gcc.segment5
        || '.'
        || gcc.segment6
        || '.'
        || gcc.segment7
        || '.'
        || gcc.segment8,
        gl.currency_code,
        gjh.name,
        gjl.description,
        gjb.je_batch_id,
        gjb.status,
        gjb.posted_date,
        gjb.description,
        gl.name,
        gjh.name,
        GJH.period_name,
        gjh.posted_date,
        gcc.segment1,
        gcc.segment2,
        gcc.segment3,
        gcc.segment4,
        gcc.segment5,
        gcc.segment6,
        gcc.segment7,
        gcc.segment8,
        GL.name,
        gjl.status,
        GJH.je_category,
        GJCT.user_je_category_name,
        GJH.je_source,
        GJH.currency_code,
        DECODE(gcc.segment2,NULL,'',apps.gl_flexfields_pkg.get_description_sql(gcc.chart_of_accounts_id,2,gcc.segment2))

    Finally Resolved the problem by writing 2 exits.
    one exit 'EXIT_SAPLVEDB_007'  for identify correct item in the sales order by updating the customer purchase order item number i.e., VBAP-POSEX.  if we update the POSEX field then it wont create new item instead, it will update the item which it is referring to .
    2nd exit for updating the purchase order number. 
    I have tried to pass the program name, screen number, field name, field value etc to bdcdata in the exit 'EXIT_SAPLVEDB_002'. but I observed that it is not going to that screen in the debugging.
    when I try E1EDP02 with QUALF '044' it will update ship-to party's purchase order number.  so to update ship-to party's purchase order number it is going to that screen. 
    so I have used that thing to update purchase order number in sold-to party's purchase order number.
    so when it is going that screen iam changing the field name 'VBKD-BSTKD_E' to 'VBKD-BSTKD' in bdcdata.  Then it is worked.
    This is the solution I found in my time.
    Any way it is solved.  Hope it will be helpful for others who will get this problem.

  • Assign the Asset "Tag Number" at PO receipt stage

    Our customer has a requirement to enter the Asset Tag Number for an item when the purchase order is receipted (or even at inspection stage for 4-way match PO's). The tag number entered, should then flow through to the FA module.
    Does anyone know if this can be achieved with standard functionality, or if it can be done with a customization?
    Here is the basic flow steps, the words in brackets () are the change we're looking for.
    1. Create PO for item coded to asset clearing account
    2. Receipt PO (and assign the Asset Tag Number)
    3. Match the PO to the AP invoice.
    4. Validate and account the AP invoice and transfer that to GL.
    5. Run the Mass Additions Create Process
    6. Find the Asset in Mass Additions Create (the Tag Number field should be populated with the value entered in step 2)
    7. Post Asset

    Hi,
    This is unfortunately not possible with standards but you may try using Badi ME_PROCESS_PO_CUST => PROCESS_ACCOUNT.
    Regards

  • Asset Super Class and Asset Super Number

    Hi Gurus.
    Please tell me how can we use Asset Super Number.
    What is the use of Asset Suer Number and Asset Super Class
    Thank You

    Hi
    Do a search on this forum to Asset Super Number. There is a message with the explanation and a direct link to the SAP help.
    What is your requerement that you want to use this when you don't know what it is?

  • Asset Sub Number Conversion

    Hi Expert,
    I have a question here and hope experts can give some Light.
    We have asset main number with asset number sub number in the legacy system. When we migrate to SAP, I'll also need to create the Asset Main Number (AS91) and following with Asset Sub Number for it (AS94).
    The problem is, how could I actually link the asset sub number with the relevant main number for data conversion as the main asset must always be created first before I can load asset sub-number.
    What is the best approach to use?
    Please help. Thanks.

    Hello Louis Yale
    You first create the main Asset number with T-code AS91
    Once that is done you then create Asset sub number with reference to main Asset number . T-code AS94.
    When you start creating Asset sub number on the main screen you will need to input main asset number and company code. This links your asset sub number to main asset number.
    Hope this helps.
    Thanks
    Sanjeev

  • Asset Sub Number with Letter

    Dear Expert
    Is it possible to define asset sub number using letter? e.g 1000000001 A001
    Thanks and Regards,
    YL

    Hi YL,
    The sub number field is four numeric character field. Hence you cannot use alphabets.
    However in Tcode OAOA (Asset class), if you tick the checkbox "EXTERNAL SUB NUMBER", you can use your own sub number for the asset.
    Please let me know if it helps.
    Ranjani

  • Update Asset details in AIBU transaction

    Hi,
          If an asset has four invoices and these are settled to another asset using AIBU, the standard program settles the sender line items to the receiver as one line item in the receiver.
          Our requirement is  to settle each line item in the sender as a separate line item in the receiver. For that we are trying for BADIs,EXITS or Ehancement points.
         We were able to update the asset accounting details using the BADI,BADI_FIAA_DOCLINES but we were not able to update asset details( transaction type, assignment field etc) in ANEP,AUAS tables. The transaction type is changing and defaulting to 345(for sender) and 346(for receiver).  Please tell me how to achieve this.
    Thanks in Advance,
    Deepthi

    Hi,
    Thanks for reply.
    I need to achieve my requirement through coding. I have created few enhancement spots and its working fine now. But accounting details were not updating correctly.  I need to update them(ACCIT table) with Assingment, item text etc in the BADI BADI_FIAA_DOCLINES. Could not find the link to update the reciver entries with sender details aptly. Please suggest me the solution for this.
    Thanks,
    Deepthi

  • Update Bank Account number in Line items

    Hi All,
    How to update Bank account number in the bank clearing account line item.
    I used sort key to update but unsuccessful.
    please let me know the way to update the bank account number in the line item
    Thanks.
    Raj
    Edited by: Raj Racha on Nov 29, 2010 8:34 AM

    Substitution in OBBH/ GGB1 using exit
    Regards,
    SDNer

  • Any function module to update Manufacturer serial number in tcode IE02

    Hi Friends,
    I need function module or bapi to update
    Manufacturer serial number in tcode IE02 .
    Please ........
    Thank you.
    Karthik.

    Hi,
    You may use the exit
    IEQM0007
    or
    BADI:
    EQUI_SERLV_CHECK
    hope this helps.
    Regards,
    Renjith Michael.

  • Updating external address number and phone ID

    I want to update external address number and phone ID when i edit a BP.
    I found FM BUA_BUPA_BUT020_GET to read address data from buffer.. using this i can update external address number field. but i am not able to see phone related fields in buffer.
    how to update phone related fields in buffer ( in any of the BADI).

    Hi,
    You can get the information from the table ADRC   Addresses (Business Address Services)
    Field name for telephone number TEL_NUMBER
    For Email address
    SMTP_ADDR
    And you have the common field between these two tables
    ADDRNUMBER
    Thanks
    Ramakrishna Pathi

Maybe you are looking for

  • How to know an item is stock Blocked or not ?

    Hi , Is there any table fields to know an item is stock blocked or not ? (Like table vbuk is having cmps0 and cmps1 for OD block and Credit Block) Thanks and Regards, KN

  • How do I update my iTunes on my iPad?

    I am receiving: "The iPad "JG's iPad" cannot be used because it requires iTunes version 10.7 or later. Go to www.itunes.com to download the latest version of iTunes.  I have to do as suggested but the reply I receive is that the software is already i

  • How to reinstall YouTube on my Ipad, version iOS6?

    Hi, I've just updated my old software to the new one iOS6 and lost YouTube application. Can't find it anywhere ! How can I get it back? I prefer having Youtube application rather than going to Safari. Many thanks for your help.

  • Strange lines appearing behind itunes

    I went away for the holidays, and when I got back I booted up my 2006 iMac. Today for the first time, there are strange lines appearing behind iTunes whenever it is open but not the active window. I tried quitting and restarting iTunes, but the lines

  • Can A Site Have Multiple ABOUT Pages

    Given the fact that iWeb's layout looks awesome if used in a 'singular' form - for one individual. What if I want to build a site with 'multiple' about pages, per say one for each client. Is there a way to have one 'about button' lead to a page with