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

Error: Unprocessed components with POSIT

Former Member
0 Likes
1,217

I'm writing a select statement in the PBO logic of a subscreen:

SELECT * FROM zcmd_prodchar

INTO gt_product_out

WHERE config_id = P_LV_CONFIG_ID AND

level_id = P_LV_LEVEL_ID.

LOOP AT gt_product_in

INTO wa_product_in

WITH CONTROL tc_prod_in

CURSOR tc_prod_in-current_line.

but while compiling there's a syntax error: Unprocessed components with POSIT

What does this error mean? How can this be avoided?

2 REPLIES 2
Read only

Former Member
0 Likes
772

please check these code,

PAI:

LOOP AT gt_product_in.

ENDLOOP.

Read only

sairam1308
Discoverer
0 Likes
772

Don't write select query directly in screen's flow logic..... create a module there and then write logic