• Roopa
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 2
    Replies

hi

when I tried to connect SFDC with crystal report, I didn't find Salesforce folder under Create New Connection after installing salesforce Driver 3.0. I found the production version of crystal reports XI which was installed already is 11.0.0.1282.

I found out the we can connect SFDC only with Crystal reports XI R2.Am I in right version or Need to upgrade?

where(path) i should place and install the driver?

help me out!!!!

 

  • November 13, 2008
  • Like
  • 0
Hi,
  In our application, the WSDL file has been created from Apex class.
I have created client stubs out of this WSDL. How can I invoke the Webservice from a
stand-alone java application?
Also, How can I download the Salesforce library files related to apex classes?
 
Thanks in advance.
 
 
  • August 06, 2008
  • Like
  • 0
Hi,
 
Is it possible to get the records of Approval History Object..I just created Approval process for my Custom Object..I need to send email to corresponding person if the approval status is "Pending"..For that I need to get the "Status" and "Date" from Approval History Object in Apex class.. I guess it's maintaing only log(transaction).But still Need to know is it possible ???
Can anyone help on this?
 
 
Thanks in Advance!!!!!!
 
  • July 30, 2008
  • Like
  • 0
Hi,
 
Can we Identify which custom button had clicked or button name ,inside the S-control?
 
I would like to invoke same s-control for 2 diff Custom button,based on the button click,Inside S-control I need to invoke corresponding funs..(by checking button1 click or button2 click)..
 
Is it possible in SFDC?
 
help me out!!!!!!!!
 
Thanks.......
  • June 27, 2008
  • Like
  • 0
Hi,
whenever value="{!test.Bu__c}" in OutputText doesn't have value , I should display "NONE" , So that I've wriiten function ,but it's not displaying NONE when it doesn't have value.It's displaying blank value.
 
Help on this!
 
Code:
<apex:page standardController="Test__c" extensions="extenfun" renderAs="pdf" >
   <apex:detail subject="{!Test__c}" relatedList="false"/>
   <apex:repeat value="{!Test___c.testing__r}" var="test">
   <apex:form >
          <apex:pageBlock title="Try">
              <apex:pageBlockSection title="List" >
              <apex:outputLabel  value="Bu Level"  />
                  <apex:outputText  id="BUnew" value="{!test.Bu__c}"/>
          
            </apex:pageBlockSection>
                                      
          </apex:pageBlock>
          <script>
          window.onload=function setBU(){
           var arr=document.getElementById ('{!$Component.Bu__c}').value;
             if(arr==null)
           document.getElementById ('{!$Component.Bu__c}').value="--none--";
             else
             document.getElementById ('{!$Component.Bu__c}').value="{!test.Bu__c}";
    
          }
          </script>
       </apex:form>
   </apex:repeat>
 </apex:page>
  • June 15, 2008
  • Like
  • 0

hi All,
I want to display Master (ex.Account info,it's related list contact details should display one after another) and Related List details into PDF. On click of button, it's rendering as PDF.

The problem is certain field values of related list are not displying into PDF which are having datatype as number, Picklist, date.
For Picklist it's displaying all the values(eg.language) instead of selected values. Help me out on this prob.

snippet :
<apex:page standardController="MasterObj" extensions="getIdfun" renderAs="pdf" >
   <apex:detail subject="{!Child_Obj__c}" relatedList="false"/>
   <apex:repeat value="{!MasterObj__c.Child_Object__r}" var="test">
   <apex:form >
          <apex:pageBlock title="Order No#{!test.Order_No__c}">
              <apex:pageBlockSection title="Info" columns="2">
                  <apex:inputField value="{!test.language__c}" />
                  <apex:inputField value="{!test.StDate__c}"/>
              </apex:pageBlockSection>
        </apex:pageBlock>
       </apex:form>
   </apex:repeat>
 </apex:page>
 
Thanks in advance!
  • June 05, 2008
  • Like
  • 0
Hi,
whenever value="{!test.Bu__c}" in OutputText doesn't have value , I should display "NONE" , So that I've wriiten function ,but it's not displaying NONE when it doesn't have value.It's displaying blank value.
 
Help on this!
 
Code:
<apex:page standardController="Test__c" extensions="extenfun" renderAs="pdf" >
   <apex:detail subject="{!Test__c}" relatedList="false"/>
   <apex:repeat value="{!Test___c.testing__r}" var="test">
   <apex:form >
          <apex:pageBlock title="Try">
              <apex:pageBlockSection title="List" >
              <apex:outputLabel  value="Bu Level"  />
                  <apex:outputText  id="BUnew" value="{!test.Bu__c}"/>
          
            </apex:pageBlockSection>
                                      
          </apex:pageBlock>
          <script>
          window.onload=function setBU(){
           var arr=document.getElementById ('{!$Component.Bu__c}').value;
             if(arr==null)
           document.getElementById ('{!$Component.Bu__c}').value="--none--";
             else
             document.getElementById ('{!$Component.Bu__c}').value="{!test.Bu__c}";
    
          }
          </script>
       </apex:form>
   </apex:repeat>
 </apex:page>
  • June 15, 2008
  • Like
  • 0
Can anyone lead me to some examples of creating a Visualforce page that will ouput opertunities or quote/proposals to PDF eliminating the need for the 3rd party services? Please advise on any options if I am on the wrong track here.
 
Thanks in advance!