• Stephen Stoelinga
  • NEWBIE
  • 5 Points
  • Member since 2023

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 8
    Replies

Hello everyone, I want to create an Object to store the Settings of the user in my App. Is there any way to prevent user from creating a tab to see the records of this object and prevent them from changing it manually. 
Thanks for your helps.

csvFileLines = csvAsString.split('\n');
                    
                    for(Integer i=1; i < csvFileLines.size(); i++){
                        String csvLine = csvFileLines[i];
                    
                        List<String> csvRecordData = new List<String>();
                        
                        for(String column : csvLine.split(',')){
    
                            column = column.replaceAll(':quotes:', '');
                            column = column.replaceAll(':comma:', ',');
                            column = column.replaceAll(':newLine:', '\n');
    
                            csvRecordData.add(column);
                        }     
                        
                        IF(csvRecordData != Null){
                            
                            FeedItem cmnt = New FeedItem();       
   
                            cmnt.Body = csvRecordData[2].replaceAll('<br />', '\r\n');
                            
                            Datetime createDate = DateTime.valueOfGmt(csvRecordData[4]); 
                            cmnt.CreatedDate = createDate;
                               
                            String iv = csvRecordData[1];
                            if(!String.isEmpty(iv)){
                                Lead ld = Database.query('SELECT id, import_id__c FROM User WHERE import_id__c = :iv');
                                cmnt.ParentId = ld.Id;
                               }
                            
                            cmntlist.add(cmnt);
                            
                        }
                    }
Hello. I am attempting to upload mdt records using SFDX CLI. I get the error The column Label is not found on the custom metadata type. I saved the file as CSV (Comma delimited) and CSV UTF-8 (Comma delimited) and received the same error. Similar error using MasterLabel. Any help would be appreciated. Thank you.
I am unable to generate custom PDF by clicking on custom button. Is there any way to do that, kinldy help.
I would like to add a break (new line, carriage return - for the old folks) to a Transaction Security Policy (TSP) block message. 

I have tried \n, <br> and a few other in-message control characters to try and get SF to enter a new line in the TSP block message.... but no luck.

Anyone have an idea?

Thanks !
what is custom label. And what is the difference between the custom settings and custom label. And when we have to use custom settings and custom label.can u please eloborate it in details.
  • December 21, 2014
  • Like
  • 1

Hi all,

 

I have a big task, in which I need to migrate data between infusionsoft CRM to salesforce.

If anybody had done this in past, please let me know, how should I proceed.

I gone through the infusionsoft, there are lots of things similar to salesforce, but I am not able to analyze, how to push tags, action sets?

Please let me know  if you have any suggestion.

 

Thanks

Vishal Gupta