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

radio buttons

Former Member
0 Likes
540

Hi exports ,

I want to put radion buttons for customer order,stock trasfer orders.

If I give in

parameters :customer order radiobutton group RG1,

stock transfer order radiobutton group RG1.

I am getting error like customer order and stock trasfer order should be 8 char length.

I need to get full statement like customer order.

How can I do that.Please suggest me.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
494

parameters: p_cust radiobutton group RG1,

p_tran radiobutton group RG1.

Then maintain the selection text for each in Goto->Text elements->Selection texts.

3 REPLIES 3
Read only

Former Member
0 Likes
495

parameters: p_cust radiobutton group RG1,

p_tran radiobutton group RG1.

Then maintain the selection text for each in Goto->Text elements->Selection texts.

Read only

anversha_s
Active Contributor
0 Likes
494

hi nithin,

pls give as p_cust

and p_stock

because parameters will accept only upto 8 char

after that, take GOTO(in the top tool bar) -> text elememts -> selection texts

here u can change and give ur desired name.

if helped pls reward points.

regards,

anversha.

[email protected]

Read only

Former Member
0 Likes
494

Hi,

The problem lies in the name

parameters :<b>customer order</b> radiobutton group RG1,

<b>stock transfer order</b> radiobutton group RG1.

Define it like.

parameters: p_cust radiobutton group RG1,
            p_tran radiobutton group RG1.

And after this you will get the radio button with name p_cust and p_trans. To get the desired text you need to maintain text in text elements. Goto->Text elements->Selection texts. Here enter the desired text for both the paramters.

Hope this helps

Regards,

Richa