• Alexander A 7
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi, All I'm Fresher in Salesforce.Start Learning about Integration in salesforce and I know what is integration I want to learn more implement the integration in Salesforce anyone has open web service URL. if you have Kindly give me help to learn integration and one more thing is

*using apex class how to consume the web services?
*how to call the web services Method?
*what are all the Procedure to implement the integration using web services URL?
*Clicking the button in the visualforce page how to call the web services and how to retrieve the data to display?
* any sample code is there?

Advance Thanks  To all
Hi, All I'm Fresher in Salesforce.Start Learning about Integration in salesforce and I know what is integration I want to learn more implement the integration in Salesforce anyone has open web service URL. if you have Kindly give me help to learn integration and one more thing is

*using apex class how to consume the web services?
*how to call the web services Method?
*what are all the Procedure to implement the integration using web services URL?
*Clicking the button in the visualforce page how to call the web services and how to retrieve the data to display?
* any sample code is there?

Advance Thanks  To all

Hi, 
I have developed a VF page pdf file with renderas.  I am using Apex:Repeat tag to display  parent and child information. 

Data is showing correctly, but the alignment is not in the proper order. 

<apex:repeat value="{!Goals}" var="G">
<td> {!G.Area__c}
<td> {!G.Risk__c}
   <apex:repeat value="{!Actions}" var="A">
      <td> {!A.Description__c}
      <td> {!A.Status__c}
   </apex:repeat>
</apex:repeat>

    Apex:Repeat Alignment  Issue

Thanks.