How to retrieve selected item details (Product Id, Quantity) in Action clas

Hi
I want to retrieve the selected item details (Product Id, Quantity) in my custom action class .I am calling custom action event after u2018add to cartu2019 button clicked.  I basically need these details to pass to custom BAPI. I can able to retrieve User Name and itemkey successfully.  I Tried to retrieve the product , productID using WebCatItem but I was getting run time error and when I debug the code I can see webCatItem coming  as null. Below is my code. 
public class Z_AddToBasketAction extends BaseAction {
     /* (non-Javadoc)
@see com.sap.isa.core.BaseAction#doPerform(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
     public ActionForward doPerform(
          ActionMapping mapping,
          ActionForm form,
          HttpServletRequest request,
          HttpServletResponse response)
          throws IOException, ServletException {
          //Cache.Access access = null;
          Map returnValues = null;
          UserSessionData userSessionData =
               UserSessionData.getUserSessionData(request.getSession());
               BusinessObjectManager bom =
                         (BusinessObjectManager) userSessionData.
                         getBOM(BusinessObjectManager.ISACORE_BOM);
     String selectedPartnerID = bom.getUser().getUserId();
     String strItemkey=request.getParameter("itemkey");
     WebCatItem webCatItem =     (WebCatItem) request.getAttribute(
                         com.sap.isa.catalog.actions.ActionConstants.RA_WEBCATITEM);
     //If you are looking at Product attributes.
      String att =  webCatItem.getProduct()", "webCatItem.getProductID();
     ZBOM mybom = (ZBOM) userSessionData.getBOM(ZBOM.ZCUSTOM_BOM);
     return mapping.findForward("success");
Please help
Thanks
Aravind
Edited by: Aravinda Boyapati on Nov 30, 2010 10:21 PM

Hi Arvinda,
From which page you are trying to add products in cart? Are you selecting only 1 item at a time and then click on Add to cart button or you select more then 1 items to add into cart.
You can ceate hidden input filed and set their value through java script when you select any item. If more then 1 items then you can create an arry and set in the request parameter and then retrieve it in your custome class.
Regards.
eCommerce Developer.

Similar Messages

  • How to get work item details programatically ?

    Hi All,
    I have a list of work items (process instances) and I want to retrieve each item details such as: attachments, notes, id, ...
    All the items are filtered and represented as Fuego.Papi.Instance:
    Fuego.Papi.Instance[] inst = busProcess.getInstancesByFilter(filter : instFilter);
    But the work item details are inherited from Fuego.Lib.ProcessInstance. So, how to get the item details from inst[] ?
    Would appreciate any help, may be Dan will have an advise ?
    Regards,
    Kim

    If you have instances returned by your filter, you could extract variable information for each instance by doing something like this:
    for each inst in getInstancesByFilter(ps, filter : instF) do
        // here's how to get the value inside a primitive instance variable
        orderAmtObj as Object = getVar(inst, var : "orderAmount")
        // here's how to get the value of attributes inside a complex BPM Object instance variable
        //    - in this case this is an "order" object with two attributes (customerName and amount)
        orderObj as Object = (getVar(inst, var : "order"))
        xmlObject = Fuego.Xml.XMLObject(createXmlTextFor(DynamicXml, object : orderObj, topLevelTag : "xsi"))
        logMessage "The value of the order object's customer name is: " +
               selectString(xmlObject, xpath : "customerName")
        logMessage "The value of the order object's order amount is: " +
               selectNumber(xmlObject, xpath : "amount")
        // here's a rather uninspired way to retrieve who the participant is that was assigned the instance
        logMessage "The participant assigned to this instance is: " + inst.participantId
    endInside the above "for" loop, you could retrieve these predefined variables (this example assumes you use "inst" in your "for" loop):
        objRet as Any
        objRet = inst.getVar(var : "PREDEFINE_ACTIVITY")
        logMessage "Activity name = " + objRet using severity = DEBUGSubstitute "PREDEFINE_ACTIVITY" in the above logic to get this information:
    PREDEFINE_PRIORITY (priority)
    PREDEFINE_ACTIVITY_DEADLINE (activity.deadline)
    PREDEFINE_CREATION_TIME (creation.time)
    PREDEFINE_PROCESS_DEADLINE (deadline)
    PREDEFINE_DESCRIPTION (description)
    PREDEFINE_PROCESS (process)
    PREDEFINE_RECEIVED_TIME (receptionTime)
    PREDEFINE_PARTICIPANT (participant)
    PREDEFINE_COPY (id.copy)
    PREDEFINE_STATUS (status)
    Similarly, you might want to try to get instance information using the Fuego.Papi.VarDefinition object a try. Never used it, but the logic might be as simple as:
        logMessage "who created? = " + inst.getVar(Fuego.Papi.VarDefinition.CREATOR_ID) using severity = DEBUG
        logMessage "does it have attachments? = " + inst.getVar(Fuego.Papi.VarDefinition.HAS_ATTACHMENTS) using severity = DEBUG   
        logMessage "does it have notes? = " + inst.getVar(Fuego.Papi.VarDefinition.hasnotes) using severity = DEBUGDan

  • How to retrieve the item text from VL03 transaction .

    How to retrieve the item text from VL03 transaction .
    The requirement is like this, the item text thus retrieved should be printed in the script under the item.

    Jagadieshwar,
    Use <b>READ_TEXT</b> function module to get the proper item text of Delivery.
    <b>ID</b>: Probably you want 0002 (Item Note), but it depends which text you want Item Note, Material Sales Text ,etc..
    <b>NAME</b>: CONCATENATE Delivery Doc. Number + Delivery Item Number (e.g. 0080001729000010)
    <b>OBJECT</b>: VBBP
    <b>
    LANGUAGE</b>: sy-langu or whatever you want.

  • ADF Tree with Boolean Check Box: How to find selected items

    Hi Experts,
    ADF: 11.1.1.5.0
    WLS: 10.3.6
    I am using an ADF Tree which contains elements at two levels (say Departments and Employees). My requirement is to give provision for user to select Departments and Employees using the check boxes. User should be able to select what ever Departments he/she likes and what ever employees he/she likes. There should not be a provision to select Employee with out selecting the corresponding Department (root node in the tree).
    I am facing the below issues while trying to implement this use case:
    1. Always, only the first master record will be expanded by default (I am using "Display Row" property value as "default" and "ExpandAllEnabled" as "true"). My need is to expand all the master records by default. So that user need not explicitly expand each master record node and then select the associated child records.
    2. Currently, I am using value change listener associated to af:selectBooleanCheckBox to identify the Departments and Employee records that have been selected. Since not all departments (masters) are expanded by default, if user selects the check box of department (master) and then expands the department node, automatically all the employees of that department are selected. But, this event is not triggering the value change listener for the employee records. Because of this, after a department node is selected and then expanded, all the child elements' check boxes are selected but the events are not generated. Hence, I am not able to capture the selection of employee records.
    To summarize,
    1. Please let me know how to expand all master nodes in af:Tree by default.
    2. Please let me know the best approach to identify the selected items (both master and detail items) in the af:Tree component using af:selectBooleanCheckBox.
    Thanks in advance,
    Rathnam

    Hi,
                Can you please elaborate the solution? I have a similar problem in
    https://forums.oracle.com/thread/2579664

  • How to get selected items from a tree in backing bean without adfbc

    Hi ADF Experts,
    Below is my code for af:tree. My question is how can I get selected Items from the selectionListener (without adf bc) this uses formation of tree from backing bean.
    Using Jdev 11.1.1.7.0
    <af:tree var="node" value="#{pageFlowScope.MerchandizeBean.model}"
                      binding="#{pageFlowScope.MerchandizeBean.treeModel}"     id="tree" immediate="true" autoHeightRows="0"
                           styleClass="AFStretchWidth" rowSelection="multiple"
                           selectionListener="#{pageFlowScope.MerchandizeBean.treeNodeSelection}">
                    <f:facet name="nodeStamp">
                      <af:commandLink text="#{node.classDescription}"
                           actionListener="#{pageFlowScope.MerchandizeBean.createListManyItemForMerchandise}"           id="displayTable" partialSubmit="true">
                      </af:commandLink>
                    </f:facet>
                  </af:tree>
        public void treeNodeSelection(SelectionEvent selectionEvent) {
            // Add event code here...
            RichTree tree = (RichTree)selectionEvent.getSource();
                    TreeModel model = (TreeModel)tree.getValue();
                    //get selected value
    Thanks
    Roy

    Hi,
    in a multi select case, try
    RowKeySet rks = tree.getSelectedRowKeys();
    Iterator iter = rks.iterator();
    while(iterator.hasNext()){
    Object aKey = iterator.next();
    tree. setRowKey(aKey);
    Object rowData ? tree.getRowData();
      .... do something with the data here ...
    Frank

  • How to copy line item details in Service PO from service contract

    Hi Team,
    i am using service contract with account assignment U and when i am creating a PO with reference of contract then in PO at Item Overview is coming data ok, but at item details in services there is not picking data automatically from contract.
    whats wrong in my scenario.

    Hi,
    Please make sure that you follow the following steps:
    1. Enter the contract and item number in the PO item line
    2. Click on the u201CService Selu201D icon to select the required
    services from the contract
    3. In the Pop-up screen, enter the agreement number in the
    corresponding field.
    4. Now select the required services from the contract and
    use the u201CServicesu201D icon or  the F9 key. Now save the purchase
    order with the adopted lines
    Best Regards,
    Arminda Jack

  • How to get selected item value and display text in selectOneChoice ?

    Hi
    Thank you for reading my post
    I bind the a selectOneChoice component to my backing bean so i have an object which represent this component in the backing bean.
    now i need to find which item is selected by use , i know that i can use
    getSelect_service().getValue.toString() , but it will return the value of the selected item, how about its display text ?
    I should say that i create an static list for selectOneChoice items.
    thanks

    Using JDeveloper 10.1.3.1, freshly downloaded off OTN. I used the following code to try and identify the problem you are encountering. I attempted to use a valueChangeListener in combination with af:selectOneChoice components that use SelectItems and the singular SelectItem. I could not reproduce the error in either case. Please post more information about your development environment.
              <af:selectOneChoice label="Label 1"
                                  binding="#{backing_test.selectOneChoice1}"
                                  id="selectOneChoice1"
                                  valueChangeListener="#{backing_test.valueChangeListener}"
                                  autoSubmit="true" immediate="true">
                <af:selectItem label="1" value="1"
                               binding="#{backing_test.selectItem1}"
                               id="selectItem1"/>
                <af:selectItem label="2" value="2"
                               binding="#{backing_test.selectItem2}"
                               id="selectItem2"/>
                <af:selectItem label="3" value="3"
                               binding="#{backing_test.selectItem3}"
                               id="selectItem3"/>
              </af:selectOneChoice>
              <af:selectOneChoice label="Label 2"
                                  binding="#{backing_test.selectOneChoice2}"
                                  id="selectOneChoice2"                              valueChangeListener="#{backing_test.valueChangeListener}"
                                  autoSubmit="true" immediate="true">
                <f:selectItems value="#{backing_test.items}"
                               binding="#{backing_test.selectItems1}"
                               id="selectItems1"/>
              </af:selectOneChoice>
        public void valueChangeListener(ValueChangeEvent evt){
            // returns a UISelectOneChoice object
            System.out.println(evt.getSource().getClass().getName());
            // returns a string
            System.out.println(evt.getNewValue().getClass().getName());
        public Map getItems(){
            items = new HashMap();
            items.put("11","11");
            items.put("12","12");
            items.put("13","13");
            return items;
        }

  • [E2010][EWS] How to retrieve calendar items of a defined category?

    Hi,
    I'm trying with VBScript to retrieve calendar items of a mailbox for a category.
    I managed with EWS to retrieve ALL the calendar items of a mailbox :
    const TARGETURL="https://.../ews/exchange.asmx"
    const USERNAME="username"
    const PASSWORD="pasword"
    Const strEmailAddress = "[email protected]"
    Dim objXmlHttp, xmlDoc
    Set objXmlHttp = CreateObject("Microsoft.XMLHTTP")
    Set objXmlDoc = CreateObject("MSXML2.DOMDocument")
    'XML request
    strXmlData = ""
    strXmlData = strXmlData & "<?xml version=""1.0"" encoding=""utf-8""?> "
    strXmlData = strXmlData & "<soap:Envelope xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"" "
    strXmlData = strXmlData & " xmlns:t=""http://schemas.microsoft.com/exchange/services/2006/types""> "
    strXmlData = strXmlData & " <soap:Body> "
    strXmlData = strXmlData & " <FindItem xmlns=""http://schemas.microsoft.com/exchange/services/2006/messages"" "
    strXmlData = strXmlData & " xmlns:t=""http://schemas.microsoft.com/exchange/services/2006/types"" "
    strXmlData = strXmlData & " Traversal=""Shallow""> "
    strXmlData = strXmlData & " <ItemShape> "
    strXmlData = strXmlData & " <t:BaseShape>AllProperties</t:BaseShape> "
    strXmlData = strXmlData & " </ItemShape> "
    strXmlData = strXmlData & " <CalendarView StartDate=""2014-01-20T13:00:00"" EndDate=""2014-01-30T23:59:59""/>"
    strXmlData = strXmlData & " <ParentFolderIds> "
    strXmlData = strXmlData & " <t:DistinguishedFolderId Id=""calendar""> "
    strXmlData = strXmlData & " <t:Mailbox><t:EmailAddress>" & strEmailAddress & "</t:EmailAddress></t:Mailbox> "
    strXmlData = strXmlData & " </t:DistinguishedFolderId> "
    strXmlData = strXmlData & " </ParentFolderIds> "
    strXmlData = strXmlData & " </FindItem> "
    strXmlData = strXmlData & " </soap:Body> "
    strXmlData = strXmlData & "</soap:Envelope> "
    objXmlHttp.open "POST", TARGETURL, False, USERNAME, PASSWORD
    objXmlHttp.setRequestHeader "Content-Type", "text/xml"
    objXmlHttp.send strXmlData
    'status 200
    If objXmlHttp.Status = "200" Then
    If objXmlDoc.loadXML(objXmlHttp.responseText) Then
    Set soap_Body = objXmlDoc.documentElement.childNodes.item(1)
    Set m_FindItemResponse = soap_Body.childNodes.item(0)
    Set m_ResponseMessages = m_FindItemResponse.childNodes.item(0)
    Set m_FindItemResponseMessage = m_ResponseMessages.childNodes.item(0)
    Set m_RootFolder = m_FindItemResponseMessage.childNodes.item(1)
    Set t_Items = m_RootFolder.childNodes.item(0)
    For Each calendarItem In t_Items.childNodes
    Dim t_Subject
    t_Subject = calendarItem.getElementsByTagName("t:Subject").item(0).text
    msgbox t_Subject 'Show the subject of the item
    Next
    End If
    Else
    wscript.echo "Error: " & objXmlHttp.Status & " - " & objXmlHttp.statusText
    End If
    But now I would like to add a filter in the XML code to retrieve only the calendar items of a category called "TEST".
    How can I do this please?
    Thanks

    >> Do you have an example with ItemView to add a filter for a category? I didn't manage to make the query.
    Firstly I would suggest you use Powershell and the EWS Managed API, this will save you hours of work and many many lines of code.
    Because the category field is a multivalued property the best way to query this is to use a AQS query string the SOAP would look like
    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Header>
    <t:RequestServerVersion Version="Exchange2010_SP2" />
    </soap:Header>
    <soap:Body>
    <m:FindItem Traversal="Shallow">
    <m:ItemShape>
    <t:BaseShape>AllProperties</t:BaseShape>
    </m:ItemShape>
    <m:IndexedPageItemView MaxEntriesReturned="1000" Offset="0" BasePoint="Beginning" />
    <m:ParentFolderIds>
    <t:DistinguishedFolderId Id="calendar" />
    </m:ParentFolderIds>
    <m:QueryString>System.Category:'Green Category'</m:QueryString>
    </m:FindItem>
    </soap:Body>
    </soap:Envelope>
    Because this is a 2010 feature versioning you request is critical.
    Cheers
    Glen

  • How to set selected item of SelectOneMenu

    HI,
    I want to manually set the selected item of SelectOneMenu, can anyone tell me how can I do?
    Below is my code:
    <h:selectOneMenu binding="#{Monitor.dropdown1}" id="dropdown1" onchange="submit();" valueChangeListener="#{Monitor.pageItemsValueChange}">
        <f:selectItems binding="#{Monitor.dropdown1SelectItems}" id="dropdown1SelectItems" value="#{Monitor.pageItems}"/>
    </h:selectOneMenu>I tried to use dropdown1.setValue to set it, but I wonder which class type I can use.

    Initialize the value to the value you want to select:
    <h:selectOneMenu id="model" value="#{SearchVehicle.modelField}">
    <f:selectItems value="#{SearchVehicle.models}"></f:selectItems>
    </h:selectOneMenu>public class SearchVehicle{
    private String modelField = "XYZ";
    }

  • How to read selected item value from DropDownList?

    Hi,
    The DropDownList component has a selectedItem property that is supposed to return a ListBase.
    But what I want is just the "String" that is supposed to be the selected Item in the DropDownList.
    How can I read this value?
    thanks
    -Malena

    Thank, yes, I realized that right after I posted my question -:)
    I casted the selectedItem property to String and voila.
    Best
    -Malena

  • Shuttle: How to reference selected items on the right side

    This seems so easy so why am I struggling so much.
    I have a simple shuttle:
    1 Adam
    2 Baker
    3 Charlie
    4 Delta
    5 Echo
    6 Foxtrot
    Select Name D, UserID R from UserTable
    The values are stored in a VARCHAR2 field MULTI_USER (for example 1:2:4:6)
    When I want to get the names back from the selected item, how do I reference the colon-separated items?
    For example:
    Select Name from UserTable
    where UserID in (select MULTI_USER from MULTI_USER where MULTI_USER_ID = 1)
    should return:
    Adam
    Baker
    Delta
    Foxtrot
    Why is this so difficult for me to figure out?
    Thank you in advance

    Hi,
    This might help
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21674/bldapp_item.htm#sthref908
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • SRM 7 SOCO enhancement - from step1 to step2, how to get selected items?

    Hi all gurus,
    I'm enhancing the WD /SAPSRM/WDC_DO_SOCO_GAF_1, specifically my requirement is to block FPM navigation if certain conditions based on the selection are met.
    Example:
    An user searches for some PR in sourcing cockpit's step 1, select just a subset from the search result (say, he selects item 1 and item 3, leaving item 2 unselected).
    Then press the NEXT STEP button (which is, as far as I understood, an element managed by the COMPONENTCONTROLLER)..
    Let's suppose the condition we talked about is that each position of a specific PR should be selected; the example above does not meet that condition (only positions 1 and 3 are selected).
    What I'd like to implement is as follows:
    - if the user presses the NEXT_STEP, navigation to the newt WD is cancelled (user remains in STEP 1) and an explicative error message is raised in the message area (e.g. "all positions must be selected").
    Looking for the best, effective way to do this... In particular, I have to:
    -1- identify which positions have been selected when the NEXT_STEP button is pressed;
    -2- implement the check based on positions (that's the easy job);
    -3- raise a message into the messagearea (easy one) and STOP the process so that the user still remains into STEP 1 view (obviously, until his selection meets the specifics).
    I actually overwrote via enhancement the standard PROCESS_EVENT method in the COMPONENTCONTROLLER of that Webdynpro (/SAPSRM/WDC_DO_SOCO_GAF_1), and I'm trying to get the selected lines.
    IF  io_event->mv_event_id = 'FPM_NEXT_STEP'.
        DATA: test           TYPE REF TO /sapsrm/cl_ch_wd_ao_soco.
        DATA: gaf1           TYPE REF TO /sapsrm/if_cll_dom_soco_gaf1.
        DATA: selected_items TYPE WDR_CONTEXT_ELEMENT_SET.
        DATA: selected_item  TYPE /sapsrm/s_cll_wd_soco_workarea.
        test ?= wd_this->ig_componentcontroller~mo_aom_soco.
        CALL METHOD test->/sapsrm/if_cll_ao_soco~get_dom_soco_gaf1
    *  EXPORTING
    *    ion_wd_set                 =
    *    io_wd_view_controller      =
    *    io_wd_component_controller =
          RECEIVING
            ro_dom_soco_gaf1           = gaf1.
        DATA: tabselected  TYPE /SAPSRM/T_CLL_WD_SOCO_SEARCH.
        CALL METHOD gaf1->ZR7_IF_CLL_DOM_SOCO_GAF1~GET_SELECTED_ITEMS
          IMPORTING
            SELECTED_ITEMS = tabselected.
    where ZR7_IF_CLL_DOM_SOCO_GAF1~GET_SELECTED_ITEMS returns the SEARCH_RESULT node of the view GAF1.  This however returns the SEARCH_RESULTS table which contains ALL the positions in the Search table and not just the selected ones... I basically have to modify the get_selected_items, in order to get the selected lines, but actually don't know how and if it's possible; as far as I've seen in debug, there's no way to get the selection ... maybe it has already been cleared at this point?
    Any help provided on these 3 task is highly appreciated and welcome

    Solved! Quite a tricky solution, but it works.

  • How to change selected item color and the selected area size of listview

    What i really need to do is change the following things in XMAL.
    1. Changing the selection color
    2. Size of selected area 
    Thanks in advance.
    Dileepa S. Rajapaksa
    Trainee Developer
    Microsoft, Sri Lanka
    Twitter : @dsrajapaksa
    Blog : http://www.dileepatech.net

    Hi Dileepa,
    It is possible by customize the control by its template, see this for more information:
    ListViewItem styles and templates.
    By changing the selected visual state, you can change the color of the ListView item background, also the size of the selected item.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to get  selected item page number?

    I am developing the plug-in for moving page item from one page to another page,for that i need selected item page number.i.e. i need the page number
    which the item is selected.

    Just access the 'currentCountry' property in the action method.
    public void submit() {
        System.out.println("JSF has already set the property: " + currentCountry);
        // Now do your thing with it. E.g. saving it or so.
        countryDAO.save(currentCountry);
    }

  • How to get selected record details when single selection is used in a table

    Hi All,
    Inside a query region I have created a table using region wizard,for this table I have added a singleSelection Item. What I want is , on selection of a particular record i want to update or view that record in a new page , for this I have added update and view icons in each row.
    But I am unable to get the particular selected record
    OATableBean tableBean = (OATableBean)webBean.findChildRecursive("ResultTableRN");
    OASingleSelectionBean singleSelection = (OASingleSelectionBean)tableBean.getTableSelection();
    For this singleSelection object I was unable to find any method which will give the value of the view attribute associated with it.
    Anybody any suggestions regarding it ?
    Thanks in advance,
    Anant NImbalkar.

    Hi Anant,
    here is how you have to do it
    1) you need to enable PPR on that Singl selection , by changining the Action type =fireAction.
    2) define the envent , EVENT
    3) define paramters for that event. This is place that gives you handle to the Attribute of VO.
    So you can define paremters such
    Name = PARAM1
    value =${oa.EqxContactPrivEOVO1.ContactPrivilegeId}
    You can define as many paramters as you can for the vo field that u wanted to have.
    Now in the procesformRequest() , all you do it handle the event EVENT and get the parameters
    if ("EVENT".equals(pageContext.getParameter(EVENT_PARAM)))
    String accountid= pageContext.getParameter("PARAM1");
    You can refer developer guide for further details.

Maybe you are looking for

  • Webi reports based on the BW query that sits on top of BW Infoset

    Hi everyone, I do can create the BW OLAP connection on BW Infosets, but when I use the Bex Query and try to create the report, when I launch the report in Webi, it doesn't return any values, but when I launch the Bex Query itself, it does have data!

  • How do I change sync from automatic to manual

    Where do I go in itunes to remove the automatic sync process (whenever I connect my iphone) and do a manual sync?  I dumped contacts from old Palm system & the contacts in Google are showing duplicates between 4 to 8 times for each contact.

  • No Connection between EIS console and the Integration Server

    HI, EPM System 11.1.2.2 1. I have Integration Server and Oracle on the same machine (windows 2008 R2 x64). 2. I have created ODBC(system DSN) on the same server. 3. I have a client machine (windows 7 x64) on which EIS console has installed. 4. Error

  • How can I use the update service

    Hello experts, could you please explain me how to use the update service from a business object in the VC. I have created a object which contains following attributes: - key(ID) - created by(UserID) - creted at(Datetime) - modifiedAt(Datetime) - modi

  • JDev 10.1.2 error?

    I'm receiving the following error in my UIX 10.1.2 application. Does anybody know what I've done wrong? It happens when my application navigates to a struts data-action. 500 Internal Server Error java.lang.NoClassDefFoundError: oracle/jdeveloper/html