• Suresh M 10
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 4
    Replies
I recieved email from saleforce while creation of the case, in that email it show only symbols'?'. Even the email encode is UTF-8 in my personal setting.
req: i have 4 objects like A,B,C and  D.here relationship A=parent,B=child,and B is the paent of c,and c is the parent of d.

now A,record how many child records(B) and B records how many child records display in visualforce page byb using wrapper class.
Now i want how many C records is there, every record have one inputtext box field,enter that value click on save button then save into D object how??
How can we come to know that How many queues one user is assigned to?
In the below requeststring, I have to pass one value from the post form data.

For e.g: I have a user name text box and I need to pass that user name value on form submission in the below request string:

String abc = post data from form;

String requestString = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <bns:EnvironmentExtensions xmlns:bns="http://api.platform.boomi.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="XXXXXXXXXXXXXXXX" extensionGroupId="" environmentId="XXXXXXXXXXXXXXX"> <bns:connections> <bns:connection name="SFDC connection" id="XXXX"> <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" value="email@gmail.com" id="user"/> <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="true" id="password" value="password"/> </bns:connection> </bns:connections> </bns:EnvironmentExtensions>';


What i Need?
To pass abc string value in the body.

String requestString = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <bns:EnvironmentExtensions xmlns:bns="http://api.platform.boomi.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="XXXXXXXXXXXXXXXX" extensionGroupId="" environmentId="XXXXXXXXXXXXXXX"> <bns:connections> <bns:connection name="SFDC connection" id="XXXX"> <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" value= abc id="user"/> <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="true" id="password" value="password"/> </bns:connection> </bns:connections> </bns:EnvironmentExtensions>';


Above request string is the body that i am passing in the HTTPRequest.
i would appreciate your help!