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

How do i input value?

Former Member
0 Kudos
226

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
Read only

JozsefSzikszai
Active Contributor
0 Kudos
160

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

Read only

0 Kudos
160

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

Read only

Former Member
0 Kudos
160

SOLVED