function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
John DeepJohn Deep 

Insert custom object record using apex logic.

 I just wannna create a simple registration page like, using Visualforce  and Apex.And I don't want to utilize any of the standard functionality.

Is there any way that i could create a datamodel from the custom functionality?

And It is the only way after creating a custom object only we can have VisualForce page and Apex code associated with that custom object to insert records manually.

 

Let me clarify what are the key thing to do this...like pagereference and etc..

 

 

 

Thanks in advanc

SaxonSaxon

Hi,

 

Are you looking to do dml operation from visualforce page?

 

Regards,

Saxon.

figdot1figdot1

This is all very possible and easy once you understand the Visualforce/Apex/Custom Object arrangements. We have a complete voyage booking application written that mainly uses custom objects, apex code and visualforce pages. 

 

You will need to understand the Apex object/class model. If you are a Java/C++/C#/VB.net programmer this is very easy.

 

You will need to define a "Site" for the public to access. Look into Setup > Develop >Sites 

 

You must also allow the public access to your custom object otherwise no records may be inserted. 

 

The default web page for this site will be your visualforce page. This visualforce page will name your new Apex class as its controller.

The controller can have one method which will save the values input to the page into your custom object. 

 

The important thing to remember when developing this type of code is that you will also need to develop a testing method in your apex code. At this point you will need to make use of the Page Reference object to allow the test method to invoke your controller class.

Leave time for this in your estimates. If you do not incorporate a test method in your plans, then you will be able to create all the programs in development but you will not be able to move any of them into production. All apex code must be tested before it can be moved into a production environment by invoking such a test method. The test method must not generate exceptions in your class and at least 75% of the code in the class must be tested. I personally would aim for 100% of the code unless you have other non program ways of testing your code (such as external testing routines). 

 

Hope this helps. If I have not then please write back with more specific questions.