Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

flag

Former Member
0 Likes
1,007

hi...

what is the flag?what is the data type of flag?in which situation flags can be used in call transaction?

3 REPLIES 3
Read only

Former Member
0 Likes
941

it just a variable.

you declare like this.

data : flag(1) type c.

check this link for more info...

regds,

kiran

Read only

Former Member
0 Likes
941

FLag could be a single character variable of type C. You can use flag for any purpose if you want to store some sort of counter. Flag is not mandatory for call transaction. Flag is generally a temp variable defined withn the program to check the status if its TRUE or FLASE.

Cheers

VJ

Read only

SantoshKallem
Active Contributor
0 Likes
941

data type of flag is 1 CHAR.

it will be used in logic when we want to trig the bit of code once (mostly).

by setting flag value to 'X'.

and check the if flag is 'X'

....code....

Reward if useful