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
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
Modifies the records of a file defined in Salesforce. This file can be a preset Salesforce file or a custom file.
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
 
arrObjects is array of sfObject
ResQuery is sfExecuteQueryResult
sQueryText is string = "SELECT RecordTypeId, Recipient__c, "...
"ID, Subscript_of_mobiliot__c FROM BCM__c WHERE NAME='" + sSearch + "'"
 
ResQuery = SFExecuteQuery(Cnt, sQueryText)
 
ARecord is sfObject
FOR EACH ARecord OF ResQuery.Object
ARecord.Subscript_of_mobiliot__c = "698" // Modification
Add(arrObjects, ARecord)
END
 
arrRes is array of sfSaveResult
arrRes = SFModify(Cnt, arrObjects)
FOR EACH res OF arrRes
Trace("Success = "+res..Success)
END
Sintaxis

Modifying the existing records Ocultar los detalles

<Result> = SFModify(<Salesforce connection> , <Records to modify>)
<Result>: Array variable
Array of sfSaveResult variables containing the result data, especially the identifiers of the objects actually modified.
<Salesforce connection>: sfConnection variable
Name of the variable of type sfConnection to be used.
<Records to modify>: Array variable
Array of sfObject variables corresponding to the Salesforce records to modify. This array can contain up to 200 elements.

Modifying the existing records or creating records Ocultar los detalles

<Result> = SFModify(<Salesforce connection> , <Records to modify or create> , <Mode> , <External identifier>)
<Result>: Array variable
Array of sfSaveResult variables containing the result data, especially the identifiers of the objects actually modified.
<Salesforce connection>: sfConnection variable
Name of the variable of type sfConnection to be used.
<Records to modify or create>: Array variable
Array of sfObject variables corresponding to the Salesforce records to modify or create. This array can contain up to 200 elements.
<Mode>: Integer
Modification mode used:
sfCreateIfNotFoundThe record is automatically created if it does not exist.
In previous versions, this constant was called sfCreationIfNotFound.
<External identifier>: Character string
For a custom file, name of the item defined as unique item identifier from an external system.
  • This item is also used to identify the record to modify.
  • This item and its value are found in the sfObject object to modify.
    • The record will be automatically created if the value does not exist.
    • The record is updated if the value exists once.
    • An error is returned if the value exists several times.
Observaciones
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