Plant Maintenance - Deleting installed base

Plant Maintenance - Deleting installed base
I have set up deletion flag in an installed base and trying to create a new one with the same material and serial number.
But system given error saying that already exists.
Pls advise.

hi
go with this link
http://help.sap.com/saphelp_47x200/helpdata/en/19/db7cd6d82c11d19ddf0000e8323350/frameset.htm
-ashok

Similar Messages

  • Plant Maintenance - Can I change 'validity to' in installed base ?

    Plant Maintenance - Can I change 'validity to' in installed base ?
    I don't know how the validity is taken as end of last month.
    I am trying to do that but it seems its not possible.

    hi
    this link can help you regarding Installed Base
    http://help.sap.com/saphelp_47x200/helpdata/en/19/db7cd6d82c11d19ddf0000e8323350/frameset.htm
    -ashok

  • Installed Base / Fleet Objects - Plant Maintenance Module

    Dear Experts,
    Can anyone guide me what are fleet objects and Installed base in relation with Plant Maintenanace Module?
    Please do throw some light on it.
    Thanks
    DM

    Hello Deepak,
    IBASE -> A collection of function modules used for VC or Hierarchcal structures.
    Fleet   -> Is used for example if you have to maintain many vehicals i. e. car park etc.
    this is the easiest way to describe the use of both elements.
    Hope that this helps
    Regards,
    Isabelle

  • Need effect Equipment Deletion with Install Base

    Hello Experts,
    I marked one equipment for deletion at ECC GUI & the same effect been moved to CRM web channel via middleware.
    But now my requirement is i need to mark a deletion & inactive indicator at same Install base automatically when i mark the equipment for deletion indicator.
    First of all suggest if there is any standard available for this requirement & if not tell me how to develop this.
    NOTE: Main aim here is to restrict any Complaint/repair order creation to be created for the duplicate equipment/ibase record done by the user end.
    Thanks.
    Rip

    If I buy an Airport Extreme Base Station and connect it with my Cable Modem, then directly into my G4 does this eliminate the need for a Airport Card installed inside my computer.
    Yes that is true. If you connect the G4 to the AirPort Extreme base station (AEBS) via Ethernet you do not need an AirPort card installed.
    Do I need to install a Airport Card or PCI card in my G4 if it's connected to the base station???
    No

  • Plant Maintenance Workflow

    Dear Experts,
    What is the purpose of workflow ? How do we effectively use a workflow in plant maintenance ? Is it the responsiblity of a PM consultant or a ABAP consultant or a BASIS person's job ?
    Please refer some literature on this .
    Thanks and Regards,
    Vivid

    Workflow is a process which is followed by triggering of the event.
    Ex- If maintenace task is deleted or completed then if concern person is to be informed for further action then worflow feature is required.
    Basically its a combination of  functional ,technical  and security team
    If the standard is avaialble process is available then technical involvments are not required, but if you want to have a diffrent process or event  to be mapped then logic is to be wriiten for it.
    Some imp transaction for workflow are
    Workflow Builder (SWDD)
    Development Environment
    Workflow Log (SWI1)
    Administrative Tool
    Business Workplace (SBWP)
    SAP Inbox
    Business Object Builder (SWO1)
    Event Trace (SWEL)
    Event Type Linkages (SWETYPV)
    regards
    Anil Kumar
    Edited by: Anil Kumar on Aug 25, 2008 12:27 PM

  • Install Base

    Hi Guys,
    What advantage will i have if i go to Install base for structuring ?
    I need the documents and configuration details related to Install base for plant Maintenance .(not related to CS)
    Thanks
    Anil Kumar

    Hi
    Pete is right , there is no use of Install base in PM/CS.
    If require more information on this please refer the following link.
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/19/db7cd6d82c11d19ddf0000e8323350/frameset.htm
    Regards,
    Rakesh

  • Install Base Accounting Class code

    Hi,
    Iam using api csi_item_instance_pub.update_item_instance for updating Install base instance.
    Iam able to update the partyid, account id but not accounting class code.
    Can anyone please help me how to update accounting class code along with party information.
    Any help is highly appreciated.
    Here is my code which Iam using to update Item instance..
    CREATE OR REPLACE PROCEDURE updateib_load_test
    IS
    g_instance_id_lst csi_datastructures_pub.id_tbl;
    l_instance_rec apps.csi_datastructures_pub.instance_rec;
    p_ext_attrib_values apps.csi_datastructures_pub.extend_attrib_values_tbl;
    p_party_tbl apps.csi_datastructures_pub.party_tbl;
    p_account_tbl apps.csi_datastructures_pub.party_account_tbl;
    l_pricing_attrib_tbl apps.csi_datastructures_pub.pricing_attribs_tbl;
    l_org_assignments_tbl apps.csi_datastructures_pub.organization_units_tbl;
    l_asset_assignment_tbl apps.csi_datastructures_pub.instance_asset_tbl;
    l_txn_rec apps.csi_datastructures_pub.transaction_rec;
    x2_txn_rec apps.csi_datastructures_pub.transaction_rec;
    l_return_status VARCHAR2 (100);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2 (2000);
    l_created_manually_flag VARCHAR2 (100);
    ----l_org_id NUMBER := 204;
    n NUMBER := 1;
    v_instance_id NUMBER;
    p_commit VARCHAR2 (5);
    p2_commit VARCHAR2 (5);
    p_validation_level NUMBER;
    p_init_msg_lst VARCHAR2 (500);
    v_instance_party_id NUMBER;
    v_ip_account_id NUMBER;
    l_relationship_tbl apps.csi_datastructures_pub.ii_relationship_tbl;
    v_relationship_id NUMBER;
    v_success VARCHAR2 (1) := 'T';
    x2_return_status VARCHAR2 (100);
    x2_msg_count NUMBER;
    x2_msg_data VARCHAR2 (2000);
    p2_validation_level NUMBER;
    p2_init_msg_lst VARCHAR2 (500);
    a NUMBER;
    t1_msg_dummy VARCHAR2 (1000);
    t1_output VARCHAR2 (1000);
    l_not_created NUMBER;
    l_buffer VARCHAR2 (32767);
    l_problem EXCEPTION;
    l_message VARCHAR2 (2000);
    CURSOR updateib_cur
    IS
    SELECT *
    FROM ib_conv_stg
    WHERE updateib = 'Y'
    AND status_stg = 'V'
    AND new_instance_number IS NOT NULL
    AND transaction_id_stg = 8077;
    BEGIN
    -- DBMS_OUTPUT.put_line ('AFTER BEGIN');
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'AFTER BEGIN');
    FOR updateib_rec IN updateib_cur
    LOOP
    BEGIN
    l_instance_rec.accounting_class_code := fnd_api.g_miss_char;
    IF p_party_tbl.EXISTS (1) IS NOT NULL
    THEN
    p_party_tbl.DELETE;
    END IF;
    IF p_account_tbl.EXISTS (1) IS NOT NULL
    THEN
    p_account_tbl.DELETE;
    END IF;
    IF p_ext_attrib_values.EXISTS (1) IS NOT NULL
    THEN
    p_ext_attrib_values.DELETE;
    END IF;
    /* SELECT apps.csi_item_instances_s.NEXTVAL
    INTO v_instance_id
    FROM SYS.DUAL;*/
    l_instance_rec.instance_id :=
    TO_NUMBER (updateib_rec.new_instance_number);
    l_instance_rec.instance_number := updateib_rec.new_instance_number;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    l_instance_rec.instance_id);
    l_instance_rec.object_version_number := updateib_rec.object_version;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    l_instance_rec.object_version_number
    --l_instance_rec.inventory_item_id := updateib_rec.inventory_item_id;
    l_instance_rec.inv_master_organization_id :=
    updateib_rec.inv_master_organization_id;
    --189;
    l_instance_rec.mfg_serial_number_flag :=
    updateib_rec.mfg_serial_number_flag;
    --'Y';
    --l_instance_rec.serial_number := updateib_rec.ls_serial_number;
    ---'LOG0005';
    l_instance_rec.quantity := updateib_rec.quantity; --1;
    l_instance_rec.unit_of_measure := updateib_rec.unit_of_measure;
    --'EA';
    l_instance_rec.accounting_class_code :=
    updateib_rec.accounting_class_code;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    updateib_rec.new_instance_number
    || 'instance_rec'
    || l_instance_rec.accounting_class_code
    || 'updateib'
    || updateib_rec.accounting_class_code
    --'CUST_PROD'; --'INV';
    l_instance_rec.instance_status_id := updateib_rec.instance_status_id;
    --510;
    l_instance_rec.customer_view_flag := updateib_rec.customer_view_flag;
    --'N'; --N
    l_instance_rec.merchant_view_flag := updateib_rec.merchant_view_flag;
    --'Y'; --Y
    l_instance_rec.sellable_flag := updateib_rec.sellable_flag;
    --'Y'; --N
    --l_instance_rec.active_start_date := updateib_rec.active_start_date;
    --SYSDATE;
    l_instance_rec.location_type_code := updateib_rec.location_type_code;
    --'HZ_PARTY_SITES';
    l_instance_rec.location_id := updateib_rec.location_id; --375885;
    l_instance_rec.install_date := updateib_rec.install_date;
    --SYSDATE;
    l_instance_rec.install_location_type_code :=
    updateib_rec.install_location_type_code;
    --'HZ_PARTY_SITES';
    l_instance_rec.install_location_id :=
    updateib_rec.install_location_id;
    --375885;
    --l_instance_rec.vld_organization_id :=
    --updateib_rec.last_vld_organization_id;
    --2104;
    l_instance_rec.creation_complete_flag :=
    updateib_rec.creation_complete_flag;
    --'Y';
    --l_instance_rec.object_version_number :=
    --updateib_rec.object_version_number;
    -- 1;
    l_instance_rec.external_reference :=
    updateib_rec.ls_external_reference;
    l_instance_rec.instance_usage_code :=
    updateib_rec.instance_usage_code;
    l_instance_rec.inv_organization_id :=
    updateib_rec.inv_organization_id;
    l_instance_rec.inv_subinventory_name :=
    updateib_rec.inv_subinventory_name;
    l_instance_rec.inv_locator_id := updateib_rec.inv_locator_id;
    l_instance_rec.manually_created_flag :=
    updateib_rec.manually_created_flag;
    l_instance_rec.last_oe_po_number := updateib_rec.last_oe_po_number;
    l_instance_rec.instance_type_code :=
    updateib_rec.ls_instance_type_code;
    l_instance_rec.attribute3 := updateib_rec.ls_warranty_expiration_date;
    --l_instance_rec.UPDATE_ORACLE:= updateib_rec.UPDATE_ORACLE;
    -- ************* FOR PARTIES **********************************************************
    /* SELECT apps.csi_i_parties_s.NEXTVAL
    INTO v_instance_party_id
    FROM SYS.DUAL;*/
    p_party_tbl (1).instance_party_id := updateib_rec.instance_party_id;
    p_party_tbl (1).instance_id :=
    TO_NUMBER (updateib_rec.new_instance_number);
    p_party_tbl (1).party_source_table :=
    updateib_rec.owner_party_source_table;
    --'HZ_PARTIES'; --
    p_party_tbl (1).party_id := updateib_rec.owner_party_id;
    --442143; --13478;
    p_party_tbl (1).relationship_type_code := 'OWNER';
    p_party_tbl (1).contact_flag := 'N';
    -- l_party_tbl (1).active_start_date := updateib_rec.active_start_date;
    --SYSDATE;
    p_party_tbl (1).object_version_number :=
    updateib_rec.object_version_p;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    p_party_tbl (1).object_version_number
    -- *********** FOR PARTY ACCOUNT *****************************************************
    /* SELECT apps.csi_ip_accounts_s.NEXTVAL
    INTO v_ip_account_id
    FROM SYS.DUAL;*/
    p_account_tbl (1).ip_account_id := updateib_rec.ip_account_id;
    p_account_tbl (1).instance_party_id := updateib_rec.instance_party_id;
    p_account_tbl (1).party_account_id :=
    updateib_rec.owner_party_account_id;
    --755865;
    p_account_tbl (1).relationship_type_code := 'OWNER';
    --l_account_tbl (1).active_start_date := updateib_rec.active_start_date;
    --SYSDATE;
    p_account_tbl (1).object_version_number :=
    updateib_rec.object_version_a;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    p_account_tbl (1).object_version_number
    -- 1;
    p_account_tbl (1).parent_tbl_index := 1;
    p_account_tbl (1).call_contracts := 'Y';
    -- ************************** TRANSACTION REC *****************************************
    l_txn_rec.transaction_date := SYSDATE;
    l_txn_rec.source_transaction_date := SYSDATE;
    l_txn_rec.transaction_type_id := 1;
    l_txn_rec.object_version_number := 1;
    -- *************** API CALL *******************************************************
    -- DBMS_OUTPUT.put_line ('BEFORE CREATE ITEM INSTANCE');
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'BEFORE UPDATE ITEM INSTANCE'
    END;
    BEGIN
    fnd_msg_pub.initialize;
    csi_item_instance_pub.update_item_instance
    (p_api_version => 1.0,
    p_commit => apps.fnd_api.g_true
    --Defaults assigned in the package
    p_init_msg_list => apps.fnd_api.g_true
    --Defaults assigned in the package
    p_validation_level => apps.fnd_api.g_valid_level_full
    --Defaults assigned in the package
    p_instance_rec => l_instance_rec,
    p_ext_attrib_values_tbl => p_ext_attrib_values,
    p_party_tbl => p_party_tbl,
    p_account_tbl => p_account_tbl,
    p_pricing_attrib_tbl => l_pricing_attrib_tbl,
    p_org_assignments_tbl => l_org_assignments_tbl,
    p_asset_assignment_tbl => l_asset_assignment_tbl,
    p_txn_rec => l_txn_rec,
    x_instance_id_lst => g_instance_id_lst,
    x_return_status => l_return_status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data
    COMMIT;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'AFTER UPDATE ITEM INSTANCE'
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'test' || l_msg_data);
    /* apps.fnd_file.put_line (apps.fnd_file.LOG,
    'test1'
    || apps.fnd_msg_pub.get
    (l_lcv,
    apps.fnd_api.g_false
    IF l_return_status != apps.fnd_api.g_ret_sts_success
    THEN
    l_not_created := l_not_created + 1;
    ROLLBACK;
    RAISE l_problem;
    END IF;
    updating STATUS in stg table
    BEGIN
    IF l_return_status = 'S'
    THEN
    dbms_output.put_line('satus :'||l_return_status);
    COMMIT;
    END IF;
    COMMIT;
    END;
    -------------exception l_problem
    EXCEPTION
    WHEN l_problem
    THEN
    IF (l_msg_count > 0)
    THEN
    l_buffer := '';
    FOR l_lcv IN 1 .. l_msg_count
    LOOP
    l_message :=
    apps.fnd_msg_pub.get (l_lcv, apps.fnd_api.g_false);
    END LOOP;
    END IF;
    COMMIT;
    END;
    END LOOP;
    END updateib_load_test;

    Hi Nagamohan,
    Thanks for your reply.
    Iam using the Location type code 'HZ_PARTY_SITES'.
    Actually Iam updating existing instance to update party information.
    The existing instance has the accounting_class_code as 'CUST_PROD'.
    I want to update accounting class code to 'INV' while updating party information.
    Iam able to update party information but not able to update accounting class code.
    When I digged into the api, csi_item_instance_pub.update_item_instance I found some code which was updating the accounting_class_code to null if there is party information to be updated. I think this is the reason Iam not able to update accounting class.
    Please help me if there is any chance of updating accounting class code along with party information.
    Thanks in advance

  • How to update item instance in oracle install base?

    Hi,
    I have a doubt in updating item instance in oracle install base.
    I am using a API named csi_item_instance_pub.update_item_instance for this. I want to update Party OWNER, party contacts, Current location,Install location, bill_to address,ship_to address..etc. When i try to update party owner, it is updating in csi_i_parties(col:party_id) as well as updating in csi_item_instance(owner_party_id). In csi_item_instance table,owner_party_id column is updated. but corresponding owner_party_account_id is not changed. I have given party_account_id to update in csi_ip_accounts table. It has changed in csi_ip_accounts table. But in csi_item_instance table(owner_party_account_id) is not changing. Can anybody help on how to change owner_party_account_id in csi_item_instance table please? Thanks in advance.
    --Muruga
    Edited by: Murugeshapps on Jul 1, 2009 12:07 AM

    Out of the box, I don't think that there is any API or program to delete the records from csi_item_instances because deleting IB record affects many modules (like Inventory, Order, Service Contracts etc). IB records should be expired if they are created incorrectly and you can run Transaction History Purge program to delete all history records related to that item.
    Thanks
    Shree

  • Catalog Interface (OCI) -  Customizing for Plant Maintenance order  ERP2005

    Hello Experts,
    we want to use the integration between SRM and ERP2005. In the <a href="http://help.sap.com/saphelp_nw04/helpdata/en/5d/0eba5fa0084247acbb0c04cede18e8/frameset.htm">sap documentation</a>sap documentation I found the following:
    'In the Customizing for Plant Maintenance and Customer Service or in the Customizing for Project Systems, you entered the required data about the catalog that you want to connect to the SAP R/3 system. You can find the corresponding IMG activities under Interface for Procurement Using External Catalogs (OCI).'
    However I can`t find this IMG activities in our ERP2005 system.
    What`s wrong?
    Thanks in advance.
    Regards
    U. Wieland

    Hi! Additional we had to generate the img new.
    Unfortunaetly I haven`t a idee how does this work. (Our sap basis did this.)
    Through the assign from catalog to order type, I think it nessary to use the pm-img-activities...
    Plant Maintenance and Customer Service
    ->Maintenance and Service Processing
    ->Maintenacne and Service Oders
    ->Interface for Procurement Using Catalogs (OCI)

  • Can we swap serial Numbers for an item instance in Install Base

    Hi,
    Can anyone please let me know if we can swap/replace serial number of an item instance in Install Base. If so, please let me know how to do it.
    Thanks in Advance.

    Oh, I did find where it is defined. It's a form function under Setup in Oracle Install Base Admin responsibility. I think you would have had it if you had CMRO installed.
    Following are the values in the form:
    Application Name: Complex Maintenance Repair and Overhaul
    Transaction Typa: ITEM_SERIAL_CHANGE
    Transaction Name: Item Serial Change
    Description: Item Number and or Serial Number Change
    In Out: Checked
    Alka

  • Planning in Plant Maintenance using MCB.

    Hi Experts,
    My client is into Mining Industry. This is a Greenfield SAP Implementation.
    Client is not clear with the Planning requirements in the Plant Maintenance module.
    Therefore, I have suggested that all the Standard Businenss Content Extractors and relevant Queries will be delivered as part of Maintenance Planning.
    I tried but could not find any Plant Maintenance Planning (MCB) related DataSources and Queries in the BI 7.0 Business Content page @ http://help.sap.com/saphelp_nw70/helpdata/EN/f6/7a0c3c40787431e10000000a114084/frameset.htm.
    Could you please help me with this?
    Thanks in advance,
    Chandu

    Hello Chandra,
    We are in the Health Care sector and I have a similar requirement as of yours. We are not really sure what all we would require from PM, so we are thinking to go ahead with all the Business Content Reports and I have been asked to install all the Cubes, DSO's, Extracots, Reports Etc, Etc....
    I just also have the above link in my hand and it doesn't give us a whole lot clear picture..? So how did u carry out with your requirement? What all you ended up installing? Please do share it, will be a great help for me.
    Thanks in advance, Venu.

  • Strategy/Value of Installed Base Hierarchies?

    Hi - We are converting several thousand R/3 4x equipment master records into a new solution that will have both ECC6 and CRM 6.0 Service (as well as BI). We intend to load the equipment records in ECC and have them create ibases in CRM. 
    We've learned that you can create installed base hierarchies in CRM by assigning entire installed bases as components of other installed bases.  We understand it can be done but also believe our business would have to bear the cost of creating and maintaining these hierarchies manually.
    We've considered perhaps doing it only for important value customers or for other reasons but we are just not sure that the value of manually creating and maintaining IB hierarchies would outweigh the maintenance cost. 
    We were thinking that perhaps the hierarchy would be visible in analytical processing and could perhaps be used in customer level cost to serve analysis.
    Have any of you developed Ibase strategies that included hierarchy development and can you share realities and outcomes?
    Thanks in advance for your input, Roberto

    Hi,
    I think Installed base cannot be used in SALES scenario, hence even if you extend the sales quotation transaction type with service relevant business transaction category you cannot see the object tab in header and nor in item if you assign the item object type in ITEM CATEGORY.
    Alternate solution is that you create a CUSTOMER FIELD with EEWB at header or item level in SALES QOUTATION TRANSACTION TYPE and link it with F4 help of installed base IBIB table and relevant Installed base tables in CRM.
    Hope this helps. Please award Points if helpful
    regards
    Surendra More

  • Installed Base CRM Service

    Hello!
    I'm busy with the implementation of an Installed base with various attributes and set types. I have also set up an Object family which is connected to my created Ibase category and the settypes. I searched for information to get it visual in the screens when you create an Ibase and I found information about hierarchy maintenance and categories. Although I created my own hierarchy with category and I linked my settypes to it I cannot get it into process!
    Can someone tell me what to do for getting this working?!! Thanks!
    Kind regards, Femke Visser

    HI Femke Visser
    <b>A)</b> Assign the Object family to Install Base Category, Follow the Menu Path to assign
    IMG->Customer Relationship Management ->Master Data ->Installed Base ->Individual Objects/ Object Family -> Assign Object family to Installed base Categories
    <b>B)</b> Create the categories and hierarchies you require for your object families. At least one of these categories must be created within the base hierarchy for the product type Material and then assigned to the relevant object family.
    1) To create Category go to T.code COMM_HIERARCHY and <b>in the Tab "Category" you will find a field called "Object Family", choose the right Object family</b>
    2) In the Tab "Set Types" add the set types you want to include
    Refer the link below, which will give some insight about the Set Types and Hierarchy and Categories
    http://help.sap.com/saphelp_crm50/helpdata/en/71/401e400191f72ee10000000a1550b0/frameset.htm
    Regards
    Milan
    <b>Please reward with points</b>

  • Help in Plant Maintenance

    Hi all,
    I am trying to load data into 0PM_OM_OPA_1(Maintanence Orders and Costs Allocations) Business Content Cube without any enhancements.The Datasource corresponding to this cube is 0PM_OM_OPA_1 and 0PM_OM_OPA_2 for which i couldnt find any extract structure in LBWE transaction.
    so far,
    1)I have activated 0PM_OM_OPA_1 and 0PM_OM_OPA_2 datasources in RSA5.
    2)Deleted the set up tables corresponding to PM.
    3)Reconstructed the BW structures in OLIIBW.
    4)But LIS set up log says that 0 documents are posted.
    5)RSA3 extractor checked gives me 240 records.
    When i try to execute the infopackage in the BW system, it says Error in Source System..at extractor level.
    Are there any Best Practices document for Plant Maintenance cubes in marketplace?
    Please help me out...
    Regards
    Amith

    Hi,
    i think
    check once RFC connections......
    may source not connected to BW system..
    hope this help
    raj

  • Upgrade on SAP Plant Maintenance and Product Data Management

    Hi Gurus,
    I assigned to a upgrade project for Plant Maintenance and Product Data Managemet modules.
    Please guide me what are the steps to follow and provide more information on this ...
    Thanks in advance!!!!!!!!!
    Regds,
    RK

    Hello Kurni,
    In PDM/PLM latest version is PLM 7.0.
    There are many new functionalities available in this version.
    Earlier version can be accessed from SAP GUI, but the latest one can be accessed from Portal/NWBC.
    DMS side many notes have to be applied as you will be instaling EHP4.0 as part of the upgrade.
    ECM side some standard reports are missing in PLM 7.0, which were available in ECC6.0.
    Regards
    Prasad K

Maybe you are looking for

  • How Create Virtual Directory On Oracle Application Server 10g on RHEL 5

    Dear Sir i have deployed my application on OAS 10g on RHEL 5 ,,now since my application is calling some pro*c programs and then they generate some text based reports on fixed folder named /treas/temp now i simply have to open these text based reports

  • Synching iphone/contacts & macbook/address book no longer works

    I've had an iphone 3G and macbook pro for about 2 years and until now they've synched just fine. Today I cleaned up my address book on the mac (eliminated some duplicates, added, renamed, and deleted groups, updated individuals' information) and then

  • Can't import MJPEG Videos in iMovie iOS

    I'm able to import 720P Movies from my still cam (Olympus XZ-1) in the Photo App of iPad 2, but not to iMovie. Seems that iMovie iOS is limited to MPEG4/AVC (h.264). I'm upset, because there is no reasonable case not to support MJPEG in iMovie, when

  • Searching / finding generic jpg file icons

    I use the excellent Pinki utility (http://www.mkd.cc/pinki/) to replace generic jpg icons in the Finder with an image of the file contents. However, I have not yet discovered search parameter that will find all jpg files with generic icons. Is there

  • RT - Changement de réseau

    Bonjour à tous, Je me retrouve dans une situation assez "illogique" si je puis dire... J'ai développer une appli capable de générer un consigne de tension est lire la mesure qui sort du procédé. Lors de ma phases de tests, fais sur une maquette en co