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: 

How do i input value?

former_member198275
Active Contributor
0 Kudos

I am using KOB1. So from my ALV program if one line clicked then it will call KOB1. Now the problem is in the KOB1 three fields re required field. 1. Cost center, 2 Order and 3 posting date. 1st two have there own parameter ID. But Posting date doesnt have. But I have to send value from my program for that field. So If Posting date doesnt have any PARAMERTE ID,then how can i send value there?

3 REPLIES 3

JozsefSzikszai
Active Contributor
0 Kudos

hi Kaushik,

you have to use the SUBMIT statement for the program behind transaction KOB1. Something like:

SUBMIT RKAEP000

WITH parameter EQ ...

select-option IN ...

tcode EQ 'KOB1'.

pls. not you have to specify the tcode as well

hope this helps

ec

0 Kudos

Thanks Eric for ur valuable hepl.. BUT its not working. If u simply run the RKAEP000 program its showing TRANSACTION not found. Its also happening while im using SUBMIT statement in my program.

I have used below statements

SUBMIT RKAEP000

WITH AUFNR EQ LW_FINAL-OBJNR+2(12)

with BUDAT IN SO_BUDAT

with tcode EQ 'KOB1'.

Is there anything wrong....plz hepl its urgent

former_member198275
Active Contributor
0 Kudos

SOLVED