Copy VA05

Hi Experts,
I want to copy the whole VA05 program to Z program because i want to add two columns into it,
But the problem is that while copying, the name of program is hardcoded in some standard tables T180V,T180Z ,
i can provide  entries in developement server,
but how to do it in quality and production
if any body has done such kind of requirement before,
Please help.
Regards,
Talwinder.

Don't do that. there are exits available for this. Proceed with that.
From SPRO it is the path
Sales and Distribution-->
    System modifications--->
        User exits--->
          user exits for lists ->
or else you can directly enhance the structure  VBMTV , add your own fields at the end. and fill the fields in the function
RV_SALES_DOCUMENT_VIEW_3
there is a exit provided at the end
in the below form you need to add the code. for adding the code you need access key.
perform end_modification.

Similar Messages

  • Adding a new field to VA05 Report output

    Hi All,
    Please suggest what's the best method to add the new field in the report output of VA05  this can be done in 2 ways one way is by writing the code in theUser exit PERFORM MOVE_USERFIELDS  or copy the whole program to Zprogram and write the Code?Ist one need access key but the the other method is not required.
    Please suggest me the best method
    Thanks&Regards
    Mahesh

    Hi Mahesh,
    i'm in the process of making a similar change,
    copying to a ZPROGRAM is not so difficult, but as i told you you have to add your new field to VBMTV structure, and copy the includes that you need to change,
    P.S. Note, when you copy you have to change some SELECT statements where
    it's selecting from T180V table based on sy-repid, you hav to change sy-repid to SAPMV75A, as there's some configuration done for this.
    Regards,
    Raghavendra

  • Add fields in VA05

    I have maintain the OSS 350068 - to add fields in va05. I wanted to add KVGR1-5 in the lists
    Our sales process requires a quotation as a first step and then a sales order.
    In the list VA25 I get the info that I have supplyed in the quotation. Then the quotation is copied to sales order and the information I have checked thT THEY HAVE copied as well.
    Though, when I get the VA05 the fields are emplty.
    Can anyone help me?

    Hi,
    I have been working with this note today too. My advice is:
    1. Follow the note and apply the filed from the note first. You will find out if you are able to do this on your own etc.
    2. Add your field
    I have added ETTYP (schedule line type), and I had to make all the steps described in the note and modify them accordingly. Maybe it will help
    Step_1 Added additional field in in Include VBMTVZ (ETTYP)
    Step_2 Added a new record in T180A table:
    TBNAM = 'VBMTV'
    FDNAM = 'ETTYP'
    ZUART = 'D'
    Step_3 Modified Include V05TZZMO and added after "when 'VBEP'", not "when 'VBAP'")
    MOVE LVBEP-ETTYP TO LVBMTV-ETTYP.
    (*here maybe check if your field also refers to VBEP, VBAK.. not VBAP like described in the Note)
    regards
    Adam

  • Need to add fields on TCODE VA05

    Hi all,
    My requirement is to create copy of tcode - VA05 to ZVA05 with some additional fields that fields also display on ALV list on display.
    Please tell me the scenario, i.e. on which include changes to be done which include used for ALV display.
    Regards,

    Hi Navdeep,
    Please open the module pool SAPMV75A ie VA05-> system -> status->program.please cick on find next button or ctrl+G , and now search for write  statement.
    Now you will get all the write statements used in VA05 , according to your requirement you can add your own fields . Just put the break point at the write so that you will now where exactly the fields are displayed.
    Hope it will help you.
    Regards,
    Viveks

  • Add new selection fields and ALV output  fields in VA05

    Hi,
    I want to add two new selection fields in VA05 'Further selection criteria' screen, also want to add some more fields in VA05 ALV output.
    Please help me how i can do it using user exit ?
    Thanks ,
    Archana

    hi,
    You have to copy the standard program SAPMV75A to ZSAPMV75A, change them accordingly.

  • Copy User Specific ALV Display Variants

    Does anyone know if it is possible to copy one user's ALV display variant (that has been saved as a user-specific variant) for a particular program (in this case VA05) to another user?

    Hi Eric,
    I'm a bit busy now and I cannot give you a complete solution, but sure can give you some c(l)ue. Just see if you have some success. If you do not, then i wuill get back to you later.
    Refer to the follwoing SAP Tables and see if you have some luck.
    ==========================================================
    LTDX  --> Generic storage of display variants
    LTDXD --> Default display variants
    LTDXS --> SAP Default Display Variants
    LTDXT --> Display variant texts
    ==========================================================
    The idea is to try and manipulate the table entries for various users.
    Regards,
    Anand Mandalika.

  • Default layout in VA05 (solely!)

    Hello,
    I have a custom layout in VA05 which I'd like to set as only accessible layout (default) for a certain user.
    Other layouts have price information I don't want to show. They must be blocked.
    Therefor the layout choice has to be disabled - but only in VA05.
    Is there any solution?
    (Read about transaction VARCH. Thought it might help but it didn't cause its (VA05) program (SAPMV75A) doesn't show a variant...seems to be a dead end)

    hi,
    VARCH might not be the solution for your issue but here you are not able to see the variant itself.  it is useful for chaging the variant report.
    please check the following:
    have you saved the report.
    no functionally it is not possible.
    you can create a Z table with maintaince view and list the mail ids to those persons you want to see.
    and trigger through the program which is executing it.
    or shall i say a simple way.
    copy the program SAPMV75A create a Z report and you can do what every you want on it.
    regards,
    balajia

  • Zprogram for VA05  Error

    Hi All,
    I have copied the program SAPMV75A to Zprogram with all the includes but I am getting error message when I am executing the Ztcode I have created like this
    You cannot display lists for this partner function                         
      Message no. VR453                                                                               
    Diagnosis                                                                               
    An index is not written for this partner function.                                                                               
    Procedure                                                                               
    You can switch on the index function in Customizing. Caution: this can 
         affect the system performance.
    Can any body give some idea on this please.
    Thanks&Regards
    Mahesh

    Hi Mahesh,
    Finally you have decided to copy to a Zprogram!!!!!!!!!!.
    I guess this error would be because there are some select statements which determines the functionality of the transaction as the same program is used with other transactions as well e.g. VA25.
    so Search for sy-repid, & replace this with your SAPMV75A, so that the select statements will still work & based on transaction code as well there are some settings done in the program, there as well move VA05, to sy-tcode
    it's in include MV75AO00_TRANSAKTIONS_INIT
    P.S. reward points if helpfull.
    Regards,
    Raghavendra

  • VA05 transaction

    Hi,
    the user requirement is when the list of sales orders is displayed using transaction VA05, if he selects a single record and presses an icon it should take him to the screen VA03.
    There is no user exit for this.CAn anyone let me know how can we achieve this?
    Thanks,
    keerthi.

    You need to copy complete SAPMV75A Program to ZSAPMV75A
    You need to modify below include
    RVREUSE_FORMS  -> Include Program
    IF NOT PS_SD_ALV-GRID_DISPLAY IS INITIAL.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    MV75ANEU_USER_COMMAND  -> include program
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
                            RS_SELFIELD TYPE SLIS_SELFIELD.
      SY-UCOMM = R_UCOMM.
      READ TABLE POSTAB INDEX RS_SELFIELD-TABINDEX.
      IF SY-SUBRC = 0.
        DUMMY = '1'.
      ELSE.
        CLEAR DUMMY.
      ENDIF.
      STATICS: GRUP_FLAG.
      STATICS: SAVE_LAYOUT LIKE  GS_SD_ALV-LAYOUT.
      IMPORT LV_REPID FROM MEMORY ID LV_INDX_KEY.
      IF NOT LV_TRVOG IS INITIAL.
        VBCOM-TRVOG = LV_TRVOG.
      ENDIF.
      CASE R_UCOMM.
    here you need to use user command to get interactive option to va03  
        WHEN 'GRUP'.
          PERFORM ALV_FCODE_GRUP USING GRUP_FLAG
                                       R_UCOMM
                                       RS_SELFIELD.
          EXIT.
        WHEN '&OUP'.
          GRUP_OK      = 'X'.
          PERFORM ALV_FCODE_OUP USING GRUP_FLAG
                                      R_UCOMM
                                      RS_SELFIELD.
          CLEAR GRUP_OK.
          EXIT.
        WHEN 'ANZE'.
          RS_SELFIELD-REFRESH = 'X'.
          PERFORM ALV_OKCODE_AEND USING SPACE.
        WHEN 'AEND'.
          RS_SELFIELD-REFRESH = 'X'.
          PERFORM ALV_OKCODE_AEND USING 'X'.
        WHEN 'AKDK'.
          PERFORM OKCODE_AKDK.
        WHEN 'AUSW'.
          PERFORM OKCODE_AUSW.
        WHEN 'BACK'.
          PERFORM OKCODE_BACK.
        WHEN 'BELF'.
          PERFORM OKCODE_BELF.
        WHEN 'BELG'.
          PERFORM OKCODE_BELG.
        WHEN 'BELS'.
          PERFORM OKCODE_BELS.
        WHEN 'DARS'.
          PERFORM DARSTELLUNG_ANZEIGEN.
        WHEN 'DYWF'.
          PERFORM OKCODE_DYWF.
        WHEN 'DYWI'.
          PERFORM OKCODE_DYWI.
        WHEN 'F15'.
          PERFORM OKCODE_EF15.
        WHEN 'EF17'.
          PERFORM OKCODE_EF17.
        WHEN 'KUST'.
          PERFORM OKCODE_KUST.
        WHEN 'LIAK'.
          PERFORM ALV_OKCODE_LIAK USING R_UCOMM
                                        RS_SELFIELD.
        WHEN 'LIZW'.
          PERFORM OKCODE_LIZW.
        WHEN 'MABE'.
        Massenbearbeitung zur Erzeugung von Folgebelegen
          PERFORM MASSENBEARBEITUNG_AUFRUFEN.
        perform okcode_mabe.
        WHEN 'MASS'.
          PERFORM OKCODE_MASS.
        WHEN 'MAST'.
          PERFORM OKCODE_MAST.
    Massenänderung: Neues Material
        WHEN 'MMAT'.
          PERFORM OKCODE_MMAT.
      Massenänderung: Markierung in allen Sätzen zurücknehmen
        WHEN 'MMDL'.
          PERFORM OKCODE_MMDL.
      Massenänderung: alle Sätze werden markiert
        WHEN 'MMRK'.
          PERFORM OKCODE_MMRK.
    Massenänderung: Neue Preisfindung
        WHEN 'MPRF'.
          PERFORM OKCODE_MPRF.
        WHEN 'MPRX'.
          PERFORM OKCODE_MPRF.
    Massenänderung: Neues Werk
        WHEN 'MWAE'.
          PERFORM OKCODE_MWAE.
        WHEN 'MWRK'.
          PERFORM OKCODE_MWRK.
        WHEN 'ORGI'.
          PERFORM OKCODE_ORGI.
        WHEN 'PANS'.
          PERFORM OKCODE_PANS.
        WHEN 'SORT'.
          PERFORM OKCODE_SORT.
        WHEN 'SPAL'.
          PERFORM OKCODE_SPAL.
        WHEN 'SPLT'.
          PERFORM OKCODE_SPLT.
        WHEN 'STUF'.
          PERFORM OKCODE_STUF.
        WHEN 'SUCH'.
          PERFORM OKCODE_SUCH.
        WHEN 'SUMM'.
          PERFORM OKCODE_SUMM.
        WHEN 'SUTI'.
          PERFORM OKCODE_SUTI.
        WHEN 'SUVO'.
          PERFORM OKCODE_SUVO.
        WHEN 'SUZU'.
          PERFORM OKCODE_SUZU.
        WHEN 'UEBL'.
        PERFORM OKCODE_UEBL.
        WHEN 'UNIB'.
          PERFORM OKCODE_UNIB.
        WHEN 'UNIF'.
          PERFORM OKCODE_UNIF.
        WHEN 'UNIH'.
          PERFORM OKCODE_UNIH.
        WHEN '&IC1'.
          PERFORM ALV_STANDARD_DETAIL USING RS_SELFIELD.
        WHEN '&ERW'.
          RS_SELFIELD-REFRESH = 'X'.
          PERFORM ALV_STANDARD_FCODES USING VBCOM-ZUART
                                            VBCOM-NAME_DAZU
                                            VBCOM-STAT_DAZU.
        WHEN '&OLX'.
          RS_SELFIELD-REFRESH = 'X'.
          PERFORM ALV_STANDARD_FCODES USING VBCOM-ZUART
                                            VBCOM-NAME_DAZU
                                            VBCOM-STAT_DAZU.
        WHEN '&OL0'.
          RS_SELFIELD-REFRESH = 'X'.
          PERFORM ALV_STANDARD_FCODES USING VBCOM-ZUART
                                            VBCOM-NAME_DAZU
                                            VBCOM-STAT_DAZU.
        WHEN '&OAD'.
          RS_SELFIELD-REFRESH = 'X'.
          PERFORM ALV_STANDARD_FCODES USING VBCOM-ZUART
                                            VBCOM-NAME_DAZU
                                            VBCOM-STAT_DAZU.
        WHEN 'SUMV'.
          PERFORM ALV_OKCODE_SUMV USING VBCOM-ZUART
                                            VBCOM-NAME_DAZU
                                            VBCOM-STAT_DAZU.
        WHEN OTHERS.
          PERFORM USER_OKCODE.
      ENDCASE.
    ------ Bildtitel setzen ----------------------------------------------
      PERFORM BILDTITEL_SETZEN USING TRVOG ANZGR VBCOM-ZUART.
    ENDFORM.
    Thanks
    Seshu

  • Delivery to copy weights,volumes from material master,instead of sales ord

    hi,
    The weights/volumes get copied from the material master to the sales doc and from the sales doc to the delivery.
    We have a issue where proper weights/volumes are not known at the order entry. thus when the new weights etc are noted, they change it in the material master.
    could some one please let me know how to configure the system to take the values from the material master for these instead of the sales doc to get the weights/volumes.
    that is the delivery doc should get the weight and volume from the material master(changed values)
    Appreciate your help on this.
    Thanks & Regards,
    Keshini

    Hi Keshini
    So , lets assume that you have created a sales order for the material MAT1 and it has Net weight 5kg & Gross weight 6kg ,Now the sales order status is open you have not yet delivered that order and you have changed the Net weight 10kg & Gross weight 14kg. So you want to update that open sales order to Net weight 10kg & Gross weight 14kg. If that is the problem then just go to VA05 and give the material (MATNR) and check the box open sales orders then you will get the open sales orders then in the menu you select to carryout the net weight & gross weight there you can change .and then you can do delivery then the updation will take place in the Net weight & Gross weight also
    Regards
    Srinath

  • USER EXITs/BADis in VA05 transaction. Performing extra checks

    Hello gurus
    I need to perform an extra authority check in VA05 transaction. I need a USER EXTI/BADi/BTE in which I can perform the extra authority check and if the authority check fails the line shouldn´t be displayed on the starndard ALV.
    My boss does not want to create a copy of the program so I need a user exit or another way to perform this.
    Anyone can help me?
    Thank you veri much and kind regards
    Ibai Ramirez

    Hi,
    Here mentioned some of badi's and user exits,hope it will help you....
    Badi : FTR_TR_FIMA_CALLBACK
    User Exits
    FTRINCON  User exits  for confirmation status
    RFTBB001  Treasury: Posting interface
    RFTBB010  Treasury: Posting Interface Due to Cust.-Spec. Acct Determtn
    RFTBB011  Treasury: Post.Interface due to SCB Indic. and Deliver.Cntry
    RFTXX301  Customer Exit mt300 header
    RFTXX302  Customer Exit mt300 trailer
    RFTXX321  Customer Exit mt320 header
    RFTXX322  Customer Exit mt320 trailer
    SAPMFTD1  User Exit Treasury data carrier management

  • Enquiry in va05

    Dear frnds,
    I want to add extra field in va05 transaction.
    can any one tell me how is it possible.
    Pooja

    hi
    You can choose the columns after executing the report (VA05) by going to Settings>Layout>current.
    If you want toa add any additional columns apart from the list of columns listed there, then i think you need to copy the report and create your own.
    Award if it helps.
    Krishna

  • Customise va05

    Dear All,
    I have to chnage material descriptio(40) charector into 80 charecter
    So I copped va05 to zva05  but zva05  is not going output screen
    Error is coming - > You cannot display lists for this partner function
    Message no. VR453
    An index is not written for this partner function.
    Suugest me how to solve this problam
    With regard
    jyoti prakash

    hi,
    as you have copied the program of VA05 into ZVA05  there are other transactions too who use the same program.
    In program for different transactions there are different conditions.
    just search for va05 in your new program. and where evr you will find the same transaction replace it with your newly created transactions..
    You are getting this error as there you are finding any entry in sales document index updating business partner table.
    so i suggest you to try the way as i suggested.
    i hope it will help you and let me know as per.

  • Unable to capture IdcService on certain webdav actions like copy-paste

    We wrote a simple checkin filter long back for the Dynamix Prefix functionality.
    We have written an If Clause to restrict running this for any services other than CHECKIN related ones, by checking the value of IDCService parameter
    There is a scenario where users copy files present in one folder in UCM and paste it under another folder (thus creating a new content item altogether), using Webfolders.
    In 10g, even this case produced correct Prefix as service name. We used to have "validateStandard" filter used for this activity.
    In 11g, due to some complications and changed filters, we started using "preComputeDocName" filter.
    In 11g PS3, We are unable to capture IDCService here and hence unable to assign Dynamic Prefix. Any suggestions?
    Currently we only fire the code if IdcService contains "CHECKIN_" or "WEBDAV_PUT" or "COLLECTION_COPY"
    Regards,
    Prateek

    Office X is problematic in SL and it's a bit obsolete since it's almost ten years old. Student version of office is relatively inexpensive. BTW, I can't solve your issues, since I moved to Office '04 six years ago.

  • HP AiO Remote app will not recognize scan and copy function of HP Envy 120

    Good morning! HP AiO Remote App is installed on my iPad4 and in the same WiFi network with my HP Envy 120 printer. The printer is recognized by the app and marked with a green led. When I tap on scan or copy in the app menu, it tells me that these functions were available in the app only for printers which provide these features. But HP Envy 120 has both scanner and copier. And last time it worked. Some idea what could have happened here? Thanks. UJ

    Replied on: http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile-Printing-and-ePrintCenter/HP-AiO-Remote-will-n...
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Maybe you are looking for

  • Flash Builder 4.6 - results of web service into arrayCollection?

    Hello, I'm coming from Flex 2 environment where it seemed easy to create an array collection from the data returned from my webservice using ArrayCollection and ArrayUtil. I've since switched over to flash builder 4 and am using the data services wiz

  • Output-escaping in XSLT

    I write a xml file as following: <?xml version="1.0" encoding="GB2312"?> <?xml-stylesheet href="xsl/order_edit.xsl" type="text/xsl"?> <Order>      <Sales>张三</Sales>      <Value>张三</Value> </Order> and the order_edit.xsl is as follwing: <?xml version=

  • USB, Firewire Suddenly Shut off/Deactivated

    Hello, I recently tried to attach a La Cie hardddrive to the back of my cinema display and a message came up: +*A usb device is currently drawing too much power.*+ +*The hub it is attached to will be deactivated."*+ There is no hub but now none of my

  • Font styles in Notes

    How do you change the font family in the notes? isHTML is set to true in viewer.xml and vconfig.xml has <uifont name="FONT_NOTES" value="Arial,11,false,false,false"/> but it keeps coming out in Times New Roman. This happens in both Firefox and IE. Al

  • Adobe and Printing?

    Hi, Currently working on a HP Elitebook, windows 7 pro.  I am having an issue printing PDF files only (everything else is fine.) I've tried uninstalling, reinstalling, and repairing.  After selecting print, the file just hangs there and it takes abou