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: 

Need to call a popup on VA02 screen

Former Member
0 Kudos

HI SAP Gurus,

I have a scenario where client wants a popup screen everytime user tries to save the field IHREZ (Your reference) field in transaction va02..The screen will contain various database fields including the following

Unit# , Service Order #,

Material#,

Material description ,

Qty ,

Cost ,

Markup factor ( From Z factor table),

Sales Price,

All the field are display fields except for markup factor which is a field from a ztable.The number of line items can be 200.Sales price will be calculated as

qtycostmarkup factor

There are two additional fields Labour and Hours which are to be entered by the user and then some calculation will be done to get the total price invested in repairing.This total price should be updated in a custom condition pricing for repair.

i have been suggested

To trigger the pop-up screen, use user exit MV45AFZZ, Form

USEREXIT_MOVE_FIELD_TO_VBKD.

But I have doubts like as what to use screen painter or there is some standard function module to call a popup.PLease suggest all the possible solution which i can look into.

Thanks in advance.

points will be rewarded to all the relevant answers

thanks

twinkle

3 REPLIES 3

Former Member
0 Kudos

Hi

Use the same Program MV45AFZZ

You can call a screen using

CALL SCREEN STARTING AT 5 5 ENDING 45 55

or use the fun module

POPUP_TO_CONFIRM

Regards

Anji

Former Member
0 Kudos

Transaction Code - VA02 Change Sales Order

Exit Name Description

SDTRM001 Reschedule schedule lines without a new ATP check

V45A0001 Determine alternative materials for product selection

V45A0002 Predefine sold-to party in sales document

V45A0003 Collector for customer function modulpool MV45A

V45A0004 Copy packing proposal

V45E0001 Update the purchase order from the sales order

V45E0002 Data transfer in procurement elements (PRreq., assembly)

V45L0001 SD component supplier processing (customer enhancements)

V45P0001 SD customer function for cross-company code sales

V45S0001 Update sales document from configuration

V45S0003 MRP-relevance for incomplete configuration

V45S0004 Effectivity type in sales order

V45W0001 SD Service Management: Forward Contract Data to Item

V46H0001 SD Customer functions for resource-related billing

V60F0001 SD Billing plan (customer enhancement) diff. to billing plan

No of Exits: 15

USER EXIT

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sapgenie.com/abap/code/abap26.htm

http://www.sap-img.com/abap/what-is-user-exits.htm

http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction

http://www.easymarketplace.de/userexit.php

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sappoint.com/abap/userexit.pdfUser-Exit

http://www.sap-img.com/ab038.htm

http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm

http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm

http://www.sap-img.com/abap/what-is-user-exits.htm

http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html

Rewards if useful.........

Minal

Former Member
0 Kudos

Hi,

You may use FM POPUP_GET_VALUES.

CALL FUNCTION 'POPUP_GET_VALUES'

EXPORTING

NO_VALUE_CHECK = ' '

popup_title = 'Get Additional Values'

START_COLUMN = '5'

START_ROW = '5'

IMPORTING

RETURNCODE = w-ret

tables

fields = t-fields

EXCEPTIONS

ERROR_IN_FIELDS = 1

OTHERS = 2

.

Regards

Raju Chitale