cancel
Showing results for 
Search instead for 
Did you mean: 

how to unload the info of a matrix and a EditText to the tables

Former Member
0 Kudos

Hi, I'm new in SDK SBO and i don't know how to unload the matrix info and EditText Value. I'm using Data Tables... if you can help me...

Thanks!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Check this thread first:

Thanks,

Gordon

Former Member
0 Kudos

i think that maybe my question it was a little ambiguos, the question is how can i unload a EditText to the Datasource... i know that on a matrix the method is matrix.FlushToDataSource()... what's the mehod to do the same on the EditText? or maybe i'm a little confused about the dataSources...

Former Member
0 Kudos

Are these tables UDT or system tables?

Former Member
0 Kudos

systems tables! .... and other question... i have the info in one table and i have to do a insert in a new table... how do i do it??? example:

this are my dataSources

objForm.DataSources.DataTables.Add("OITT");

objForm.DataSources.DataTables.Add("OITM");

objForm.DataSources.DataTables.Add("ITT1");

this is my matrix and my EditTexts

matriz.Columns.Item("c_cod_art").DataBind.Bind("ITT1", "Code");

matriz.Columns.Item("c_cant").DataBind.Bind("ITT1", "Quantity");

matriz.Columns.Item("c_almacen").DataBind.Bind("ITT1", "Warehouse");

matriz.Columns.Item("c_descrip").DataBind.Bind("ITT1", "Description");

txtCodPro.DataBind.Bind("OITT", "Code");

txtDescri.DataBind.Bind("OITM", "ItemName");

txtCant.DataBind.Bind("OITT", "Qauntity");

cmbAlmacen.DataBind.Bind("OITT", "ToWH");

i'm a need to unload the info in others tables!... i know that i can not do insert.. how can i do that

Former Member
0 Kudos
        • I need to unload the info in others tables!... i know that i can not do insert.. how can i do that.. sorry for the mistake..

Answers (0)