cancel
Showing results for 
Search instead for 
Did you mean: 

problem using flag values after calling the RFC

Former Member
0 Kudos

hi

i have called about 5 RFC on the single model ,

and these RFC's are called at different stages ,

in one of the RFC called Z_RFC_SM i have Structure

called It_Calc which has some elements and flag elements

(ex:make,model,car,flagmake,flagmodel,flagcar)

and flag elements datatype in the backend is Char

but after i have called the RFC , there flagvalues are

of type boolean

problem is i have to compare this flagvalues with Char values

X , so that i can chnage the color .

can any one help me ?

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

closed

former_member751941
Active Contributor
0 Kudos

Hi kishore,

Try This

	char chvalue="Put the char Value Here";
		boolean chFlag ;
		if(chvalue == 'X')
			 chFlag =true;
		else
			 chFlag=false;
		if(chFlag == flagvalues)
		{
			//Change the color
		}
		else
		{
		}

Regards,

Mithu