Key fields are not visible in output condition table

Hi,
     I have created few conndition tables using V/61. But i can not see Key field. It is not displaying. But when I check thru VK11 i can see that all fields are marked as key fields. example of table B018.
My problem is that , i want to make few filed non key fields rest of fileds as key fields so that there should not be any duplicate ntry based on key fields. also I do not want to maintain these two fields for each record.
Is there any exit to modify and view thesefields? or it is a security issue...bold
Your earliest response is highly appreciated.\
Thanks,
AKS

Hi Raga,
Please check the documentation under the customizing path:
IMG -> Sales and Distribution -> System Modifications ->
Create New Fields (Using Condition Technique) ->
New Fields For Pricing
Then click on the paper icon
Here is explained how to setup additional fields for pricing,
not present in the standard.
Notice the following rules:
1. the new fields must have name beginning with 'ZZ' or 'YY' in order
   to avoid problem after upgrade
2. add the new field in the table T681F for the application 'V' and the
   usage 'A'
3. these new fields must be appened to the structures KOMKAZ or KOMPAZ
   (depending they are header or item fields)
4. you should provide these fields by implementing the userexits
   USEREXIT_PRICING_PREPARE_TKOMK (header fields)
   USEREXIT_PRICING_PREPARE_TKOMP (item fields)
   in program MV45AFZZ for sales order, RV60AFZZ for invoice.
In that documentation there are some examples too.
Please check it.
Regards,
Alex

Similar Messages

  • Field catalog not appearing in the condition table for output determination

    Hello,
    I wanted to include WBSTK as a condition table entry in the output determination for  outbound deliveries, WBSTK is available as field catalog , but not available during condition table creation.
    Can you pls help me out?
    Regards
    Vaidee

    Check OSS Notes
    379619 - Preference process in SD order: Prefrnc ID missing
    595984 - Preference indicator in SD order
    379269 - Preference in SD doc: User exit: Set pref. indicator PREFE
    Regards

  • All fields are not visible while creating transformation

    Hi experts,
    I am trying to create transformaion between a LO datasource  and DSO designed by me. In R3, in RSA6 I can see more than 45 fields but while creating transformation only 30 fields are available.
    I tried by replicating the datasource multiple times but no change.
    kindly suggest where I am doing wrong.
    thanks and regards,
    rajesh.

    Hi Rajesh, Please follow the follwing steps:
    Goto RSA6, select your data source and then click on change and save button.
    this will take you to transfer structure. There check the fiels you want to see have hide check box or not. If yes then un hide them. Then save the transfer structure.
    Execute the datasource in RSA3. You should be able to see the filds you have unhide in previous step.
    replicate the data source in in BW
    Goto transfomation in change mode and then to routine. Now you will be able to see the fileld in the routine.

  • Fields in Field Catalog not available when creating condition table

    I  see that field HIEBO01 to HIEBO12 are available in Field Catalog, but I don't see these fields when creating condition table
    Please let me know what I am missing here.
    Any insight on this would be really helpful.  Thanks guys!

    you need to get them added to the pricing structure KOMKAZ or KOMPAZ based on whether you need @ header level or @ item level respectively.
    and then add the logic in the sales order user exit for these added field in the pricing_prepare_TKOMK or pricing_prepare_TKOMP...again based on header level or item level.....
    Then go back to the field catalog and select from the respective structure and add them, Then you can see them when creating cond tables.
    Hope this helps. Hope i havent misunderstood your query.,
    Regards
    Sai

  • Transformation : some fields are not visble in Source DSO

    Hi
    i have done mapping in transformation by connecting one Write Optimized DSO with a Standard DSo.
    Both DSO have same fields. But i am seeing some of the fields are not visible in Write optimized DSO in Transformation
    so those fields can not be mapped with corresponding Standard DSO fields.
    let me know how those fields can be make visible in Transformation.
    Regards
    Atul

    Hi ,
    "Attribute Only" will not be visible , only method to to do this maybe something like below .
    1) Look at the keys of the standard DSO , pick up the same combination and the attribute only fields from the source in the start routine of the TFM .
    2) in the field level routine of the TFM (for the atrribute only fields ) , read the tables with keys and populate .
    --Neha

  • Err. E:"TRANSPORTING NO FIELDS" will not fill the output area.

    Dear all,
    Below are my codes and i keep getting this error
    E:"TRANSPORTING NO FIELDS" will not fill the output area. The addition does not make sense here.
    Any idea how to fix this?
    The first bit...
    TABLES: /BI0/MWBS_ELEMT.
      DATA:   I_MWBS_ELEMT LIKE /BI0/MWBS_ELEMT OCCURS 0 WITH HEADER LINE.
      DATA:   W_MWBS_ELEMT LIKE LINE OF I_MWBS_ELEMT.
    Then second bit...
      READ TABLE I_MWBS_ELEMT WITH KEY WBS_ELEMT = SOURCE_FIELDS-POSID TRANSPORTING NO FIELDS INTO W_MWBS_ELEMT.
      IF SY-SUBRC IS INITIAL.
        RESULT = W_MWBS_ELEMT-RESP_CCTR.
        RETURNCODE = 0.
      ELSE.
        SELECT SINGLE * FROM /BI0/MWBS_ELEMT INTO W_MWBS_ELEMT
                        WHERE WBS_ELEMT = SOURCE_FIELDS-POSID
                        AND OBJVERS = 'A'.
        IF SY-SUBRC IS INITIAL.
          APPEND W_MWBS_ELEMT TO W_MWBS_ELEMT SORTED BY RESP_CCTR.
         RESULT = W_MWBS_ELEMT-RESP_CCTR.
        ELSE.
          CLEAR RESULT.
        ENDIF.
      ENDIF.

    Hi
    The error is here
    READ TABLE I_MWBS_ELEMT WITH KEY WBS_ELEMT = SOURCE_FIELDS-POSID TRANSPORTING NO FIELDS INTO W_MWBS_ELEMT.
    The addtion TRANSPORTING NO FIELDS is in conflit with addition INTO:
    TRANSPORTING NO FIELDS means not to fill the work are
    INTO mean fill a work area
    So or u need to fill a work area or u don't need to fill a work area, but (from the code you've pasted) it seems u need to fill the work area W_MWBS_ELEMT, so your code should be:
    READ TABLE I_MWBS_ELEMT INTO W_MWBS_ELEMT WITH KEY WBS_ELEMT = SOURCE_FIELDS-POSID.
      IF SY-SUBRC IS INITIAL.
        RESULT = W_MWBS_ELEMT-RESP_CCTR.
        RETURNCODE = 0.
      ELSE.
        SELECT SINGLE * FROM /BI0/MWBS_ELEMT INTO W_MWBS_ELEMT
                        WHERE WBS_ELEMT = SOURCE_FIELDS-POSID
                        AND OBJVERS = 'A'.
        IF SY-SUBRC IS INITIAL.
          APPEND W_MWBS_ELEMT TO W_MWBS_ELEMT SORTED BY RESP_CCTR.
         RESULT = W_MWBS_ELEMT-RESP_CCTR.
        ELSE.
          CLEAR RESULT.
        ENDIF.
      ENDIF.
    Max

  • Copying is incomplete because specified condition record key values are not

    Hi All
    The User wanted to create new condition records by copying the existing condition records.
    For the same, I have maintained coping rule for condition.
    After that when I am trying to copy the existing condition record, I am faced with an error
    "copying is incomplete because specified condition record key values are not compatible"
    Please help me to solve this error. This of severty HIGH.
    PLEASE GIVE ME AN IMMEDIATE SOLN
    THANKS
    Kumar

    Hi, Is the source key combination same as target key combination? seems like that's the issue.
    Regards
    RS.

  • Data carrier & application field are not getting displayed in CV04N

    Hi Guru's
    In TCode : CV04N,  data carrier & application field are not getting displayed.
    While i compare with my IDES system, data carrier & application fields are getting displayed in CV04N.
    Let me know is there any configuration that has been missed out.
    Regards
    Bhanu

    Hi Bhanu,
    Please note that the fields 'Data carrier' & 'Application field'  are visible only if no document type is entered.
    Suppose you enter a document type and press ENTER then these fields disappear. This is because the field 'Application' was designed when only the storage is archive, vault or SAP-SYSTEM was possible and the number of added originals was limited.
    Currently DMS allows storage of originals on Content Server and there is no limit on the number of added originals, the system behavior was changed due to performance reasons. To avoid performance problems if you search for a document with a lot of originals attached this field gets invisible if you enter a document type which uses the KPRO storage.
    Regards,
    Pradeepkumar Haragoldavar

  • PO screen custom fields are not in correct order

    Hi Experts,
    After creating Shopping cart and purchase order successfully created.
    Added my custom fields for PO structure INCL_EEW_PD_ITEM_CSD_PO fields are visible in PO screen automatically with out adding my custom fields in PO layout /SAPSRM/WDC_DODC_PO_I_BD
    when i go to PO screen i can see my custom fields but all fields are not in correct order.How can my fields should be in order.
    and i added two custom buttons in my PO layout for WD component /SAPSRM/WDC_DODC_PO_I_BD i am not able to see my buttons?
    Could you please help me out in this issues its urgent.
    Thanks,
    Venkatesh G

    I've had this problem. There may be a more elegant solution, but what I do is make a playlist of the album and put the movements in the correct order in the playlist. I've also put numbers (01, 02, etc.) in front of the name of the movements. Either one works.
    Hope this helps.
    Ben

  • Follow-on documents are not visible in MIRO in TEST server, awsys = PRD300.

    Dear Experts ,
    The Test Server was refreshed around mid-June 2011 with data of
    Production Server. The follow-on documents are not visible for the
    invoice documents in MIRO in TEST server due to value in tables
    BKPF,RBKP : field : AWSYS = PRD300 .
    The newly created Purchase Orders after the refresh, the accounting
    documents can be seen for the Goods Receipt (MIGO_GR-display) and
    Invoice documents (MIRO).
    we had already raised this issue in March & got the feedback from SAP
    as shown below.
    accordingly we have developed & run the program "zzlogsys2" which
    updates the Logsys/Awsys field from PRD300 ( of production server ) to
    that of the current server i.e. TST300 as required.
    after which the FI documents for the material documents are visible in
    MIGO,but follow-on documents are not visible for the invoice documents
    in MIRO.
    we have Checked notes 781498 and 28958 to see if the logical system is
    correctly assigned , where we found that in table RBKP after entering document number, Fiscal Year , the
    Field AWSYS is "PRD300" & not "TST300" as it should be. We will take up the activity of updating table RBKP
    also as we are currently doing for tables MKPF & BKPF.
    But to have clear picture as to what we are doing is correct , pl
    advise about the following :
    1) Is it a correct process done by our SAP-Basis team , that every time
    any Server ( e.g. Test or Quality ) is refreshed with Production server
    data, the Field AWSYS in various transaction tables gets value as
    "PRD300" which then is required to replaced by running program such as
    ZZlogsys.
    REPORT ZZLOGSYS.
    TABLES: T000, MKPF.
    DATA: NEW_SYS LIKE MKPF-AWSYS.
    PARAMETER: OLD_SYS LIKE MKPF-AWSYS.
    SELECT SINGLE * FROM T000 WHERE MANDT EQ SY-MANDT.
    NEW_SYS = T000-LOGSYS.
    CHECK NOT NEW_SYS IS INITIAL.
    UPDATE MKPF SET AWSYS = NEW_SYS
    WHERE AWSYS = OLD_SYS.
    WRITE:/ 'Number of updates: ', SY-DBCNT.
    2) if the above process is correct & normal , then which are the other
    tables in a particular server ,apart from tables MKPF,BKPF,RBKP , which
    needs to be updated the value of field "AWSYS" in the same way
    replacing value "PRD300".
    3) if the process in point no. 1 is not correct , then what is the
    correct process that the Basis team can do while refreshing any target
    server with production data so that target server retains its value in
    Field AWSYS & not showing "PRD300".
    With 3 servers TEST,DEV & Quality , recently refreshed with production
    server to bring all servers in Sync for a HR patch application, we have
    this situation now in all 3 servers .
    Thanks in advance ,
    Anil Shanbhag

    It is appropriate to move this thread from ERP-MM to [Enterprise Resource Planning (ERP)|Enterprise Resource Planning (SAP ERP);
    Edited by: Jeyakanthan A on Jul 7, 2011 4:56 PM

  • Modified changes to ESS DC are not visible

    Hello Experts,
    I have imported the DC and checked out. I have modified essusfam~sap.com by adding a text field and input label. Saved all my changes and tried to deploy the code from the context menu in webdynpro explorer. NWDS prompts for SDM pasword and later I see the deployment sucessfull. But, the changes are not visible. Just want to know if I am missing any steps before deployment. or do I need to follow any more steps.
    I am trying not to use NWDI deployment process
    Thanks,
    Sharath.

    Hi Sharath,
    When building, choose project then right click and select build... from Development Component section.
    Regards,
    Raj

  • Goods are not visible on the Web Shop main page (RUMP UP)

    Hi colleagues.
    Help please anybody :)
    There was the problem with the goods in Web Shop.
    Goods are not visible on the page Web Shop.
    Below you can see actions performed by us and Prerequisites:
    1. Repository was unachieved from Standard archive - WEC20_MDMCATALOG_CONS
    2. Taxonomy, Hierarchy and Lookup table data were transferred from CRM via MDMGX
    3. Manually created root node in Product Catalogs table in MDM
    4. Put technical code (ID) of created node to Product Catalog module in WCEM configuration - field Catalog ID.
    5. Fill another necessary fields in Product Catalog module in WCEM.
    6. Manually add test record in MDM and linked to node in Product Catalog table, elements from Main Taxonomy and other required fields.
    7. In preview mode of WCEM configuration not possible see any records from MDM (but product catalog elements showed correctly)
    More information about settings in MDM, CRM,WCB and configuration steps can see in attachment files
    Best regardn,
    Andrey

    Hi Denis
    Leading zeroes it's no my case, because the products (materials) replicated from CRM to MDM.
    Replication from CRM to MDM via MDMGX and Initial Load R3AC1 is successfull.
    But on the WebChannel web shop page this products are not visible.
    I have suggested that the problem in authirizations of technical user, which uses RFC Destinations from SAP NW AS Java (Web Channel) to MDM.
    According Security Guide for SAP Web Channel 2.0 (paragr. 8.3.2 see please screenshot), user of WEC_MDM_DEFAULT destination must assign the role WEBCHANNEL_CATALOG_DISPLAY_ROLE.
    But this role does not exist in the system (SAP MDM, SAP NW).
    Please give me advice about this.

  • My firefox toolbars are not visible when I open firefox

    All of my firefox toolbars are not visible when I open firefox. I get the tabs but no command menu no search bar or any other toolbar icons help!!
    == This happened ==
    Every time Firefox opened
    == when I logged on one day about 2 weeks ago ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16

    <u>'''Can't see the Menu Bar'''</u> (File, Edit, View, History, Bookmarks, Tools, Help)?
    Turning the Menu Bar on and off is a new feature in version 3.6.
    ''(Linux & OSX see: [[Menu bar is missing]] )''
    <u>''Windows'' Method 1.</u> '''''Hold down''''' the key and press the following letters in this exact order: V T M
    <u>''Windows'' Method 2.</u> Press and release the key. The Menu Bar will be displayed; then choose ~~red:V~~iew > ~~red:T~~oolbars and click on ~~red:M~~enu Bar.
    The Menu Bar should now be displayed permanently, unless you turn it off again using View > Toolbars. Check mark = displayed, NO check mark = not displayed.
    See: http://support.mozilla.com/en-US/kb/Menu+bar+is+missing
    <u>'''Navigation Toolbar, Bookmarks Toolbar and other Toolbars'''</u> under View > Toolbars. Clicking on one of them will place a check mark (display) or remove the check mark (not displayed).
    <u>'''To display the Status Bar'''</u>, View, then click Status bar to place a check mark (display) or remove the check mark (not displayed).
    <u>'''Full Screen mode'''</u>
    http://kb.mozillazine.org/Netbooks#Full_screen
    Also see:
    ''' [[Back and forward or other toolbar buttons are missing]]'''
    '''[[Navigation Toolbar items]]'''

  • Some key figure are not update for movement type 101

    Dear All,
    I have done load for Inventory and now i am finding that for some material the with movement type 101 the key figures are not getting populated, for these materials the values in characteristics is getting populated fine.
    I have loaded the data according to stranded procedure in "How to Load...."
    I have checked the values of material in R3 and it is there.
    Example of the record::
    Material    Plant Movement type  Calender Day    quanity Base Unit
    10101      01       350                     01.02.2006     20             KG
    10101        01       101                     05.07.2006                      KG
    10101         01      101                      10.07.2006                      KG
    The Quantity is not appearing in second and third record.

    Hi,
    Please check whether you have set  ''Rule groups''  at transfermation level . There you can set the conditions like materials having movement type X can be updated to one Key Figure and material having movement type Y can be updated to another Key figure.
    Please check whether you have set this option at transfermation level.
    For example, may be in your case materials from different plants are updating to different key figure.
    Thanks,
    Edited by: kavitha nagandla on Feb 17, 2010 7:19 AM

  • Tax classification fields are not appeared in master data

    Dear Experts,
    I searched the forum about my issue but i did not get any solution.
    I am not able to see the tax classification fields in customer master and material master.Even i assigned Country IN to JLST and JCST condition types by T-code OVK1.
    FYI
    I have copied the org elements from standard (which are already given by default).Initially i was able to see 2 different countries with tax MWST in both customer master and material master.
    EX:
    AT   MWST
    DE   MWST
    But i do not wanted these. so i deleted these assignment from OVK1 and assigned country IN to JLST and JCST,and i went to customer master and material master but those fields are not appeared.
    Note:Country of plant,company code and sales organizations is IN
    Help me to view tax classification fields in Master data.
    Thanks&Regards
    Ravikumar.R

    Then how system knows this customer is liable for JLST.
    In customer master, under the Taxes tab, it would be like
    Country::::Name:::::Tax Cat.::::Description::::Tax Classification
    While creating customer master, if your configuration is in line with standard, then under the tab Tax category, you can see MWST flowing automatically.  You just have to input tax classification as 1, 2 etc.,
    Also since as you said above, you are maintaining the combination of country/plant region/customer region/customer tax classification/material tax classification, you can very well differentiate VAT & CST.
    Wherever customer region comes as your plant region, assign VAT tax code and wherever, customer region differs from plant region, assign CST tax code in VK11.
    G. Lakshmipathi
    ps:  please spell the name correctly

Maybe you are looking for

  • IF Statement in BI

    Hi BI Experts, Can we write the IF Statemenrt in BI 7.0 Query Designer. Please give me the reply. Thanks in advance. Regards, Anjali

  • Can I add a second pin to ipod.

    Can I add a second pin to an ipod touch, my son has his own pin but id like to add one for me, so even if he changes his pin, I can still access it

  • Blog post js bug

    This is an error i'm getting in the admin console while trying to post to a blog, and it's preventing me from doing so. I can't seem to post at all.

  • Lock portrait mode

    Greetings, Perhaps I'm missing something, I've looked for it anywhere I could think. How do you lock portrait mode on this phone? I disabling auto rotate doesn't keep your phone from going into landscape mode. It's a very basic functionality that I'm

  • CS6 Lighting Effects will not run

    Not enough RAM?  Really?  I am running HP laptop....Intel I7 2nd generation / 8GB Ram / 750GB HD / 1 GB VRAM.  Even small files are not working. Please advise