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

ABAP - Set Parameter

Former Member
0 Likes
1,181

Hi Guru's,

In My program i need to set parameter for transaction 'FBL3N', fields are Radio button 'OPEN ITEMS ' , Account Group , Posting date ( Range) for these fields i need Parameter Id. I searched in FBL3N F1 help , Tables of SKA1 , Tpara table and screen painter but i did't get parameter Id from those places. Where to search these Parameter ID?

Meenakshi

9 REPLIES 9
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,080

You can just use a submit statement to program RFITEMGL and call it.

Read only

0 Likes
1,080

Thanks Keshav.T,

But i cant able to set parameter for dynamic selection..

i wrote this code ..but not working for dynamic selections

But i cant able to set parameter for dynamic selection..

i wrote this code ..but not working for dynamic selections

submit RFITEMGL

with SD_SAKNR-LOW = '12341234' " <- pass GL account here

with SD_BUKRS-LOW = 'AAAA' " <- pass company code here

with %%DYN001-LOW = '10000'

with %%DYN007 BETWEEN '20090401' AND '20100331' " <- pass date range here

and return.

Read only

Former Member
0 Likes
1,080

Hi,

Please refer this thread.

Regards,

Danish.

Read only

Former Member
0 Likes
1,080

Hi,

If you are not finding a way to get the Parameter ID's try to use Export and Import Statements or try with SUBMIT statement

Thanks

Pavan

Read only

0 Likes
1,080

Thanks pavan.

But i cant able to set parameter for dynamic selection..

i wrote this code ..but not working for dynamic selections

submit RFITEMGL

with SD_SAKNR-LOW = '12341234' " <- pass GL account here

with SD_BUKRS-LOW = 'AAAA' " <- pass company code here

with %%DYN001-LOW = '10000'

with %%DYN007 BETWEEN '20090401' AND '20100331' " <- pass date range here

and return.

Read only

0 Likes
1,080

Hi,

Use SUBMIT statement with FREE SELECTIONS.

Just refer once this post

Thanks & Regards

Bala Krishna

Read only

0 Likes
1,080

for dynamic inputs read f1 help on Submit statement wit free selections.

If its a LDB then there must be some code in the LDB which sets the option button, if you debug it then you can find it...for ex similar like this

Read only

0 Likes
1,080

Thanks Keshav.T,Danish2285 ,Pavan Kumar , Bala Krishna

Problem solved.

Regards,

Meenakshi.

Read only

Former Member
0 Likes
1,080

answered