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: 

starting CO03

Former Member
0 Kudos

Hi all

I am writing a custom report about production. In my dynpro, I would like to launch CO03 with a double click on order.

I catched the double click and I have the order, but I don't know how to launch CO03 passing the order

I tried submitting the program of CO03 ... but I get this dump:

You attempted to start the ABAP/4 program "SAPLCOKO1" with SUBMIT, but the
 attributes specify this program as type "F" instead of "1". You can
 only start programs of type 1 with SUBMIT.

.. any hint? thank you

Gabriele

1 REPLY 1

Former Member
0 Kudos

solved googling:


DATA input TYPE aufnr.
input = 'xxxxxxxx'.
SET PARAMETER ID 'ANR' field  input.
CALL TRANSACTION 'CO03' AND SKIP FIRST SCREEN.