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

Change Accounting Document header text

Former Member
0 Likes
3,634

I want to change the Accounting document header text (BKPF-BKTXT).

I dont want to use Call transaction for this.

Please tell me if there is any function module or BAPI available?

1 ACCEPTED SOLUTION
Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
2,179

>

> I want to change the Accounting document header text (BKPF-BKTXT).

Do you want to change the A/c'ing doc. header text for an existing doc? I think that CALL TRANSACTION would be easier. Why do you think otherwise?

Any specific reason for this?

BR,

Suhas

>

> I want to change the Accounting document header text (BKPF-BKTXT).

Do you want to change the A/c'ing doc. header text for an existing doc? I think that CALL TRANSACTION would be easier. Why do you think otherwise?

Any specific reason for this?

BR,

Suhas

4 REPLIES 4
Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
2,180

>

> I want to change the Accounting document header text (BKPF-BKTXT).

Do you want to change the A/c'ing doc. header text for an existing doc? I think that CALL TRANSACTION would be easier. Why do you think otherwise?

Any specific reason for this?

BR,

Suhas

Read only

former_member404244
Active Contributor
0 Likes
2,179

HI,

U can use BTE'S to change the BKTXT..The BTE IS 00001120 AND the sample FM IS ->SAMPLE_PROCESS_00001120.

Regards,

Nagaraj

Read only

Former Member
0 Likes
2,179

Hi,

Please try this below code

UPDATE BKPF SET BKTXT = 'xxxxxxxx'

WHERE USNAM = SY-UNAME AND

BUKRS = 'xxxx7' AND

BLART = 'xx'

Regards,

Koshal

Edited by: koshal yalamanchili on Jul 9, 2009 12:31 PM

Read only

Former Member
0 Likes
2,179

u can use FM CHANGE_DOCUMENT and then call FM BELEG_WRITE_DOCUMENT to log the changes.

The client asked us not to use BDCs/Call transaction, hence we opted for this...

Thanks,

Bikash