About pop up in standard transaction

hello everyone,
I need help in one standard transaction.In migo transaction after inserting excise invoice i am getting error " Excise invocie XXXX for the vendor xxxxx exits.
It means systme is checking if a same excise invoice no is entered for same vendor again. Likewise we need to have a check / control on Delivery note i.e. if same delivery note no is entered twice for same vendor system should give a warning  / erro message like excise inv check.
Plz suggest some solution.

hi
you can find an exit for this transaction .
then inside that write a logic to check if  Delivery note is alredy entered once u can display a popup using FM 'POPUP_DISPLAY_MESSAGE'.
regards
vijay
reward points if helpfull

Similar Messages

  • Calling custom dialog screen from Standard Transaction(user Exit)

    Hi, I'm calling Standard Transaction from a Custom Screen. I'm calling a custom screen again with in standard transaction (implemented custom screen thru user exits using macros). But when I click 'continue/cancel' in the custom screen, control is going back to main cutom screen rather go back to standard transaction. Could anyone please help me out how to come back to standard transaction from custom screen rather going back to main cutom screen.
    ***INCLUDE LZ_R_FORWARD_FORWARD_LOADI01 .
    *&      Module  USER_COMMAND_9000  INPUT
    MODULE user_command_9000 INPUT.
      CASE sy-ucomm.
        WHEN 'EXEC'.
          PERFORM validate_popup_data.
          IF flag_error_screen NE 'X'.
            MOVE-CORRESPONDING ZFFL_POPUP to var_ZFFL_POPUP.
            clear flag_return.
            SET SCREEN 0.
            LEAVE SCREEN.
          ENDIF.
        WHEN 'CANC'.
          flag_return = 'X'.
          SET SCREEN 0.
          LEAVE SCREEN.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT
    *&      Module  exit_9000  INPUT
    MODULE exit_9000 INPUT.
      CASE sy-ucomm.
        WHEN 'CANC'.
    *      MOVE perf_flag TO lbpla_exist_flag.
          flag_return = 'X'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " exit_9000  INPUT
    Thanks in advance.

    Hi
    So the command SET SCREEN 0. LEAVE SCREEN. should "place" the program just after the calling of the popup so here:
    FUNCTION z_call_screen.
    * Call the Pop up screen
        CALL SCREEN 9000 STARTING AT 35 05.
    "<------------------------- The program should be here after going back from popup 9000
    ENDFUNCTION.
    Is it true?
    Max

  • T-code to delete the tabs in a standard transaction

    Hi Folks,
    Do anyone here have an idea about the T-code that can be used to delete the Standard tabs in a SAP Standard Transaction.
    For ex.
    Go to VA01
    GIVE THE ORDER TYPE AND PRESS ENTER.
    IN THE NEXT SCREEN WE WILL BE ABLE TO SEE THE TABS LIKE SALES,ITEM OVERVIEW,ITEM DETAIL etc.
    If I want to delete one of these tabs there is a standard transaction for the same,I want to know about the same.
    K.Kiran.

    Hi kiran,
                All these things comes under the Customization, Typically Functional people do this . If u have authorization to transacton code : SPRO then under Sales and Distribution, u can change the settings.
    Reward points if helpful.
    regards
    Nilesh

  • How to add a button to the toolbar of standard transaction

    hi friends
    currently i am working in IS-OIL(DS)-TSW module, in which we need to add a button to the toolbar of standard transaction(O4nm)
    can anybody help me how to proceed with this
    with regards
    s.janagar

    Hi,
    To be able to add a button to the toolbar of a standard transaction, you can use GuiXT which is a bundled solution within SAP R/3 or Netweaver.  With GuiXT, you can create your own pushbuttons within an R/3 screen or within the toolbar. You can make both the menu functions and the navigation to other transactions directly accessible with your own pushbuttons along with a new icon that you wanted to assign to the pushbuttons.
    Also, you can customize the pushbutton's size effortlessly.  And in your situation of adding it to the toolbar, GuiXT can help to set your pushbuttons automatically to fit onto the toolbar with its designer tool.
    For more information about front end changes, you can view more information about GuiXT at http://www.guixt.com/site/solutions.php
    Thank you and hope this helps!

  • How to come out of standard transaction after giving error message

    Hi Experts,
        I have one requirement like i need to validate a field in standard transaction ME21N. If user enters wrong value then i have to give error message and leave the transaction ME21N immediately. If i do the code with error message then i struck in the same screen of ME21N(but i need to come out of ME21N).Can anybody help me for this particular scenario.
    Regards,
    Bujji

    Ahhh,  I see, this is a different story, now.
    How about issuing an Information message, and saying LEAVE TO TRANSACTION 'ME21N'.
    Message I001(00) with 'THere is some problem, transaction ending'.
    leave to transaction 'ME21N'.  " Or you may be able to use SY-TCODE here.
    Regards,
    Rich Heilman

  • How to add button on application tool bar of standard transaction

    Hi All,
    Can any one let me know how to ADD the button in on application tool bar of standard transaction by using SHD0 transaction or any other solution.While adding the button I don't want do any code modification.
    Thanks,
    Vijay

    HI
    SHD0 is used to create and maintain Screen and Transaction Variants..
    to know more about Screen and trransaction variants click on this link
    http://help.sap.com/saphelp_47x200/helpdata/en/67/232037ebf1cc09e10000009b38f889/content.htm
    we can create Transaction Variants Using SHD0 Transaction.
    Transaction Variants and Screen Variants
    Transaction variants can simplify transaction runs as they allow you to:
    Preassign values to fields
    Hide and change the 'ready for input' status of fields
    Hide and change table control column attributes
    Hide menu functions
    Hide entire screens
    In particular, hiding fields in connection with screen compression, and hiding screens, can result in greater clarity and simplicity.
    Transaction variants are made up of a sequence of screen variants. The field values and field attributes for the individual screens found in transaction variants are stored in screen variants. Each of these variants is assigned to a specific transaction, can, however, also contain values for screens in other transactions if this is required by transaction flow. The transaction that the variant is assigned to serves as initial transaction when the variant is called.
    There are both client-specific and cross-client transaction variants. All screen variants are cross-client, but may be assigned to a client-specific transaction variant.
    A namespace exists for cross-client transaction variants and screen variants and both are automatically attached to the Transport Organizer. Client-specific transaction variants must be transported manually.
    In principle, transaction and screen variants can be created for all dialog and reporting transactions. There are, however, certain Restrictions that apply to certain transactions, depending on their internal structure.
    No transaction variants are possible with transactions already containing preset parameters (parameter transactions and variant transactions).

  • Can we add one additional screen in standard transaction.

    One requirement is to create screen after executing the standard transaction.
    I have an UserExit to create from where i can use to write a code for the standard tramsaction ,
    But How can i add one userdefined screen in SAP Stardard Transaction.
    I am not talking about the subscreen / custom exit.
    I want to create a small screen  this would be itself a screen not imposed on any other screen.
    Points will be rewarded for the help full answer.

    Hi, Mike.  It depend on the transaction, but a quick and easy way is to develop a function module which will throw a popup screen and call the function in your user exit.
    Regards,
    Rich Heilman

  • Standard transaction for PO Reporting

    Hi all,
    I'm on SRM 5.0 ECS.
    I'm looking for some standard transactino for reporting about PO.
    Something like transaction ME2L, ME2M, ME2K on R/3.
    Thanks
    enzo

    Hi Rosa,
    I'm looking for some transaction for statistics  or general analisys on PO: for example all PO of a user, PO without good movements etc.
    thnaks anyway
    rgds
    enzo

  • Selection Variant for Standard transaction

    Hi,
    The requirement is that, On starting a standard transaction the initial selection screen should appear with a default selection variant selected in it.
    Regards,
    Prabaharan.G

    Sudhir,
    Are you sure about that ? I think the the SHD0 transaction creates screen variants only for  "normal" screens, dialog boxes, and subscreens . Not for  List display (and selection screens) ..
    I read this at - <a href="http://help.sap.com/saphelp_nw04/helpdata/en/7d/f639fe015111d396480000e82de14a/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/7d/f639fe015111d396480000e82de14a/content.htm</a>
    For example try and create a transaction variant for standard transaction FBL1N (make the Company code field Output only) .. is it possible ?
    Will someone please verify.

  • Standard transactions and WS

    Hello SAP gurus. This time i want to ask about webservices and standard transactions. so this is the deal:
    - It is possible to transform a SAP standard dialog transaction (wich doesnt have a related BAPI) and become into a webservice?
    - If that so, it's possible to disable the dialog functionallity of it?
    - And finally it's possible to do the same for a custom user program?
    Thank you very much for your attention and help.

    Hi,
    in asnwer to your questions:
    - It is possible to transform a SAP standard dialog transaction (wich doesnt have a related BAPI) and become into a webservice?
    The only way that I can think of would be to either create your own BAPI or to generate some BDC that the service calls.
    - If that so, it's possible to disable the dialog functionallity of it?
    When a service is consumed, it runs under the user ID of the person who logs on.  If using BDC, disabling the transactional access would also remove the authorisations to consume the service.  The only way around this would be to always call the service under a fixed user ID, which would then loose things such as audit trails as to who had made changes.
    - And finally it's possible to do the same for a custom user program?
    Exactly the same would apply as above.  If the custom program is populating "Z" tables, you could directly update the database from your service code, which would allow you to remove transactional access.
    Hope this helps
    Colin

  • Implementing GOS for standard transaction VA01/VA02/VA03

    Hi Experts,
    I need  to implement GOS ( Generic Object Services ) for  standard transaction VA01/VA02/VA03 .
    Can anyone tell me how to achieve this ?
    I have seared for this and found  the badi GOS_MULT_PUBLISH could be useful for this purpose.
    But  I don't know how to implement this so that GOS button will be visible for  tcode VA01/VA02/VA03.
    Thanks and regards,
    SNJY

    Hi there,
    the most typical reason why the GOS button does not appear is because the user is not of Dialog type. Please go to SU01 and make sure that your user is a Dialog user (not Service, nor System, etc.)
    And, the parameter Patrick is talking about is called SGOSNOBUT.
    Cheers,
    Juan
    Edited by: Juan Pablo Barcenas on Jun 8, 2011 4:50 PM

  • How to add function key to a menu exit in a standard transaction

    Hi all,
    I have a requirement to add a function key for a menu item in a standard transaction.
    In Menu bar we have an option Extras->Other->Repricing . Now my requirement is if i click a function key (ex. F9) the code under the menu exit (Repricing) should trigger. For that i had a function exit EXIT_SAPLJHPA_011 and in this the menu exit SAPLJHPA +CU7 is defined.could anyone suggest me the procedure in detail to add a function key..
    Thanks in advance,
    Uday.

    Hi
    for this u have to edit standard PF-status, that particular transaction is using. becarefull as the same pf-status may be used for many programs.
    get the PF-status for that program. you can get the pf-status via se80, give the program name and u can get the the list of all the objects of that prigram, there you can edit the standard status and can add the function key to your menu item.

  • Add button to RF Standard transaction

    Hello,
    Is it possible to add a push button to an RF Standard transaction? and How?
    Thx

    Hi,
       SAP has provided Dummy screens to each RF screen for you to enhance it. They usually named as 'SAPLXLRF' and screen number would be 9XXX . 'XXX' being the original screen number. Then you need to activate the corresponding user exit that starts with MWMRF* for the corresponding screen. Also in the RF Screen Management you need to add an entry with Variant '1'.
    Hope that helps.
    Thanks
    Vinod.

  • How to create F4 for the standard transaction

    Hi all ,
    How to create F4 for the standard transaction for a particular field .
    Bye

    Santosh,
        You can create F4 values for a field in a standard Transaction .
    1. First search for a standard search help meeting your requirement .
    2. If you don't find one, create your own custom (z) serach help .
    ( 1 is preferable )
    After that, include that serch help to the standard field in the transaction .
    For this u need to go to the screen
    ( F1->F9-> screen-> Field )
    Click on the property of the field and include the search help .
    You ll require the access key from the basisi guys as u r changing standard .
    Hope it helps,
    ~ laxmi
    Reward for helpful answers

  • How to get information from a text editor in the SAP standard transactions

    Hi SAP gurus I have a requirement in which it is required to gte the information from a text editor(which is not a field) in mm02 (click on) goto Purchase Order Text  in this view there is a text editor there is some text  in te the text editor i have to get that information in a table can it be done if so please give example and steps
    Points will be given to useful information

    Ah yes, excellent question, and not really a clear cut answer. In my experience, the easiest way to find this information is to simply create the text using the standard transaction, in this case MM02.  Then go to transaction SE16, using table STXH, do a query on this table, entering your user name, and today's date as the creation date.  The results should show the text that you just created, now you can see the object, id, and the way the name is being used here. 
    I also understand that in some cases, there is a button next to the editor in the screen which gives you some idea of these values, but this is not implemented everywhere, and I believe that I've only seen this in one place, can't remember where, but the first solution above will always work for you.
    Regards,
    Rich Heilman

Maybe you are looking for