• ScorpionKing
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 7
    Replies
Please suggest something so i can restrict this.....

thanks...
Hey , I am starting to build one WebApplication which will take information from SFDC accounts in a regular basis. So please suggest me how shall i approach.I have all my code and everything ready , i just want to make sure that all my process are well designed and good for security review. Please suggest me what security measures i shall take while building this Integration .I am targeting it for appexchange. thnx.
Hi,

I have a code snippet :

for(int i=0;i
Account acc = { Code goes here......};

upsert acc accId; // This it what happening and is consuming a lot of DML statements from LIMITS


/*****Below is what i wanna achive******/
List accList = new List();
accList.add(acc);
}

How can i do something like this :-

upsert accList ---------> how i suppose to pass the externalId

update/insert accList works fine...but i wanna do an upsert.


Thnx in advance....

Hi,

As i read all the stuffs regarding VF , so m sure that we can incoporate this functionality. How can i add . add row / delete row functionality in my visualforce page.....

1) i want to add multiple rows through JS or any other method please suggest.

2) i want to take all the row values in my custom controller..

3) i can't use Visualforce tags in my javascript. Please suggest with some sample code , i will be greatly appreciate...

 

thnx

Please suggest something so i can restrict this.....

thanks...
Hi,

I have a code snippet :

for(int i=0;i
Account acc = { Code goes here......};

upsert acc accId; // This it what happening and is consuming a lot of DML statements from LIMITS


/*****Below is what i wanna achive******/
List accList = new List();
accList.add(acc);
}

How can i do something like this :-

upsert accList ---------> how i suppose to pass the externalId

update/insert accList works fine...but i wanna do an upsert.


Thnx in advance....

Hi, I am making the webservice GET and POST to the database from Salesforce. Some of the time am getting "User Key Not specified." exception as a response for that POST call while posting XML data to the external database. Please inform me the details if any one facing the same issue.

 

Please tell me solution if any for this issue.

 

Thanks in advance.

hi friends,
1)I am writing Apex classes for parsing the content of the csv file . But at the time of execution I am getting this error
System Exception : Too many Script Statements
As csv contains more than 254 fields and around 200 rows . I think I am getting this Exception . So can u pls help on this .
 
2)Even this exception is not caught by try ang catch block . Is there any way to catch this exception if it generates while execution . pls suggest any solutions if you have.