I got several values in my list [Me, You, He, She, it]
I loop over my list.
In each iteration, I want to set up a global var with the value of the list-item.
while ls_ddictab in gt_ddic_table:
lv_create_gl_tab = ls_ddictab['TABLA']
lv_create_gl_tab_old = lv_create_gl_ta
if lv_create_gl_tab is not lv_create_gl_tab_old:
global lv_create_gl_tab
SyntaxError: name
lv_create_gl_tab
is used prior to global declaration
Edit
Overall target is to create a global data dictionary. All global-variables are maintained an an excel-file. From time to time I add additional variables in my excel. These variables I want to make global in a runtime