Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      AppShark

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur AppShark | Offres d’emploi chez AppShark | Salaires chez AppShark | Avantages sociaux chez AppShark
      Entretiens chez AppSharkEntretiens d’embauche pour Salesforce Developer chez AppSharkEntretien chez AppShark


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Salesforce Developer

      19 janv. 2016
      Candidat à l'entretien anonyme
      Hyderâbâd
      Offre refusée
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez AppShark (Hyderâbâd) en janv. 2016

      Entretien

      Appshark people have found my Resume in linked in because I had applied so they called me and asked me to come for discusstion. Interview was good. It is not a big firm but they have develped more app in appexchange.

      Questions d'entretien [1]

      Question 1

      1. What is the relationship between Account and Contact. 2. If there is two object A and B the I want A, B object in C how can you do that. 3. can we do same above question with javascript? 4. What is permission set? 5. Sharing rule. 6.what is wsdl how to take wsdl to salesforce? what is the procedure. 7.What is record type? 8. How to count visit of the page through apex class? or how to count the number of times a visualforce page opened by user? public without sharing class ViewCount { public ViewCount(ApexPages.StandardController controller) { // Required with StandardController } public ViewCount(CustomController controller) { // Required for custom controller; repeat as necessary } public void updateCount() { String thisUrl = Url.getCurrentRequestUrl(), thisPath = thisUrl.getPath(), thisFile = thisUrl.getFile(), thisFullPath = thisPath + '/' + thisFile; Page_View__c[] views = [SELECT Id, URL__c, Count__c FROM Page_View__c WHERE URL__c = :thisFullPath LIMIT 1]; Page_View__c thisView = views.isEmpty()? new Page_View__c(Url__c=thisFullPath, Count__c=0): views[0]; thisView.Count++; update thisView; } } Then, on each page, simply add the action method: <apex:page standardController="Account" extensions="ViewCount" action="{!updateCount}" ...
      1 réponse
      2