Forum Replies Created

  • Scott

    Member
    March 2, 2018 at 9:57 pm in reply to: How to connect my org to Salesforce marketing cloud?

    Start here: Connect the Clouds

     

  • Scott

    Member
    February 28, 2018 at 6:15 pm in reply to: Is there any development environment in Salesforce Marketing Cloud ?

    No. There is only separate BUs that you can create, which provide segregation of the data.

     

  • No equivalent. You need to specify all fields to be retrieved. You can use the APEX describe command to get all fields and build a query string.

     

    public Void GetAllField()
    {
    String query ='';
    String SobjectApiName = 'Account';
    Map<String, Schema.SObjectType> schemaMap = Schema.getGlobalDescribe();
    Map<String, Schema.SObjectField> fieldMap = schemaMap.get(SobjectApiName).getDescribe().fields.getMap();

    String strFields = '';

    for(String fieldName : fieldMap.keyset() )
    {
    if(strFields == null || strFields == '')
    {
    strFields = fieldName;
    }else{
    strFields = strFields + ' , ' + fieldName;
    }
    }

    query = 'select ' + strFields + ' from ' + SobjectApiName + ' Limit 10 ';

    List <Account> accList = Database.query(query);

    }

  • Scott

    Member
    January 12, 2018 at 4:17 pm in reply to: What is record type in Salesforce?

    Record Types are often used to extend an object's usefulness - rather than create a brand new custom object. As an example, the CASE object in Salesforce is a very generic service object to handle all sorts of inquiries or requests. You may have multiple record types to identify the sort of case that could be stored (for example, an internal employee HR case versus a customer support case). There is a balance between using record types versus custom picklist fields to identify and segregate. As the others pointed out, record types are useful if you want to have different page layouts (views) or picklist choices of records that show different sets of fields.

  • Scott

    Member
    January 12, 2018 at 2:34 pm in reply to: How to Identify Text Category in OCR in a Salesforce Visualforce Page?

    Have a look at http://www.ephesoft.com - they have an OCR web service that you can use to make an apex synchronous callout to classify and extract fields from an image (pdf, jpg, gif, etc). Good video here: https://www.youtube.com/watch?v=wdLXnbN8tDA

Popular Salesforce Blogs