Install base related question

Hi Gurus,
             I have the query that where the installed base to be used for equipment and function location is it complusory or working by just creating function loc and equipment and instaling equipment at respective function location is quite enough.is it always complusury to create the instalbase.
rite ans , points will be rewarded

Hi Gurus,
             I have the query that where the installed base to be used for equipment and function location is it complusory or working by just creating function loc and equipment and instaling equipment at respective function location is quite enough.is it always complusury to create the instalbase.
rite ans , points will be rewarded

Similar Messages

  • Oracle Install Base API question

    Hi...I need help. I am writing an extension to the Service Fulfillment Manager (SFM) Transactions
    Here is a functional background:
    For all SFM message types, SFM exposes the PL/SQL code in the iMessage studio. iMessage studio is an Oracle EBS Application tool. The PL/SQL for the following message types will be modified:
    ·     Sales Order Shipment - CSISOSHP
    ·     Miscellaneous Receipt - CSIMSRCV
    ·     Receipt into Inventory – CSIPOINV
    The processing logic for each of these transaction types contains a call to an Installed Base package and stores the return status in a variable. For PO Receipt and SO Issue transactions referencing serial numbers prefixed by the Vertical Bar (‘|’) character this call will be bypassed and a successful status placed in the return status variable.
    For PO Receipt and Miscellaneous Receipt transactions referencing serial numbers not prefixed by the Vertical Bar (‘|’) character, the processing logic will be extended to extract the IUID value from the serial numbers table in the Oracle Inventory module (MTL_SERIAL_NUMBERS) and call the public IB Application Programming Interface (API) (CSI_ITEM_INSTANCE_PUB.UPDATE_ITEM_INSTANCE) to update the associated IB instance with the IUID.
    OK, so Question #1:
    I get all I need to do is bypass the code in 2 instances if a bar is found at the beginning of the serial number.. And I can do that. But where is this serial number? I assume it is stored in MTL_SERIAL_NUMBERS but how do I get it?
    The code doesn't have it stored as a variable, and it doesn't seem to have the IB record either. Is there a foreign key? Anyone have imessage studio and can look into that?
    Question #2:
    To update the IB record with the serial number I need to make a call to the below procedure. The thing is, it seems to require the IB instance record. Again, I don't have that cause the code is creating it! Is there some way to get that created record back and pass it into the update procedure?
    PROCEDURE update_item_instance
    p_api_version IN NUMBER
    ,p_commit IN VARCHAR2
    ,p_init_msg_list IN VARCHAR2
    ,p_validation_level IN NUMBER
    ,p_instance_rec IN csi_datastructures_pub.instance_rec
    ,p_ext_attrib_values_tbl IN OUT NOCOPY csi_datastructures_pub.extend_attrib_values_tbl
    ,p_party_tbl IN OUT NOCOPY csi_datastructures_pub.party_tbl
    ,p_account_tbl IN OUT NOCOPY csi_datastructures_pub.party_account_tbl
    ,p_pricing_attrib_tbl IN OUT NOCOPY csi_datastructures_pub.pricing_attribs_tbl
    ,p_org_assignments_tbl IN OUT NOCOPY csi_datastructures_pub.organization_units_tbl
    ,p_asset_assignment_tbl IN OUT NOCOPY csi_datastructures_pub.instance_asset_tbl
    ,p_txn_rec IN OUT NOCOPY csi_datastructures_pub.transaction_rec
    ,x_instance_id_lst OUT NOCOPY csi_datastructures_pub.id_tbl
    ,x_return_status OUT NOCOPY VARCHAR2
    ,x_msg_count OUT NOCOPY NUMBER
    ,x_msg_data OUT NOCOPY VARCHAR2
    Thanks for any and all help in advance!

    OK! I found the instance id!
    But when trying to get the IB record, the API fails. Can someone take a look at this...what's wrong?
    msg_data from API call =
    MSG DATA FND FND_AS_UNEXPECTED_ERROR N PKG_NAME CSI_ITEM_INSTANCE_PUB N PROCEDURE_NAME GET_ITEM_INSTANCE_DETAILS N ERROR_TEXT ORA-01008: not all variables bound
    PROCEDURE populate_iuid(
    p_transaction_id IN NUMBER
    IS
    l_api_version CONSTANT NUMBER := 1.0;
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(2000);
    l_msg_index NUMBER;
    l_instance_id_lst csi_datastructures_pub.id_tbl;
    l_instance_header_rec csi_datastructures_pub.instance_header_rec;
    l_party_header_tbl csi_datastructures_pub.party_header_tbl;
    l_party_acct_header_tbl csi_datastructures_pub.party_account_header_tbl;
    l_org_unit_header_tbl csi_datastructures_pub.org_units_header_tbl;
    l_instance_rec csi_datastructures_pub.instance_rec;
    l_party_tbl csi_datastructures_pub.party_tbl;
    l_account_tbl csi_datastructures_pub.party_account_tbl;
    l_pricing_attrib_tbl csi_datastructures_pub.pricing_attribs_tbl;
    l_org_assignments_tbl csi_datastructures_pub.organization_units_tbl;
    l_asset_assignment_tbl csi_datastructures_pub.instance_asset_tbl;
    l_ext_attrib_values_tbl csi_datastructures_pub.extend_attrib_values_tbl;
    l_pricing_attribs_tbl csi_datastructures_pub.pricing_attribs_tbl;
    l_ext_attrib_tbl csi_datastructures_pub.extend_attrib_values_tbl;
    l_ext_attrib_def_tbl csi_datastructures_pub.extend_attrib_tbl;
    l_asset_header_tbl csi_datastructures_pub.instance_asset_header_tbl;
    l_txn_rec csi_datastructures_pub.transaction_rec;
    l_return_status VARCHAR2(2000) ;
    l_instance_id NUMBER := 0 ;
    l_serial_number VARCHAR2(30);
    l_inventory_item_id NUMBER := 0 ;
    l_iuid VARCHAR2(150);
    CURSOR c_get_serial_numbers( p_transaction_id NUMBER ) IS
    SELECT inventory_item_id, serial_number, attribute1
    FROM mtl_unit_transactions
    WHERE transaction_id = p_transaction_id;
    BEGIN
    -- GET THE SERIAL NUMBER AND INVENTORY ITEM ID BY USING THE TRANSACTION ID
    FOR rec IN c_get_serial_numbers( p_transaction_id ) LOOP
    l_inventory_item_id := rec.inventory_item_id;
    l_serial_number := rec.serial_number;
    l_iuid := rec.attribute1;
    -- GET THE INSTANCE ID BY USING THE SERIAL NUMBER AND INVENTORY ITEM ID
    SELECT instance_id
    INTO l_instance_id
    FROM csi_item_instances
    WHERE inventory_item_id = l_inventory_item_id
    AND serial_number = l_serial_number;
    -- RETRIEVE THE INSTANCE RECORD TO BE UPDATED
    l_instance_rec.instance_id := l_instance_id;
    csi_item_instance_pub.get_item_instance_details(p_api_version => l_api_version
    ,p_commit => fnd_api.g_false
    ,p_init_msg_list => fnd_api.g_false
    ,p_validation_level => fnd_api.g_valid_level_full
    ,p_instance_rec => l_instance_header_rec
    ,p_get_parties => fnd_api.g_true
    ,p_party_header_tbl => l_party_header_tbl
    ,p_get_accounts => fnd_api.g_true
    ,p_account_header_tbl => l_party_acct_header_tbl
    ,p_get_org_assignments => fnd_api.g_true
    ,p_org_header_tbl => l_org_unit_header_tbl
    ,p_get_pricing_attribs => fnd_api.g_false
    ,p_pricing_attrib_tbl =>l_pricing_attribs_tbl
    ,p_get_ext_attribs => fnd_api.g_false
    ,p_ext_attrib_tbl => l_ext_attrib_tbl
    ,p_ext_attrib_def_tbl => l_ext_attrib_def_tbl
    ,p_get_asset_assignments => fnd_api.g_false
    ,p_asset_header_tbl => l_asset_header_tbl
    ,p_resolve_id_columns => fnd_api.g_false
    ,p_time_stamp => SYSDATE
    ,x_return_status => l_return_status
    ,x_msg_count => l_msg_count
    ,x_msg_data => l_msg_data
    );

  • Extract / Report of Installed Base and partners related to compoents

    Hello,
    we use SolMan 3.2 and want to create different reports about the installed base (ib) and the businesspartner related to the ib-components. How can we extract all data of the installed base or does already exist any SAP InfoSet? Are there any function modules or views? Unfortunately we haven't found any useful tables or views.
    Best regards,
    Marcus

    Hi Marcus,
    Please have a look at the function module BAPI_IBASE_GET_DETAIL and BAPI_IBASE_COMP_GET_DETAIL.
    To play around the partners for the IBASE refer the function module:
    CRM_IBASE_COMP_GET_PARTNER   
    CRM_IBASE_COMP_GOTO_PARTNER  
    CRM_IBASE_COMP_PARTNER_SEARCH
    CRM_IBASE_COMP_PARTNER_SEARCHR
    CRM_IBASE_GET_PARTNER        
    CRM_IBASE_GOTO_PARTNER       
    CRM_IBASE_PARTNER_SEARCH     
    CRM_IBASE_PARTNER_SEARCH_RANGE
    <b>Reward points if it helps.</b>

  • Extract / Report of Installed Base and partners related to components

    Hello,
    we use SolMan 3.2 and want to create different reports about the installed base (ib) and the businesspartner related to the ib-components. How can we extract all data of the installed base or does already exist any SAP InfoSet? Are there any function modules or views? Unfortunately we haven't found any useful tables or views.
    Best regards,
    Marcus

    Hi Marcus,
    Please have a look at the function module BAPI_IBASE_GET_DETAIL and BAPI_IBASE_COMP_GET_DETAIL.
    To play around the partners for the IBASE refer the function module:
    CRM_IBASE_COMP_GET_PARTNER   
    CRM_IBASE_COMP_GOTO_PARTNER  
    CRM_IBASE_COMP_PARTNER_SEARCH
    CRM_IBASE_COMP_PARTNER_SEARCHR
    CRM_IBASE_GET_PARTNER        
    CRM_IBASE_GOTO_PARTNER       
    CRM_IBASE_PARTNER_SEARCH     
    CRM_IBASE_PARTNER_SEARCH_RANGE
    <b>Reward points if it helps.</b>

  • Parent and Child relation in Install Base R12

    Hi,
    Could you let me know the query for, when i pass Instace_ID I should get Parent_Instance details,Child_Instance details along with parent part_numbers and child part_numbers.
    I tried using below query, but I m missing child details and child part_numbers, any suggestions.
    select distinct
    ciip.instance_id parent_instance_id,
    ciic.instance_id child_instance_id,
    ciip.instance_number parent_instance_number,
    ciic.instance_number child_instance_number,
    msip.segment1 parent_part_number,
    msic.segment1 child_part_number,
    ciip.serial_number parent_serial_number,
    ciic.serial_number child_serial_number,
    msip.description parent_part_description,
    msic.description child_part_description,
    ciip.active_start_date,
    ciip.active_end_date,
    ciip.location_id,
    ciip.install_date,
    ciip.install_location_id
    from
    csi_item_instances ciip,
    csi_ii_relationships cir,
    csi_item_instances ciic,
    mtl_system_items_b msip,
    mtl_system_items_b msic
    where 1=1
    and ciip.serial_number = 'ABN656'
    and ciip.instance_id = cir.object_id
    and ciic.instance_id = cir.subject_id
    and ciip.inventory_item_id = msip.inventory_item_id
    and ciic.inventory_item_id = msic.inventory_item_id
    --and ciip.instance_id=46725
    order by ciip.instance_id,ciip.instance_number;
    Thanks.

    Did you check if the serial ABN656 is the parent and has child components under it? Check the below query for the same. Additionally you can also navigate to Oracle Installed Base Agent User responsibility, search for ABN656, click on the record, navigate to Configuration tab and see if this serial has any child components.
    select *
    from csi_ii_relationships cir
    ,csi_item_instances cii
    where cii.serial_number = 'ABN656'
    and cii.instance_id = cir.object_id
    Thanks
    Shree

  • Oracle Install Base - Where to find Queries related to parties and Loaction

    Hi All,
    Did anybody looked in Installed Base module, from where the party and location addresses are coming.
    for example, when we select a party name and select GO button in the create item instance page , we will get some list of parties to select. From there we will select one party name.
    I want in which jsp or java file the Query is located to retrieve all the parties here.
    If anybody worked on this previously please help me.
    Thanks in advance,
    Murali.

    Try putting 'CSI_DEBUG=TRUE&' in the url....right after '.jsp?'
    HTH

  • Report Related to Installed Base (T.Code IB51and IH20)

    Hello Experts,
    In IB51 Installed Base Number is generating based up on Header Material Number and Serial Number.
    and it will be generated based up on both Header Material and Child Data .
    But my problem is I need to Find the in which Table IBASE number is storing.
    I Need to Generate the report which Needs to be display the IBASE Number along with all the data.
       PLease anybody help me to find out the table of IBASE Number..only I hav the inputs Material Number and Serial Number.

    Hello Prabakaran,
         Simialr issue i'm also facing. I need to generate report which gives details of Installed base in CRM like Partner details, Product details, Sales area details & so on...I'm unable to find Functiona module that gives me data for all these paramaters. If you have found solution for this already kindly let me know.
    i've found 2 tables that gives IB no, & its components. IBIB & IBIN.
    Pls reply back if you have any solution to this.
    Regards
    Devika.S

  • How to link Sales Order with Service Contract and then with Install Base?

    Hi Friends,
    1) I would like to know the integeration process from sales order to Service Contract and then with Install Base.
    2) I couldn't see anything enabled in Service Tab in Order Lines, its grayed out. Is there any set up/profile option to get it enabled?
    3) How can we create AR invoice from Service Contract?
    Please let me know if anyone has idea on this.
    Thanks in Adavance,
    Vara

    Dear Sid,
    Thanks for your promt response.
    Let me explain you what I did.
    1) I have booked a Bill Only sales order which has one order line, mentioned it as Service Item and provided the same details in Service Tab in Order lines. Now Line status is "Fulfilled"
    2) Then Submitted Workflow Back Ground Process for OM Order Lines and it has created an AR Invoice and closed the line
    3) And then submitted "Service Contracts Order Capture Integration Program" from SErvice Contracts Responsibility and it completed normal.
    4) Now I went in to Launch Contracts Window and queried with the sales order but couldn't see any contract created
    5) Then I went in to Reprocess Order Window and found this order shows an error message as "Referenced Product not present in the Installed Base", then I tried to reprocessed it, but the same error message again.
    Here I have few doubts:
    1) Are the AR invoice and Service Contract Billing Invoices same?
    2) In above scenario AR Invoice has been created, I would like to do the billing from SErvice Contracts and need to create an Invoice in AR? how can I do that?
    because as you explained in one of my questions earlier, A Single Invoice can be created for the whole duration of the contract. I want to do that and trying for the same.
    3) Regarding the above error message, how can I resolve it and create the service contract against that Order?
    Thank you so much for your helpful answers.
    Regards,
    Vara

  • 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

  • Oracle Installed Base

    Does the Oracle Installed Base system, lend itself to being populated with Install Base data from legacy ERP systems? It's my impression that the Install Base data, starts in inventory and ends at a customer location, but is it a requirement that everything start in inventory?
    Thanks

    is it a requirement that everything start in inventory?Nope, I usually start from scratch.
    Seriously now:
    Give us a clear picture, if possible, provide some links or whatever. Anything.
    http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html

  • Software Metering Report - Install base for all metered software programs - Returns 0

    Hi All
    I have an issue with one of the software metering reports, Install base for all metered software programs. when run it returns that the metered software is installed on 0 computers.
    All usage reports seem to work correctly and I can see usage data for the monitored applications. But anything related to install base such as the one listed above and "Computers that have a metered program installed but have not run the program since
    a specific date" either return 0 or are blank.
    Any help will be greatly appreciated

    Hi All
    finally found a fix to the problem. It was very closely related to what Gareth  had mentioned regarding Asset Intelligence. The actual method of detecting if a program is installed is done through Software Inventory
    Under Custom Client Settings i had enabled Software Inventory on client but never setup any rules to gather data. So i created a new rule for all *.exe files and around an hour later the report started to show up clients.
    This blog post also describes the method of setting up software inventory correctly 
    Thanks to all the help and hopefully this will aid anyone else encountering similar problems

  • Plese send me basis interview questions.

    hi,
              any one please send me sap basis interview questions and answers.and also give suggestions how to prepare interview point of view.
    regards,
    Balaram reddy.mukku
    Message was edited by:
            balaram reddy

    Here are some of the questions that I thought could be useful:
    Briefly describe about your basis experience
    What procedure would you follow to stop and restart SAP
    What's the purpose of the file arch<SID>.log
    When would you go for a full backup and when would you go for a whole backup?
    Which transaction would you use to find out the last processed and saved archive log?
    Where can I find the alert in SAP when a file system at UNIX is above 95%?
    Where in SAP can I find if SAPOSCOL is running or not
    What would you do to start SAPOSCOL?
    How to find what's the latest patch level for HP-UX
    Whats the procedure to install patches?
    What kernel level were you at?
    Whats the procedure to Upgrade Kernel?
    What is a system copy, why would I need a system copy? How often have you performed a system copy? Can you explain the steps involved in performing a system copy?
    How many Oracle upgrades have you performed for SAP?
    Have you performed a language import to your system?
    Explain your typical day of spool administration?
    If I want to know who made the last change to a specific role how would you find it?
    Which transaction would show roles added and removed from a user?
    What is Central User Administration? And how would you perform user administration in a CUA environment?
    Can I make any config changes in Production server?
    Assuming the Development server is open for changes but, when you perform a config change and save it, its prompting you to create a transport request. What would I have to do to save config changes without creating a transport?
    What storage array have you got exposed to?
    What tape drives have you administered?
    How would I stop a backup job at the Unix level?
    What command would I use to find if a tape drive is UP or not?
    Award points if my post is helpful.
    Thank you.

  • How to extract CRM Install Base's serial # to BW?

    Hello Gurus,
       I'm working on CRM services area. Now the questions is I have a requirement to extract Install Base's equipment serial number to BW. In a service order I can get Component number. With that component number I can go to IB53 tcode and check the serial #. But my question is how can I extract that # to BW side.
    Is there any FM which return Serial#, Equipment location. etc when I pass component #?? So, that I can enhance with this field to service order header datasource.
    Or else are there any other ways to solve this?
    Thanks in adv
    RKR

    HI,
    I used this DataSource to get IBase detials. 0CRM_SRV_IBASE_TRAN. But this DataSource doesn't have any DSO. So, I created a custom DSO on this DataSource.
    This data source doesn't return equipment serial #, location, etc... To get those we need to enhaced the data source.
    Let me know if you have any questions regrding this...
    Thanks
    RKR

  • Clarity on basics of oracle Install Base

    I am not getting clarity over the below mentioned items even after going thru documents. Can anybody please highlight on these...
    --> what exactly is an instance in install base and how is it associated to a serial number of an item or product?
    --> what is meant by maintaining relationship between instances?
    --> At what position specific to Service Contracts / Order Management / Shipping applications, an instance gets created or updated in install base?
    --> what is meant by serial control over an item from an shipping organization perspective?
    --> what are the other applications that can be a source for an Install Base transaction?
    Thanks,
    SK

    Hi,
    Question1.
    One oracle block (say a 8k or a 16k block) can contain several rows. Right?
    Ans:Yes, In One oracle block there can be more than one row whether it is oracle 10g or 11g doesn't matter.
    Question2.
    Every row stored in an oracle block is referred to as a Row piece in Oracle terminology. Right?
    Ans: Yes ,You are correct.
    The below link will answer you better about this question.
    http://download.oracle.com/docs/cd/B13789_01/server.101/b10743/schema.htm
    Best regards,
    Rafi
    http://rafioracledba.blogspot.com/
    Edited by: Rafi (Oracle DBA) on Mar 29, 2010 6:37 AM

  • Two related questions:  ColdFusion 10/Java applications and J2EE supported servers

    I have two related questions:
    1.  CF10 and integration with Java Web applications
    We have a couple of Java applications running on JRun and interfacing with CF9 applications.  The JRun clusters were created through the JRun Admin and, apart from lack of Axis 2.0 support, have served us well for years now.  And, as would be the case, the ColdFusion9/Java/Flash application is a critical public-facing application that the business uses for bidding on projects.
    It appears that with ColdFusion 10 on Tomcat, we will not be able to run those Java applications on a Tomcat-CF10 JVM cluster.  Is this correct?  IF so, what are our options? 
    2.  J2EE Application Servers supported by Adobe for CF10
    Which of these is correct?
    A.  This URL (http://www.adobe.com/products/coldfusion-enterprise/faq.html) states "ColdFusion 10 supports IBM® WebSphere, Oracle® WebLogic, Adobe JRun, Apache Tomcat, and JBoss."
    B.  This URL (http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf1 0/coldfusion10-support-matrix.pdf) states:
    "J2EE application servers: WebLogic Server 10.3, 11.1, WebSphere Application Server 7, ND 7 JBoss 5.1, 6.0, 7.1.0"
    I *think* "A" above is wrong re. support for Adobe JRun.  It does not specify a version of Apache Tomcat unless it is simply referring to the custom version the comes with CF10.
    Option "B" above shows no support of Adobe JRun or 'standard' Apache Tomcat.
    Thanks,
    Scott

    Question 1 above was answered:  "No support for Java web applications under CF10's custom version of Tomcat"
    Question 2:  No answer yet:  Is Apache Tomcat (NOT Adobe's customized version) supported for CF10 J2EE deployment?  I do not see any installation instructions on how to install CF10 on Apache Tomcat 6 or 7.
    Is anybody using Apache Tomcat as their J2EE app servers and, again, NOT Adobe's customized/limited version? 
    Thanks,
    Scott

Maybe you are looking for

  • HT4108 I have a projector and I want to show output video all the time,but I can only get it to work on safari

    I have a projector and I was looking for an app that would allow output video all the time

  • Connecting ATV2 to MacBook Pro

    I've been pondering getting an ATV, but I've heard that there is latency between the devices and the ATV when using AirPlay. i.e. There is a 3 second delay from when you hit play and when you hear the music. Can anyone confirm this? Is it present on

  • Use of graphics card with core install

    Hi, We have a sun sparc server that has the solaris core installation. We run our Jrun application server on this machine. We would like to use a mapping software called Mapxtreme that needs a graphics card on the server. Can I use a graphics card wi

  • EPM 11.1.1.3 installation on Windows 2008 32 bit

    Hi, getting the following errors when trying to install epm 11.1.1.3 on windows 2008 32 bit. D:\downloads\download_location\assemblies\essbase_administration_services_webapp... Not exists D:\downloads\download_location\assemblies\svc_client... Not ex

  • To much red

    Hello, Usually i work with Capture one pro or DPP and have good results with these programs. Colors with DPP are very natural Now I am new to Lightroom, see that it has many benefits BUT the colors are generally to much red in the auto mode but also