• beginner apex
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 15
    Questions
  • 9
    Replies

Hi ,

 

I want to get my current session id and Access token in salesforce ,  Im using php curl how to get both ,

 

 

i Dont know how to get it ,,,

 

if anyone Knows tell me

 

 

 

Thanks ,

Ganesh

hi ,

 

create Lead , if lead is Converted automatically void duplicate from values from contact ,

 

Contacts fields

 

Firstname := shouldnot same(leadname)

 

Laastname := should not be same (lead name)

 

Email := should not same ;(lead phone )

 

den only lead will be convert

 

anyone can explain the concepts , related exampls

 

 

Thnax

Ganez

 

 

 

Hi i have some problem in the static resources using in jqueryui in visual force, dowmloaded jquery-ui-1.10.3.custom.zip , and stored in static resources page , but unfortunely the ui is not working , if anyone guide me how to use static resources

 

 

 

 

 

 

ganesz

im using static resources name j-qurey
i can attached jquery-ui-1.10.3.custom.zip

den my jquery visualforce code using

<script src="{!URLFOR($Resource.j_query, '/js/jquery_latest.js')}"></script>
<script src="{!URLFOR($Resource.j_query, '/js/jquery-ui-git.js')}"></script>

but its not working ,
anyone can help to me....


what ill do


Regards,
s.ganesh

 <apex:page sidebar="false">

        <script src="{!URLFOR($Resource.iVol_Resources, '/js/jquery_latest.js')}"></script>
        <script src="{!URLFOR($Resource.iVol_Resources, '/js/jquery-ui-git.js')}"></script>
        <script type="text/javascript"/>
        <script type="text/javascript">
            var $jq = jQuery.noConflict();
            jq$(document).ready(function()
            {
                 jq$("#ton").click(function(){
    jq$("p").remove(".italic");
  });
});
</script>

<body>

<p>This is a paragraph in the div.</p>
<p class="italic"><i>This is another paragraph in the div.</i></p>
<p class="italic"><i>This is another paragraph in the div.</i></p>
<button id="ton">Remove all p elements with class="italic"</button>

</body>
</apex:page>

 

 

Hi,

This is my code , but i implemented in Visualforce Page but its not working , no errors ,,,

but static resources stored ivol_resources

can u anyone help me ....

 

 

Regards,

Ganz

Hi ,

 

I want to use Jquery in visualforce , can i have any materials to learn jquery in salesforce , 

plz any materials send that url

 

 

Regards,

GaneZ

Hi ,

 

I want to use Jquery in visualforce , can i have any materials to learn jquery in salesforce , 

plz any materials send that url

 

 

Regards,

GaneZ

Hi ,

 

I create visualforce page , but page is created , im using apex/filename -  the development mode will be open only it shows apex code , apex class controller , but it never shows the viewstate , ill check in the profile , personal information  it will selected in that page , but why this never shows page ,   please anyone can give solution..........

 

 

Regards

Ganez

 

Hi,

 

how to convert  lead through trigger but it should be create acccount ,contact

I Tried lots of time , but its not converted

 

i want convert leads to using trigger , what is the procedure to write the code

 

plz anyone can help me 

 

 

Regards

Ganez

 

I'm new to the salesforce , i have doubt on cretae lead ,

 

step - first i create lead , once i saved its automatically goes to convert option nxt page , before that ill select the 

status - its converted , not converted , working after then only im using convert onlead in cutomise object ,

 

den its converted to account , contact , opportunity

 

i want write the code using trigger for this conversion , plz how write the code for conerting  in trigger

 

 

Regards,

Ganez

 

 

trigger tiggercon on Account (before insert , before update)
 {
   for(Account a : trigger.new)
   {
    List<Contact> contact = [SELECT   id , FirstName , LastName , Email  
    FROM Contact WHERE  accountId = : a.Id];
     for(Contact c : contact)
     {
         System.debug ('contact id [' + c.id + '] , FirstName[' + c.FirstName + '] , LastName[' + c.LastName + ']');
         c.Description = c.FirstName + ' ' + c.LastName ;
          update c;
      }
    }
}

 

i worte the code in account object , den created account and contact ,

 

once i saved contact field but it never shows the description box in the firstname and lastname

 

can u help me what problem ll happen

 

 

Regards,

Ganez

hi ,

 

why we go for an bulkifu trigger , and i need some explaination , den what is the difference between trigger and bulkify trigger

 

 

 

Regards,

 ganesh

 

Hi floks ,

 

I'm new this tool , i want to learn this tool and , the material can be very easy procedure , plz send this blog

 

 

 

 

 

regards,

Laxmiganesh

hi im beginner , can u solve this problem , let you know reply through mail , anyone tell me  im learning thisfoce , can u anyone what  is the procedure for beginner 

 

Error: Compile Error: sObject type 'Item_c' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names. at line 3 column 26

 

codins is -

trigger handledseatpriceChange on seat__c (after update) {
//update invoice items associated with open invoices
List<Item_c> openItems =[SELECT j.seat_price , j.seat_r.price_c FROM Item_c j
WHERE j.invoicestatemnt_r.Status_c = 'notavailable' AND j.seat_r.id IN :
Trigger.new FOR UPDATE ];
}

Hi ,

 

I want to get my current session id and Access token in salesforce ,  Im using php curl how to get both ,

 

 

i Dont know how to get it ,,,

 

if anyone Knows tell me

 

 

 

Thanks ,

Ganesh

Hi ,

 

I want to get my current session id and Access token in salesforce ,  Im using php curl how to get both ,

 

 

i Dont know how to get it ,,,

 

if anyone Knows tell me

 

 

 

Thanks ,

Ganesh

Hi i have some problem in the static resources using in jqueryui in visual force, dowmloaded jquery-ui-1.10.3.custom.zip , and stored in static resources page , but unfortunely the ui is not working , if anyone guide me how to use static resources

 

 

 

 

 

 

ganesz

Hi ,

 

I create visualforce page , but page is created , im using apex/filename -  the development mode will be open only it shows apex code , apex class controller , but it never shows the viewstate , ill check in the profile , personal information  it will selected in that page , but why this never shows page ,   please anyone can give solution..........

 

 

Regards

Ganez

hi ,

 

why we go for an bulkifu trigger , and i need some explaination , den what is the difference between trigger and bulkify trigger

 

 

 

Regards,

 ganesh

hi im beginner , can u solve this problem , let you know reply through mail , anyone tell me  im learning thisfoce , can u anyone what  is the procedure for beginner 

 

Error: Compile Error: sObject type 'Item_c' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names. at line 3 column 26

 

codins is -

trigger handledseatpriceChange on seat__c (after update) {
//update invoice items associated with open invoices
List<Item_c> openItems =[SELECT j.seat_price , j.seat_r.price_c FROM Item_c j
WHERE j.invoicestatemnt_r.Status_c = 'notavailable' AND j.seat_r.id IN :
Trigger.new FOR UPDATE ];
}