Contents
How to pass variables from REST API to apex-Salesforce developer?
For this I created a RESTAPI which will take the username and password as a parameters and validates against the credentials and returns the contact details for that valid user.Login form i have created in my org. using lightning.
How to create dynamic forms in Oracle apex?
The answer is APEX_ITEM package + APEX’s dynamic actions. Using this mix, you can build a very dynamic, powerful form on any page of your application. APEX_ITEM is a package that, according to Oracle’s formal definition, is used to “create form elements dynamically based on a SQL query instead of creating individual items page by page.”
Can you have more than one form region in apex?
It is a limitation of the built-in Apex forms that you can only have one automated row fetch process per page, unfortunately. You can have more than one form region per page, but you have to code all the fetch and submit processing yourself if you do (not that difficult really, but you need to take care of optimistic locking etc. yourself too).
How are two tables in apex linked together?
I have two tables in APEX that are linked by their primary key. One table (APEX_MAIN) holds the basic metadata of a document in our system and the other (APEX_DATES) holds important dates related to that document’s processing. For my team I have created a contrl panel where they can interact with all of this data.
How to pass the variables from REST API?
If your API function returns required attributes which you want to display in the component then you can extract them using json string. if you want to further guidence please let me see your API call and the component code.
How to work with sobjects in the database?
To work with sObjects that already exist in the database, pass the sObject ID instead (or collection of IDs) and use the ID to perform a query for the most up-to-date record. The following example shows how to do so with a list of IDs. 4) Methods with the future annotation cannot take sObjects or objects as arguments.
Can you pass sobjects as parameters in future?
The specified parameters must be primitive data types, arrays of primitive data types, or collections of primitive data types. Methods with the future annotation cannot take sObjects or objects as arguments.