cancel
Showing results for 
Search instead for 
Did you mean: 

SUBMIT PNP LDB with TIMR6 as 'X'

manubhutani
Active Contributor
0 Kudos

Hi

I am submitting a standard prog which is having a PNP selection screen using SUBMIT with selection table.

I need to pass TIMR6 ie other keydate as 'X', but it is not being passed to the standard prog.

TIMR1 ( Today ) is getting selected. Please help

Regards

Manu

Accepted Solutions (0)

Answers (1)

Answers (1)

antoine_foucault
Active Contributor
0 Kudos

What standard report is it? How do you call it from your abap logic: is it thru call transaction or submit and retunr sentences?

Follwing code works fine for me 100%:

SUBMIT (lv_programm)

WITH pnpxbwbk IN so_xbwbk

WITH pnpbegda EQ pv_begda

WITH pnpendda EQ pv_endda

WITH pnpbukrs IN so_bukrs

WITH pnpabkrs IN so_abkrs

WITH pnppernr IN so_pernr

WITH pnpstat2 IN so_stat2

WITH pnptimr6 EQ checked

WITH sv_slog EQ space

WITH sv_smrt EQ checked

WITH pv_log EQ pv_log

AND RETURN.

Hope it helps.