"Table Name" in customizing SUS:"make field control settings for tables"?

Hi Gurus,
In the following customizing node, I can find the table name such as :
     ORDER.DET.EDIT
+     ORDER.DET.VIEW+
+     ORDER.HISTORY.DETAIL+
+     ORDER.ITEM.EDITH+
+     ORDER.ITEM.EDITL+
+     ORDER.ITEM.EDITL.WO.OR+
+     ORDER.ITEM.EDITM+
+     ORDER.ITEM.EDITM.WO.OR+
+     ORDER.ITEM.EDITS+
+     ORDER.ITEM.EDITS.WO.OR+
+     ORDER.ITEM.VIEWH+
+     ORDER.ITEM.VIEWL+
+     ORDER.ITEM.VIEWL.WO.OR+
+     ORDER.ITEM.VIEWM+
+     ORDER.ITEM.VIEWM.WO.OR+
+     ORDER.ITEM.VIEWS+
+     ORDER.ITEM.VIEWS.WO.OR+
+     ORDER.LIST+
+     ORDER.SDLN.EDIT+
+     ORDER.SDLN.VIEW+
It's difficult to know the difference for these so-called "table name"...
"SAP implementaion --> supplier relationship management --> supplier self-service --> settings for user interface --> make field control settings for tables"+
What's actual meaning for these table names? Where can I find related document and actual corresponding transparent tables for these so-called talbes?
Thanks and best regards
Jack

Hi Neelima,
Thanks a lot.
Checked the SAP note, but I could not find corresponding infomation about that, kindly please advise again.
Best regards
jack

Similar Messages

  • Want know a table name in which material movement field exits

    hi,
    if any know the table name which contains "material movement" field and  ("vendor number" or any vendor related field)

    Material movements are in tables MSEG and MKPF.
    Regards,
    Rich Heilman

  • What is the Table name of Customer Material Info Record.

    Hi Gurus,
    Plz tell me the Table name foe Customer Materiakl Info Recoed which can be reached thru T Code- VD52. Also guide me how to find. I was trying with F1 and further Technical Specifications in it, but unable to get the table name, as i need table name to give for ABAP Specifications.
    Plz help.

    Dear Amit,
    Table Name is KNMT.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh
    P.S. you can send me a mail at my mail id [email protected] for any specific details

  • How to How to get FI field status settings for General data

    Hello All,
    Can you please tell me How can I achieve field status settings for General data.
    I have some code to get field status settings for account assignment block but I need General data block data.
    Can you please help me with the same.
    I got the below code to get field status settings for account assignment block But I need General data block information.
    FUNCTION z_fieldstatus_getdetail.
    *"*"Lokale Schnittstelle:
    *" IMPORTING
    *" VALUE(I_BSCHL) TYPE BSCHL
    *" VALUE(I_BUKRS) TYPE BUKRS
    *" VALUE(I_SAKNR) TYPE SAKNR
    *" TABLES
    *" T_COBLF STRUCTURE COBLF
    *" T_FIELDS STRUCTURE TCOBF OPTIONAL
    *" EXCEPTIONS
    *" ERROR_MESSAGE
    * liefert Feldstatus in Liste t_coblf:
    * Feldname (DDIC) nicht in der Liste -> Feld ausgeblendet
    * Feldname (DDIC) in der Liste -> Feld eingabebereit
    * required = 1:
    * Mussfeld;
    * required = 0: kein Mussfeld
    * active = 0: Feld ausgblendet
    * Als Hilfstabelle wird die gesamte Feldliste der Felder (t_fields)
    * ausgegeben,
    * deren Eingabebereitschaft im Customizing steht
      DATA: ls_faus1 LIKE tbsl-faus1.
      DATA: ls_faus2 LIKE tbsl-faus2.
    * Feldstatus holen
      CALL FUNCTION 'FI_FIELD_SELECTION_DETERMINE'
        EXPORTING
          i_bschl     = i_bschl
          i_bukrs     = i_bukrs
          i_saknr     = i_saknr
        IMPORTING
          e_faus1     = ls_faus1
          e_faus2     = ls_faus2
        EXCEPTIONS
          customizing = 1
          OTHERS      = 2.
      IF sy-subrc <> 0.
        MESSAGE a613(/ssc/comon).
      ENDIF.
      DATA lv_char.
      DATA int_coblf LIKE coblf OCCURS 0 WITH HEADER LINE.
      DATA p_cobl LIKE cobl.
      DATA: dummy_ktosl LIKE bseg-ktosl.
      PERFORM kontierungsblock_ermitteln(sapff001)
      TABLES int_coblf
      USING lv_char(1)
      ls_faus1 ls_faus2 dummy_ktosl.
      t_coblf[] = int_coblf[].
      SELECT * FROM tcobf INTO TABLE t_fields.
    ENDFUNCTION.
    Thanks in Adv.
    Kaustubh

    Hi ,
    Looking at the question the first thing that comes to my mind is what is the organization structure that you are following .
    As you have mentioned that you have used segment insted of profit center for splitting , what is the scope of profit center in your implementation .
    in implementations where locations are devided as profit centes it becomes very necessary to mandatorily split the documents based on profit center .
    in your case as you have set it as segment i dont find it an issue of you keeping it as optional as it will not give you and error during your operations , as you have made profit center optional in splitting charcteristics .
    hope this suffices .
    Regards ,
    Dewang

  • Remote Control settings for Markers

    The user manual for Studio Pro 4 states that Remote Control settings for Markers will override all other settings while that part of the track or story plays.
    This however, is not the case- In my project the track & story settings for Remote Control>Menu are actually overriding marker Remote Control>Menu settings, & I really need the marker functions to take precedence over other functions.
    Any idea how I can make this happen?
    Thanks!!
    eric

    As Jake said - I am not seeing this behaviour either.
    If you clear all end jumps from chapter markers and place the markers into stories then you set the menu call for the story. This can be different to the track and depending on which you are playing the menu call for that item will take precedence.
    Of course, if you really want to make it bullet proof then you could point the menu call to a script. Assuming that no matter which story you are in, or how you got to the marker in the track, the following script will always return you to a specific button on a menu for the marker that you have just played
    mov GPRM0, SPRM7
    Jump Menuname, [GPRM0]
    SPRM7 is a system parameter that checks which marker has just played. The first line of the script loads the value of this into a memory slot called GPRM0. The second line operates a jump to your menu - I assume there is only one menu here - and using a conditional GPRM based button jump, the value of GPRM0 fills in the value of the button to go to. This saves writing out lines of code for each possible button.
    If you have lots of menus then this script can be adapted very easily to cope with that, or you can set up other scripts to identify which menu you have come from so as you know which to go back to.
    However, before any of this I would want to know why you are not getting the expected behaviour on our project - my guess is that there is going to be a menu call set into a chapter marker which is over-riding the track or story menu call. If you have end jumps on markers, or menu calls on markers, remove them.

  • What table name stores Customer classification types ?

    Hi
    I need to know which table stores Genaral Classification Types.
    Oracle Customers Online Superuser > Customers Tab > Enter customer’s account number > Click on customer’s name > Click on Classifications .
    Which shows Type = ABC_FINANCIAL_GRADE CODE = 3 etc.
    Also I need to know table name for Account status
    Receivables Manager > Customers > Customers > Click on Account [Details] > Account Profile Tab > Credit and Collection Section > Account Status LOV value which is PRO-FROMA.
    I would appreciate your help on this.
    Thanks and regards
    VJ

    Dear Amit,
    Table Name is KNMT.
    Hope this helps you.
    Do award points if you found them useful.
    Regards,
    Rakesh
    P.S. you can send me a mail at my mail id [email protected] for any specific details

  • Field Control settings in SRM 7.0

    Hi Experts ,
    We are configuring SRM7.0 with ECC6 ( Ehp4) having Classic Scenario .
    We want to make
    1. Some fields mandatory for example Refernce Document in Confirmation document..etc --->> I done setting in the sRM Config at   SPRO......-> Configure Control for Fields on Header Level->Metadata for Fields on Document Headers for this field and now it is howing red star in that document, but stuill w/o entering in that field, system allowing me to post this confirmation document....we had not used DOC_CHECK badi for same.. Is using of this or other Badi is necessary to give me error message if this field is not entered ?
    2.1 want to hide some fields like Prefered Supplier in Shopping cart item level.....I checked in UI, its field id is PROP_SUPPLIER....but unable to find the field for same in the SPRO-.......Configure Control for Fields on Item Level->Metadata for Fields on Item Level.....  Where can get exact /corrcet field name for fileds in UI ..so that I can hide them?
    2.2 Also How can I hide tab Page like "Approval"  in any documnet like Shopping Cart or any documnet ?
    3. I want to change the Name of the Button in SRM web browser for example SAVE button  in all documnet  I want to make it as  PARK....  and want to change the name of field ( for example Refernce Document to Delivery Note  in Confirmation document..in synh with ECC..to avoid confustion of user)   is it possible ? if yes , how ?
    Will appricaite quick suggestion with details
    Thank you in advance.
    NAP

    Hello Narendar,
    1.  In Doc check badi check whether header field
         IF  header-refernce field is Initial.
         ls_message-msgty      = 'E'.
          ls_message-msgid      = Zmsgid
          ls_message-msgno      =' 001'.
          APPEND ls_message TO et_messages.
         ENDIF.
    2. Check in SPRO->Cofigure field control->Configure Control for Fields of Substructures
    Add a new entry with
    Set type : SY
    Field name: PROP_SUPPLIER/PARTNER_PROD
    Object type BUS221
    set level : item
    field disable
    3.Please check this 
       http://wiki.sdn.sap.com/wiki/display/SRM/HidingtabofShoppingcartinSAPSRM7.0
    4.  Please check this
         Rename the "save" button on SC screens to "Hold Cart "
         Rename the "save" button on SC screens to "Hold Cart "
    Regards,
    Neelima
    Edited by: S Neelima on Jun 20, 2011 12:54 PM

  • Trade Preference customizing in ECC - Control Settings for BOM Transfer

    Hi,
    i am struggeling what i should customize in the field "BOM Application for GTS" in ECC customizing activity "Control Transfer of Bills of Product for Preference and Re-Export".
    Should i use SD01 or PP01 or PI01. As far as i know my company is using classic production orders as well as process orders.
    Does anyone know the impact on the field?
    Is it only relevant for exception cases like "sales order BOMS"? I have found this thread and there SD01 was maintained:
    Preference: Control Transfer of Bills of Material
    Thanks.
    Regards Tobias

    HI Tobias,
    I`m not sure if you still need help with this one. If your customer only uses production order boms then PP01 is the right choice for you....
    Regards,
    BP

  • Copy control settings for Multilevel variant configuration

    Dear All,
    I have  the following scenario for variant configuration A quotation is created for configurable material with multilevel configurable material
    with reference to this quoatation a sales order is created.
    My requirement is that the quoatation must get copied to sales order as it is along with the values for subitems also.
    In copy control settings there is a field at item level called
    configuration :
    In this if I maintain value
    A: The variant is getting copied but  the values for subitems is not getting copied the values for main material is in changable mode.
    B: The variant is getting copied but  the values for subitems is not getting copied the values for main material are not in changable mode.
    C:The variant is getting copied   the values for subitems is  getting copied the values for main material are  in changable mode but the values for subitems are not in changable mode.
    My requiremnt  is that
    The variant must get copied
    the values for subitems must get copied
    the main material vlaues must be in changable mode
    the subitems vlaues must be in changable mode
    How can I fullfill this requiremnt, has any one of you come across this scenario, Pleae provide with solution it is urgent
    Informative answers will be provided maximum points.
    Deepak

    Hai Deepak Mehmi,
    please check in T CODE VTAA
    In the position check
    SalesDocType : Sales order type
    SalesDocType : Inquiry type
    Double clcik and check
    DataT 051 General header data       Copying requirements 002 Header-diff.customer
    DataT 101 Header business data
    DataT 001 Partner header
    And Tick mark for Copy Item Number
    For further check:
    In Item
                                      Copying requirements 301
    DataT 151 General item data                                          Pos./neg. quantity   +
                                                               Copy quantity
    DataT 102 Bus.data/item compl.                                     Pricing type         G
    DataT 002 Partner item                       2 Update document flow   Cont. item copy mode
                                                        Copy product select.
    FPLA  251 Conditions                Configuration
                                                               Campaign Deter.
    Regards,
    Mani

  • Table name of Customer opening balance & Closing balance

    Hi Gurus.,
                           I want to know the tables in to which the customers opening balance and closing balance is posted,
    VERY VERY URGENT
    Thanks & Regards
    Narayana
    Message was edited by:
            manam narayana

    Hi Manam,
    You cann't find opening/ closing balance in any table.
    T. Code for opening/closing baloance is FBL5N.
    SAP calculate opening/closing balance by using table BSID (Open items) and BSAD (Closed items).
    Regards.
    PS: Assign points if useful.

  • How to make JOB CONTROL setting for delta extraction in Production system .

    Hello All,
    We are in the process to transport our development to PD server in BI . We have transported the data sources to ECC production and now we are filling the setup table for " SD BILLING BW " . After filling Setup table data in full mode through infoPackage we have to load data in delta mode .    
    How we can set our Update mode(LBWE setting) in PD server ?
    Is LBWE  T.Code authorisation required in ECC PD server to make the setting of Update mode   or   We have to set all  Job Control Paramater in Dev System at the time of transport the datasource request to ECC production .  Is our time which is set in job control of  ECC development  will be reflected in ECC production ?
    can any body tell me about how to make setting for delta extraction in Production system .
    Thanks ...

    Hi,
    How do you load the data in the development system?
    - you set up the update mode in the infopackage. There you must customize "Initialization"
    - you have to filled the setup table in the production system without laoding the data in the BW? then this step was for nothing. Filling the setup table and do the INIT in the BW, this must be together - during no changing will be done in your R/3 SD.
    Sven

  • Table name pls - ACH and wirepayment info,Payment amt for each invoice ,

    can anyone tell me which table hold ACH and wire payment info.PAYR table will contain only check info.
    Also i need which table is storing payment amt for each invoice..
    Thanks in advance.
    Kumar

    Hi KUmar,
    See the tables,
      REGUH, REGUS, REGUT, REGUV.
    Regards,
    Ravi

  • Order of Precedence in Field Selection settings for Vendor Master

    Hi,
    There are three transactions which help define the list of mandatory, optional, suppressed and finally display only fields during vendor maintenance.
    These are,
    OMSG -> Define Account Groups and Field Selection( Vendor)
    OMFK -> Define Screen Layout Specific to Purchasing Organizations
    OMSX -> Define Transaction-Dependent Screen Layout.
    All these settings are independently maintained.
    In case of conflicting settings, say for example, Field Name 1 is made mandatory with tcode OMSG, but suppressed with tcode OMFK, how does the Vendor transaction(XK01, FK01, MK01) behave.
    How are these conflicts resolved ?. Is there any order of precedence.
    Regards,
    Jeron

    Hi,
    If both purchasing organizations have separate account group then you can very well achieve in customizing otherwise you need to control it in exit SAPMF02K
    Regards
    Melih

  • Field Dominance settings for rough edit

    I'm working on a project that will be finalized in HD elsewhere from a variety of sources, HDcam, Targa files, SD, etc. I'm doing the rough edit and will export an EDL (possibly through Automatic Duck to be finalized in Avid, not sure about that yet). I'm not doing any effects, just getting the right clips in the right order. I'm working from DVcam dubs only (firewire import)of the source material. I know the post house already has some of the HD material on hand and it is upper field dominant. DVcam of course is lower field dominant. Do I need to change the settings to upper field or not set, or is this something the post house will deal with when it imports the final video?

    Don't change any settings... it won't affect the EDL anyway.
    Jerry

  • Field Group settings for MB21 and MB22

    Dear Friends,
    Can someone guide me how can i perform changes to grey out certain fields on the transactions MB21 and MB22 for reservations.
    Appreciate your quick assistance.
    Thanks
    KP

    Hi,
    You can use OMBW and configure the field selection for certain movement type. This will also
    be reflected in MB21.
    Thanks and regards,
    Polly

Maybe you are looking for

  • AC 5.3 ERM : Mass Role Import Error

    Hi, I am getting the following error while uploading a single role to test the import functionality. "Role not imorted; unable to determine matching business process for (Role Name) in the system" But the Busines Process is available in the system an

  • Changing the homepage of 150 Macintosh's remotely?

    I need to change the homepage of about 150 macintosh's, running snow leopard. I am hoping to accomplish remotely, either with a Unix command or pushing the corrected plist to them. == User Agent == Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_4; en

  • Error when uninstalling java

    I get the following message when I try to unistall 1.4 of java: error number 0x80040702 description failed to load dll:actpanel and the uninstall fails. Any help on this would be appreciated.

  • Message d'erreur :  "L'installation de Photoshop elements nécessite Internet explore 4.0" !!!

    Bonjour. J'avais Photoshop elements sur mon ancien ordinateur (sous XP). je n'arrive pas à le réinstaller sous mon nouvel ordinateur (sous windows 7) car j'ai toujours ce message d'erreur :  "L'installation de Photoshop elements nécessite Internet ex

  • 30GB battery already low - does FM transmitter have anything to do with it?

    I purchased a 30GB about a month ago. I have charged it 2 or 3 times so far. I have only used it with an iriver FM Transmitter in my vehicle. After using it for about 2 1/2 hours after a full charge I have noticed that the battery meter indicates tha