cancel
Showing results for 
Search instead for 
Did you mean: 

How to get values from variable

Former Member
0 Kudos

For instance, there is a variable in SAP B1 application, the system information says it is located at

#0000078,Qty

How will I know which table it refer? #0000078 isn't a table.

Accepted Solutions (0)

Answers (2)

Answers (2)

Nussi
Active Contributor
0 Kudos

Hi,

iam not sure what you mean - if you want to know where the data comes from or is stored:

some fields (for example sap calculated fields), have no table behind and you will not see where they come from.

in some reports / forms where a matrix/grid with values is created you can use the sql profiler to find out which table is behind and you can also use the profiler to find out which and where the data is stored.

lg David

Edited by: David Nussböck on Oct 7, 2008 11:16 AM

Former Member
0 Kudos

some fields (for example sap calculated fields), have no table behind and you will not see where they come from.

If there is no way of seeing where it came from, how am i suppose to get its value?

thanks!

Edited by: Rui Pereira on Dec 23, 2008 2:57 PM

Former Member
0 Kudos

U can get the values from the forms by using the Item type Say u want to get the value form a Edit text then u need to get the item and get the value. Ex:

Dim oEdit as SAPbouiCom.EditText
Dim strVal as String
oEdit = oForm.Items.Item("1000078").Specific
strVal = oEdit.String

Hope it helps,

Vasu Natari.