• Wonder Woman
  • NEWBIE
  • 0 Points
  • Member since 2012

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

Hi,

 

I am trying to do an integration with Share Point from an apex trigger.

 

I have a Web Service on Share Point I can call with a callout from the trigger using HTTPRequest.

 

The main issue is, how do I authenticate the Share Point user in order to make this call?

 

Does anyone have experience with authenticating a user on another domain from SF?

 

Thanks,

 

WW 

Hi , 

I have PageMessages in my controller how can i display that on a different page ;

 

I create a record and next Button actually inserts record in the object on the Next page it has a different Functionalities 

 

<apex:pageBlockButtons location="bottom" >
<apex:commandButton value="Approve" action="{!Approve}" style="width:20%"/>
</apex:pageBlockButtons>

 

 

controller

public pageReference Approve()
{
st.Status__c = 'Approved';
update st;
ApexPages.addMessage(new ApexPages.message(ApexPages.severity.CONFIRM, 'Record Has Been Approved'));
pageReference RecordsPage=new PageReference('/apex/QATRecordDetailPage?id='+st.QATApproval__c);
return RecordsPage;
}

 

how do i make this message Display on the pagereference page :;

 

 

Can some one help me out please 

 

 

Good Morning,

What I want to do is filter the contents of a primary query, and if that query returns records me then that those records are not listed in the second query.

 

by ejemple:

 

I want the result of this query:

 

DetProdAgre= [Select id,name, Nombre_SubCategoria__c ,Num_Doc__c,  Descripcion_de_Documento__c    , Categoria_TC__c, Numero_de_Tarjeta__c, Nombre_del_Cliente__c, Fecha_Documento__c from Detalle_ProductosTC__c where ProductosTC__c=:system.currentpageReference().getparameters().get('idProdTc')order BY name ];

 

I leaked this one:

 

 

sumarioDetDoc=[select id,name,Descripcion_del_Documento__c,Fecha_del_Documento__c,Nombre_del_Documento__c,ProductosTC__c,Prop_Doc__c,Nombre_Categoria_TC__c,SubCategoria__c,Nombre_de_Cliente__c,Nombre_del_Cliente__c from Detalle_de_Documento__c where Nombre_del_Cliente__c = :system.currentpageReference().getparameters().get('idcliente')AND
Nombre_Categoria_TC__c IN ('Soporte de Ingreso','Sistemas de Referencias','Sin Clasificacion','Analisis Tarjeta de Credito','Contrato de TC')order by  name ];

 

and filter it for the Num_Doc__c, since in the first query the object has a relationship with the Detail Records. And the second list the details of Documents.

In if you want is to have a record hacerce document number, and no more is listed on the page.

 


I hope you understand me and can help me, it's urgent!

 

 

[EDIT]

 Thanks for responding, and I solved

 

hai,

i  have two fields like username and password on vf page. i want  to validate the username and password form that is already stored in an custome objeect . when both values were matched it redirect to  another page

  • December 21, 2012
  • Like
  • 0

How can I create user in Salesforce using asp.net API? I can see sObject but I dont see the properties of setField.

Hi,

 

I am trying to do an integration with Share Point from an apex trigger.

 

I have a Web Service on Share Point I can call with a callout from the trigger using HTTPRequest.

 

The main issue is, how do I authenticate the Share Point user in order to make this call?

 

Does anyone have experience with authenticating a user on another domain from SF?

 

Thanks,

 

WW 

Hey all! 

 

I need to pull HTML of some custom fields I made on the contact and opportunity objects - is there a way to do this? 

 

It would be awesome if I could simply pull it like we can pull fields on the lead object!!

 

Any advice is much appreciated!

 

-JG

 
<knowledge:articleList articleVar="article"  	        				  
hasMoreVar="hasMore" pageSize="10" articleTypes="Samples_and_Demos__kav, How_To__kav" categories="Topic:Applications,Topic:Desktop">

 I'm trying to specify more then one articleType and category as filters for the VF tag "articleList".

 

The documentation doesn't specify how to do this.

 

For ArticleType, seperating by a comma works fine as listed. If I do the same thing for "categories", I only get results from the 2nd category specified, instead of from both. In this example, I only get results from Topic:Desktop and not Topic:Applications

 

Is there a different syntax for specifying multiple categories or is this a bug?

 

thanks!