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: 

Message type E block modification

Former Member
0 Kudos

Hi,

I use module function :

CALL FUNCTION 'COBL_CODINGBLOCK_CHECK'

EXPORTING

check_cobl = l_cobl

pbo_cobl = pbo_cobl

cust_fields_dynp_checks = space

collect_messages = space

external_fields_used = 'X'

IMPORTING

checked_cobl = l_cobl.

.

But when i do an false WBS element, he bloc the field and i can't modify this field.

How can i do, if they are an error, the field is not blocked please?

Thanks for your help.

3 REPLIES 3

Former Member
0 Kudos

Hello

Pass COLLECT_MESSAGES = 'X' and get the messages in tables T_MESSAGES...

Thanks

Amol Lohade

Former Member
0 Kudos

Thanks for your reply.

when i loop in the table, he always block and i can't modify the field.

  • LOOP AT l_mesg.

  • MESSAGE ID l_mesg-id TYPE l_mesg-type NUMBER l_mesg-number

  • WITH l_mesg-message_v1 l_mesg-message_v2

  • l_mesg-message_v3 l_mesg-message_v4.

  • ENDLOOP.

Another idea?

Thanks.

Former Member
0 Kudos

any idea?