how to create a custom table in netsuite? - mysql

I am using netsuite builder for creating a website. I want to create a mysql table in it but it does not allow me to do so. Please suggest how to create custom mysql table in netsuite database.

In the admin role, go to the menu
Customization>List,Records & Fields>Record Types> New
Give it a name and ID, alongwith any other options. Save the record. Once the record has been saved, it gives you the option to add fields to the record.
Note: this would be a NetSuite table or to be precise - Custom Record Type.

If you have access to the NetSuite account, you can create custom records.

Related

Filling up a Form to update data table

I have to create a user-friendly form that allows employees to add details regarding a new shop branch to a data table, also in Access. Using only Microsoft Access, a user has to fill up a form with the relevant details so that a new entry will be appended to a data table.
E.g. A new shop branch will have the fields ShopID, ShopName, and PersonInCharge. Upon filling up a form with these 3 details, a user will click a button "Submit". Doing so will create a new entry in a data table.
I have tried linking the button to run a query that updates the data table but no new entries are created. I have also tried using the "Append" function as part of Query Design, but running it would append "0" rows.
Unfortunately I can't take any screenshots since I'm doing this in a company as part of my internship. This is my first time using Microsoft Access. Would appreciate the help!
In my understanding, you just want to make a simple form that simply add a record into your table right?
why don't you create a desired table first then create wizard form on it. It will automatically generate a form as needed then you can add a button using wizard choose categories -> record operations -> add new record.
Hope it helps!

Want to auto create a table in Microsoft Access dependent on a field in another table

I have a list of landowners in an area with initial information. There is a field that can be checked in the table if the landowner has been contacted. For all those that have been contacted I would like them to appear in a new table. This table would drop some of the information from the original, as it is no longer necessary, and would add some new fields that would then need to be filled in. Is there a simple way to do this? Thanks.
Go into the create Query tool, choose LandOwner table, choose the fields you want to appear in the new table. In the type of query click on "Create Table".
Type in the name of the new table in the wizard, then accept.
For each of the new fields of the new table create an expression in query design:
Lastly add the criteria to only transfer records that have been "contacted". The tick is to decide whether the contact field will also be transfered or not.

MS Access - Add new record using form and add info to subform

Not exactly sure how to title this one..
I have 2 tables (websites & website_info).
The websites table has a column called websites_website_info_id, which has a relationship linked to the website_info_id row in the website_info table.
I created a form from the websites table, and I want to be able to choose a row from the website_info table (in a subform). For example, the website_info table has a list of hosting providers used, I need to link these hosting providers with the websites. Only problem is, I cant find a way to choose a singe row from the website_info table and insert the id number into the websites_website_info_id column of the websites table.
I can create a lookup to find the ID, but i have to copy and paste it, which is not ideal because there will be others using this app. If it was just me, then i would be ok with that, but I need it to be as easy to use as possible for anyone to use without having to give too much instruction.
So, is there a way to find a value in a subform and add a value from the subform to a column in the main form.
Normally I would just use a lookup on the column in the table itself, but the database is a myslq database hosting on an external server so using lookups isn't an option.
Yes.
This will - in the main form - return the current ID of the subform:
Dim SubId As Long
SubId = Me!NameOfYourSubformControl.Form!ID.Value

Ms Access, make one table get data from another table in real time

So, i have 2 tables, let's say : Customers and Activity. Customers containing only customers and activity containing customers but also other pieces of information.
I have a form to write data in the Customers table.
What i need is the Activity table to auto-update itself each time I write an entry in the Customers table.
Is it possible to create a relationship between the two tables to do that? Or should I write something at the end of the code I use for the form?
Is it possible for instance to create a function that i call at the end of the code i use for the form?
Thanks.
If you're wanting to automatically update, independently of any form, a table based on changes made to another table, I would recommend a data macro which is new to MS Access 2010. They're pretty cool and are similar to triggers in enterprise level relational database management systems.
Open your Activity table. Under table tools create a named macro called NewRecord. Create a parameter called prmCustomer. Your macro could look like this:
Create a Record In Activity
Alias
SetField
Name Customer
Value = [prmCustomer]
Then open your Customer table. Under table tools create an After Insert Event. Your event could look like this:
RunDataMacro
Macro Name Activity.NewRecord
Parameters
prmCustomer = CustomerID
You'll have to do some playing around since you haven't given much info, but that's the gist of it.

How to find where the information is stored when entered through a form?

I have an already created database in MS Access 2003. It has forms that are used to enter data into tables. I want to create a report that shows the values entered through the forms. I am trying to find where the data gets stored when entered through the form so that I can create a report on that table, and I am not able to find it. Can someone please tell me how I can do this?
I would add an additional field to your back end tables, and write the name of the form directly into the record. That way you can query it later.