• Saraag
  • NEWBIE
  • 185 Points
  • Member since 2013

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

I have a dynamic query set up:

public PageReference showResult(){
          for(String i : toDisplay){
          cnclNum = i;
          qry = 'SELECT Name, Contract_Holder__r.Vin_Number__c, Cust_Refund__c, Dealer_Refund__c, Contract_Holder__r.Effective_Date__c, Date__c, Deduction__c, Contract_Holder__r.Name, Customer_Pay__c, Cancelation_Fee__c, Policy_Type__c, Contract_Holder__r.Contract_Number__c FROM Cancelations__c WHERE Name =:cnclNum ORDER BY name';
          quoteResults = database.query(qry);
                }
                if((quoteResults != null)){
                showQuote = SHOW;
                resultChoice = SHOW;
                }
                return Apexpages.currentPage();
                }

 wherein toDisplay is a list of strings, the size of which is based on previous user interactions, so it will be different for any given situation.

 

I would like to display all results returned in however many loops there are on my VF page in a format like this:

<apex:pageBlockSection title="Quote Results" id="resultsBlock" columns="1">
          <apex:pageBlockTable value="{!quoteResults}" var="item" rendered="{!NOT(ISNULL(quoteResults))}">
          <apex:column style="text-align:center;" value="{!item.Contract_Holder__r.Vin_Number__c}" headerValue="Vin Number" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Contract_Holder__r.Name}" headerValue="Name" width="105"/>
          <apex:column style="text-align:center;" value="{!item.Contract_Holder__r.Contract_Number__c}" headerValue="Contract #" width="85"/>
          <apex:column style="text-align:center;" value="{!item.Policy_Type__c}" headerValue="Policy Type" width="85"/>
          <apex:column style="text-align:center;" value="{!item.Date__c}" headerValue="Cancellation Date" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Customer_Pay__c}" headerValue="Customer Purchase Price" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Cancelation_Fee__c}" headerValue="Cancel Fee" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Deduction__c}" headerValue="Claim Deductions" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Cust_Refund__c}" headerValue="Customer Refund" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Dealer_Refund__c}" headerValue="Dealer Refund" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Name}" id="note" headerValue="Quote/Cancellation #" width="105"/>
          </apex:pageBlockTable>

 At the moment however, it will only populate the table with the last entry it finds in the database query and what I'm trying to do requires them all to be present for further user interaction so I was hoping someone might know the best way to get all the results to display at once the loop is completed or a better way to restructure the loop to accomplish the same.

 

Need help with ERROR – Trigger Code and Test Code Below -Creating a "Project" Milestone1_Project__c record when an Opp custom field - Start_Project_Site_Id_Stage__c = Yes - This field is dependent upon Stage = "Closed Won" on the opportunity.

 

System.DmlException: Insert failed. First exception on row 0; first error: CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY, CreateM1Project: execution of AfterInsert

caused by: System.DmlException: Insert failed. First exception on row 0; first error: CANNOT_INSERT_UPDATE_ACTIVATE_ENTITY, ProjectMilestone: execution of AfterInsert

caused by: System.DmlException: Update failed. First exception on row 0; first error: MISSING_ARGUMENT, Id not specified in an update call: []

Trigger.ProjectMilestone: line 16, column 1: []

Trigger.CreateM1Project: line 16, column 1: [] Stack Trace Class.CreateM1Project_test.myTestMethod: line 14, column 1

 

 

TRIGGER CODE

 

trigger CreateM1Project on Opportunity (after insert, after update) {

   

   

   List<Milestone1_Project__c> NewProjects = new List<Milestone1_Project__c>();

 

    for (Opportunity opp: trigger.new)  {

       

        if (opp.Start_Project_Site_Id_Stage__c == 'Yes') {

       

            Milestone1_Project__c freshProject = new Milestone1_Project__c();

            freshProject.Name = opp.Name;

            freshProject.Opportunity__c = opp.Id;

            NewProjects.add(freshProject);

        }

    }

    insert NewProjects;

       

   }

 

 

TEST CODE

 

@IsTest(SeeAllData=false)

public class CreateM1Project_test{

 

    static testMethod void myTestMethod() {

 

        Opportunity opp =

            new Opportunity(Name='Test',

            StageName='Closed Won',

            CloseDate=system.today(),

            Tower_Height__c='100',

            Start_Project_Site_Id_Stage__c='Yes');

           

        Test.startTest();

            insert opp;

        Test.stopTest();

       

    }

}

Can someone help with this error message?

 

trigger SD_Member_Check_Member_Status on SD_Member__c (after insert, after update) {
// If Master Status = Ineligible
// And Post Referral to CC Status = (In Treatment OR No Contact 30 Days OR No Contact 60 Days)

For (SD_Member__c SD : Trigger.new){

String MS1 = SD_Member__c.Master_status__c;
 
If(MS1 == 'Ineligible'){
  
 }


}
}

 The Issue is this line:  

String MS1 = SD_Member__c.Master_status__c;

 

The Master_Status__c field is a Formula (Text) field and the formula is:

 

If( 
TEXT( Post_Referral_to_CC_Status__c ) = "Graduated","Graduated", 

If( 
TEXT( Member_Eligibility_Status__c ) = "Ineligible-Cov", "Ineligible", 
If( 
AND (TEXT( Member_Eligibility_Status__c ) = "Ineligible-Geo",TEXT (Record_Invalid__c) <> "Override: Eligible Plan/Geo"), "Ineligible", 
If( 
AND (TEXT( Member_Eligibility_Status__c ) = "Ineligible-Plan",TEXT (Record_Invalid__c) <> "Override: Eligible Plan/Geo"), "Ineligible", 


If( 
TEXT( Post_Referral_to_CC_Status__c ) = "In Treatment - Active","In Treatment", 
If( 
TEXT( Post_Referral_to_CC_Status__c ) = "In Treatment - No Contact 30 Days","In Treatment", 
If( 
TEXT( Post_Referral_to_CC_Status__c ) = "In Treatment - No Contact 60 Days","In Treatment", 
If( 
TEXT( Post_Referral_to_CC_Status__c ) = "In Treatment","In Treatment", 
If( 
TEXT( Post_Referral_to_CC_Status__c ) = "No Contact 30 Days","In Treatment", 
If( 
TEXT( Post_Referral_to_CC_Status__c ) = "No Contact 60 Days","In Treatment", 
If( 
TEXT( Post_Referral_to_CC_Status__c ) = "Ineligible - Medically Excluded","Ineligible", 
If( 
TEXT( Post_Referral_to_CC_Status__c ) = "Deceased","Ineligible", 
If( 
TEXT( Post_Referral_to_CC_Status__c ) = "Requires Higher Level of Care","Ineligible", 

If( 
TEXT( Member_Eligibility_Status__c )="Ineligible-LUSD","Ineligible", 
If( 
TEXT( Member_Eligibility_Status__c )="Ineligible-NonSD","Ineligible", 
If( 

TEXT( Catasys_Medical_Exclusion_Status__c )<>"Medically Targeted","Ineligible", 
if( 

AND (Len(TEXT( Record_Invalid__c ))>0,TEXT (Record_Invalid__c) <> "Override: Eligible Plan/Geo" ), "Ineligible", 

"Outreach Candidate" 
)))))))))))))))))

I am trying to call the webservice and getting the following error:

 

System.CalloutException: Web service callout failed: WebService returned a SOAP Fault: <E97007> The supplied Zip+4 code of '87144' is invalid. faultcode=a:ApplicationException faultactor=

 

I get this error from a class generated from a WSDL in a sandbox org but using a dev org with the same WSDL I get a little more detailed info. 

06:50:06.284 (284395000)|CALLOUT_REQUEST|[197]|
<?xml version="1.0" encoding="UTF-8"?>
	<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
		<env:Header />
		<env:Body>
			<GetAccountDetailsByAccountNumber xmlns="http://tempuri.org/">
				<AccountDetails>
					<AccountNumber xmlns="http://schemas.datacontract.org/2004/07/xxx.xxx.SFDC.Contracts">
						010655421
					</AccountNumber>
				</AccountDetails>
			</GetAccountDetailsByAccountNumber>		
		</env:Body>
	</env:Envelope>

06:50:06.284 (284490000)|CALLOUT_REQUEST|[197]|
GetAccountDetailsByAccountNumber_element:[AccountDetails=GetAccountDetailsByAccountNumberRequest:[AccountNumber=010655421, AccountNumber_type_info=(AccountNumber, http://www.w3.org/2001/XMLSchema, string, 1, 1, true), apex_schema_type_info=(http://schemas.datacontract.org/2004/07/xxx.xxx.SFDC.Contracts, true, false), field_order_type_info=(AccountNumber)], AccountDetails_type_info=(AccountDetails, http://schemas.datacontract.org/2004/07/xxx.xxx.SFDC.Contracts, GetAccountDetailsByAccountNumberRequest, 0, 1, true), apex_schema_type_info=(http://tempuri.org/, true, false), field_order_type_info=(AccountDetails)]::SFDC_STACK_DEPTH=1 SOAPAction="http://tempuri.org/IAccountDetails/GetAccountDetailsByAccountNumber" User-Agent=SFDC-Callout/28.0 Accept=text/xml Content-Type=text/xml; charset=UTF-8 

06:50:07.626 (1626529000)|CALLOUT_RESPONSE|[197]|
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
	<s:Body>
		<s:Fault>
			<faultcode xmlns:a="http://tresoap.intecbilling.com/fault/2.0">
				a:ApplicationException
			</faultcode>
			<faultstring xml:lang="en-US">
				&lt;E97007&gt; The supplied Zip+4 code of '87144' is invalid.
			</faultstring>
			<detail xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
				<trefault:Detail xmlns:trefault="http://tresoap.intecbilling.com/fault/2.0">
					<trefault:Message>
						&lt;E97007&gt; The supplied Zip+4 code of '87144' is invalid.
					</trefault:Message>
					<trefault:ErrorId>
						97007
					</trefault:ErrorId>
				</trefault:Detail>
			</detail>
		</s:Fault>
	</s:Body>
</s:Envelope>

 

I don't exactly understand what is happening here.  I have 12 account numbers to test with, but only get this error with 3 of them.

  • August 28, 2013
  • Like
  • 0

Hi,

 

I'm trying to import a service WSDL that uses external schemas. I tried flatenning the WSDL but it uses 5 different xsds all with their own namespaces and all of them are qualified. I can try and change the name spaces but I think the service will not be able to recongnize it as the elements will not have any namespace qualifiers. Including xlms:"service url" might work but I'm not sure how to iclude a namespace in apex for a request generated by wsdl2apex.

 

Another option I'm trying to explore would make use of XML DOM class and HttpRequest/Response classes to manually build the SOAP enveloper and handle responses. Has any one had experiences using Http classes for SOAP callouts?  What would the req.setMethod be?

 

Any help would be appreciated.

 

Thank you

  • August 19, 2013
  • Like
  • 0

Hi, 

I need to show a page or a window where I can show my custom message to users just after user login to salesforce.

I am not good in coding so please can anyone help me?

 

examplE: Just after I login to Salesforce I should see a window "Hello" and when I click on continue it should take me to salesofrce home page.

 

Thanks,

Hi All,

 

I'm struggling with a very large SOQL implementation. Among other things, I have to search through 3+ million cases, most of which are closed and are not relevant to me.I'm trying to identify the best field to use to filter out these closed cases? Currently, out of the 3+ million we have around 70,000 open cases.

 

Salesforce only mentions that some of the standard fields are indexed, but doesn't exactly specify which fields.

 

In terms of query optimization, is it better to use  isClosed=true or Status='Closed' or may be even both with an AND?

 

Saraag

  • December 09, 2013
  • Like
  • 0

Hi,

 

I'm trying to create a generic CSV reader that will read from a Blob into list of records. This class would be called from a controller. This is my first draft. Arguments include file, fieldnames which sort of acts as the map and then the object name. I want to be able to detect what the object is and then read the CSV into a list of records of that type. Not sure what I have here would work (since I'm using PUT method on the generic sObject)

 

public List<sObject> readCSVRecords(Blob fileContent,List<String> fieldNames,String objName){
   	       Schema.SObjectType targetType = Schema.getGlobalDescribe().get(objName);
   	       
   	       List<sObject> returnList=new List<sObject>();	
   	   	    if(fileContent!=NULL&fileContent.size()<MAXFILESIZE){ //currently limited to 2MB
   	   	   
	   	   	    fileString=fileContent.toString();
	   		    fileLines=fileString.split('\n');
	   		    fileLinesSize=fileLines.size();	
			    for(Integer i=1;i<fileLinesSize;i++){ //leave out headings
			   	String[] inputvalues = filelines[i].split(',');
			        Integer y=0;
			        sObject rec=targetType.newSObject(objName); //How do I cast this dynamically?
			         for(String s:fieldNames){
			        	rec.put(s,inputvalues[y]);
			            	y++;
			         }
			         returnList[i-1].add(rec);
			            
			   }	
			   return returnList;
			   			   		
   	   	    }  
   	   	 else
   	return NULL; 	   
   }// end readCSVRecords

 

I would appreciate any help

 

Thank you

  • August 07, 2013
  • Like
  • 0
I'm struggling with the custom lightning component on this part. I don't have much background coding and am having trouble finding resources to help me achieve coding the lightning component. If someone could help give me some framework code to create a custom lightning component to hold a URL or direct me to a resource that help break this down I'd be very appreciative.
 

Hi All,

 

I'm struggling with a very large SOQL implementation. Among other things, I have to search through 3+ million cases, most of which are closed and are not relevant to me.I'm trying to identify the best field to use to filter out these closed cases? Currently, out of the 3+ million we have around 70,000 open cases.

 

Salesforce only mentions that some of the standard fields are indexed, but doesn't exactly specify which fields.

 

In terms of query optimization, is it better to use  isClosed=true or Status='Closed' or may be even both with an AND?

 

Saraag

  • December 09, 2013
  • Like
  • 0

Hi community,

 

I get the here-above message when trying to update opportunities.


When looking at the API guide, it seems to be specific to Person Accounts errors but I do not have Person Accounts enabled.

I could also see other threads but did not get any help for my specific scenario.

 

Debug Log lines:

 

 

15:41:54.093 (93278000)|DML_BEGIN|[42]|Op:Update|Type:Opportunity|Rows:1
15:41:54.126 (126267000)|DML_END|[42]
15:41:54.126 (126412000)|EXCEPTION_THROWN|[42]|System.DmlException: Update failed. First exception on row 0 with id 006S00000070MRG; first error: INVALID_FIELD_FOR_INSERT_UPDATE, Opportunity: bad field names on insert/update call: type: [type]
15:41:54.133 (133797000)|POP_TRACE_FLAGS|[EXTERNAL]|01pS0000000EZwQ|ClosedDuplicate|
15:41:54.204 (133826000)|CUMULATIVE_LIMIT_USAGE
15:41:54.204|LIMIT_USAGE_FOR_NS|(default)

 

Apex Class:

 

global class ClosedDuplicate{

   webService static String myMethod(Opportunity contextOpp) {
       
        List<Opportunity> relevantOpps;
        String finalMessage;
        Profile userProfile = [SELECT Name FROM Profile WHERE Id = :Userinfo.getProfileId()];


        /*********************************************************/
        /*****************AUTHORIZED USER ************************/
        /*********************************************************/
        if(contextOpp.Owner.Name == 'NA BS User') {}
        
        if ( /*  (userProfile.Name.equals('NA Telesales Rep') ||
                userProfile.Name.equals('Na Telesales Manager') ||
                userProfile.Name.equals('NA Territory Manager - Outbound')) &&
                contextOpp.Owner.Name == 'NA BS User' */ true )
        {
            List<Opportunity> oppsToUpdate = new List<Opportunity>();
            oppsToUpdate.add(contextOpp);
            try{
            relevantOpps = [SELECT Id,StageName,Reason_For_Closed_Lost__c FROM Opportunity WHERE 
                AccountId = :contextOpp.AccountId AND
                IsClosed = false AND
                Owner.Name like 'NA BS User' AND
                Product_Target__c INCLUDES ('Advanced','ECS','Pro')];
            oppsToUpdate.addAll(relevantOpps);
            } catch(Exception e){
            finalMessage = 'No relevant opportunities have been closed because either none were found or an error has happened.';
            }

            if(oppsToUpdate.size() > 0)
            {
                for (Opportunity o : oppsToUpdate)
                {
                 o.StageName = 'Closed Lost';
                 o.Reason_For_Closed_Lost__c = 'Close - TS Duplicate';
                }
                try{
                update oppsToUpdate;
                finalMessage = oppsToUpdate.size() + ' opportunities have been closed';
                } catch(Exception e){
                finalMessage = 'No relevant opportunities have been closed';
                }
            }
            
        } 
           


        /*********************************************************/
        /********************NON-AUTHORIZED USER *****************/
        /*********************************************************/
        else{            
            finalMessage = 'No relevant opportunities have been closed because you do not have an authorized profile or the opportunity is not owned by NA BS User.';
        }


     return finalMessage;
    }

}

 

 

Thanks!!

 

 

 

  • December 09, 2013
  • Like
  • 0

Is there a way for a trigger to tell if edits to records are from a mass upload/edit?

 

I have a trigger that recalculates lat/long fields when the address of an account is changed, but I know the trigger will give me problems when I try to upload or edit accounts en masse because of the 10 query limit.

 

So I need to figure out how to create a trigger that will update the fields when users change the addresses one at a time, but still allow a mass update or edit to do the same without triggering errors.

 

I'm wondering if someone out there with more experience has tried to do something like this before, or have any ideas?

I am passing a long text box that contains a copy of an email to a VF page that renders a PDF but the formatting is distorted. I want it to keep the format and stucture of the saved text in the comments box. This would look as the email was because this is my way of printint the email.

  • September 14, 2013
  • Like
  • 0

Hi Team,

 

I want to take pre-determind fields from a custom object and create a professsional PDF document. I have created a button and a visualforce page with fields from the object. It works but Im not satisfied with the look of the document. It just lists the text in a column.

 

Anyone reading this post would you be so kind in shainge your code with me? I have attached a link of what I am looking for.  

 

http://www.contractorform.net/images/Request_for_Information_Form.jpg

 

Thanks for reading,

SC

  • September 12, 2013
  • Like
  • 0

Hi All,

 

wonder if anyone can help me out with a problem that i have when inserting a .CSV through Visualforce to opportunity... i have a Lookup field  : -

 

o.BrokerSalesAgent__c = inputvalues[4];

which need to link an custom object which contains existing records that i want to link to via the name of the record. I have managed to link this through by using the record ID on the .csv but i have a 3rd party that will not have access to record ID's.

 

when try to use the name of the record i get the following error message: - 

 

Visualforce Error

 


System.StringException: Invalid id: Sean Broker Team

Error is in expression '{!ReadFile}' in component <apex:commandButton> in page uploadop

 

 

Class.FileUploadOpp.ReadFile: line 33, column 1

 

I know that i have to write some code to search for the existing records (ID,Name) but not sure how to approach this?

 

the code below shows the inputvalues from my .csv file mapping them to the fields in the opportunity object. 

 

 

 

rowCount = 0;
        filelines = nameFile.split('\n');
        opptoupload = new List<Opportunity>();
        
        for (Integer i=1;i<filelines.size();i++)
        {
            String[] inputvalues = new String[]{};
            inputvalues = filelines[i].split(',');
            rowCount = filelines.size() -1;
            Opportunity o = new Opportunity();
            o.RecordTypeId = inputvalues[0];
            o.Broker_Ref__c = inputvalues[1];
            o.Name = inputvalues[2];
            o.StageName = inputvalues[3];
            o.BrokerSalesAgent__c = inputvalues[4];
            o.AccountId = inputvalues[5];
            o.CloseDate = date.valueof(inputvalues[6]);

             opptoupload.add(o);
        }

 Can anyone point me in the right direction or help me with a example of how i can do this please?

 

thanks,

 

sean.

Folks,

 

Need help in understanding if we can invoke an existing apex class created by consuming an external system WSDL  using outbound messages? So if i create a workflow to send an outbound message to a webservice on the same org and this webservice calls the other apex class that we created by consuming the WSDL, will it work?

 

Thanks for the help.

 

Regards.

I have a dynamic query set up:

public PageReference showResult(){
          for(String i : toDisplay){
          cnclNum = i;
          qry = 'SELECT Name, Contract_Holder__r.Vin_Number__c, Cust_Refund__c, Dealer_Refund__c, Contract_Holder__r.Effective_Date__c, Date__c, Deduction__c, Contract_Holder__r.Name, Customer_Pay__c, Cancelation_Fee__c, Policy_Type__c, Contract_Holder__r.Contract_Number__c FROM Cancelations__c WHERE Name =:cnclNum ORDER BY name';
          quoteResults = database.query(qry);
                }
                if((quoteResults != null)){
                showQuote = SHOW;
                resultChoice = SHOW;
                }
                return Apexpages.currentPage();
                }

 wherein toDisplay is a list of strings, the size of which is based on previous user interactions, so it will be different for any given situation.

 

I would like to display all results returned in however many loops there are on my VF page in a format like this:

<apex:pageBlockSection title="Quote Results" id="resultsBlock" columns="1">
          <apex:pageBlockTable value="{!quoteResults}" var="item" rendered="{!NOT(ISNULL(quoteResults))}">
          <apex:column style="text-align:center;" value="{!item.Contract_Holder__r.Vin_Number__c}" headerValue="Vin Number" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Contract_Holder__r.Name}" headerValue="Name" width="105"/>
          <apex:column style="text-align:center;" value="{!item.Contract_Holder__r.Contract_Number__c}" headerValue="Contract #" width="85"/>
          <apex:column style="text-align:center;" value="{!item.Policy_Type__c}" headerValue="Policy Type" width="85"/>
          <apex:column style="text-align:center;" value="{!item.Date__c}" headerValue="Cancellation Date" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Customer_Pay__c}" headerValue="Customer Purchase Price" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Cancelation_Fee__c}" headerValue="Cancel Fee" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Deduction__c}" headerValue="Claim Deductions" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Cust_Refund__c}" headerValue="Customer Refund" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Dealer_Refund__c}" headerValue="Dealer Refund" width="95"/>
          <apex:column style="text-align:center;" value="{!item.Name}" id="note" headerValue="Quote/Cancellation #" width="105"/>
          </apex:pageBlockTable>

 At the moment however, it will only populate the table with the last entry it finds in the database query and what I'm trying to do requires them all to be present for further user interaction so I was hoping someone might know the best way to get all the results to display at once the loop is completed or a better way to restructure the loop to accomplish the same.

 

 

when i change a picklist value to 'approved', a workflow rule will run to send an email to my list of contacts. How can i add the attached file from the 'Notes and Attachments' related list of the record to the email/email template that will be sent when the rule is fired.

  • September 11, 2013
  • Like
  • 0

Hi,

 

I need to keep one org as master org and another one is child org.

 

If I created an object or a field in child org, this should be copied to master org.

 

Help me out how to do this.

 

THank you

 

 

I'm developing a new service and thinking of using REST instead of SOAP.  This service will be called internally by another application that runs in the background, i.e., no human user, no web browser.

 

I'm trying to figure out the best what for the client application to authenticate.  The client application already knows how to connect via the regular login() API and get a session ID.  I'm thinking the easiest thing to do would be to just use that Session ID.


What I don't know is how the client should pass the Session ID to a REST service.

 

When calling a SOAP Web Service, it goes in the  <cus:sessionId> tag in the <soapenv:Header>.  That wouldn't exist in REST.  I guess it isn't passed as a parameter and has to go in some sort of authentication header.  Can anyone point me to documentation on how to compose that header?

 

Right now, I just want to test a call from SoapUI.  Then I'll have to tell the people that write the client app what to do.

 

-Ken

 

 

Hi,

Is der any way to import data from MS Access to standard objects,Plz let me no.....

 

 

Regards,

Subramanya