Enhancement is VA11 screen?

Hi gurus,
             I have got the task of adding a tab(tabstrip) in VA11 screen can anyone share me the procedure of doing this its a critical task and i am worried of this task too?
And the market place which notes number is assigned for this enhancements to sales screen ?
THks

Hi ,
I hope you can define new tabs or change tab name using functionality called Tab Strip Control
You can go thru below link
http://help.sap.com/saphelp_nw70/helpdata/en/17/5bf1b52ba211d2954f0000e8353423/content.htm
I think will help u .
Please Reward If Really Helpful,
Thanks and Regards,

Similar Messages

  • How to add fields in VA11 screen?

    Hello ABAPers,
                           I want to add one field in inquiry form(VA11) can anybody give the steps to add a field in VA11 screen.
    I found tht user exit V45A0002 is used to add extra field. Is tht right i am totally new to the enhancements. Please provide me the steps.
    And i want to change the standard text name of VA11 too for tht wht steps i have to follow.
    Points will be deffinetly rewarded for the helpful answers.
    Waiting for all your replies...
    Thks

    Hello,
    I do not know the either user exit or BAdi for FP03. However I can suggest you a work around.
    You can add an addl tabstrip in FPE2/FPE2M.  This is possible by adding an addl field say 'ZZ' in tables DFKKOP/DFKKCOLL/DFKKCOLLH.
    <also pls look into OSS Note 851023>
    So when ever an item is submitted to collection agency, this field should be updated.
    Hope this helps
    Rgds
    Rajendra

  • Field Exit for VA11 screen ?

    Hello Abapers,
                         I need ur help to find out the field exit available for VA11 screen.
    How to find the field exit wht is the procedure?
    Thks

    Hi Venkateswar,
    First you check this link once.,
    http://www.****************/Tutorials/ExitsBADIs/MK01/FieldExit.htm
    Field exits are frozen on the 4.6C maintenance level and are not further developed. This means that the existing functionality is kept with all restrictions (see also the last item below). Existing exits can be further used and are called at runtime as usual.
    Existing exits can be maintained using program RSMODPRF (run the program using transaction SE38). Activation of the field exits and assignment of the dynpros can also be carried out using program RSMODPRF. For this purpose, the program must be started without parameters (input fields remain blank).
    If required, new field exits can be created using program
    RSMODPRF (see the program documentation).
    Please find below the step by step procedure for field exit :-
    There are eight steps to creating a field exit:
    Step 1: Determine Data Element
    Step 2: Go To Field Exit Transaction
    Step 3: Create Field Exit
    Step 4: Create Function Module
    Step 5: Code Function Module
    Step 6: Activate Function Module
    Step 7: Assign Program/Screen
    Step 8: Activate Field Exit
    Step 1: Determine Data Element
    Before you can begin adding the functionality for a field exit, you must know the corresponding data element.
    An easy way to determine the data element associated to a particular screen field is to:
    Go the appropriate screen.
    Position the cursor in the appropriate field.
    Press ‘F1’ for field-level help.
    Click on the ‘Technical info’ pushbutton (or press ‘F9’) on the help dialog box.
    On this Technical Information dialog box, the data element will be specified if the field is 'painted' from the ABAP/4 Dictionary.
    Step 2: Go To Field Exit Transaction
    The transaction to create field exits is CMOD.
    You can use the menu path Tools -> ABAP/4 Workbench -> Utilities -> Enhancements -> Project management.
    From the initial screen of transaction CMOD, choose the Text enhancements -> Field exits menu path.
    After choosing this menu path, you will be taken to the field exits screen. From here, you can create a field exit.
    NOTE : Even though you use transaction CMOD to maintain field exits, you do not need to create a project to activate field exits.
    Step 3: Create Field Exit
    From the field exit screen of transaction CMOD, choose the Field exit -> Create menu path.
    After choosing this menu path, a dialog box will prompt you for the appropriate data element .
    Enter the data element name and click the ‘Continue’ pushbutton.
    Now, you will be able to create the function module associated to the data element’s field exit.
    Step 4: Create Function Module
    You will automatically be taken to the Function Library (SE37) after entering a data element name and clicking the ‘Continue’ pushbutton.
    In the ‘Function module’ field, a function module name will be defaulted by the system based on the data element specified. This name will have the following convention:
    FIELD_EXIT_<data element>
    You can add an identifier (an underscore followed by a single character ).
    The first function module for a data element’s field exit must be created without an identifier.
    To create the function module, click on the ‘Create’ pushbutton, choose menu path Function module -> Create, or press ‘F5’.
    After choosing to create the function module, you will get the warning: "Function module name is reserved for SAP". This message is just a warning so a developer does not accidentally create a function module in the field exit name range. By pressing ‘Enter’, you will be able to go ahead and create the function module.
    Before coding the function module, you will have to specify the function modules attributes -- function group, application, and short text.
    Step 5: Code Function Module
    From the function module’s attributes screen, click on the ‘Source code’ pushbutton or choose the Goto -> Function module menu path to the code of the function module.
    Here you will add your desired functionality for the field exit.
    Remember that field exit’s function module will have two parameters -- one importing parameter called "INPUT" and one exporting parameter called "OUTPUT". These parameters will be set up automatically by the system.
    You must remember to assign a value to the OUTPUT field. Even if the value does not change, it must be moved from the INPUT field to the OUTPUT field.
    Step 6: Activate Function Module
    After coding the function module, you must remember to activate it.
    Use the Function module -> Activate menu path to activate the function module.
    At this point, you can return to the field exit transaction.
    You should be able to 'green arrow' back to this transaction.
    When you return to the field exit transaction, you will see an entry for the newly created field exit.
    At this point, the field exit is global. That is, it applies to all screens that use a particular data element. On any screen that uses the data element, the corresponding field exit function module will be triggered, once it is active.
    Also, the field exit will not be triggered yet because it is inactive.
    Step 7: Assign Program/Screen
    This step is only needed if you want to make a field exit local.
    To make a field exit local, select the field exit and click on the ‘Assign prog./screen’ pushbutton.
    In the dialog box , indicate the appropriate program name and screen number.
    This information indicates that the field exit is local to the specified screen in the specified program.
    In the dialog box, you determine which function module gets executed for the field exit by specifying the identifier in the ‘Fld. Exit’ field.
    If this field is left blank, the function module triggered will be 'FIELD_EXIT_<data element>'.
    If a single-character identifier is entered into the field, the function module triggered will be 'FIELD_EXIT_<data element>_<identifier>'.
    Step 8: Activate Field Exit
    The field exit must be active for it to be triggered by the system.
    Activate the field exit by choosing the Field exit -> Activate menu path.
    After assigning the field exit to a change request, its status will change to ‘Active’ and it will be triggered automatically on the appropriate screen(s).
    NOTE : In order to activate the field exit the profile parameter abap/fieldexit = YES must be set on all application servers
    Please reward points if helpful.
    Cheers,
    Swamy Kunche

  • Enhancement for 6201 screen in SAPLV69A for VA01 transaction

    hi experts,
    i need to enhance the 6201 screen in SAPLV69A program for VA01 application,
    is there any user exit for this particular screen.

    Hi,
    Check all for VA01
    Transaction Code - VA01                     Create 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      
    Rewards if useful.............
    Minal

  • Enhance infotype 0077 screen number 2008

    Hi,
    I want to enhance infotype 0077 screen number 2008.
    Using PM01, i created enhance single screen record with infotype 0077 with version 08.
    But the additional field appear on screen number 2000 instead of screen number 2008.
    How to add the additional field to 2008 instead?
    Thanks.
    Best regards,
    Xiang Li Heah

    Hi Volker Binder,
    Try "Infotype Screen Control" in T588M.
    T588M is a table and there is no column name called "Infotype Screen Control", can you provide further infomation on this?
    Hi Sheetal,
    My requirement is to add sexual orientation field into IT 77.
    The added field need to be display/edit on PA30 (screen number 2008).
    Using PM01, i created single screen enhancement  on IT 77 with version 08 (GB).
    Using PA30, by selecting different employee, the additional fields display on screen number 2000 but it is not display on screen number 2000.
    Many thanks.
    Best regards,
    Xiang Li Heah

  • I have Lightroom 4 on a PC and while enhancing photos, the screen seems to keep refreshing. What can be the problem?

    I have Lightroom 4 on a PC and while enhancing photos, the screen seems to keep refreshing. What can be the problem?

    Leilani ~ Welcome to the Support Communities. Before posting your question it's worth searching the Communities — here's an Apple tutorial:
    Apple Support Communities: Searching
    ...But since you've already posted, look in the More Like This section to the right of your post. Also:

  • Enhance Describe Requirement screen

    Hi Experts,
    In SRM 7.0 for Describe Requirement Screen I want to add additional fields in the Describe Requirement Screen. I could not find any way to customize through field control in spro. Do i need to enhance the Webdynpro screen for Describe Requirement to accommodate this change or is there any other way?
    Thanks

    Hello Srinivas,
    Yes, You add the custom field type partner no to Item structure.
    If u debug ONACTIONADD_ITEM_TO_SC method of the component /SAPSRM/WDC_DODC_SC_I_DES
    item details are populated and using it account, partners are created.
    1, Add custom field in item structure. example :zsupplier_no type partner_no
    2, check once when u enter input in your zfield values is getting populated in /SAPSRM/IF_PDO_BO_SC~ADD_ITEM(While debugging)
    3, Enchance the post exit for  /SAPSRM/IF_PDO_BO_SC ~SOS_VALIDATE, In sos tab you can find the partner no as fixed vendor.(which was entered in describe sc screen)
    In exit
    CALL FUNCTION 'BBP_VENDOR_GETINFO'
    EXPORTING
    partner = cs_item-zsupplier_no
    x_with_name = 'X'
    TABLES
    vendor_set = lt_vendor
    EXCEPTIONS
    OTHERS = 1.
    READ TABLE lt_vendor INTO ls_vendor INDEX 1.
    ls_partner-partner_fct =' 0000019'.
    ls_partner-p_guid = cs_item-guid.
    ls_partner-partner_no = ls_vendor-partner_guid.
    ls_partner-partner_id = ls_sos_list-vendor_id.
    me->guid_create( CHANGING cv_guid = ls_partner-partner_guid ).
    APPEND ls_partner TO ct_partner.
    Regards,
    Neelima
    Edited by: S Neelima on Sep 29, 2011 2:58 PM

  • Enhance PO details screen

    We have a need to enhance the PO detail screen (supress buttons and add new columns). As I understand this is a webdynpro based screen. So do we need to use POWL for that?
    Thanks.
    Anuradha.

    Hi Anuradha,
    You can customize PO Screen by implementing Enhancement SPOT (/SCF/UIMDL_APPCUST).
    This will allow you to remove buttons as well as add columns.
    Hope this helps!
    Regards
    Shekhar

  • Enhancing a standard screen

    hi all,
    I have a requirement where i have to add a field on screen of a standard transaction with effect on other fields.
    Ex : In T-code ME21N, if i want to put a check box and if the check box is checked then an action should take place in runtime.
    Or a field where document no can be inputed.
    And there also a requirement where if the 'item category' or the column 'I' is filled as D,then it should give a pop-up.
    which badi should i use for this case.
    regards,
    Johnson

    Hi,
    Here is the procedure to implement screen exit.
       Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s flow logic.
    the tcode is cmod...
    1.From the main screen of the Project management transaction, proceed as follows:
    Select Enhancement components and choose Change.
    2.Choose Edit component.
    3.Choose the screen exit and double click on it
    4.Create your subscreen using the Screen Painter.
    5.Design your screen to be added to the standard screen and activate the particular screen and return back to the flow logic .
    6.Choose the PAI and PBO to write down the logic.
    7.Generate your screen and choose Back (the green arrow) to return to the Project management transaction.
    8.Go to the transaction ME22 to view the customer defined screen exit.
    9.Enter the purchase order number and press Enter.
    10.Go to the menu header --> Details.
    11.Purchase number is visible on the standard screen
    Please check if the thread given below would be of any help.
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/menu-exits-72696#
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    https://forums.sdn.sap.com/click.jspa?searchID=10843961&messageID=4640690
    Regards
    Kiran Sure

  • Application Enhancer and Blue Screen

    I have had Leopard running for a few weeks on my iBook G4 now with no problems.
    Last night I wanted to listed to some music through my Airport Express but I don't like the way Airtunes drops the connection if I am switching songs and take a couple of second to do it.
    So I started up Airfoil and it asked if I wanted to install Instant Hijack. I said yes.
    BIG MISTAKE!
    Application Enhancer is apparently used to run Instant Hijack and one or the other trashed my system. It would never get past the blue screen at the startup even after being left to startup for an hour.
    DO NOT try to run these programs on Leopard until they are updated they will trash the system.
    I spent this morning trying everything to recover the system and finally gave up and reinstalled the system.

    Hi,
    this is a known problem. Logitech keyboard/mouse drivers also use APE. You might want to know that there's even a support document about this. So the next time you run into a problem like this you won't need to reinstall everything. Take a look:
    http://docs.info.apple.com/article.html?artnum=306857
    Björn

  • FI Dunning note enhancement of selection screen sapf150v

    Hello
    Maybe somebody has dealt with such problem
    I need to enhance the screen parameters in transaction SAPF150V (screen: 111)
    I'm working in 6.0, these fields are mostly needed only for printout,
    some data from this screen must be printed on the form.
    The problem is that I do not now how to modify this screen without
    doing hard modification of program (i.e. F150- ZF150)
    Anybody has an idea?
    Best regards Bogumila

    Hi!
    If the data is constant text, you might use standard texts with SO10 transaction. Even the users can maintain this text.
    The other way, is to use a PERFORM from the dunning SAPScript, and you can write your ABAP code here.
    It's working like this:
    Definition in the SAPscript form:
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    Coding of the calling ABAP program:
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY ‘PAGE’.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY ‘NEXTPAGE’.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE OUT_PAR WITH KEY ‘BARCODE’.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = ‘|’. "First page
    ELSE.
    OUT_PAR-VALUE = ‘||’. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = ‘L’. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Regards
    Tamá

  • Help needed in Va11 screen?

    Hello ABAPers,
                  I want to know is it possible to add a field in Program - SAPMV45A and screen number - 4021 with out any access key.
    If yes please can anyone give me the procedure to make it.
    I have copied all the includes of SAPMV45A into my own program ZSAPMV45A. But one error is occuring while i am activating the whole include(ZSAPMV45A) like "The field "I_VBEPDG_WA" is unknown, but there is a field with the similar name "VBEPDG"". Include program name is ZMV45AIOX_XVBEPDG_AKTUALISIERE.
    And even the same error is showing when i am activating the standard Sap program which i have copied SAPMV45A, but finally when i am activating the standard program it is activating with out any error.
    Please suggest me how to activate my custom program. ZSAPMV45A.
    Points will be duly awarded for the helpful answers.
    Thks

    Did you get an answer to this or Have you figured it out because I am currently not getting anything back either for the FM I put into one of our custom Z programs.

  • The genius bar did something to "enhance" my view screen. It left me with minimally viewable tool bars and views too small to read. HOW do I change it back to normal?

    The tool bars are minimal, very small hard to see. The view screen on my MacBook Pro 17" leaves a lot of open space around what I'm viewing. I want it to fill the screen. In the present mode, you would never know I was working with a 12pt font, and you have to get on top of the computer to view the tool bars well.
    Recent upgrade to Mountain Lion. No issues there, just need more discovery. Susan

    Try:
    System Preferences > Displays > ...
    ... and set the reolution back to the maximum.

  • Modify or enhance in BP screen

    Hi gurus.
    My requirement is: In Tcode BP when communication type is set to email then set email field as madetory. Another if payment is by SMS then mobile field must be madetory. like wise few more fields to be mandetory.
    So for setting fields manditory by checking conditions do I need to go with user exits or how to proceed. Experts please suggest me in detail. Urgent please.

    Use T-Code :::   BUS7.
    Event DCHCK event to validate the field and display error messages.
    create one new function module and attach in this event.
    For Business Partner Enhancements use are menu tcode:  BUPT.
    You can get more information.
    Regards,
    Siva Kumar
    Edited by: Shiva Kumar on Jun 18, 2008 4:04 PM

  • Enhancing plan attributes screen in Managemen

    Hi,
    I have a requirement to add a button on the screen '0200' of the program RHHCP_PLAN_ADMIN, which will call a pop-up screen.
    When I try to change the screen it ask me for an access key.
    Do I need an access key to modify that program/screen or there is another way to add the button ?
    Thanks,
    Stefan

    This can be achieved through implementing BAdI:
    ISU_CIC_ENV and ISU_CIC_EWHV
    Thanks and regards,
    Kaushik Das

Maybe you are looking for