Extracting Technical Object List on Contract Items (View VISER02)

Hi,
We have build a simple extractor to get a full load of the VISER02 view into BI.
However this does not give us the set of objects which have been deleted by the users from the technical object list on the contract items.
We have looked at following options:
1. preventing users from removing equipments from the object list using SAP ERP user-exit.  It was put in place, then rejected by the business
2. flagging the SER02 underlying table for changes, and then develop a custom extractor on the change log tables.  Sounds over complex.
3. extracting VISER02 in full into a DSO into BI, then using a second DSO and with some mechanism identifying and flagging the equipments that disappeared. Not nice to do this in BI.
4. using an SAP ERP user-exit, saving the equipments removed from the object list to a custom table in SAP ERP, then extracting that table in delta mode.
Any more thought?
Thanks!!

I found the problem  This issue was caused by a condition within get_content method whereby all non hex input should have import param 'RAW' given, despite the difference in the objecttype being retrieved from the previousl class method cl_fitv_gos=>get_links. 
So no need to reply.
Thanks,
Kevin

Similar Messages

  • Swapping Technical Objects on Service Contract (VA42)

    Hi,
    I need to develop a funtion  that will swap Technical Objects on Contracts.  The reason for the change is a swap of equipment under warranty. 
    I have been looking at the IWOL function group trying to determine if the needed functions are there.  Has anyone else done this before?  If so, which BAPIs did you use to perfom this process?
    Thanks
    Rich

    The main contract data is stored in VBAK/VBAP, that is correct. 
    I'm not sure of all of the tables associated with the Technical Object link.  Here's some that I've found in my search.
    EQUI, contains the equipment (technical objects)
    SER02, gives OBKNR(s) by sdaufnr(vbeln) and posnr.
    OBJK, gives SERNR(s) by OBKNR.
    There are probably more tables involved, I can't say for certain.  There must be another table that links EQUI-EQUNR with either SER02 or OBJK.
    Note: Just to clarify what it is I'm trying to do.  What I need to do is to add a new Technical Object to an existing Contract Line item.  And delete and existing Technical Object from an existing Contract Line item.

  • Adding Technical objects linkage sales contract to equipement document

    hi Gurus,
    I am  trying to add an equipment in a sales contract (Extras / Technical Objects) but the system gives the message V1 192 (Serial number profile is missing for material 212 in plant 0001), the material is a maintenance service, and the equipment has a serial number, Why a the system checks the serial profile of material master data?
    Krishna

    Dear Prase,
    As you have explained, that´s the case you sale material as equipment, but in our case we sale a service maintenance over a client equipment. Does not logical  create a serial number related to service material.
    Thanks in advance for your help.
    Amparo

  • Technical objects from contracts

    I am trying to update the partners on an equipment master based on the partners assigned to the line item of an SD contract , the equipment is linked to the contract line item in the technical objects. does anyone know of an exit that will allow for this or the internal table that hold the link between the technical object and the contract item ?
    Thanks
    Edited by: Brendon Shotton on Oct 6, 2008 6:27 PM

    You can create a User Exit in CMOD for the 2LIS_11_VAITM DataSource to get the data. There should be a 1:1 (equi or inner join) or 0:1 (outer join) relationship of the data that you want to include, so that you don't create duplicate data.
    Another option would be to create generic DataSources and join the data in BW.

  • Select All in Object List Maintenance Item

    Hi fellow SAP users,
    Does anyone know if it is possible to select all equipments/flocs at once in the object list of Maintenance Item. I have to delete several Object Lists and some of them contain over 300 entries. Till know I didn't come any further then selecting them one by one before deleting. A very time consuming job. Furthermore I want to write a script for this in Innowera, but then the selecting one by one becomes an issue.
    I would greatly appreciate your help.
    thanks
    Mooky

    Frank-
    OK, thanks for looking into that. I also submitted this service request, which includes a simple sample app to demonstrate the problem:
    SR #3-2387481211: ADF Drag and Drop does not work for rows in table using Select All
    Thanks again for the reply.
    -Ed

  • PM preventive PM Order confirmation on the basis of object list

    Dear Experts,
    In paintenance plan I have funtional location.In object list I have 5 Equipments.Now when order is generated there are 4 operations.All the operation is same to all equipments.Is it right.
    Now when I am going for its confirmation,I don't know how to do the same on the basis of Equipment i.e object list.Can any one help me out with the steps involved in the same.
    Regards,
    Rajesh.

    Hi ,
    1.In your case here we would do confirmation for each order operation and that will be applicable for all the eqpts in the oblect list of the order.
    2. If you want to generate separate order with same operations for different eqpts then use maintenance item in the maintenance plan .Thus maintenance order gets generated for each maintenance item in the maintenance plan.The same order would be applicable for the list of eqpts in the object list of maintenance item ..
    I hope this would clarify ..
    regrds
    pushpa

  • Navigate to technical objects programatically

    Hi Folks,
    We are developing an internal tool  for developers in our team. The tool will produce output of a technical objects list. It can be program,Function Module,Class methods, DB table,BADI,Exits(pre/post/OVR), Implicit enhancements etc
    Is there any way to porgramatically handle the navigation when the user clicks on the object name other than doing recording for and filling BDC tab for each object type.
    Regards
    Arshad

    You can use cl_wb_worklist along with RS_TOOL_ACCESS for this purpose.
    This example code, shows how to do this for a program. This can be extended for other objects also.
    report navigation_example.
    data:lcl_wrklist type ref to cl_wb_worklist,
          i_wrklist  type wbworklist,
          l_wrkitem  type wbworkitem.
    l_wrkitem-id-type = 'P'.
    l_wrkitem-id-name = sy-cprog. "Program name to navigate to
    l_wrkitem-state-line = 2.  "Navigation position of the program
    append l_wrkitem to i_wrklist.
    lcl_wrklist = cl_wb_worklist=>get_worklist( sy-uname ).
    call method lcl_wrklist->clear.
    call method lcl_wrklist->add_objects
      exporting
        p_objects = i_wrklist.
    call method lcl_wrklist->store.
    call function 'RS_TOOL_ACCESS'
      exporting
        operation    = 'SHOW'
        object_name  = sy-cprog
        object_type  = 'PROG'
        with_worklist = 'X'.
    call method lcl_wrklist->clear.

  • BAPI- Quotaion creation and technical objects

    Standard BAPI for Quotation and technical objects  
    Posted: Feb 27, 2006 11:33 PM        Reply      E-mail this post 
    I want to create quotation in r/3 using Bapi
    I have already identiifed BAPI_QUOTATION_CREATEFROMDATA for the same. Its working.
    Now i want to add technical objects to every line items.
    Can someone help me how to automate this?
    Do i write a BDC or is there any other bapi or any other way?

    Hi Seema,
    Did you try BAPI_CUSTOMERQUOTATION_CHANGE?
    Regards,
    Suresh Datti

  • Adding Objects to Object List on the Service Contract Line Item

    Hi,
    I want to add a new fields at the object list. This is identified as configurable when I click on Configure Page button. Now when I add click on new field it which object should I select to enhance Object List.
    << Moderator message - Please do not promise points >>
    Thanks and Regards,
    Edited by: Rob Burbank on Dec 16, 2010 3:59 PM

    As books is a list of String it can't accept a Book object !
    LinkedList<Book> books = new LinkedList<Book>();

  • COPA line item report, Number format  -output type - object list(ALV).

    Hi,
    I am preparing COPA line item report. I want to change number format (two decimal place). I did the changes in form level then I did the changes in drill down report as well and saved as save definition.
    But changes are not reflecting in- output type - object list(ALV).
    Please provide help in this.
    Regards

    HI
    What t-code you are using to write this line item report ?

  • 'Find an Item' search on list with more items than view limit

    Hello all
    The 'Find and Item' search on a list with more items than the view limit appears to filter results according to where you are in that list.  So if I search on the allitems page displaying items 1-100 I get hits from the entire list.  But if I arrow
    through to view items 201-300 and repeat the same search only items from 201 to the end of the list are returned
    I'm assuming this is not how it should work i.e. it should always return results from the whole list.  Is there a way to make that so (other than increasing the view limit to something huge so that all items are always displayed)
    Many Thanks
    Dan

    Hi,
    According to your post, my understanding is that Find an item Search box in List didn't returned any results.
    The problem is due to a difference between the Content Source defined for the crawl and the default zone defined in the Alternate Access mapping.
    You need to change the Alternate Access Mapping configuration.
    For more information, you can refer to:
    http://blog.jonathanroussel.com/2009/01/sharepoint-search-using-this-site-or.html
    http://blog.dafran.ca/post/2011/07/02/SharePoint-does-not-return-any-search-results.aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to view list of contracts for ship - to - parties

    Hi,
    How to view list of contracts for ship - to - parties
    LM

    Dear LM,
    This is possible through VA45 transaction,but as per the standard you can get sold to party wise .
    If you want ship to party wise then you need to do these configuration settings to add SH partner function to selection list then try
    Go through IMG path
    SPRO>IMG>Sales and Distribution>Sales>Lists-->Set Updating Of Partner Index here you go for new entries then maintain SH -Ship to party partner function for Transaction group 4-contract then save the changes.
    Now go to VA45 transaction then click on partner functions push button here you enter partner function SH then give the other details like ship to paty number ,material and date then execute now system will give the contract document list for that ship to party.
    I hope this will help you,
    Regards,
    Murali.

  • Technical objects required to be mandatory in service contract VA41

    Hi
    I've got exactly the same issue as the one described in the thread.
    Technical objects required to be mandatory in service contract VA41
    Unfortunately for me it has never been answered, and seems to be quite old now.
    Does anybody knows how it could be set or developed?
    Regards
    Olivier

    Through standard configuration, it is not possible.  However, you can try with any of the following exits
    USEREXIT_MOVE_FIELD_TO_VBAP or
    USEREXIT_SAVE_DOCUMENT
    in the program MV45AFZZ where your technical team needs to validate those required fields as mandatory which is quite possible through coding.
    G. Lakshmipathi

  • Incompletion Log(Service Contracts-Technical Objects)

    Dear Experts,
              Our Requirement is to include Equipment (Technical Objects) in the Service Contract - Incompletion Log. We could not find the Equipment Details. Please post your thoughts.
    Regards,
    shareeq

    Hi Zakaria,
    I know it is possible to make it compulsory when introducing a service material in the service contract. You should check transaction OISD. Here you should check fields RTYP (02) and ROBJ (02) .
    "The reference type determines whether you can or must specify a technical reference object when you create a service order automatically, or whether you can generate a service order without a technical reference object."
    I hope this will help you.

  • Adding Technical objects (equipment) in sales contract

    Hi Gurus!,
    I trying to add an equipment in a sales contract (Extras / Technical Objects) but the system gives the message V1 192 (Serial number profile is missing for material 212 in plant 0001), the material is a maintenance service, and the equipment has a serial number, Why a the system checks the serial profile of material master data?
    Best regards,
    Amparo

    Dear Prase,
    As you have explained, that´s the case you sale material as equipment, but in our case we sale a service maintenance over a client equipment. Does not logical  create a serial number related to service material.
    Thanks in advance for your help.
    Amparo

Maybe you are looking for

  • BP Balane report

    To all , I want a report for BP balances like this, BP Code, BP Name, Group Name, Accounts Payable Name, Accounts Receivable Name ,BP Balance This report should be with following parameters, Date Form, Date To, Series Name Tell  me your solution sama

  • SSO  Using Sys_Context function in Discoverer to validate

    We are using a calculation which uses the function SYS_CONTEXT('USERENV','CLIENT_IDENTIFIER') in 10G, we are now upgrading to 11G and this function does not work. Can someone direct me to what action I need to change 'Client_Identifier" to or how to

  • Please Help....On How to restrict user to enter into KM???

    Hi Experts, when ever user is clicking on a linkI am opening a document from the K.M. Here my problem is if user change the path, he is able to enter into KM... like.. http://myEP:50000/irj/go/km/docs/documents/Links/World%20Time.htm This is the path

  • Help with modal dialog returning a value to the calling page

    Greetings, Apex Version: 4.1.0.0.32 What I am trying to do is to create a modal dialog that is called from a form page. The dialog will present the user with an IR report that will allow the him to select a row and return a value from that row to a f

  • UCCX Last routed agent

    Hi, We want that UCCX caller will be transfer to his/her prefered agent or the agent he talked last time and if all agents are busy then IVR will prompt the caller to leave his/her voice and then that voice will be forward to agent by e-mail. Is it p