SAP for Utilities Discussions
Connect with fellow SAP users to share best practices, troubleshoot challenges, and collaborate on building a sustainable energy future. Join the discussion.
cancel
Showing results for 
Search instead for 
Did you mean: 

Impact in new AUGRD

Former Member
0 Kudos

Hi All.

Does any one know the impact on system if I creat new AUGRD codes ???

I need to creat an new AUGRD and use in FP04 ( exemple 99 - Especial Write off )

Tks.

1 REPLY 1

Former Member
0 Kudos

Hello Andre.

The Code snip for your Transaktion

FORM check_augrd USING p_augrd LIKE rfka1-augrd

CHANGING value(p_text) TYPE c.

----


IF NOT p_augrd IS INITIAL.

CALL FUNCTION 'FKK_AUGRD_CHECK'

EXPORTING

i_augrd = p_augrd

IMPORTING

e_txt50 = p_text

EXCEPTIONS

OTHERS = 1.

IF sy-subrc NE 0.

SET CURSOR FIELD 'RFKA1-AUGRD'.

MESSAGE e814(>3) WITH p_augrd.

ENDIF.

ENDIF.

ENDFORM.

FORM check_augrd USING p_augrd LIKE rfka1-augrd

CHANGING value(p_text) TYPE c.

----


make an Entry in Table TFK001A

Ore use the Cust

make an Entry in Table TFK001A

Ore use the Cust

regards

Chris

Edited by: Christian Fritsch on Jan 28, 2011 2:10 PM