Quantcast
Channel: Discussion Forum > Connect Data Services
Viewing all 2504 articles
Browse latest View live

Help us to help you. Please read this first! (6 Comments)

$
0
0

Topic by Ryszard

Content

As the employees of the RightNow Technologies and moderators of this forum we strive to provide you with the best Customer Experience possible. However, since our resources are limited, in the order to serve you better, we ask for your help.

By following few simple rules while posting you will allow us to respond quicker, easier find the correct answer and save time to further improve the product we all love.

Before posting:

  • Familiarize yourself with RightNow Technologies product, its different components and parts. This will allow you to pick correct forum to post in.
  • Familiarize yourself with RightNow Connect components: Data Integration, .NET Desktop Integration (a.k.a. Add-Ins), etc. Keep in mind that RightNow Connect is the Integration Interface to the rest of the system, exposing only the subset of the available functionality. It closely reflects internals of the server side, including back-end data base. Therefore many questions could be answered by reviewing the general product documentation.
  • Learn about your RightNow Connect Integration platform of choice as much as possible.
  • Read latest Release Notes. Perhaps it is a known issue? Or a bug just fixed in the last release of the product?
  • Go through Getting Started Guide for the platform you use. Next, read Developer Guide. Keep in mind that these documents are version-specific, therefore they might differ between versions. These documents are available in our Technical Documentation and Sample Code.
  • Read Useful posts and Common Questions post on this forum.
  • Use Search this Forum Board to find out possible solution to your problem.
  • Create stand-alone, self-contained project (without any references to third-party libraries, your own not directly related code, comments, anything “extra”) with the minimum code to recreate the problem. Substitute your function calls/properties with hardcoded values. If problem still exists – let us know by posting here.

While posting:

  • Specify the integration platform (including programming language) you use – ideally inside the Title.
  • Specify your server version – ideally inside the Summary.
  • Provide as many details as necessary in the Content field, including development tools you use, operating system, service packs etc.
  • If you have a code to recreate the problem (as described above) please put it inside the Code Block, after removing any authentication info: site URL, login credentials etc.
  • If the code throws an exception – please provide ALL values from the RNOWException object - in addition to the Description.
  • Include the communication log. Refer to HowTo: Enable logging in the RightNow Connect Data Integration library

After posting:

  • Please be patient. Do not repost. We will reply as quickly as we can.
  • You might be asked to provide logs or other info. While asked for any confidential info, please send us the private message.
  • If you solved your problem – please describe your solution – for the benefit of the other users.
  • If we determine that this is a bug in the product, we will create our own, internal incident and provide you with the reference number. If you want to be automatically notified when this bug is solved – please contact our Customer Care representatives to report the found bug and provide them with the reference number mentioned above.
  • If the functionality you ask for is not available and you think it is important to your organization – please post your idea in the Developer Idea Lab Community Forum. This is the best way to persuade our product managers to expand the product.
  • If you know the answer to questions of the other users – please post the reply. We will really appreciate it.
  • Keep posting. This is YOUR forum!

Thank you for your cooperation,

Ryszard Antonczyk
RightNow Connect Development Lead.

Code Block


Issue while using SOAP API .net (1 Comment)

$
0
0

Topic by Chirag Kapil

Content

Hi ,

I am trying to use the SOAP API along with a workspace Add In but getting an error as shown the attached screen.

The intent is to use the SOAP API to fetch the related records of a custom object from an Incident, but the Constructor responisble for authentication itself is throwing the error.

The solution file is as attached.

Could you please advice.

thanks,

Chirag

Version

November 2012

Image

File

LineItems.zip(848KB)

mail template can't find systemdate()

$
0
0

Topic by john sheflin

Content

Hi,

 

I'm not sure if this is the right forum, but I can't find and remove a line from the mail template.  (in file manager, mail files)

 

I went to the default for Nov 12, but still the same.

 


-------- Original Message --------

Subject:Bill Payment Submitted From Web [Ticket: 130211-000173]
Date:Thu, 6 Jun 2013 12:18:32 -0600 (MDT)
From:New Direction IRA <service@ndira.com>
To:it@ndira.com





sysdate()
 
Subject (etc)
 
Any ideas?
 
thanks

 

Version

nov 12

Code Block

CRM migration to RightNow (1 Comment)

$
0
0

Topic by Ram

New to RN ! Hope posting on the right board

Took up a project to migrate the existing CRM to RN ! Just have a question

1. The existing CRM is using LDAP for username authetication is there a way to still use it ?..and would appriciate any suggestions before the migration kick off !

Thanks in advance.

Ram.

tasks.inherit

$
0
0

Topic by Jerry Fuerstenberg

Content

Does anyone have a simple way of setting tasks.inherit = 7 inside workflow or workspace? The field is unavailable in either, it doesn't get set properly when the task is created by the workflow, and tasks were apparently completely left out when they created the Javascript API.

Am I going to have to write an entire .NET add-in just to set this one simple field?

 

Thanks!

Version

November 2012

Meet an error when invoke a SOA for Fusion integration

$
0
0

Topic by Eric Yan

Content

Hi guys,

I am following a document about RightNow integration with Fusion CRM, when I try to sync sales account through a SOA composite named "SFAIntTCASyncComposite" which syncs the created customer into RightNow Organization.

When beginning to invoke RightNow Web Service in composite, an error is thrown:

See Code.

Does it mean the column "FusionPartyReference" is missing or any other setup is not correct?
 
By the way, is there anyone familiar with the integration solution about RightNow and Fusion CRM, I can't find any more resource about it.
 
Thanks!
 
Regards,
Eric
 
 

 

Code Block

RN database

$
0
0

Topic by Ramana

In the process of migration to RN ! Have two questions

1. Does RN support Oracle DB ?..

2. Say if I want to retreive some specific data(order number) from DB how would I make RN fetch it ?..

Any help would be appriciated

Thanks

Ramana.

Process Designer - events for custom objects

$
0
0

Topic by Eli Briscoe

Content

I'm trying to create an event handler for a custom object, but it gives me an error when trying to save the imported code: "Event Handler Content must support at least one class."

The defined package is "CO" and the object name is correct.  Is this simply not supported, or am I doing something wrong?

Version

May 2012

Code Block


Session Authentication/RunAnalyticsReport error (3 Comments)

$
0
0

Topic by Jared

I'm getting this error:

System.ServiceModel.FaultException: Active session required. Cannot find in the security header

using Session Authentication with RunAnalyticsReport

This is my connection code:

String url = _globalContext.GetInterfaceServiceUrl(ConnectServiceType.Soap);
EndpointAddress endPointAddr = new EndpointAddress(url);
BasicHttpBinding binding = new BasicHttpBinding(BasicHttpSecurityMode.TransportWithMessageCredential);
binding.Security.Message.ClientCredentialType = BasicHttpMessageCredentialType.UserName;
binding.MaxReceivedMessageSize = 1024 * 1024;
binding.MaxBufferSize = 1024 * 1024;
binding.MessageEncoding = WSMessageEncoding.Mtom;
_service = new RightNowSyncPortClient(binding, endPointAddr);
BindingElementCollection elements = _service.Endpoint.Binding.CreateBindingElements();
elements.Find<SecurityBindingElement>().IncludeTimestamp = false;
_service.Endpoint.Binding = new CustomBinding(elements);
_globalContext.PrepareConnectSession(_service.ChannelFactory);

This same code works fine on another site. What is missing here?

Error while uploading Add-In

$
0
0

Topic by Sumesh AC

Content

Hi,

  I am trying to upload an Add-In to RightNow, but I am getting an error message while uploading. I am attaching the screenshot of the error here. Can anyone help me please.

Thanks,

Sumesh.

File

err msg.png(33KB)

RightNow connection to database (5 Comments)

$
0
0

Topic by ron

New to RTN ! How to make RTN connect to a database and sync information from it ?..

any help appriciated !!

How to call a workflow on clicking a button? (4 Comments)

$
0
0

Topic by Ketan Chaudhari

Hi All,

 

We are working on integration RightNow with Siebel for Contact data.

From RightNow, newly created/updated Contact data will be synched with Siebel.

On a click on button, this workflow will be triggered and data will be synched with Siebel from RN.

Can you please let us know how to call a workflow on clicking a button?

 

Thanks & Regards,

Ketan Chaudhari

Where is the Connect Addin Framework samples? (1 Comment)

$
0
0

Topic by Jerry Fuerstenberg

I'm working on some pluggins, which refer to "Sample code" which does not exist in the documetnation. It refers me to this forum, which when searched has no such data.

 

Anyone have links to the sample code?

The file does not contain any valid add-ins (1 Comment)

$
0
0

Topic by Jerry Fuerstenberg

Content

I've written an add-in, but the console will not let me upload it, giving me the "The file does not contain any valid add-ins" error. This is very confusing as I have another add-in (that this ones based on) that works just fine.

The goal of this add-in is to be called by a rule, pass in a value, and then set the inherit field on the task workspace to that value. Because you can not set the inherit field from with the workspace in any other way.

Any ideas?

Version

November 2012

Code Block

Meet an error when invoke a SOA for Fusion integration (2 Comments)

$
0
0

Topic by Eric Yan

Content

Hi guys,

I am following a document about RightNow integration with Fusion CRM, when I try to sync sales account through a SOA composite named "SFAIntTCASyncComposite" which syncs the created customer into RightNow Organization.

When beginning to invoke RightNow Web Service in composite, an error is thrown:

See Code.

Does it mean the column "FusionPartyReference" is missing or any other setup is not correct?
 
By the way, is there anyone familiar with the integration solution about RightNow and Fusion CRM, I can't find any more resource about it.
 
Thanks!
 
Regards,
Eric
 
 

 

Code Block


Getting invalid xml when making post call for get operation using XML API (1 Comment)

$
0
0

Topic by Prabhat Ranjan

Hi, I want to get all the field with the given id in below request.

 <?xml version="1.0" encoding="UTF8"?>
 <Get xmlns="http://www.rightnow.com/objects">
    <RNObject xmlns:p0="http://www.rightnow.com/objects" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance" xsi:type="p0:RNIncident">
        <idinteger>26047</idinteger>
     </RNObject>
  </Get>
 

Response:

<?xml version="1.0" encoding="UTF-8"?>
<connector_ret>
    <function name = "incident_get">
        <ret_val name = "incident" type = "pair">
            <pair name = "thread" type = "pair">
                <pair name = "thread_entry0" type = "pair"> 
                    <pair name = "note" type = "string">Adding attchement -PPT & PDF</pair>
                </pair>
            </pair>
            <pair name = "updated" type = "integer">1370366587</pair>
        </ret_val>
    </function>
</connector_ret>

In the above response I can see "&" and XML doesn't allow "&". So the response looks like  invalid XML which I am getting from Rightnow Server.

So I am wondering..if that is issue with RightNow because It should return the valid xml.

appreciate your response

Thanks

Prabhat Ranjan


 

 

 

How to create a Account object (3 Comments)

$
0
0

Topic by Prabhat Ranjan

Hi,

I need some help for creating the Account Object. I want to create a account by sending the soap request to server but I think I am not giving proper input for that,So I wanted to know the proper input or it would be good if you could please send me the proper soap requst for creating a Account.

 

Appreciate your response

Thanks

Prabhat Ranjan

RightNow for mobile device (6 Comments)

$
0
0

Topic by Sumesh AC

Hi,

   Anyone know, how to access Oracle RightNow in Mobile devices. 

Thanks,

Sumesh.

OPA hub information required for implementing policy automation

$
0
0

Topic by santosh patil

Content

Hi 

Need more  information about OPA hub

We started implementation but OPA hub is not available.

Please see attached herewith steps completed.

 

Version

RightNow CX version Feb 2013

File

Upload.pptx(378KB)

How to update Access Level field in Answer object through SOAP API (1 Comment)

$
0
0

Topic by Calvin Nguyen

Content

Hi,

I have a problem updating Access Level field in Answer object through RN SOAP API. I kept getting this error "The code generated error of "response message does not match the content type of the binding".
I was able to update all other fields in Answer object, except Access Level field.
 

Below is my code snippet in C#:

ID AccessID = new ID();
AccessID.id = 3;
AccessID.idSpecified = true;
NamedIDDelta[] accessLevel = new NamedIDDelta[1];
accessLevel[0] = new NamedIDDelta();
accessLevel[0].ID = AccessID;
accessLevel[0].Name = "";
newAnswer.AccessLevels = accessLevel;

Thanks for your help.

 

Calvin

 

Version

May 2012
Viewing all 2504 articles
Browse latest View live