Add Fields in VF01,VF02 and VF03.

Hi everyone,
I have to add some fields in the transactions VF01, VF02 and VF03 at Item level.
I did not find any available SCREEN-EXIT or BADI.
Actually I found a BADI "BADI_SD_CUST_ITEM", but it is only for internal use.
Please advise.
regards,
Alexandre

I appreciate your help, but there is not "Legal" exits for this transaction.
regards,
Alexandre

Similar Messages

  • How to add fields in custom infotype and update its screens

    Hi Experts
        I want to enhance a custom infotype ( Add some new fields, and add special function on its screen). This custom infotype is created in previous release.   is there any way to add fields in infotype? and let system automatcailly modify corresponding screens to add new fields

    Go to Transaction PM01.
    2) Enter the custom Infotype number which you want to create (Should be a 4 digit number, start with 9).
    3) Select the u2018Employee Infotypeu2019 radio button.
    4) Select the u2018PS Structure Infotypeu2019.
    5) Click on Createu2026 A separate table maintenance window appearsu2026
    6) Create a PS structure with all the fields you want on the Infotype
    7) Save and Activate the PS structure
    8) Go back to the initial screen of PM01.
    9) Click on u2018Allu2019 push button. It takes a few moments.
    10) Click on u2018Technical Characteristicsu2019. Infotype list screen appears
    11) Click on u2018Changeu2019(pencil) button
    12) Select your Infotype and click on u2018Detailu2019 (magnifying glass) button
    13) Give u2018T591Au2019 as subtype table
    14) Give u2018T591Su2019 as subtype txt tab
    15) Give your subtype field as subtype field
    16) Save and come back to PM01 initial screen
    17) Click on u2018Infotype Characteristicsu2019 u2026 Infotype list screen appears
    18) Click on u2018Changeu2019 (pencil) button
    19) Click on u2018New Entriesu2019
    20) Enter your Infotype number and short text
    21) Here we have to set different Infotype Characteristics as per the requirement. (Better open another session with some standard Infotypeu2019s infotype characteristics screen and use as the reference to fill yours)
    22) Save your entries.
    23) Now the Infotype is created and ready to use.
    24) If you want to change the layout of the Infotype as per your requirementu2026
    25) In the PM01 initial screenu2026Select u2018Screenu2019 radio button and give 2000 as the screen name, then click on edit.
    26) In the next screen.. Select u2018Layout Editoru2019 and click u2018Changeu2019.
    27) Screen default layout appearsu2026here you can design/modify the screen..change the attributes of the fields..etc.
    28) Save and activate. (Donu2019t forget to u2018Activate at every level
    i think u have to select CI_INCLUDE while enhanceing the Standrad Infotype

  • Add fields to Existing DSO and DS in R/3

    Hi Friends,
    I have got to change my LO datasource which is running on production, 2lis_va_vatim, i need to add 2 fields to the exisitng DS from Comm Stru, so could anyone point me inthe right direction, Hoow to Add the fields with out disturbing the production,
    and the same way i need to cgane my DSO aswell for new fields, please tell me how to meet this.
    Thanks,
    Kiran.

    Hi Kiran,
    Before applying your changes in Production do the below steps:
    1)run V3 job as immediate, which picks data to delta queue and delete the acive V3 job.
    2)run the IP which loads data to BW(Delta IP).
    3)Apply your changes to the 2lis_va_vatim and DSO.
      i)Do the changes(adding your fields to 2lis_va_vatim and DSO)in DEV and active the 2lis_va_vatim and DSO.(insert this in transports).
    ii)first apply the R3 transport and then BW side.
    4)from now on wards your 2 fileds will get populated in BW side.
    5)Maintain the V3 job for 2lis_va_vatim in R3.
    If you need any clarification how to add fields to 2lis_va_vatim and create transport req pelase check the below article.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/2050db8b-9d90-2c10-2980-b13a4b0938f6
    Hope this helps.
    Regards,
    Venkatesh.

  • Add fields to maintenance view and update then using events

    Hi experts:
      I've created a table with 4 fields, one of them is userid. Also, there is a maintenance view to add new entries.
      I want to display user name when typing userid using events (1 or 21). I know how to do it if username is one of the fields of the table, but there is a requirement to not store username in the table, just userid.
    My question is: is possible to add a field into the maintenance view and update it using events but not store the value in DB?.
    Thanks in advance for your help.
    Regards,
    Carlos.

    In the save event just clear the entries of the field(user name) in the internal table.

  • Updating text field in VF01 (header and item text)

    Hi,
           Consider the scenario given:
                                                   A report program in which the selection screen consists of the
           invoice no for example "Fom - 1 to - 10"  range .It also has the fields given below :-
    1.No of package - 10
    2.Header Invoice description  - aaa
    3.Item Invoice description  - aaa          
    4.Insurance  - aaa                    
    5.Transformer - aaa               
    6.Accessories  - aaa     
    7.LR Number  - 999     
    8.Committed Date of Deliver - xx.xx.xxxx     
    9.Transporters Name - aaa
    If the input value for all the above 8 fields are given in the report selection screen as above for the invoice range then it should get stored in the respective texts in the T.Code VF01 for all the invoices given.The header text and the item texts in VF01 should get updated. Suggest a solution for this scenario.
    Your help will be greatly appreciated.
    Thanks,
    P.S.Chitra
    <THREAD LOCKED. This is a question and answer forum, not a do-my-job-for-me forum. Please read the [Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement] on how to ask a good question.>
    Edited by: Mike Pokraka on Sep 9, 2008 10:03 PM

    Hi,  
    CALL FUNCTION 'SAVE_TEXT'
      EXPORTING
       CLIENT                = SY-MANDT
        HEADER               =                              "What should be given here?
       INSERT                = SPACE
       SAVEMODE_DIRECT       = 'X'
      OWNER_SPECIFIED       = ' '
      LOCAL_CAT             = ' '
    IMPORTING
      FUNCTION              =
      NEWHEADER             =
      TABLES
        LINES               =                                 "What should be given here?
    EXCEPTIONS
      ID                    = 1
      LANGUAGE              = 2
      NAME                  = 3
      OBJECT                = 4
      OTHERS                = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Will this update the text's for the given range of invoices?
    How do we relate the text to the invoices using DB table/fields/Structure/fields?
    Thanks,
    P.S.Chitra

  • Hiding Cost in VF01, VF02, VF03

    Hi Everyone!
    I'm in need of a bit of help.
    My client requires that the Cost column(VBRP-WAVWR) in the billing document is not shown (or at least is set to 0).  However, this is needed for the Accounting Document that is created.
    I've already tried a number of things including using a data transfer routine to zero-out the field.  This successfully changes the value of VBRP-WAVWR, but the pricing condition VPRS (which is already hidden using another exit) is changed.  It apparently gets it's value from VBRP-WAVWR.  I was thinking of still doing this, but using a user exit to update the pricing (getting the cost from material master) before saving the billing document and posting the accounting document.  However, it seems that I can't find any suitable exit.  Maybe someone can suggest to me a usable exit for this requirement?
    I've also tried transaction variants, but it doesn't seem feasible for the VF01 transaction, although VF02 and V03 seem to be alright.
    Alternatively, maybe somebody knows of an exit that will hide the Cost column when using VF01, VF02 and VF03?  Or a way such that the condition type VPRS will not get it's data from VBRP-WAVWR, but from the material master data instead?
    Thanks a lot to those who'll reply!

    <b>hi folks..</b>
    i met this problem a few weeks back...
    thougt i will post the solution i had implemented..
    <u><b>scenario 1 : hide column cost in vf01, vf02, vf03</b></u>
    using the configuration button( which changes the layout in the screen) after executing any of these tcodes.this will show a small button administrator and now make the cost invisible.
    this particular function is connected to authorization object s_admi_fcd.
    now this can be changed by any user. to avoid that give 'no authorization' value for this authorization object. this requires basis consultants handiwork.
    hence even when the users login and click the configure icon... the button administrator is invisible, hence they cannot change the layout of the screen.
    <u><b>scenario 2 : hiding VPRS at pricing screen in billing and sales document</b></u>
    a standard note 105621 is existing for this purpose. where you can give which line items should be visible. this requires contribution of abap and basis. to whomever the role is attached they will be seeing only the mentioned line items of the pricing procedure. using this not only vprs anything can be hidden or exposed. this is a safe way.
    other way is inserting a code in the user exit - form userexit_field_modific_kopf
    in the include LV69afzz. where the abaper gives the coding for screen attributes.
    this is a slightly different way. But check CO-PA reports after doing this. May be VPRS doesnt flows into or never gets executed in billing itself. but this too worked for me.
    regards
    <b>B. BASKAR
    SD CONSULTANT</b>

  • Add Custom Field in VF01 in Screen 104

    Hi,
    I want to add one single character zfield(check box) in VF01 screen no: 104 (Over view of Billing Items) ,If the user tick this check box, it means the new billing invoice created is RE-BILLING invoice(the invoice is created again after cancellation).
    I am not able to find any screen exit for this.Please can you help me in the solution where  the change should be very limited,It would be really great if there is any soultion that i can do without any modification to SAP standard. <removed by moderator>.
    Thanks in Advance
    Ranjith
    Edited by: Ranjith Rupireddy on Jul 5, 2011 9:56 AM
    Edited by: Thomas Zloch on Jul 5, 2011 9:57 AM

    Hi Eduardo
    Thanks for your reply, but VF04 is "Maintaining Billing Due List" ..Which is no where related to screen 104 of VA01..
    Here the requirement is when creating the Billing document with Billing type "Invoice Before GI" and press enter it takes to screen no:104 "Over View of Billing Items" Here i should add one check box and update .It will be available in display mode in VF02 and VF03.Actually there is no screen exit also for this as i mentioned earlier.I want to know is there any other good solution in which it can be done without adding this field manually in screen painter and updating the same with available enhancement.Thanks in advance
    Ranjith

  • Exit for VF01/VF02 when creating or changing billing document

    Hi,
    Can any one tell me which exit is triggered when we are creating or changing billing document
    (VF01/VF02).I alreay find the exits but not able to find the exact one.
    Thanks in Advance,
    regards,
    kishore.

    Hi
    Check This EXIT  available for VF01/VF02 And find Exact one
    SDVFX007 User exit: Billing plan during transfer to Accounting
    SDVFX008 User exit: Processing of transfer structures SD-FI
    SDVFX009 Billing doc. processing KIDONO (payment reference number)
    SDVFX010 User exit item table for the customer lines
    SDVFX011 Userexit for the komkcv- and kompcv-structures
    V05I0001 User exits for billing index
    V05N0001 User Exits for Printing Billing Docs. using POR Procedure
    V60A0001 Customer functions in the billing document
    V60P0001 Data provision for additional fields for display in lists
    V61A0001 Customer enhancement: Pricing
    Ranga

  • How to add fields to already loaded cube or dso and how to fill records in

    how to add fields to already loaded cube or dso and how to fill  it.can any one tell me the critical issues in data loading process..?

    This is sensitive task with regards to large volumes of data in infoproviders.
    The issue is to reload of data in case of adjusted structures of infoproviders.
    Indeed there are some tricks. See following:
    http://weblogs.sdn.sap.com/cs/blank/view/wlg/19300
    https://service.sap.com/sap/support/notes/1287382

  • Views in MM03, how can I add fields and changes fields labels

    Hi !!
      I need to change some labels that appear on Sales: Sales Org  2 (view on MM03, MM02..MM01)...
       Im not sure what I can do this.. Im an ABAP Programmer(beginner) and I know how I can change labels of fields in programs(reports) that I did...but in This case. I don't know what I can do...
       example: when I enter on MM03..I select differents views(including Sales: Sales Org  2), later I specify  sales Org and distribution Channel (I need to specify this information for see these fields on this TAB Sales: Sales Org  2).
      When I access in tab: Sales: Sales Org  2, I can see one Group that it's called
    Material Groups that contain two fields called MVKE.MVGR1 AND MVKE.MVGR5... I saw in the screen these fields with the description from each field..example:  Material Group 1 (MVKE.MVGR1 )... I would like to know :
    1.- How Can I change the description Material Group 1 (in this screen) by other description (example: material test)...
    2.- How can I add more fields in this group...example..If I need to add MVKE.MVGR2 ..??
      I will appreciate your help!!! 
      I will give you points for your answer
    Alice

    Hi Alice,
    And do I need to change in this section too.... SPRO -> SAP Reference IMG -> Logistics general -> Material master -> configuring the material master -> ...
    If I need to add some values???
    After you made label changes on custom screen then you need to go configuration (Define Structure of Data Screens for Each Screen Sequence) to replace the standard SAP screen with custom screen. You can also do testing for custom subscreen as well.  Give it try.
    And how about If I move this screen??...is it dangerous??...or how can I know if this screen affect other section of programs?
    I do not understand your questions. Can you elaborate more?
    Regards,
    Ferry Lianto

  • Need to Add field EKET-EINDT and EKET-SLFDT to ME2M Report output in ALV

    Hi All,
    I need to add fields EKET-EINDT and EKET-SLFDT to the output of program ME2M Transaction.
    I have appended the structure MEREP_OUTTAB_PURCHDOC with these fields. and it is coming in the ALV output field catalog.
    I need these fields output only for ALV display only.
    Please let me know which enhancement i need to write code to enhance the output with these filed values added to the ALV internal table
    Thanks in Advance
    Arun

    Hi All,
    I am able to get the field EINDT and SLFDT into the structure using Append structure and is also getting displayed in the output in ALV.
    But i need to know how to add code for filling these fields and passing into ALV. I need to know the Enhancement spot.
    Please let me know how to achieve this scenario
    Thanks
    Arun

  • Add fields so clients can sign electronically and send back

    I've read a bunch of discussions about how to add fields to forms but none of them answered all my questions.
    What I'd like to do is add a signature and text field (for date) to a PDF so that my clients can send them back signed electronically. I do not want to use EchoSign.
    I have Acrobat Pro v9.5.2. I added a signature field and text field per http://www.adobe.com/accessibility/products/acrobat/pdf/A9-creating-accessible-pdf-forms.p df. I read on an Adobe forum that I was supposed to go to Save as > Reader Extended to allow the user to sign the document and send back to me signed. However, all I have as save options are Save or Save As. There's no Save As > Reader Extended option and when I choose Save As the "Save as type" does not include Reader Extended either.
    Please post step by step instructions for how to do this (add 2 fields, save doc, send to client, have them sign and fill in fields and send back to me completed). Surely we can do this with 9 yes?
    Thanks so much in advance!

    Here are full instructions for version 9.5.2 in case they're helpful to anyone:
    How to add digital signature field to PDF using Adobe Acrobat Pro 9.5.2:
    1. Open PDF in Acrobat (Right click > Open with > Acrobat)
    2. Go to Forms > Add or Edit Fields
    3. Pop up box > select NO
    4. Click "Add New Field" button on top left > select Digital Signature
    5. Guideline-type things will appear > drag to where you want field.
    6. Click on the signature field and change name if you'd like.
    7. Click "Close From Editing" button on top left.
    8. Go to Advanced > Extend Features in Adobe Reader > Save Now
    9. Save it where you'd like
    How to Digitally Sign a Document with Adobe Reader
    1. Double click the signature field on the bottom right of the contract. A pop up box will appear.
    2. If it's the first time you'll be signing anything in Adobe Reader, select bottom option, "A new digital ID I want to create now" > click Next
    3. Fill in your name and email (required) > click Next
    4. Enter a password and then again in "Confirm password" and write down your password somewhere so you'll remember
    5. Click Finish. You're now ready to sign doc
    6. Enter the password you just created into "Password" field
    (To import graphic of your signature, from "appearance" field, select "Create New Appearance" > Enter title like "signature" > click "Imported graphic" option > click "File" (not sure but file might need to be a PDF) > click Okay and click okay again.
    7. Click "Sign"
    8. Save document - give it a name > Save.
    9. You should see signature in the signature field
    At any point in future you can come back to signature and right click (or ctrl click if mac):
    You can clear, validate, etc.
    If doc has been modified, you can "view signed version" or "show signed properties".
    Edit > Protection > Security Settings
    You can see any digital IDs you've set up, remove, add new ones, look at usage options,
    For more help, you can watch this video on "How to Digitally Sign a Document with Adobe Reader"
    http://tv.adobe.com/watch/acrobat-x/how-to-digitally-sign-a-document-with-adobe-reader/

  • Add field and Display future dated data in OrgChart

    Configuration
    SAP Talent Visualization by Nakisa 2.1 under LIVE connection.
    Questions
    1) Add fields to Details(for Position/OrgUnit/Employee) window in OrgChart
                We have a few requirements to display additional data in Details window.
                Do we need any developments to add the following items to Details window ?
    Position's General Description data (stored in IT1002)
    OrgUnit General Description data (stored in IT1002)
    Name, Phone No., Gender(and other personal information coming from various infotype) of employees, who belong to position
    2) Display future dated Organizational Structure in OrgChart
                We also have requirement to display future dated OrganizationalStructure.
                The future dated Organizational Structure should ONLY availablefor people from HR and executives.
                How can we do this?
    3) Security Setting
                Regarding to the question above, how can we create the security roles (in Nakisa) for therequiremets listed below?
    The security setting in SAP allows managers only can see employee's data, who belongs to the managers organization.
    The security setting in Nakisa OrgChart allows every employee can see all organizations and other related objects.

    Hi Ogawa,<br/><br/>
    Please see my responses in bold.<br/><br/>
    I hope that helps!<br/><br/>
    Luke<br/><br/><br/>
    1) Add fields to Details(for Position/OrgUnit/Employee) window in OrgChart<br/>
    We have a few requirements to display additional data in Details window.<br/>
    Do we need any developments to add the following items to Details window ?<br/>
    - Position's General Description data (stored in IT1002)<br/>
    - OrgUnit General Description data (stored in IT1002)<br/>
    - Name, Phone No., Gender(and other personal information coming from various infotype) of employees, who belong to position<br/>
    <br/>
    <b>You need to configure the integration schema to "extract" these fields in order for them to be available to OrgChart. I believe the file is called downloadSchema.xml and is found in your build folder. It is <i>not</i> the one in the SAPExtractor folder (that is for Staged).</b><br/><br/>
    2) Display future dated Organizational Structure in OrgChart<br/>
    We also have requirement to display future dated OrganizationalStructure.<br/>
    The future dated Organizational Structure should ONLY availablefor people from HR and executives.<br/>
    How can we do this?<br/>
    <br/>
    <b>This is not possible as OrgChart only displays one version of the OrgChart (the present dated structure).</b>
    <br/><br/>
    3) Security Setting<br/>
    Regarding to the question above, how can we create the security roles (in Nakisa) for therequiremets listed below?<br/>
    - The security setting in SAP allows managers only can see employee's data, who belongs to the managers organization.<br/>
    - The security setting in Nakisa OrgChart allows every employee can see all organizations and other related objects.
    <br/><br/>
    <b>Your bottom requirement is standard - unless you secure an item then every employee will be able to see all data.</b>
    <br/><br/>
    <b>In order to configure manager security you will need to undertake some XML configuration. This is not advisable unless you have experience of configuring the XML files, particularly with security as it is highly complex configuration. There are a couple of consultancies with specialist skills (Emeritis, ROC, Nakisa) that have the expertise to perform this type of configuration.</b>
    <br/><br/>
    <b>In order to do this you need to configure an authentication source and populate the user population and rolemapping sections of the LoginConfiguration_<type>.xml in the Authentication folder of your build. <type> refers to the type of authentication you are using (SAP logon forms, Portal integration with Logon Tickets etc). You will then need to map the roles in RoleMapping.xml in the Security folder of your build and then configure each role in Roles.xml. You need to create a hierarchyscope for each dataelement you are restricting data for and then add the security keyword to the sections in AppResources.xml that you are restricting with this particular scope.</b>

  • Add fields LGORT and WERKS to structure KOMBE1

    In case of inbound deliveries, I want to add fields LGORT and WERKS to structure KOMBE1.I want to create an (Header)access sequence that checks on this 2 fields in order to generate the output type.
    So I will add this two fields in structure KOMBE1. Do you know if there is another structure In which I have to add this to fields and what is the user exit to use in order to populate this 2 fields.
    PS: In case of outbound deliveries, in order to add fields in catalogue (Catalogue of fields to access conditions of output), we have to add the fields to structure KOMKBV2 and to structure KOMB.

    The user exit to fill the structure is VCOM0002. Its an SMOD user-exit. Hope you know how to use SMOD user-exits. If not, let me know.
    I think its enough if you add the field to KOMBE1 structure.
    Hope this helps (and solves your problem).
    Anand
    Award if it does.

  • Add fields LGORT and WERKS in table KOMBE1

    In case of inbound deliveries, I want to add fields LGORT and WERKS to structure KOMBE1.I want to create an (Header)access sequence that checks on this 2 fields in order to generate an output type.
    So I will add this two fields in structure KOMBE1. Do you know if there is another structure In which I have to add this two fields and what is the user exit to use in order to populate this 2 fields.
    PS: In case of outbound deliveries, in order to add fields in catalogue (Catalogue of fields to access conditions of output), we have to add the fields to structure KOMKBV2 and to structure KOMB.

    Dear Omar
      This is what the documentation says:
    New Fields For Output Control
    Basics of modification in output control
    The following communication structures are relevant for output control:
    KOMKBK1  (Output Determination Communication Area CAS Appl. K1)
    KOMKBV1  (Output Determination Communication Area Header Appl. V1)
    KOMKBV2  (Output Determination Communication Area Header Appl. V2)
    KOMKBV3  (Output Determination Communication Area Header Appl. V3)
    KOMKBV5  (Communication Structure for Output Control Groups Appl. V5)
    KOMKBV7  (Output Determination Communication Area Shipment Appl. V7)
    KOMPBV1  (Output Determination Communication Area Item Appl. V1)
    KOMPBV2  (Output Determination Communication Area Item Appl. V2)
    KOMPBV3  (Output Determination Communication Area Item Appl. V3)
    KOMB     (Field Catalog for Condition Keys: Output Control)
    New fields for output control are entered in the following INCLUDEs:
    Sales activities: KOMKBZ1 (in KOMKBK1)
    Sales document header: KOMKBZ3 (in KOMKBV1)
    Delivery header: KOMKBZ4 (in KOMKBV2)
    Groups header: KOMKBZF (in KOMKBV5)
    Billing document header: KOMKBZ5 (in KOMKBV3)
    Sales document item: KOMPBZ1 (in KOMPBV1)
    Delivery item: KOMPBZ3 (in KOMPBV2)
    Billing document item: KOMKBZ5 (in KOMPBV3)
    Shipment: KOMKBZH (in KOMKBV7)
    If you also want to use a new field for the setup of condition tables (key field) it must also be included in the structure KOMBZ (contained in KOMB).
    The routines and user exits for assigning values to the new fields are found in the programs RVCOMFZZ, RVCOMFZ1, RVCOMFZ4, and LVCOMFZ1. It is also possible to copy partners here.
    The following user exits exist in member RVCOMFZ1:
    USEREXIT_KOMPBV2_FILL (item fields in delivery)
    USEREXIT_KOMPBV2_PARTNER (item fields for partners in delivery)
    USEREXIT_KOMPBV3_FILL (item fields in billing document)
    USEREXIT_KOMPBV3_PARTNER (item fields for partners in billing document)
    The following user exits exist in member RVCOMFZZ:
    USEREXIT_KOMKBK1_FILL (header fields in sales activities)
    USEREXIT_KOMKBK1_PARTNER (header fields for partners in sales activ.)
    USEREXIT_KOMKBV1_FILL (header fields for sales documents)
    USEREXIT_KOMKBV1_PARTNER (header fields for partners in sales documents)
    USEREXIT_KOMKBV2_FILL (header fields in delivery)
    USEREXIT_KOMKBV2_PARTNER (header fields for partners in delivery)
    USEREXIT_KOMKBV3_FILL (header fields in billing document)
    USEREXIT_KOMKBV3_PARTNER (header fields for partners in billing doc.)
    The following user exit exists in member RVCOMFZ4:
    USEREXIT_KOMKBV5_FILL (header field for groups)
    The following user exits exist in member LVCOMFZ1:
    USEREXIT_KOMPBV7_FILL (Shipment fields for header and stage)
    USEREXIT_KOMPBV7_PARTNER (Shipment fields for partners)
    In output determination, communication table KOMB contains all key fields that can be used for conditions for output determination.
    When you create new fields for output determination, you can distinguish between two types of fields:
    Fields that are used in condition tables
    Fields that are only used to query conditions.
    Both types of field have to be included in KOMKBV1. Fields which are only used to query conditions do not have to be included in KOMB and T681F or in the field catalog.
    Note concerning name assignment
    There are two possibilities for naming the field:
    If the field is identical to the field in the communication table (e.g. VBAK), a value is assigned to it automatically by MOVE-CORRESPONDING. If SAP delivers the field in a subsequent system version, no generation errors will be caused.
    If the field is not identical with the field in the communication table,you have to assign a value to it using the MOVE command. Begin the field name with the letters ZZ. This will avoid generation errors if the field is later delivered by SAP in a subsequent system version.
    Example 1: Creating a new key field in output control
    If, for example, you want to use the field ERNAM (name of sales employee) from the sales order (table VBAK) for output determination, proceed as follows:
    1. Enter the field ZZERNAM in communication structure KOMKBV1 in INCLUDE KOMKBZ3 in the Data Dictionary.
    By entering the field in KOMKBZ3, you automatically include it in communication table KOMKBV1.
    2. Enter ZZERNAM in the communication table KOMB (in KOMBZ).
    3. Assign values to the fields
    Values are  assigned to the fields in function module KOMKBV1_FILL. You have to enter the field and assign value to it manually in user exit USEREXIT_KOMKBV1_FILL. You will find the statements that you can use as a reference in the user exits.
    Copying partner numbers is a special case and will be explained in Example 3.
    4. Include ZZERNAM in the field catalog for the condition table for sales documents. The field catalogs must contain all the fields which you want to use to structure condition tables.
    Example 2: Entering a condition field in the communication block
    If you want to use condition field VBAK-AUDAT for output determination, proceed as described in Example 1. Remember that it is not necessary to include the new field in KOMBZ (KOMB) or to maintain table T681F or the field catalog.
    Example 3: Entering a partner number in the communication block
    Example 3 presupposes that there is a new partner function for buyer ZY in the sales document and that the number of this partner is to be copied.
    When entering partner numbers in the communication block, proceed as described in the examples above. Partner function ZY is assigned to partner type AP in this example.
    Remember to use a different routine to assign values to the new fields. If, for example, you want to copy the partner function ZY into the new field ZZEINKA, for example, the statement is:
    USEREXIT_KOMKBV1_PARTNER
    WHEN 'ZY'.COM_KBV1-ZZEINKA = COM_VBPA-PARNR.
    The VBPA field used to assign a value to the new field depends on the partner function determined in the sales order. Each partner function is assigned to a partner type (e.g. partner function LF - partner type LI), which controls the assignment. Other source fields should be used for other partner types: COM_VBPA-KUNNR, COM_VBPA-LIFNR, COM_VBPA-PERNR and COM_VBPA-PARNR.
    The following assignments exist:
    KU => COM_VBPA-KUNNR
    LI => COM_VBPA-LIFNR
    PE => COM_VBPA-PERNR
    AG => COM_VBPA-PARNR
    <b>   Although i couldnt find any info related to Inbound deliveries.
       Am not really sure, but maybe you can give a try doing the following:
       1. Add fields to KOMKBE1.
       2. Add fields to KOMKBME.
       3. Try populating through user-exit:
    USEREXIT_KOMKBME_FILL of include RVCOMFZZ.</b>
    Kind Regards
    Eswar

Maybe you are looking for

  • Tables for credit Memo and Purchase order

    Hi all, I need to develop a report to dispaly all the credit memos for the open qty, My issue that is  there any table where we can have information for credit memos and purchase order, like the input fields is company code,customer number,fiscal yea

  • RefKey 3 mandatory for vendor & customer entries

    Hello, Require help on two points: !.  As per the business requirement we have made Ref key 3 mandatory in field status varaint for all vendors&customers.  But while processing FB60, for the vendors who are subject to Withholding tax the message " Ve

  • How to delete manually old backups with Time Machine

    Hi there, Found conflicting information on that topic. Apparently, TM is supposed to delete old backups but it is just saying now that my backup drive is full and I still have 8 month old backups. Would like to remove oldest ones. Any idea?

  • Effectv don't compile. error: conflicting types for 'trunc'

    hello all. i'm full newbie, so please, be kind I try to install effectv from AUR, but when i try to 'make' - i receive error: error: conflicting types for 'trunc' then i download sources and try to compile them - and again receive this error. Please

  • Z77A-G45 will not detect video card.

    I though that I was having trouble with a new gtx 760sc, so I RMA'd it.  On-board video works fine.  Still can't detect video card.  Bought a new power as well(antec HCG-750).  After i received the new video card and still had the same issues I tried