Unable to View Composite service interface in Integrated SOA Gateway

Hi,
Am unable to view the Composite Service Interface, Can you suggest me wethere to add any roles or profiles to be set specifically for this.
Thanks,
Maggi.

What version are you on and what user groups is your log in assigned to?

Similar Messages

  • [Integrated SOA Gateway] Publish Java based web service

    Welcome!
    Lately I have been trying to publish Java based web service through Integrated SOA Gateway. The documentation states that:
    +"Custom interface definitions can be created for various interface types including custom interface definitions for XML Gateway Map, Business Event, PL/SQL, Concurrent Program, Business Service Object, Java (except for Java APIs for Forms subtype) and Composite Service for BPEL type."+ (Integrated SOA Gateway Developer's Guide Release 12.1, "Creating and Using Custom Integration Interfaces")
    After familiarizing myself with $FND_TOP/bin/irep_parser.pl and $FND_TOP/bin/FNDLOAD tools, I have started coding my POJOs. Initially I have come up with three classes - request/response objects and service implementation. Service implementation has been annotated with "@rep:X" descriptors according to "Java Annotations" section of the documentation. While invoking $FND_TOP/bin/irep_parser.pl I have received errors about class resolution. My solution was to transform request and response types to static inner classes. This way I ended up with one *.java source file (see below).
    * Sample ISG Service.
    * @rep:scope public
    * @rep:product AP
    * @rep:displayname My Custom ISG Service.
    public class MyService {
    public static class Request {
    private String id;
    public void setId(String id) {
    this.id = id;
    public String getId() {
    return id;
    public static class Response {
    private String data;
    public void setData(String data) {
    this.data = data;
    public String getData() {
    return data;
    * Sample operation.
    * @param request Request Object.
    * @return Return Object.
    * @rep:displayname Test operation.
    * @rep:category BUSINESS_ENTITY SAMPLE_SERVICE
    public MyService.Response testOperation(MyService.Request request) {
    MyService.Response response = new MyService.Response();
    response.setData("Some Data");
    return response;
    ILDT file has been successfully created and uploaded. However, I could not see the "Generate WSDL" button on Integrated Repository website. Is there any particular interface or superclass that my service implementation should extend? I have reviewed "PurchaseOrderSDO" example posted in the developer's guide (page 407), but I couldn't come up with a working solution. Could you provide me with more detailed tutorial/example? Which documentation sections should I read again?
    After searching through forum, I have spotted $FND_TOP/bin/soagenerate.sh script, and thought that lack of "Generate WSDL" button was an EBS defect. After running the script, I have received an error:
    Error in Service Generation.
    ServiceGenerationError: Interface Type (JAVA) Interface SubType (null) is not supported.
    oracle.apps.fnd.soa.util.SOAException: ServiceGenerationError: Interface Type (JAVA) Interface SubType (null) is not supported.
         at oracle.apps.fnd.soa.provider.wsdl.ArtifactsFactory.getArtifactsGenerator(ArtifactsFactory.java:55)
         at oracle.apps.fnd.soa.provider.wsdl.WSDLGenerator.generateServiceWSDL(WSDLGenerator.java:128)
         at oracle.apps.fnd.soa.provider.wsdl.ServiceGenerator.generateSOAService(ServiceGenerator.java:75)
         at oracle.apps.fnd.soa.provider.wsdl.ServiceGenerator.generateSingleService(ServiceGenerator.java:88)
         at oracle.apps.fnd.soa.provider.wsdl.ServiceGenerator.main(ServiceGenerator.java:419)
    I would be grateful for any suggestions. Has anyone published Java based web service through ISG?
    Best regards,
    Lukasz

    I tried the following as per Oracle support and able to generate the wsdl though, but not invoke the webservices.
    1. Applied the patch 8607523
    2. Took the translator.jar file from the patch 8857799 and replaced the current translator.jar file
    3. Deploy the adapters.
    $FND_TOP/bin/txkrun.pl -script=CfgOC4JApp -applicationname=pcapps
    -oc4jpass=welcome -runautoconfig=No

  • Configuring Integrated SOA gateway

    Hi,
    I am writing an application wherein I need to retrieve data from oracle HR system and write it to a csv file. I am trying to configure Integrated SOA interface for communication to oracle system through web services. Can anyone tell if it is a better way to connect to oracle system? In that case can you share me the docs that would be helping me to configure web services?

    Hi,
    You could also refer to:
    Note: 556540.1 - Installing Oracle E-Business Suite Integrated SOA Gateway, Release 12
    Note: 726414.1 - Oracle E-Business Suite Integrated SOA Gateway Troubleshooting Guide, Release 12
    Note: 565922.1 - Oracle E-Business Suite Integrated SOA Gateway Release Notes, Release 12.1.1
    Critical Rollup Update for E-Business Suite Integrated SOA Gateway Release 12.1.1
    http://blogs.oracle.com/stevenChan/2009/09/rollup_update_soa_gateway.html
    Regards,
    Hussein

  • Integrated SOA Gateway issue: SOAP UI call ends with error

    -- EBS 12.1.3 (no upgrade, directly installed.. is a test instance)
    Hello, i need help in calling a deployed webservice in Integrated SOA Gateway in EBS.
    -> Setup SOA Gateway is done.
    -> FND_PROFILE PL SQL API is deployed as a Webservice.
    To test the webservice i have taken the soap ui tool an send follwowing Request XML:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:fnd="http://xmlns.oracle.com/apps/fnd/soaprovider/plsql/fnd_profile/" xmlns:get="http://xmlns.oracle.com/apps/fnd/soaprovider/plsql/fnd_profile/get/">
    <soapenv:Header>
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" mustUnderstand="1">
         <wsse:UsernameToken>
         <wsse:Username>asadmin</wsse:Username>
         <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">welcome</wsse:Password>
         </wsse:UsernameToken>
         </wsse:Security>
         <fnd:SOAHeader>
              <!--Optional:-->
    <fnd:Responsibility>APPLICATION_DEVELOPER</fnd:Responsibility>
    <!--Optional:-->
    <fnd:RespApplication>FND</fnd:RespApplication>
    <!--Optional:-->
    <fnd:SecurityGroup>STANDARD</fnd:SecurityGroup>
    <!--Optional:-->
    <fnd:NLSLanguage>AMERICAN</fnd:NLSLanguage>
    <!--Optional:-->
    <fnd:Org_Id>204</fnd:Org_Id>
    </fnd:SOAHeader>
    </soapenv:Header>
    <soapenv:Body>
    <get:InputParameters>
    <!--Optional:-->
    <get:NAME>USER_ID</get:NAME>
    </get:InputParameters>
    </soapenv:Body>
    </soapenv:Envelope>
    The Responce is saying:
    <faultstring xmlns="">Error occured while service was processing.</faultstring>
    In the SOA Monitor i can see all Requests being send from SOA UI. The detail error message says:
    oracle.apps.fnd.soa.util.SOAException: ServiceProcessingError: Exception returned from JCA Service Runtime. file:/opt/app/OMSOAF/inst/apps/OMSOAF_sf2p-dev-oapp1/soa/PLSQL/2678/GET.wsdl [ GET_ptt::GET(InputParameters, OutputParameter) ] - WSIF JCA Execute of operation 'GET' failed due to: Could not instantiate InteractionSpec oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec due to: Error while setting JCA WSDL Property.
    Property setIRepOverloadSeq is not defined for oracle.tip.adapter.apps.AppsStoredProcedureInteractionSpec Please verify the spelling of the property.
    nested Exception is: ORABPEL-12532 Error while setting JCA WSDL Property................
    Do anyone has an idea?
    Thank you in advice!

    Hi Yilmaz,
    Am also facing the same issue while am invoking standard/custom web service from soapui....is this issue is fixed in your case, if issue fixed, please post the resolution point how you are fixed. please post the solution ASAP. Otherwise do we have any metalink note on this to fix the issue. please share me the details.
    Regards
    Santhosh Kumar. K

  • EBS R12 Integrated SOA Gateway  Vs Oracle As Adapter.

    Hi,
    Can the messaging in EBS R12 Integrated SOA Gateway via Webservice be 2 ways. Can we Integrate EBS 12.1.1+ using Oracle AS adapter with SOA? Is there some certification available with what version of SOA is it certified?
    Thanks,
    NL

    There is a good recap of this here:
    http://blogs.oracle.com/ebusinesssuiteintegration/2010/02/business_events_-ebsadater_v.html
    Regards,
    Gareth

  • Integrated SOA Gateway

    what is Integrated SOA Gateway?
    what is Oracle ESB?
    What is integration Repository?
    What is the relation between these three?

    Hi,
    You could also refer to:
    Note: 556540.1 - Installing Oracle E-Business Suite Integrated SOA Gateway, Release 12
    Note: 726414.1 - Oracle E-Business Suite Integrated SOA Gateway Troubleshooting Guide, Release 12
    Note: 565922.1 - Oracle E-Business Suite Integrated SOA Gateway Release Notes, Release 12.1.1
    Critical Rollup Update for E-Business Suite Integrated SOA Gateway Release 12.1.1
    http://blogs.oracle.com/stevenChan/2009/09/rollup_update_soa_gateway.html
    Regards,
    Hussein

  • Unable to view Abstract Message Interface(Sync) in Container Step of BPM

    Dear Friends,
    This is IDOC---SOAP Sync Communication Interface
    I have created the External Def by exporting & importing the Standard Idoc
    and Imported the WSDL File which has the Request & response Structure
    I have created the Outbound Sync message Interface for Idoc side
    and Abstract Sync message Interface for the same to use in BPM
    and also created Inbound Sync Message Interface for Webservice side
    and Abstract Sync Message Interface for the same to use in BPM
    Problem is::::
    While creating the Container varible inside the Integration Process, i have to select the Abstract Message Interface which i created for Idoc.
    But it is not at all visible in the list.
    What might be the problem
    REgards
    Seshagiri

    Hi,
    I have created
    For Idoc side
    1) Create O/b Sync by having request of Idoc and response structure of Idoc 
    2) Create ABS Sync by having the request of Idoc and response structure of Idoc 
    3) Create ABS Async by having the Request of Idoc Only
    For Webservice side
    1) Create I/b Sync by having the request of webservice and response of that
    2) Create ABS Sync by having the request of webservice and response of that
    3) Create ABS Async by having the Response of Webservice only
    I created the Steps inside the Integration Process as showed in the screens.
    1)Integration Process graph
    http://img145.imageshack.us/img145/4848/ipviewwv1.jpg
    2)Receive Step
    http://img293.imageshack.us/img293/1756/receivepropng8.jpg
    3)Send step1
    http://img179.imageshack.us/img179/2200/send1bd0.jpg
    4)Send Step2
    http://img182.imageshack.us/img182/8468/send2wl1.jpg
    When i check the F7, it is throwing the error like
    http://img247.imageshack.us/img247/4356/errortx3.jpg
    Regards
    Seshagiri

  • Integrated SOA Gateway or  SOA Suite  in this Scenario

    iam having a client Query
    The scenario of integration goes like this .
    2 way direct XML Calls by calling web services not much of orchestration required during the xml flow from end to end . e biz and third party API web services .
    1) The question comes which will be the best way of doing integration using xml gateway , soa integrated gateway . do these comes as deffault part of ebiz .?
    2)Using SOA Suite .
    3)Cost between them .
    Thanks in adavance,

    I tried the following as per Oracle support and able to generate the wsdl though, but not invoke the webservices.
    1. Applied the patch 8607523
    2. Took the translator.jar file from the patch 8857799 and replaced the current translator.jar file
    3. Deploy the adapters.
    $FND_TOP/bin/txkrun.pl -script=CfgOC4JApp -applicationname=pcapps
    -oc4jpass=welcome -runautoconfig=No

  • Unable to clear web services directories

    Hello all,
    I am deploying an ear file contating Web Service (out of EJB) and I am getting error below.
    Has anyone experienced this? 
    I have  NW2004s (700 -SP10)
    I appreciate your feedbacks.
    regards,
    Fereidoon
    Result
    => deployment aborted : file:/C:/DOCUME1/LOCALS1/Temp/temp1134sap.comhomeitemear.ear
    Aborted: development component 'home/itemear'/'sap.com'/'20080624121808'/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/homeitemear.. Reason: Webservices deployment exception! The reason is: Error occurred, trying to generate web services deployment files for application sap.com/homeitemear. Unable to clear web services directories (C:\usr\sap\F48\JC30\j2ee\cluster\server0\apps\sap.com\home~itemear\webservices_container/webservices, ./temp/webservices/deploy/sap.com_home_itemear/webservices) - this may cause problems on web services start or update phase. . The error refers to application: none, jar: , web service: .; nested exception is:      java.lang.Exception: com.sap.engine.interfaces.webservices.server.deploy.WSDeploymentException: Webservices deployment exception! The reason is: Error occurred, trying to generate web services deployment files for application sap.com/homeitemear. Unable to clear web services directories (C:\usr\sap\F48\JC30\j2ee\cluster\server0\apps\sap.com\homeitemear\webservices_container/webservices, ./temp/webservices/deploy/sap.com_home_itemear/webservices) - this may cause problems on web services start or update phase. . The error refers to application: none, jar: , web service: .
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployGenerator.generateDeployFiles(WSDeployGenerator.java:132)
         at com.sap.engine.services.webservices.server.deploy.ws.WSDeployManager.deploy(WSDeployManager.java:47)
         at com.sap.engine.services.webservices.server.deploy.WSDeployer.deploy(WSDeployer.java:157)
         at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:606)
         at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:321)
         at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:307)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3184)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:552)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)

    Dear,
    What is your SP level,this thread seems to be answer your query!!!
    Unable to View Web services security in Visual administrator
    Regards,

  • Service interface not listed in business system in ID.

    Hi Experts,
    In my QA system service interfaces are not listed in business system in ID, i have added product and SWCV in SLD and i am still unable to see the service interfaces of SWCV that i have added. i have done SLD and CPA cache refresh, restarted the QA system but still unable to resolve the issue.
    Please suggest how to resolve this issue.

    Hi Venu,
    i have done SLD and CPA cache refresh, restarted the QA system but still unable to resolve the issue.
    Try if "Compare from SLD" works? This can be accessed by going to ID -> double-click business system -> communication component -> adapter specific identifiers
    Regards,
    Mark

  • SCSM 2012 R2 UR5 Console Crashes When Viewing Business Service Components

    I have an issue where a business service which has been synced from SCOM 2012 R2 into the CMDB I am unable to view the service components without the console crashing. This is occurring on all business services with service components present.
    The error message reported is:
    Microsoft.EnterpriseManagemnt.UI.DataModel.QueryFailedException: Query to adaptor 'dataportal:EnterpriseManagementRelationshipObjectAdaptor' Failed --->
    Microsoft.Enterprise.Management.Common.InvalidCriteriaException: The criteria used for the query has a character or keyword that is not valid
    Has anyone seen this before?

    Our server has been upgraded to UR5, as well as most consoles. Each of them, including the one that is available on the Management Server, crashes when performing the above task.
    We installed the console + UR4 on a VM and the problem doesn't happen.
    On ALL affected consoles, each crash is recorded with this message in the OperationsManager log:
    Microsoft.EnterpriseManagement.UI.DataModel.QueryFailedException: Query to adapter 'dataportal:EnterpriseManagementRelationshipObjectAdapter' failed. ---> Microsoft.EnterpriseManagement.Common.InvalidCriteriaException: The criteria used for the query
    has a character or keyword that is not valid. The following parse error was returned: Parse error before ) ---> Microsoft.EnterpriseManagement.Common.QueryGrammarException: Parse error before )
       at Microsoft.EnterpriseManagement.Mom.QueryGrammar.QueryGrammarYaccClass.error(Int32 q_state, SSLexLexeme q_look)
       at Microsoft.EnterpriseManagement.Mom.QueryGrammar.SSVParseLib.SSYacc.doError()
       at Microsoft.EnterpriseManagement.Mom.QueryGrammar.SSVParseLib.SSYacc.parse()
       at Microsoft.EnterpriseManagement.Mom.QueryGrammar.QueryGrammarParser.GetCriteriaXml(String query)
       at Microsoft.EnterpriseManagement.Common.QueryCriteriaHelper.GetParseTree(String criteria)
       --- End of inner exception stack trace ---
       at Microsoft.EnterpriseManagement.Common.QueryCriteriaHelper.GetParseTree(String criteria)
       at Microsoft.EnterpriseManagement.Common.QueryCriteria`1.ParseCriteria(ManagementPackClass monitoringClass, Boolean validateProperties)
       at Microsoft.EnterpriseManagement.Common.QueryCriteria`1.ParseCriteria()
       at Microsoft.EnterpriseManagement.UI.SdkDataAccess.DataAdapters.EnterpriseManagementRelationshipObjectAdapter.GetDataFromSdk(EnterpriseManagementGroup managementGroup, AdapterQueryParameters queryParameters)
       at Microsoft.EnterpriseManagement.UI.SdkDataAccess.DataAdapters.SdkDataAdapter`1.DoAction(DataQueryBase query, IList`1 dataSources, IDictionary`2 parameters, IList`1 inputs, String outputCollectionName)
       at Microsoft.EnterpriseManagement.UI.DataModel.QueryQueue.StartExecuteQuery(Object sender, ConsoleJobEventArgs e)
       at Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(IComponent component, EventHandler`1 job, Object sender, ConsoleJobEventArgs args)
       --- End of inner exception stack trace ---
       at Microsoft.EnterpriseManagement.UI.DataModel.DataPortalService.EndQuery(IAsyncResult result)
       at Microsoft.EnterpriseManagement.UI.SdkDataAccess.Common.DataAccessQuery.QueryAdapter(Uri adapterUri, Uri dataSourceUri, IList`1 inputs, Dictionary`2 parameterList, DataQueryBase query)
       at Microsoft.EnterpriseManagement.UI.SdkDataAccess.Common.DataAccessQuery.QueryAdapter(Uri adapterUri, Type adapterType, Uri dataSourceUri, Dictionary`2 parameterList, IList`1 inputs)
       at Microsoft.EnterpriseManagement.ServiceManager.ServiceMaps.Forms.ServiceForm.FetchRelationships(IList`1 sourceInstanceIdList, Guid relationshipTypeId, Boolean isSourceSeedRole)
       at Microsoft.EnterpriseManagement.ServiceManager.ServiceMaps.Forms.ServiceForm.FetchContainmentRelationshipsWithConfigItems(IList`1 sourceIDList)
       at Microsoft.EnterpriseManagement.ServiceManager.ServiceMaps.Forms.ServiceForm.ExpandServiceComponentsTreeImportedServiceNodes(IList`1 currentLevelNodes)
       at Microsoft.EnterpriseManagement.ServiceManager.ServiceMaps.Forms.ServiceForm.ExpandServiceComponentsTreeNodes(IList`1 currentLevelNodes)
       at Microsoft.EnterpriseManagement.ServiceManager.ServiceMaps.Forms.ServiceForm.HandleNodeClick(TreeViewItem item, Boolean seedRole)
       at Microsoft.EnterpriseManagement.ServiceManager.ServiceMaps.Forms.ServiceForm.ChildNode_Selected(Object sender, RoutedEventArgs e)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at System.Windows.Controls.TreeViewItem.OnSelected(RoutedEventArgs e)
       at System.Windows.Controls.TreeViewItem.OnIsSelectedChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
       at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
       at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
       at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
       at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, OperationType
    operationType)
       at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, OperationType operationType, Boolean isInternal)
       at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Boolean value)
       at System.Windows.Controls.TreeView.ChangeSelection(Object data, TreeViewItem container, Boolean selected)
       at System.Windows.Controls.TreeViewItem.OnGotFocus(RoutedEventArgs e)
       at System.Windows.UIElement.IsFocused_Changed(DependencyObject d, DependencyPropertyChangedEventArgs e)
       at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
       at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
       at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
       at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, OperationType
    operationType)
       at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, OperationType operationType, Boolean isInternal)
       at System.Windows.DependencyObject.SetValue(DependencyPropertyKey key, Object value)
       at System.Windows.Input.FocusManager.OnFocusedElementChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
       at System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
       at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs e)
       at System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs args)
       at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex, DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry, EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, OperationType
    operationType)
       at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, OperationType operationType, Boolean isInternal)
       at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object value)
       at System.Windows.Input.FocusManager.SetFocusedElement(DependencyObject element, IInputElement value)
       at System.Windows.Input.KeyboardNavigation.UpdateFocusedElement(DependencyObject focusTarget)
       at System.Windows.FrameworkElement.OnGotKeyboardFocus(Object sender, KeyboardFocusChangedEventArgs e)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
       at System.Windows.Input.KeyboardDevice.ChangeFocus(DependencyObject focus, Int32 timestamp)
       at System.Windows.Input.KeyboardDevice.Focus(DependencyObject focus, Boolean askOld, Boolean askNew)
       at System.Windows.Input.KeyboardDevice.Focus(IInputElement element)
       at System.Windows.UIElement.Focus()
       at System.Windows.Controls.TreeViewItem.OnMouseLeftButtonDown(MouseButtonEventArgs e)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.ReRaiseEventAs(DependencyObject sender, RoutedEventArgs args, RoutedEvent newEvent)
       at System.Windows.UIElement.OnMouseDownThunk(Object sender, MouseButtonEventArgs e)
       at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
       at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
       at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
       at System.Windows.UIElement.RaiseEvent(RoutedEventArgs args, Boolean trusted)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.InputManager.ProcessInput(InputEventArgs input)
       at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
       at System.Windows.Interop.HwndMouseInputProvider.ReportInput(IntPtr hwnd, InputMode mode, Int32 timestamp, RawMouseActions actions, Int32 x, Int32 y, Int32 wheel)
       at System.Windows.Interop.HwndMouseInputProvider.FilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at System.Windows.Interop.HwndSource.InputFilterMessage(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
       at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Boolean isSingleParameter)
       at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Boolean isSingleParameter, Delegate catchHandler)
       at System.Windows.Threading.Dispatcher.InvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Boolean isSingleParameter)
       at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
       at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.TranslateAndDispatchMessage(MSG& msg)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
       at System.Windows.Window.ShowHelper(Object booleanBox)
       at System.Windows.Window.Show()
       at System.Windows.Window.ShowDialog()
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowManager.GenericWpfWindowConstructor.BeginShow(ShowViewContext showViewContext, Object parent, Object view, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.ViewConstructor.BeginShow(ShowViewContext showViewContext, AsyncCallback callback, Object state)
       at Microsoft.EnterpriseManagement.ConsoleFramework.WindowManager.WpfWindowRecord.ShowWindow()
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()

  • Integration Repository SOA Gateway, not able to generate WSDL

    In Oracle R12.1.2, we are trying to generate WSDL for a pl/sql from "Integrated SOA Gateway" responsibility, we are getting the below error, can you help me in overcoming this issue.
    SOA Provider Access resulted in exception 'oracle.apps.fnd.soa.util.SOAException: ServiceGenerationError: ServiceGenerationError: Error in Service Generationoracle.jpub.Doit.main([Ljava.lang.String;, java.sql.Connection, oracle.jpub.mesg.AbstractMessages)' when attempting to perform 'GENERATE'. Please contact your System Administrator                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi!
    Did you encounter any error?Yes!
    >
    try givng C:\temp remember temp should have read and write permissions for the oracle applications o/s user(applmgr)Using c:\temp\test.log results in the following error while saving the log setting:
    An error has occurred!
    For input string: "10001:\temp\test.log"
    I can use whatever string I want, but as long as a ":" is included, I get that error.
    As for the user permissions. I installed the EBS using the standard Administrator account and this account is a member of Administrators and ora_dba.
    Best,
    Konrad

  • Unable to view Service notification in CIC fact sheet

    In the Customer Interaction Center for Utilities(CIC0), I'm unable to view a certain service notification under a custom fact sheet. However, if I try to view it by accessing CIC from ECC, it is visible there. What could be the possible issue?

    It is working fine now. Actually I had some DML configuration data in the old DS and it got replicated in the new DS instance. So whenever I click on the ServiceConfiguration tab it tries get some config details about that service and ultimately fails to get so. When I deleted the entry in LDAP, I can see all the services available.
    --lakshmi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Unable to view the details data  in "Employee Self-Service 4.0" of HRMS

    Unable to view the detail data in "Summary of Absences" when click the "Leave of Absence " button in "Employee Self-Service 4.0",
    the whole login path is : "Employee Self-Service 4.0" ===> "Leave of Absence "
    It shoud be seen the "Summary of Absences " ,bacause there are data in the datebase ,but when I click in it shows "No data exists."

    Dear user11977612 :
    Thank you for your answer, I have been check the profile :HR: Self Service HR Licensed, It had set YES. Thank you! But it still no records
    Dear Naveen:
    The page can open with IE7 and it just can not be shown the detail records (llike in "Absence Type" the detail ===>Advance Leave ) in the IE page.
    Regards,
    Edited by: user11975899 on 2009/10/13 下午 7:17

  • EM self Service interface integration with WebCenter Portal

    Hi,
    I just have a question from my customer which is: how we can integrate the Self Service interface from EM 12c into WebCenter portal? Did anyone tried this before ? how easy was that and what steps are required?
    Thanks

    Search also uses an absolute path, so it will need to start from /sp:Site/sp:RootWeb.
    There is also the option of making the search recursive or not.
    One way to explore how the simple search works, is to create a new JSF JSP page, and then to first drop the data control's search method onto that page and take Parameters > ADF Parameter Form. Click OK to accept any defaults. Now drop the return of the search method onto the same page, and drop it as, say, an ADF read-only table, again click ok to accept all the columns.
    Now follow the documented steps that you need to do to make this runnable (i.e. adding the sharepoint library), and run the page.
    When you run the page, you'll be able to explore possible values for input path's and search strings to see how it behaves. I suggest you start by searching in a small Document Library, so you can familiarise yourself with how it is working.
    So, suppose you have a SharePoint Document Library called TestDocuments, then its path should look like:
    /sp:Site/sp:RootWeb/sp:Lists/TestDocuments/sp:Files
    then enter true for "isRecursive" and suppose you have a document in this library named MyTestDocument.doc, then try looking for a name pattern MyTest%.
    Also, you can go back to your getItems page - the one that is displaying the whole repository as a tree - and use that to find what the absolute paths are to your data. You'll need to supply that absolute path as the starting point for your searches.

Maybe you are looking for

  • Iphoto package contents is separate from iphoto after hard drive recovery

    I have moved some of my previous iphoto libraries to an external hard drive. It fell and was not usable and did nor want to open any of my fikes. It was rceovered and I've received it back. The package contents are now seperate from the iphoto icon's

  • How do I share different applications with each account on my computer?

    I just got an iMac and transferred my information over from my mac book. So now my iMac has my iTunes, Microsoft Office, iCal, and Address Book on my account (I am the administrator). This is the family computer so my wife needs access to the iCal an

  • Can't install Air on XP home edition (sp3) any ideas?

    I'm getting the error:  An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator. I've been all over this forum trying all sorts of proposed fixes and still have no luck. A

  • Unable to view Imported DC from NWDI in the webdynpro explorer view

    Hello, I am facing problem with NWDS version 2.0.22. we are upgradeing EP04 SPS 14 to sps 22.  When I import a DC project from NWDI from inactive view of development configuration perspective I cannot see the created DC's in Webdynpro Explorer view o

  • Importing into multiple pdfs?

    Is there a solution to the following problem?... I can inport from a single lined excel sheet into a pdf form. But can I import from a multiple lined excel sheet? I have multiple lines in a Excel sheet (tab delimited) to go into pdf forms, set up fro