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

User-Exits

Former Member
0 Likes
774

HI friends,

I have to change the Form exb706k in include RPREX010 to accomodate other

Symbolic accounts by reading the table T706K .But when i change it its asking for the

Acces key..also can i know any other way to acomodate the changes. or I'll hav to try for Badi

if i hav to try for badi den which badi do i hav to use.

Any sort of help will be appreciated.

Thanks,

Srinath

HI friends,

I have to change the Form exb706k in include RPREX010 to accomodate other

Symbolic accounts by reading the table T706K .But when i change it its asking for the

Acces key..also can i know any other way to acomodate the changes. or I'll hav to try for Badi

if i hav to try for badi den which badi do i hav to use.

Any sort of help will be appreciated.

Thanks,

Srinath

5 REPLIES 5
Read only

Former Member
0 Likes
730

hi,

TRIP_AUTHORISATION_DATE : BAdI for Changing the Date During an Authorization Check

TRIP_RECEIPT_SPLIT : Split Receipts to Different Wage Types

Regards,

Arjun.

Read only

0 Likes
730

HI,

Thnks for ur reply ..but how do i implement the badi TRIP_RECEIPT_SPLIT.

Thnks,

srinath

Read only

0 Likes
730

hi,

When you display your BAdI in transaction SE18 choose menu Implementation -> Create to create an implementation (e.g. Z_BBP_DETERMINE_ACCT).

Within the implementation SAP suggest already a name for the implementing class. I prefer to relate the class name to the interface name, e.g.

IF_EX_BBP_DETERMINE_ACCT => ZCL_IM_BBP_DETERMINE_ACCT

Now just double-click on the class name and you will be forwarded to the class builder where you can implement the required method(s).

this is one way of implementing badi and also one more way is.

SE18:-

1) In se18 click on radio-button "BADI Name" and put "BBP_DETERMINE_ACCT" in the box provided.

2) Then click on "Enhancement Implementation" on the Menu bar and then click on "Create".

3) Put in the Implementation name (please note that the implementation name should start with "Z" or "Y").

4) Then save the implementation in a package.

5) Double click on the method that you want to implement.

6) Write the requisite code and save and activate the BADI implementation, Interface, Method and all other objects related to the BADI.

SE19:-

1) In "Create Implementation" section click on Classic BADI and put the BADI name in the box beside it.

2) Then click on Create Implementation.

3) Put in the Implementation name (please note that the implementation name should start with "Z" or "Y").

4) Then save the implementation in a package.

5) Double click on the method that you want to implement.

6) Write the requisite code and save and activate the BADI implementation, Interface, Method and all other objects related to the BADI.

Regards,

Arjun

Read only

0 Likes
730

Hi Srinath,

&

In saptechnical .com you have a BADI tutorials very clearly.

Thanks & regards,

Dileep .C

Read only

Former Member
0 Likes
730

Thanks To all.