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

memory id

abdulgaffarmohd
Participant
0 Likes
1,041

Hi guru's,

in my report i am using standard memory id "BUK".

i need to Update the BUK from Zreport how i can update the values of BUK id

with Z.

Regards,

Mohammed.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
951

Hi,

SET PARAMETER ID 'BUK' FIELD P_BUKR.

Try this example. Company code is filled in FBL1N.

DATA : P_BUKRS TYPE BUKRS VALUE '1000'.

SET PARAMETER ID 'BUK' FIELD P_BUKRS.

CALL TRANSACTION 'FBL1N'.

Regards

Edited by: Rajvansh Ravi on Nov 13, 2008 11:19 AM

6 REPLIES 6
Read only

Former Member
0 Likes
952

Hi,

SET PARAMETER ID 'BUK' FIELD P_BUKR.

Try this example. Company code is filled in FBL1N.

DATA : P_BUKRS TYPE BUKRS VALUE '1000'.

SET PARAMETER ID 'BUK' FIELD P_BUKRS.

CALL TRANSACTION 'FBL1N'.

Regards

Edited by: Rajvansh Ravi on Nov 13, 2008 11:19 AM

Read only

0 Likes
951

Same syntax i am using but it is not updating the values at standard T-code level

Eg:

In Fb60 ..memory id BUK value is 'LHIL".

if i am using this syntax with Z report does it refelect in standard also

Regards,

Mohamed.

Read only

0 Likes
951

Yes, the same value will be reflected when you set the parameter ID and call the transaction FB60

Read only

0 Likes
951

Hi,

I tried with FB60 also.

Are you filling FIELD P_BUKRS correctly.

Check in debug if P_BUKRS contains LHIL. Paste your code here.

Regards

Read only

0 Likes
951

you can use set and get

DATA : LV_BUKRS TYPE BUKRS VALUE 'DE01'.

GET PARAMETER ID 'BUK' FIELD LV_BUKRS.

SET PARAMETER ID 'BUK' FIELD LV_BUKRS.

Read only

Former Member
0 Likes
951

Hi,

Try this way :

It worked for me...


DATA LV_BUKRS LIKE BKPF-BUKRS value 'SEPV'.
SET PARAMETER ID 'BUK' FIELD LV_BUKRS.
CALL TRANSACTION 'FB60' .  " optional AND SKIP FIRST SCREEN.

regards,

Advait

Edited by: Advait Gode on Nov 13, 2008 11:41 AM