• swamy
  • NEWBIE
  • 25 Points
  • Member since 2012

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 23
    Questions
  • 26
    Replies

What is the meaning for this error

 

Invalid field RecordTypeId for SObject Room__c

  • July 10, 2012
  • Like
  • 0

Hi ..This is swamy....iam on integration part now.....i wrote one logic for calling external services...it is executed successfully...but am not able to see the output....i.e., when i call the external service and changing the  data...it is not execured correctly...what is the problem am not getting...could you guys check out my Soap logic......in this is any methods are missing or data mapping is incorrect ...what is the exact problem..am not getting...

 

string b = '<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">'+
'<soap:Body><Case xmlns="http://183.82.182.110:6500/cases">'+
'<Cases><casenumber>'+casenumber+'</casenumber>'+
'<status>'+status+'</status><type1>'+type1+'</type1></Cases>'+
'</Case></soap:Body></soap:Envelope>';
req.setBody(b);

  • June 29, 2012
  • Like
  • 0

Iam going to do an integration between salesforce and Ruby.So,For this what iam asking to ruby team..I don't have any logic regarding integration...So,Could you guys provide me some logic....

  • June 27, 2012
  • Like
  • 0

Iam going to do an integration between salesforce and Ruby.So,For this what iam asking to ruby team..I don't have any logic regarding integration...So,Could you guys provide me some logic....

  • June 27, 2012
  • Like
  • 0

Hi,guys............

actually, am searching for integration parts.....in between ...am getting this concept in boards...
It is a tool,that i know......Is this useful for bi-directional integration....i.e., is this tool map the salesforce fields and external system (some client) fields..what is the main purpose for this tool...........

  • June 25, 2012
  • Like
  • 0

Hi this is swamy....i want to know some details regarding integration only...i.e.,


in my salesforce am having Case object and my client is also having Similar Case object..

 

So,if i create or update a record in my salesforce "Case object" it should reflect into my client "Case object"....and vice versa...

 

So,for this what i need? and with what procedures i have to go? Finally how can i acheive my requirement...

Could you justify me......please....i want immediate responses...plz guys....

  • June 23, 2012
  • Like
  • 0

Hi this is swamy....i want to know some details regarding integration only...i.e.,


in my salesforce am having Case object and my client is also having Similar Case object..

 

So,if i create or update a record in my salesforce "Case object" it should reflect into my client "Case object"....and vice versa...

 

So,for this what i need? and with what procedures i have to go? Finally how can i acheive my requirement...

Could you justify me......please....i want immediate responses...plz guys....

  • June 23, 2012
  • Like
  • 0

Hi this is swamy....i want to know some details regarding integration only...i.e.,


in my salesforce am having Case object and my client is also having Similar Case object..

 

So,if i create or update a record in my salesforce "Case object" it should reflect into my client "Case object"....and vice versa...

 

So,for this what i need? and with what procedures i have to go? Finally how can i acheive my requirement...

Could you justify me......please....i want immediate responses...plz guys....

  • June 23, 2012
  • Like
  • 0

Hi this is swamy....i want to know some details regarding integration only...i.e.,


in my salesforce am having Case object and my client is also having Similar Case object..

 

So,if i create or update a record in my salesforce "Case object" it should reflect into my client "Case object"....and vice versa...

 

So,for this what i need? and with what procedures i have to go? Finally how can i acheive my requirement...

Could you justify me......please....i want immediate responses...plz guys....

  • June 23, 2012
  • Like
  • 0

Hi this is swamy....i want to know some details regarding integration only...i.e.,


in my salesforce am having Case object and my client is also having Similar Case object..

 

So,if i create or update a record in my salesforce "Case object" it should reflect into my client "Case object"....and vice versa...

 

So,for this what i need? and with what procedures i have to go? Finally how can i acheive my requirement...

Could you justify me......please....i want immediate responses...plz guys....

  • June 23, 2012
  • Like
  • 0

Hi,This is swamy...am getting small doubt ..just clear it plz....

 

am writing a small v.f ....in that some "validation" is given by script...i.e.,if name ==null ...it shows an error by alert box....but it's not workin...Can you justify this.....

 

Script:

<script type="text/javascript">
var val1=document.getElementById("{!$Component.name_select}").value
alert(val1)

function btn(){
if(document.getElementById('name_select').value=="")
{
alert('Please fill all the data ');
}
}
</script

 

v.f:

 

<apex:inputtext value="{!nameVal}"  id="name_select"/>

 

<apex:commandButton value="INSERT" style="color:red;" action="{!doInsert}" onclick="btn();"/>

  • June 22, 2012
  • Like
  • 0
Hi,
This is swamy...i need some information regarding webservices.....i.e.,
 
Am writing a class declared as a "global" and method should declared as a "webservice "....and writng some logic...than i save the class and  clicking on "Generate wsdl" button...it is generating a file...where this file is used...is this file is enough do an integration?....


  • June 21, 2012
  • Like
  • 0

I want to do integrating external system  with my professional edition....Is it possiable....For this,is any seperate tools are there..

  • June 19, 2012
  • Like
  • 0

Hi,This is swamy.....Am havaing small doubt...just clear these...plz...

 

Is it possiable to do integration on professional edition....As,per my view integration in the sense Apex classes must be enabled mode...but in profesional edition we are not able to create apex classes...How is it possiable to do an integration on professional edition.....If you know....plz reply me immediately......

  • June 18, 2012
  • Like
  • 0

The below class is given in pdf....but it is not saved...it shows errror....

 

Error: Compile Error: dimensions is not a fieldSet of Merchandise__c at line 7 column 8

 

Whata is this error ..how can i achieve it...

 

public class MerchandiseDetails {

public Merchandise__c merch { get; set; }

public MerchandiseDetails() {

this.merch = getMerchandise();

}

public List getFields() {

return SObjectType.Merchandise__c.FieldSets.Dimensions.getFields();

}

private Merchandise__c getMerchandise() {

String query = 'SELECT '; for(Schema.FieldSetMember f : this.getFields()) { query += f.getFieldPath() + ', '; } query += 'Id, Name FROM Merchandise__c LIMIT 1'; return Database.query(query); } }

 

For the above class v.f:

 

<apex:page controller="MerchandiseDetails">
<apex:form >
<apex:pageBlock title="Product Details">
<apex:pageBlockSection title="Product">
<apex:inputField value="{!merch.Name}"/>
</apex:pageBlockSection>
<apex:pageBlockSection title="Dimensions">
<apex:repeat value="{!fields}" var="f">
<apex:inputField value="{!merch[f.fieldPath]}" required="{!OR(f.required, f.dbrequired)}"/>
</apex:repeat>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>

  • June 16, 2012
  • Like
  • 0

Hi ,

This is swamy...and i want to know some integration part and details...how many types of integration are there...and 
Is it possiable to do integration on Professional edition?
If yes, tell me the some limitations and considerations...plz....

  • June 15, 2012
  • Like
  • 0

Hi,am using kulturra app ...but am not getting output...i.e.,by payments if i click the submit it shows an error...i.e.,


"""""Web Service callout failure. System.HttpResponse[Status=Internal Server Error, StatusCode=500"""""

This is because in paymentprocessor tab , am giving live settings &test settings values are same..

but,if i create a live setting account in paypal it shows so many errors.....

Is any small way to create an account in paypal for livesettings.....and describe me something about the project....
  • June 12, 2012
  • Like
  • 0

Hi,

 

I want  simple example  for integration......i.e., if my client updates the field in contact object...that field should updated in my salesforce edition...

 

Client belongs to third party...not a salesforce......

 

If,anyone knows about this reply me...immediately

  • June 06, 2012
  • Like
  • 0

Hi,

 

This is swamy....i want to integrate paypal with salesforce..In the final step it is showing something,like this...

 

 

""""" Third Party Permission Username"""""""""""

 

 

Iam giving my salesforce user i.d but it does show an error.....How can i achieve this .....

  • June 05, 2012
  • Like
  • 0

Hi,This is swamy......

                    

                          I have small requirement..i.e.,when my client updates his objected field than automatically it reflected into my salesforce......

clinet using java...

 

so,what can i do for these steps.....I think must and stood API should use...is it right?

 

if,correct tell send me someof the steps to....rnswamy229@gmail.com

  • June 01, 2012
  • Like
  • 0

What is the meaning for this error

 

Invalid field RecordTypeId for SObject Room__c

  • July 10, 2012
  • Like
  • 0

Hi ..This is swamy....iam on integration part now.....i wrote one logic for calling external services...it is executed successfully...but am not able to see the output....i.e., when i call the external service and changing the  data...it is not execured correctly...what is the problem am not getting...could you guys check out my Soap logic......in this is any methods are missing or data mapping is incorrect ...what is the exact problem..am not getting...

 

string b = '<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">'+
'<soap:Body><Case xmlns="http://183.82.182.110:6500/cases">'+
'<Cases><casenumber>'+casenumber+'</casenumber>'+
'<status>'+status+'</status><type1>'+type1+'</type1></Cases>'+
'</Case></soap:Body></soap:Envelope>';
req.setBody(b);

  • June 29, 2012
  • Like
  • 0

Iam going to do an integration between salesforce and Ruby.So,For this what iam asking to ruby team..I don't have any logic regarding integration...So,Could you guys provide me some logic....

  • June 27, 2012
  • Like
  • 0

Hi this is swamy....i want to know some details regarding integration only...i.e.,


in my salesforce am having Case object and my client is also having Similar Case object..

 

So,if i create or update a record in my salesforce "Case object" it should reflect into my client "Case object"....and vice versa...

 

So,for this what i need? and with what procedures i have to go? Finally how can i acheive my requirement...

Could you justify me......please....i want immediate responses...plz guys....

  • June 23, 2012
  • Like
  • 0

Hi,This is swamy...am getting small doubt ..just clear it plz....

 

am writing a small v.f ....in that some "validation" is given by script...i.e.,if name ==null ...it shows an error by alert box....but it's not workin...Can you justify this.....

 

Script:

<script type="text/javascript">
var val1=document.getElementById("{!$Component.name_select}").value
alert(val1)

function btn(){
if(document.getElementById('name_select').value=="")
{
alert('Please fill all the data ');
}
}
</script

 

v.f:

 

<apex:inputtext value="{!nameVal}"  id="name_select"/>

 

<apex:commandButton value="INSERT" style="color:red;" action="{!doInsert}" onclick="btn();"/>

  • June 22, 2012
  • Like
  • 0

Hi,This is swamy.....Am havaing small doubt...just clear these...plz...

 

Is it possiable to do integration on professional edition....As,per my view integration in the sense Apex classes must be enabled mode...but in profesional edition we are not able to create apex classes...How is it possiable to do an integration on professional edition.....If you know....plz reply me immediately......

  • June 18, 2012
  • Like
  • 0

The below class is given in pdf....but it is not saved...it shows errror....

 

Error: Compile Error: dimensions is not a fieldSet of Merchandise__c at line 7 column 8

 

Whata is this error ..how can i achieve it...

 

public class MerchandiseDetails {

public Merchandise__c merch { get; set; }

public MerchandiseDetails() {

this.merch = getMerchandise();

}

public List getFields() {

return SObjectType.Merchandise__c.FieldSets.Dimensions.getFields();

}

private Merchandise__c getMerchandise() {

String query = 'SELECT '; for(Schema.FieldSetMember f : this.getFields()) { query += f.getFieldPath() + ', '; } query += 'Id, Name FROM Merchandise__c LIMIT 1'; return Database.query(query); } }

 

For the above class v.f:

 

<apex:page controller="MerchandiseDetails">
<apex:form >
<apex:pageBlock title="Product Details">
<apex:pageBlockSection title="Product">
<apex:inputField value="{!merch.Name}"/>
</apex:pageBlockSection>
<apex:pageBlockSection title="Dimensions">
<apex:repeat value="{!fields}" var="f">
<apex:inputField value="{!merch[f.fieldPath]}" required="{!OR(f.required, f.dbrequired)}"/>
</apex:repeat>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>

  • June 16, 2012
  • Like
  • 0

Hi ,

This is swamy...and i want to know some integration part and details...how many types of integration are there...and 
Is it possiable to do integration on Professional edition?
If yes, tell me the some limitations and considerations...plz....

  • June 15, 2012
  • Like
  • 0

Hi,

 

I have some fileds for Passenger like

 

p1_First_Name__c , p1_Last_Name__c

p2_First_Name__c , p2_Last_Name__c

p3_First_Name__c , p3_Last_Name__c

 

I want to create a Formula Filed which return value on following condition

 

int i =0;

if(p1_First_Name__c !=null && p1_Last_Name__c !=null)

then  i = i +1;

if(p2_First_Name__c !=null && p2_Last_Name__c !=null)

then i= i +1;

 

and so on

 

So of all filed are not null then total of 4 value will return

If 3 fileds  not null then value will be 3

 

Please help

 

Thanks

Hi,am using kulturra app ...but am not getting output...i.e.,by payments if i click the submit it shows an error...i.e.,


"""""Web Service callout failure. System.HttpResponse[Status=Internal Server Error, StatusCode=500"""""

This is because in paymentprocessor tab , am giving live settings &test settings values are same..

but,if i create a live setting account in paypal it shows so many errors.....

Is any small way to create an account in paypal for livesettings.....and describe me something about the project....
  • June 12, 2012
  • Like
  • 0

Hi,

 

This is swamy....i want to integrate paypal with salesforce..In the final step it is showing something,like this...

 

 

""""" Third Party Permission Username"""""""""""

 

 

Iam giving my salesforce user i.d but it does show an error.....How can i achieve this .....

  • June 05, 2012
  • Like
  • 0

Hi,This is swamy......

                    

                          I have small requirement..i.e.,when my client updates his objected field than automatically it reflected into my salesforce......

clinet using java...

 

so,what can i do for these steps.....I think must and stood API should use...is it right?

 

if,correct tell send me someof the steps to....rnswamy229@gmail.com

  • June 01, 2012
  • Like
  • 0

Hi,How to Create a records by Eclipse(IDE) in salesforce...........

 

i.e, iam creating a record in Eclipse than automatically ....thus record should created in my Salesforce ...how can i achieve this....

 

 

If anyone know's....reply me.....ASAP

  • May 31, 2012
  • Like
  • 0