Quantcast
Channel: SCN: Message List - ABAP Switching, Enhancing, and Adapting Standard Programs
Viewing all 2464 articles
Browse latest View live

Enhancement on MB1A after saving

$
0
0

Hi,

 

I am trying to find an enhancement for MB1A after saving it to update a custom table. Out of the many BADI's i assume MB_DOCUMENT_BADI would be the most suitable one, but seems like I have to use enhancement spots to add my code. I tried to use debugging point at the USER EXIT MB_CF001 but it did not trigger.

 

I would like to know if adding the custom code by creating enhancement spot at MB_DOCUMENT_BADI is the best possible method to create enhancement or is there any other better approach for enhancement on MB1A after SAVE?

 

Thanks,

Deepak M S


Re: MIGO error message

Add field to Billing Plan tab (Item level)

$
0
0

Hi all,

 

I have to add a new column in VA42\43 in the item billing plan tab.

I have added a field to FPLT table and need to add it as a column.

 

I found the user exit for manipulate data in the billing plan (RV60FUS1 - USEREXIT_MOVE_FIELD_TO_FPLT).

I checked during debug and the values were saved in the table.

Now I need to manipulate the screen.

Any idea?

 

Thanks,

 

Regards,

Orit

Re: Enhancement on MB1A after saving

$
0
0

Hi

 

Be careful with this BADI.Please, read before the note 1315985.

 

Why don't you try it with tcode MIGO and the badi MB_MIGO_BADI?

 

Regards

 

Eduardo

Re: Add field to Billing Plan tab (Item level)

$
0
0

Are you trying to add a field or an entire tab.

 

If you are trying later you can have a look at my blog below,

 

Adding extra tabs in standard transactions for sales and contracts without access key.

 

In case you are trying add just a field, then find out the mainprogram name of the tab and then the sub-screen number of the tab where you want to add. Then go to the screen painter of the screen and then try adding your field. You should be asked for access key, consult your basis team o the same.

 

regards,

Satish

How to change the internal table FXVBUK-CMGST when use t-code vl01n?

$
0
0

Hello,

         I have a question about to change the internal table FXVBUK-CMGST before check the credit when I use t-code vl01n,now I find RV45PFZA

userexit_set_status_vbuk, but it can't use the table FXVBUK of function RV_XVBUK_MAINTAIN , what should I do? Can anyone tell me other enhancement? Thanks.

Re: Add a New Field to Selection Screen of VL10 Transactions problem

$
0
0

Dear All,

 

Up until now 2015 there is a solution to this issue?

 

Regards,

Florina Rau

Re: Add field to Billing Plan tab (Item level)

$
0
0

Hi Satish,

 

Thank you for your answer.

We are trying to add the column to the billing tab in VA42. Therefore, additional  data tab A and B are not relevant.

I found the main program which is in fact a function group (V60F) screen 4203 - but the access key is for the whole function group and not just the specific screen.

Although technically feasible, we don't want to loose SAP support on the function modules in the function group.

 

Do you have any other ideas ?

 

Many thanks,

Orit


Field Exit not triggering for BDC Recording

$
0
0

Hi,

 

we have a field exit in KS01-KOSTL field. When we record this transaction using SHDB we noticed that the field exit related code is not getting triggered. If anyone of you aware of this issue? if yes could you please let me know how to overcome this? or any method to get the field exit code triggered.

 

In RZ11 abap/fieldexit is also marked as 'yes'. And the field exit is working fine when the transaction directly used.

 

Regards,
Rubin

Customer Exit not triggered every time(specially initially)

$
0
0

HI All,

 

I am facing a weird issue, like in my requirement to Trigger a Event to raise a workflow, once a Reservation(MB21) is created -  I had done the coding inside component of exit MBCF0007, and have verified the activation twice.

 

Issue is whenever i create a MB21 reservation, the logic inside EXIT doesn't get Executed usually, but if I start the debug from '/h' or by putting an explicit break point in or before Exit, then the logic get executed.

 

And once the logic is executed, then rest attempts are successfully executing the Customer Exit logic.

 

I have no Idea what is going wrong here, as i had reverted and re-created and re-activated the CMOD implementation here, but no Luck.

 

Please suggest.

 

Regards,

Nitin

Re: Customer Exit not triggered every time(specially initially)

$
0
0

Nitin,

 

Whether this exit has been included in the enhancement list of a project (CMOD), which is an essential thing for any exit to function.

 

Regards

KJogeswaraRao

Re: Customer Exit not triggered every time(specially initially)

$
0
0

Yes, Off course that is inside a Project(CMOD), which i have activated twice, to ensure no inconsistency in activation.

 

And point is the code get executed only when i am placing explicit Debug point in exit.

Re: Customer Exit not triggered every time(specially initially)

$
0
0

Solved by myself, Issue was because there was update task which was not committed properly before calling of this Exit.

BADI or userexit at the time of saving for CS01 and CS02?

$
0
0

Dear Guys,

 

I want to modify the line item number of BOM while saving the transaction in CS01 and CS02. Please let me know the BADI or Userexit triggering while saving to fulfill my requirement.

 

Thanks,

K.Safiq

Re: Disable column in sales order

$
0
0

Hi Priyanka,

 

Could you please tell us how you achieved this. I'm also stuck in finding a solution for this.


Re: BADI or userexit at the time of saving for CS01 and CS02?

$
0
0

Hello Safiq,

Try user-exit PCSD0007   ( Function EXIT_SAPLCSDI_007 and includeZXCSAU11 ).

Also have a look at  PCSD0005   ( Function EXIT_SAPLCSDI_006 and includeZXCSAU10 ).

 

The list of exits in this area is:

PCSD0001  Applications development R/3 BOMS

PCSD0002  BOMs: Customer fields in item

PCSD0003  BOMs: Customer fields in header

PCSD0004  BOM comparison

PCSD0005  BOMs: component check for material items

PCSD0006  Mass changes user exit

PCSD0007  Check changes in STKO

PCSD0008  WBS BOM: Customer-specific explosion for creating

PCSD0009  Order/WBS BOM, determine URL page

PCSD0010  Order/WBS BOM, determine explosion date

PCSD0011  Knowledge-based order BOM, parallel update

PCSD0012  Customer - Mat. number/mat. number during material exch

PCSD0013  Customer-specific processing of an explosion for BOM br

 

 

Regards

KJogeswaraRao

Re: Field Exit not triggering for BDC Recording

$
0
0

Hi Rubin

 

You try in this way.Manually you write the code for this fields with field properties like how it come when we record a screen field.

 

Regards,

Madhu.

Re: Enhancement on MB1A after saving

$
0
0

Hi Eduardo,

 

Thankyou for the response. My requirement from the client is to update a custom table upon saving MB1A transaction. So I am just trying to find out if there is any exit or enhancement for the same. Please suggest on how to identify the correct exit.

 

Thanks,

Deepak

Re: Enhancement on MB1A after saving

$
0
0

Hello Deepak,

Just do not loose the exit MB_CF001 because it is not breaking at Break-point. Few exits ignore Break-points because they are called in UPDATE TASK. I feel this exit can work for you. Try some other methods to check whether it is working.

 

Regards

KJogeswaraRao

Re: Enhancement on MB1A after saving

$
0
0

Create an implementation for MB_DOCUMENT_BADI~MB_DOCUMENT_BEFORE_UPDATE, there call a FM in update task that will insert data in your customer table.

 

Hint: For MIGO use MB_MIGO_BADI~POST_DOCUMENT with the same FM in update task too.

 

Regards,

Raymond

Viewing all 2464 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>