Application Development 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: 

Error: Unprocessed components with POSIT

Former Member
0 Kudos

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

Former Member
0 Kudos

please check these code,

PAI:

LOOP AT gt_product_in.

ENDLOOP.

sairam1308
Discoverer
0 Kudos

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