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

Enhancing Standard program selection screen

$
0
0

Hi All,

 

How to enhance a standard program selection screen, when the implicit enhancement point is not available at at-selection-screen output?

 

Thanks in Advance

 

Regards,

Kushala


Exit M06B0005 not getting the value for WBS field

$
0
0

Hi ABAP Expert ,

 

 

Requirement is to pass CEBAN-USRC1 = PROJ-VERNR for PR RELEASE and for the same user exit- M06B0005 is used

following this remaining all fields are getting value  but its not fetching the WBS(PS_PSP_PNR) field through this  exit .

 

Although this query has been asked earlier as well in SCN  but dint get proper solution so far.

kindly suggest the ways to prompt this exit .


your prompt response will be appreciable.

Thanks

Ramesh .

How Many Number Of Active BADI Implementation we can have?

$
0
0

Dear Experts,

 

Just want to know how many number for Active BADI implementation can we have in SAP?( is it 0..n   or do we have any limitation).

Whether it will turn out any performance issue if we cross some number of limitations( example: active BADI should not more than 18 recommened).

 

Please advise...

 

 

Best Regards,

Raja

Re: How Many Number Of Active BADI Implementation we can have?

Re: Enhancing Standard program selection screen

$
0
0

Hi,

 

If there is no enhancement available the only option is get the key and modify the standard program.

 

Regards,

Madhu.

Re: Impact upon activation of the SWITCH DIMP_GENERAL

$
0
0

Hi Rabenja,

 

Can you check sap note : 1926960

 

Regards,

Madhu.

Re: Exit M06B0005 not getting the value for WBS field

Re: Enhancing Standard program selection screen

$
0
0

Hi Madhu,

 

Thanks for your reply.

 

I did it using Initialization and its working as per expected.

but i am not sure whether its a proper solution,

can you please suggest me on that?


Re: Enhancing Standard program selection screen

$
0
0

Hi Kushala,

 

There wont be any issue. While upgrade you need to take care of it.

complete notification while changing workorder status to release

$
0
0

Hi,

 

I want to complete notification which attached to a workroder while changing system status, but i could not able to find any method to change the notification status to complete using bapi_alm_order_maintain while updating Workorder.

Is this can be achievable through the standard BAPI. I referred documentation of BAPI provided by SAP, but no method I found which suits my requirement.

If it is achievable how to use the BAPI(passing data) .

 

 

Thanks in advance!

Re: How Many Number Of Active BADI Implementation we can have?

$
0
0

Hi Satish,

 

Thanks for your reply.

 

But my question is how many Maximum we can have the ACTIVE implementation. Not about the multiple use. ( only for multiple use we can have more than one ACTIVE implementations).

 

I have created 25 Active implementation for this BADI "DELIVERY_PUBLISH".

 

My question is  for example can I have 2500 Active implementation for this BADI?

I want to measure the performance also the implication on the main application where the BADI is called, hence i am asking this question.

 

 

Regards,

Raja

Re: How Many Number Of Active BADI Implementation we can have?

$
0
0

<<br />/p>

 

Hi Raja Narayan,

 

  For Single instance BADI only one implementation

  For multiple instance BADI can have number of implementation.

Re: complete notification while changing workorder status to release

$
0
0

Hello janu,

Put the following code in the include ZXWOCU07 of user-exit IWO10009. Your intended result will be noticed.

 

IF CAUFVD_IMP-IPHAS = '2'.  DATA: V_OBJNR TYPE VIQMEL-OBJNR.  CLEAR V_OBJNR.  DATA: IT_STAT TYPE TABLE OF JSTAT,           WA_STAT TYPE JSTAT.  WA_STAT-STAT =  'I0072'.  WA_STAT-INACT = ' '.  APPEND WA_STAT TO IT_STAT.  SELECT SINGLE OBJNR FROM VIQMEL INTO V_OBJNR
WHERE QMNUM = CAUFVD_IMP-QMNUM.  CALL FUNCTION 'STATUS_CHANGE_INTERN'    EXPORTING      OBJNR  = V_OBJNR    TABLES      STATUS = IT_STAT.
ENDIF.

 

After this when you Release an Order and save the Notification associated with it will be completed (NOCO).

 

Good luck

KJogeswaraRao

Problem in AT_EXIT_COMMAND Back Button

$
0
0

Hi Experts;

 

I have created an ALV Editable Report using Custom Container (Using CL_GUI_ALV_GRID), Every thing is going perfect, I have also created PF STATUS and set AT-EXIT-COMMAND for BACK, EXIT & CANCEL Button, but when I Press back button after ALV List, then it is going to another list without any list screen rather than back to selection Screen.

 

for 'BACK' i write,

SET SCREEN 0,

LEAVE SCREEN,

 

I had also try it with

 

LEAVE TO SCREEN 0, but the problem is same.

 

Kindly provide me an appropriate solution,

 

Thanks in Advance,

Regards,

 

Pradeep Mishra

Re: Problem in AT_EXIT_COMMAND Back Button

$
0
0

Hi pradeep,

 

Debug and check the value of SY-UCOMM.


LEAVE TO SCREEN 0 works well to focus on selection screen.


 


Re: Deactivate standard BADI implementation

$
0
0

You can deactivate via SPRO rather than via se19 coz se19 asks for Developer Key.

 

 

 

Regards,

Vishnu

Dynamic header in Sapscript

$
0
0


Hi ,

 

I am currently working on sapscript. My requirement is to display Inbound deliver note using Script. In it a single Inbound delivery note can have multiple handling units. Data corresponding to a particular HU should be displayed on same page and also the HU number for it should be displayed on Header along with barcode. When second HU number is encountered page break should trigger and same process should be repeated.

 

I am unable to display HU Number in header correctly as only last HU Number is always pickedd and displayed in header along with barcode. Also due to page break page numbers are not displayed correctly in header. Every page is displayed as page 1.

 

Please suggest as how to get Hu number and page number correctly for every page of single Inbound delivery note.

Re: Dynamic header in Sapscript

$
0
0

Hello,

Inside of SAPSCRIPT (Transaction SE71) use the control command NEW-PAGE. (Control Commands are identified by typing /: in the format column).

Inside the Print Program (Transaction SE38) use Function Module CONTROL_FORM to call the command NEW-PAGE:

Thanks,

Vijay

MB_DOCUMENT_BADI method not triggering in update task

$
0
0

Hi All,

 

  I have a requirement to update some custom tables with Material document number after MIGO. The problem is that, if i write the update statements in the MB_DOCUMENT_BEFORE_UPDATE method of the badi, my tables will get updated. But if I write it in the IN UPDATE TASK method, my tables dont get updated. If I write the update statements inside an update function module and call it in MB_DOCUMENT_BEFORE_UPDATE method then also my tables dont get updated. Please help.

Any function module to lock asset through abap program

$
0
0

Dear all,

I have to write a background scheduled program for asset lock, after creation of 120 days. I didn't find any fm for that. Any help how to do that or should i update database table directly through program? Early help will be appreciated.

 

Thanks

Renu

Viewing all 2464 articles
Browse latest View live


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