Application Development 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: 

serial number screen

Former Member
0 Kudos

Hi all,

when we create or change the delivery order in vl01 or vl02 .

From navigation EXTRAS -- SERIALNUMBER , one popup window is displaying for serial number. In that screen there is buttom " create serial number automatically", if want to block or delete this button is there any process. If anybody know this pls..revert back me .

Thanq .

sksk

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Sorry,

Wrong answer.

For your requirement you have to use the User exits or BADIs.

check below exists.

Exit Name Description

V02V0001 Sales area determination for stock transport order

V02V0002 User exit for storage location determination

V02V0003 User exit for gate + matl staging area determination (headr)

V02V0004 User Exit for Staging Area Determination (Item)

V50PSTAT Delivery: Item Status Calculation

V50Q0001 Delivery Monitor: User Exits for Filling Display Fields

V50R0001 Collective processing for delivery creation

V50R0002 Collective processing for delivery creation

V50R0004 Calculation of stock for POs for shipping due date list

V50S0001 User Exits for Delivery Processing

V53C0001 Rough workload calculation in time per item

V53C0002 W&S: RWE enhancement - shipping material type/time slot

V53W0001 User exits for creating picking waves

VMDE0001 Shipping Interface: Error Handling - Inbound IDoc

VMDE0002 Shipping Interface: Message PICKSD (Picking, Outbound)

VMDE0003 Shipping Interface: Message SDPICK (Picking, Inbound)

VMDE0004 Shipping Interface: Message SDPACK (Packing, Inbound)

don't forget reward if useful....

3 REPLIES 3

Former Member
0 Kudos

Hi ,

ABAP Program will create the FM (for calling smart form) Dynamically.

Check the below Fm in your ABAP program .You will find the code.

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

formname = 'SmartForm Name'

IMPORTING

fm_name = ws_form_fname.

It will return the FM (ws_form_fname) by using smartform

and calling that FM is like below.

CALL FUNCTION ws_form_fname

EXPORTING

control_parameters = device

TABLES

i_final_ap = i_final_ap.

Don't forget to reward if useful....

Former Member
0 Kudos

Sorry,

Wrong answer.

For your requirement you have to use the User exits or BADIs.

check below exists.

Exit Name Description

V02V0001 Sales area determination for stock transport order

V02V0002 User exit for storage location determination

V02V0003 User exit for gate + matl staging area determination (headr)

V02V0004 User Exit for Staging Area Determination (Item)

V50PSTAT Delivery: Item Status Calculation

V50Q0001 Delivery Monitor: User Exits for Filling Display Fields

V50R0001 Collective processing for delivery creation

V50R0002 Collective processing for delivery creation

V50R0004 Calculation of stock for POs for shipping due date list

V50S0001 User Exits for Delivery Processing

V53C0001 Rough workload calculation in time per item

V53C0002 W&S: RWE enhancement - shipping material type/time slot

V53W0001 User exits for creating picking waves

VMDE0001 Shipping Interface: Error Handling - Inbound IDoc

VMDE0002 Shipping Interface: Message PICKSD (Picking, Outbound)

VMDE0003 Shipping Interface: Message SDPICK (Picking, Inbound)

VMDE0004 Shipping Interface: Message SDPACK (Packing, Inbound)

don't forget reward if useful....

0 Kudos

Hi ,

Thanq for ur reply.