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.

Similar Messages

  • 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

  • Add field group and Logical field group for ANLU

    Hi all,
    On my project, the table ANLU is containing many specifics fields.
    I would like to know how I could add a field group and logical field group corresponding to this specifics fields on ANLU, in order to be taking into account on my validation rule ?
    On the GGB0, Asset Accounting / master data, the check point includes the ANLU on the table fields. But, once my rule created, when I want to activate it on the TCODE OACV, the field group proposed don't include data from ANLU (only ANLA and ANLB)
    I found out the TCODE OAVM listing all different field linked to the field group. Does it possible to manage this view ?
    please help me !!

    Hi Rob,
    Can you tell me how can i solve this issue.
    Runtime Errors         MOVE_TO_LIT_NOTALLOWED
    Date and Time          09/11/2007 18:11:01
    Short text
        Assignment error: A constant was meant to be overwritten.
    Error analysis
        The field "<S1>" is to be assigned a new value although the field
        is partially or entirely protected against modifications.
        The following are protected against changes:
        - Character literals or numeric literals
        - Constants (CONSTANTS)
        - Parameters of the category IMPORTING REFERENCE for functions and
        methods
        - Untyped field symbols not yet assigned a field using ASSIGN
        - TABLES parameters if the actual parameter is protected against changes
        - USING reference parameters and CHANGING parameters for FORMs, if the
        actual parameter is protected against changes and
        - Accesses using field symbols if the field assigned using ASSIGN is
        protected (or partially protected, e.g. key components of an internal
        table with the type SORTED or HASHED TABLE) against changes
        - Accesses using references, if the field bound to the reference is
        protected (or partially protected) against changes
        - External write accesses to READ-ONLY attributes,
        - Content of a shared object area instance accessed using a shared lock
        (ATTACH_FOR_READ).
    Thanks
    Ashraf

  • Add fields in the BW extraction structure

    Dear Experts:
         Today I have added a field "UEPOS" in the BW extraction struction MC11VA0ITM. UEPOS is the standard field of the SAP TABLE VBAP.  When I test the extraction of the new field the system did not move the corresponding value from VBAP to it.
          My question is, in addition to use CMOD enhancement, how can I make the new field have the right value?
    Best Regards
    David Wang
    Edited by: David Wang on Dec 26, 2008 4:51 PM

    Hey!
    I don't know exactly at the moment but isn't it possible to make the extension of this field over the LO Customizing Cockpit (LBWE). If, your field would be filled automatically.
    If you have done the extension with an append Ajeet is right if you don't find that field in you extraction result in RSA3. If you have the field but no value for this field maybe something in your CMOD exit is wrong.
    The easiest way is to debug your coding there. You can do this over RSA3, there is a check box for debugging.
    Try this out. If you not even have implemented this exit I think you can find a lot of help here in the forum. Maybe this helps you to check:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b0af763b-066e-2910-a784-dc6731660f46
    But be aware that this example is for master data. Choose the right exit for transactional data.
    Best regards,
    Peter

  • Add field Quatity and UoM in Maintain and display settlement rule(SAPLKOBS)

    Hi all experts,
             Is there got any BAPI for function module for me to use for bump in data from Quantity (BMENG) and Unit of measurement (BEINH) at customized selection screen and updating it at COBRB table?
    Best Regards,
    Chee Boon

    Also check if your network is header assigned or activity assigned. if the same is header assigned in that case only you can assign settlement rule at network header if the same is activity assigned in that case you need to assign settlement rule at activity  level.
    With  Regards
    Nitin P.

  • Can we add fields from structure while enhancing datasource

    Hello all,
    I am trying to enhance a SAP delivered datasource. Is it possible to add fields from a logical database structure or do we have to add fields only from a table.
    Is the procedure the same.
    Thanks a lot

    hi KM,
    you want to drop all the added fields or some ?
    go to the extract structure screen,
    rsa2->type in your datasource name, double click the
    extraction structure, to delete some fields, click append structure, in next screen mark the fields and sign '-'.
    to delete the append structure, check this
    How to delete append structure
    Delete append structure with a long name
    hope this helps.

  • Add field in listing/exclusion selection screen

    Hi, expert, i have create a condition table for my listing type Z001. there is a field name ZZABCD in the condition table. In VB03, I can see the conditon table in 'Key combination'. Now i want to add the field into the selection screen when i click the button 'Condition info' in VB03. Please advice. Thanks.

    Dear Rick,
    go to OV06, there select the table in which you want to add field. And then select the Add Field and search and add your required field.
    Also,
    while assinging accesses to access seq., select the table you want to add against the access seq. and in that table, add the newly created field. And finally save.
    There is no need to change other setting as you want to add only the field.
    Now try the field should be displayed
    regards,
    Sagar

  • 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

  • How to add fields to Structure in Report Painter

    Hi All,
    We have a requiremnt where we need to add 2 fields ( profit center-PRCTR & description-CEPCT-LTEXT ) to structure CCSS. This structure is attached to library 1VK.
    Is it possible to add fields directly to a structure or do I need to create a new structure and attach it to a new library.
    If any one of this is possible, how can I do this ?

    Hi ,
    u can do it in both the ways , but i am not much sure abt second option.
    Useful Tcodes are GR21.
    Regards
    Prabhu

  • 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 field from structure maintanace option for datasource in LBWE (BI 7)

    Hi,
    while i try to add extra field (transaction:LBWE for data source(ex 2lis_02_itm)) from structure maintance option to add field from structure(MCEKKO) to res data source(MC02M_0ITM) , than it moves to left side but when make enter message comes that it will not populated in extrect structure(i.e in MC02M_0ITM OR RSA2),
    but when we try to add extra field not by structure maintanace option in LBWE but form append structure option from that structure MC02M_0ITM ( that field is not in that maintanace option in LBWE) than it comes in that structure MC02M_0ITM and also can see in RSA2.
    Than how can we use that structure maintanace option avialble for the res. data source in LBWE?
    Best regards,
    dushyant.

    It solved automaticaly,
    yes later i got that error entry still exit whic solved by deleting setup table and than try,
    thanks.
    one another problem: when i try to activate 0order_quan key figure for cube 0pur_c01 for data source 2lis_02_itm at update rulen by assignig source field for that key figure , i am unable to activate - its remain in warning symbol only and getting further message while check that Target unit and source unit for key figure Order quantity are different.
    Best Regards,
    dushyant.

  • 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 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>

  • Unable to add field from structure maintanace opt for datasource(LBWE BI 7)

    Hi,
    while i try to add extra field (transaction:LBWE for data source(ex 2lis_02_itm)) from structure maintance option to add field from structure(MCEKKO) to res data source(MC02M_0ITM) , than it moves to left side but when make enter message comes that it will not populated in extrect structure(i.e in MC02M_0ITM OR RSA2),
    but when we try to add extra field other than with that structure maintanace form append structure option from that structure MC02M_0ITM than it comes in that structure MC02M_0ITM and also can see in RSA2.
    Than how can we use that structure maintanace option avialble for the res. data source in LBWE?
    Best regards,
    dushyant.

    It solved automaticaly,
    yes later i got that error entry still exit whic solved by deleting setup table and than try,
    thanks.
    one another problem: when i try to activate 0order_quan key figure for cube 0pur_c01 for data source 2lis_02_itm at update rulen by assignig source field for that key figure , i am unable to activate - its remain in warning symbol only and getting further message while check that Target unit and source unit for key figure Order quantity are different.
    Best Regards,
    dushyant.

  • Cant add field from structure maintanace option for  datasource(LBWE BI 7)

    Hi,
    while i try to add extra field (transaction:LBWE for data source(ex 2lis_02_itm)) from structure maintance option to add field from structure(MCEKKO) to res data source(MC02M_0ITM) , than it moves to left side but when make enter message comes that it will not populated in extrect structure(i.e in MC02M_0ITM OR RSA2),
    but when we try to add extra field other than with that structure maintanace form append structure option from that structure MC02M_0ITM than it comes in that structure MC02M_0ITM and also can see in RSA2.
    Than how can we use that structure maintanace option avialble for the res. data source in LBWE?
    Best regards,
    dushyant.

    It solved automaticaly,
    yes later i got that error entry still exit whic solved by deleting setup table and than try,
    thanks.
    one another problem: when i try to activate 0order_quan key figure for cube 0pur_c01 for data source 2lis_02_itm at update rulen by assignig source field for that key figure , i am unable to activate - its remain in warning symbol only and getting further message while check that Target unit and source unit for key figure Order quantity are different.
    Best Regards,
    dushyant.

Maybe you are looking for

  • Possible session caching issue in SSRS2014

    Using custom FormsAuth, User A can sign into our own main asp.net mvc app (WIF cookie), then SSRS (FormsAuth cookie) and all is well.  Here is where things go bad.  User A signs out of our main application (WIF cookie deleted) then back in into our m

  • Help in setting up a clustered scalable JMS env

    hello I have two separate machines I have created a cluster spanning the two machines, with 2 managed servers The cluster is working well I am experimenting with JMS and i want to utilize the two machine for scalability reasons I have created One JMS

  • Rollback in case of DB polling

    Hi All, We have a requirement to poll db, we will update a field on table for the polled records. After applying some teansformations to these records, these will be published to JMS queue. We want to maintain transaction here, so that if the JMS pub

  • Editing Colour Profiles

    Hi all Can anyone tell me if there is a way to edit an existing Monitor colour profile rather than having to go through the whole calibration process from scratch? Thanks in advance. Derek.

  • Photos App crashing repeatedly!

    My iPad has been crashing repeatedly whenever the enlarged black photo on the below is touched. The "white" pictures were merely edited for privacy. However, when I scroll from the picture directly left of the black one to the black one, it also cras