AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones Salesforce
  • Possible error cases:
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Clears the specified records from the Salesforce recycle bin.
Remark: After 30 days, items in the Salesforce recycle garbage can are automatically deleted.
Ejemplo
// Connect to Salesforce
Cnt is sfConnection
Cnt..Login = "vince@gmail.com"
Cnt..Password = "qwerty" + "XXB12VCZ54"
IF SFConnect(Cnt) = False THEN
	Error("The connection failed")
	RETURN
END
ResQuery is sfExecuteQueryResult 
ResQuery = SFExecuteQuery(Cnt, "SELECT Date__c,Miles__c,Contact__c FROM Mileage__c")

MyRecord is sfObject
FOR EVERY ResRequest MyRegistration..Object
	Trace("---- Type: " + MyRecord..Type + " | ID: " + MyRecord..ID)
	Trace(MyRecord..Date__c + " / " + MyRecord..Miles__c + " / " + ...
		MyRegistration..Contact__c)
END

// Delete an object
arrDel is array of strings
Add(arrDel, ResQuery..Object[1]..ID)

arrResDel is array of sfDeleteResult
arrResDel = SFDelete(Cnt, arrDel)
FOR EACH res OF arrResDel
	Trace("ID: " + res..ID + " - Deletion = " + res..Success)
END

arrResEmptyBin is array of sfEmptyRecycleBinResult
arrResEmptyBin = SFEmptyRecycleBin(Cnt, arrDel)
FOR EACH res OF arrResEmptyBin
	Trace("ID: " + res..ID + "- EmptyTray = " + res..Success)
END
Sintaxis
<Result> = SFEmptyRecycleBin(<Salesforce connection> , <Records to delete>)
<Result>: Array of sfEmptyRecycleBinResult
Array of sfEmptyRecycleBinResult variables that contains the records deleted from the recycle bin.
<Salesforce connection>: sfConnection variable
Name of the variable of type sfConnection to be used.
<Records to delete>: Array variable
Array of character strings containing the Salesforce identifiers of the records to delete from the recycle bin.
Observaciones

Possible error cases:

  • The Internet connection is not valid.
  • The authentication was not performed properly.
  • The XML response of the server cannot be read.
To find out whether an error occurred, use the ErrorOccurred variable.
Componente: wd300ggl.dll
Versión mínima requerida
  • Versión 14
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local