Block individual field within a table

Hello everyone,
Is there an option to block a specific field within a table observed by SE16, without building a "view" for it?
I'll explain myselfu2026. There is a table containing credit card numbers, but this table also containing critical data for my client, that can not be drawn from elsewhere.
I'm looking for an option that would allow him to watch the whole table through  the SE16 , without the credit card numbers.
Thanks,
Julia

Hi Julia,
The alternative option is to use SAP Queries using SQVI transaction code. You have an option to select the required fields for the table.
Further, you can assign the query to a transaction code in SE93 and assign the same to the users. Below are the steps to create a transaction code.
1. Goto SE93
2. Enter the transaction code name and description.
3. Select the option "Transaction with Parameters"
4. Transaction should be START_TRANSACTION.
5. Check Skip initial screen
6. Under the default values, enter the following:
D_SREPOVARI-REPORTTYPE     AQ
D_SREPOVARI-EXTDREPORT     Query name
D_SREPOVARI-REPORT     Query user group to restrict (not SU01 user groups)
However, the users should be assigned to the query user groups. These are further maintained using SQ03 transaction code.
Ofcourse, my recommendation would be to stick to SE16 views and restrict the authorization to the table views
Hope this helps!!
Regards,
Raghu

Similar Messages

  • How do i find the total number of fields within all tables in one of my databases

    I'm in the process of creating some "gee whiz" metrics for one of my applications and want to find the total number of columns contained in its database.  Is there a stored procedure to get this information that would save me the effort
    of opening each of my 66 tables and counting the columns?  I also have the same question for my 138 views.  Thank you for any ideas you care to offer...............Phil Hoop
    Phil Hoop

    Hi Phil,
    Assumes SQL 2005 or higher
    Let 's try simple one ....
    SELECT COUNT(col.column_name), col.table_name
    FROM information_schema.columns col
    JOIN information_schema.tables tbl
    ON tbl.table_name = col.table_name
    AND tbl.table_schema = col.table_schema
    AND tbl.table_catalog = col.table_catalog
    AND tbl.table_type = 'VIEW'
    GROUP BY col.table_name
    Let me know if this will help you.
    If you think my suggestion is useful, please rate it as helpful.
    If it has helped you to resolve the problem, please Mark it as Answer.
    Varinder Sandhu www.varindersandhu.in

  • Search Help on Table Control - Fill more than one field in the table?

    Hey everyone,
    I have built a screen with a Table Control on it... the fields of the table control are linked to an internal table...  The internal table has the line type of a structure I've defined in the data dictionary.  Within that structure in the data dictionary, I've linked some fields to search helps (For example, a MATNR and CUSTOMER search help)...  I've defined in the structure definition which fields from the search help are to be returned to which fields in the structure.
    The problem is, even though I have the search help set to export both the customer number and location when using the search help on the customer field, it still does not fill the location field within the table.  Is this a limitation of using search helps within table controls?
    I'm also finding that by defining the search help through the structure, instead of directly within the screen, the search help round button does not show up on the field, yet I can still press F4 to bring up the search help.  Is there a reason why it's not showing the search help clickable button even though it works fine using F4?
    For doing search helps in Table Controls, is it better to just build the search help, attach it directly to the field in the table, and then after the user picks the single field, use the PAI to run a select and fill the rest of the fields required?
    Thanks,
    Dallas

    Hi Dallas,
    (1)
    What  i understood is that you added a search help by defining it in the internal table type for a field customer number..in the search help you have 2 fields customer number and location...user press the search help ..then you need to fill 2 different fields or 1 field?
    if you need to fill the customer location or location (only one) then you need to set the "import" in the search help for whichever is required.....
    if you need to fill 2 or more different fields..then you can use the technique you have mentioned last , to do a select in PAI and fill the fields....but this you can use if the combination for the fields is unique...eg: u have customer number and location..if customer X can be mapped to location X and location Y..when a select statement is done there are 2 options..so in such cases it is better to leave the option to the user otherwise if there is a clear mapping like customer X can be mapped only to location X then you can use the select..
    (2)
    usually when you define it as a type in the internal table the icon doesn't show up..but you can do alternative like mentioned..go to the table,find the search help for the required field if present or create a new one if required and place the search help mentioned in the screen itself..so as to see the icon...sometimes users are adamant that they need the search help icon to be seen..so it depends on if your user
    (3)
    as in the example of customer number and location mentioned we can provide them different search helps and do the needful processing in PAI to fill the fields
    Table controls may be used for different purposes and requirements....even a checkbox,push button can be placed as a field in table control and used,but yes most of the time requirements are like what is mentioned in your case...
    Regards
    Byju

  • Setting the colour red for an input field or a text-field in a table

    Hy,
    I am using an input-field or text-field within a table-cell. For some rows in the table the text in the input-field / text-field should be red. How can I do this ?
    Florian Hroch

    Create a new attribute "TextColor" of type "com.sap.ide.webdynpro.uielementdefinitions.TextViewSemanticColor" (local DDIC types), under the table's data source node.
    Bind the "TextView.semanticColor" property of the table cell editor to this attribute.
    If you cannot add new attributes under the data source node (this is the case if there is a structure binding), add a value node "TableProperties" (cardinality 1:1, selection 1:1) under the data source node and add the attribute there.
    Then you can control the color of the TextView in table row at index i by setting the "TextColor" value for node element at index i.
    For an input field, you cannot set the text color, a workaround might be adding an icon in an extra column.
    Armin

  • Adobe Interactive - Problem Updating Form Fields within tables

    I am working with Interactive forms. My scenario is I download the form, update, upload to the Web and then submit to the backend, I am basically use a blend of the tutorials available. From a Web Dynpro perspective all is working well.
    The problem I am having is in the Form itself.
    I have 10 fields which I want the user to update.  Fields which are bound at Page Level, work fine. e.g.
    <CONTEXT>.<PAGE>.<FIELD>::Change
    Data_Source.Page1.Langu::Change
    However Fields in a table do not seemed to work properly. e.g.
    <CONTEXT>.<PAGE>.<TABLE>.<ROW[x]>.<CELL[y]>.<FIELD>::Change
    Data_Source.Page1.tblCusDetails.Row[0].Cell[1].Name
    If I perform an update in the form Langu works well, Name does not.
    e.g. Page1.Langu.rawValue = "EN"                             This works OK
           Page1.tblCusDetails.Row[0].Cell[1].Name = "Andrew "            This does not work.
    I got round this issue by searching for the attribute at runtime.
    Now (Based on my scenario) I am trying to update my form;
    I download the form to the front end. Update and save. When I open the form again only Langu has saved, Name reverts back to <Emtpy>.
    My workaround would be to remove all the tables, which I will start now, but  I am wondering if I am doing something wrong or if its a bug in the form,?
    Can anyone help?
    Andrew

    Hello Bhavik:
    Thank you, for your quick response.  To be honest, I went through the tutorial from SAP TechEd, "Creating Interactive Forms in Web Dynpro for JAVA, and it is drving me crazy.
    I did create under the Contect actually Value Node:
    DataSource and within that two Value Node for PersonalData and TravelData.  For PersonalData, the following Value Attribute: CostCenter, Department, Name etc etc........
    The properties is already set for the value attributes to string, I tried to change it to init it will not take it? 
    Please call me Amr.  Thank you,

  • Ordering a block by a non-base table field

    Hello,
    I have heard you can order your block by a
    non-base table field by using a stored function. Does anyone know how to do this?
    Lisa

    In a WHEN-VALIDATE-ITEM user have to press ENTER or TAB key too !!
    anyway he have to press something.
    KEY-NEXT-ITEM and KEY-PREVIOUS-ITEM is a good choice.
    You can create a timer who fire each second, verify that user enter something new in the field (by comparing old and new value), then do execute_query

  • Loop at Conditions within internal table

    I have not been ABAPing long so primarily have been using keyword help...
    I am trying to loop round an itab and only select and process unique keys from within the table!
    However the table I am using to obtain the records has multiple records with the same reference and I am only interested in each unique occurrence of the IBASE_COMPONENT_GUID field.
    So there could be four items for one Appliance and four for another one. So of the eight records, I would only need to loop round and select the unique GUIDS.
    So there would only be two unique appliances I need to extract the records for.
    Basically I am trying to do something like this:
        LOOP AT GT_ITEM_DATA INTO GS_ITEM_DATA WITH UNIQUE KEY IBASE_COMPONENT_GUID.
    Is there a way to select each unique occurrence?

    Basically, I use the COLLECT statement when I need to get the unique field (character only) field from the internal table.
    Create a table with only one field, GUID.
    LOOP through your main table, assign its GUID to new table's field GUID
    Use COLLECT new_table.
    Other option is,
    Sort the table by GUID
    Loop through it and use AT NEW GUID or AT END OF GUID
    Fill out the table with this GUID.
    Regards,
    Naimesh Patel

  • Problem with update of BLOB field in a table with compound primary key

    Hi,
    I've been developing an application in Application Express 3.1.2.00.02 that includes processing of BLOB data in one of the tables (ZPRAVA). Unfortunately, I've come across a strange behaviour when I tried to update value in a BLOB field for an existing record via a DML form process. Insert of a new record including the BLOB value is OK (the binary file uploads upon submiting the form without any problems). I haven't changed the DML process in any way. The form update process used to work perfectly before I'd included the BLOB field. Since than, I keep on getting this error when trying to update the BLOB field:
    ORA-20505: Error in DML: p_rowid=3, p_alt_rowid=ID, p_rowid2=CZ000001, p_alt_rowid2=PR_ID. ORA-01008: not all variables bound
    Unable to process row of table ZPRAVA.
    OK
    Some time ago, I've already created another application where I used similar form that operated on a BLOB field without problems. The only, but maybe very important, difference between both the cases is that the first sucessfull one is based on a table with a standard one-column primary key whereas the second (problematic one) uses a table with compound (composite) two-column PK (two varchar2 fields: ID, PR_ID).
    In both cases, I've followed this tutorial: [http://www.oracle.com/technology/obe/apex/apex31nf/apex31blob.htm]).
    Can anybody confirm my suspicion that Automatic Row Processing (DML) can be used for updating BLOB fields within tables with only single-column primary keys?
    Thanks in advance.
    Zdenek

    Is there a chance that the bug will be included in the next patch?No, this fix will be in the next full version, 3.2.
    Scott

  • How can I make the GRID lines more bold within a table in the new Pages?  (Not the outline of a table)

    I can't find where to darken GRID lines on a table in the new Pages.  I can make the outline more bold, but not the grid lines within the table.  Is there a way to do this?  The default grid lines are far too faint.

    Yeah, the Help is missing a little.
    If you select the block of cells that you want to change, then in the Format inspector:
    Select the Cell tab
    Expand the Border section
    Set a line type
    Set a line width
    Choose a line color
    Choose one of the nine options for which borders get the new settings

  • Placing Subtotals within a Table - assistance needed!

    Hi Experts,
    I have a requirement for a change in a report that is created using XML Publisher and the output is from Release 12.
    There are a table of values where the output presently looks like this (not every column included, to ease clarity):
    Payee     Site     Amount Discount Payment Total Payable
    GROUP A     MILTON KE .00     70.50     .00     70.50
    GROUP A     MILTON KE .00     483.06     .00     483.06
    GROUP B     DIRECT DE .00     209.40     .00     209.40
    GROUP B     DIRECT DE .00     209.40     .00     209.40
    GROUP A     MILTON KE .00     141.00     .00     141.00
    GROUP B     DIRECT DE .00     172.98     .00     172.98
    GROUP B     DIRECT DE .00     244.65     .00     244.65
    GROUP A     MILTON KE .00     512.95     .00     512.95
    Totals          GBP     40,519.87     .00     .00     40,519.87     .00     40,519.87
    The code for this presently is:
    <?for-each:PARENT?>
    -- Output each row with the fields listed in table
    <?end for-each?>
    -- The output the Final Totals row (this is not a calculated total, but a total field listed in the XML output)
    An example of the XML is:
    - <PARENT>
    <PARTY_SITE_NAME>MILTON KEYNES</PARTY_SITE_NAME>
    <PAYEE>GROUP A</PAYEE>
    <INVOICE_NUM>A10008075</INVOICE_NUM>
    <DUE_DATE>19-SEP-07</DUE_DATE>
    <AMOUNT_REMAINING>739.92</AMOUNT_REMAINING>
    <WITHHELD_AMOUNT>0</WITHHELD_AMOUNT>
    <DISCOUNT_AMOUNT>0</DISCOUNT_AMOUNT>
    <INTEREST_AMOUNT>0</INTEREST_AMOUNT>
    <PAYMENT_AMOUNT>739.92</PAYMENT_AMOUNT>
    <AMOUNT_REMAINING_FM>739.92</AMOUNT_REMAINING_FM>
    <WITHHELD_AMOUNT_FM>0.00</WITHHELD_AMOUNT_FM>
    <DISCOUNT_AMOUNT_FM>0.00</DISCOUNT_AMOUNT_FM>
    <INTEREST_AMOUNT_FM>0.00</INTEREST_AMOUNT_FM>
    <PAYMENT_AMOUNT_FM>739.92</PAYMENT_AMOUNT_FM>
    <SELECTED_PS_TOTALS>739.92</SELECTED_PS_TOTALS>
    <SELECTED_PS_TOTALS_FM>739.92</SELECTED_PS_TOTALS_FM>
    </PARENT>
    - <PARENT>
    <PARTY_SITE_NAME>MILTON KEYNES</PARTY_SITE_NAME>
    <PAYEE>GROUP A</PAYEE>
    <INVOICE_NUM>H10001663</INVOICE_NUM>
    <DUE_DATE>07-SEP-07</DUE_DATE>
    <AMOUNT_REMAINING>66.24</AMOUNT_REMAINING>
    <WITHHELD_AMOUNT>0</WITHHELD_AMOUNT>
    <DISCOUNT_AMOUNT>0</DISCOUNT_AMOUNT>
    <INTEREST_AMOUNT>0</INTEREST_AMOUNT>
    <PAYMENT_AMOUNT>66.24</PAYMENT_AMOUNT>
    <AMOUNT_REMAINING_FM>66.24</AMOUNT_REMAINING_FM>
    <WITHHELD_AMOUNT_FM>0.00</WITHHELD_AMOUNT_FM>
    <DISCOUNT_AMOUNT_FM>0.00</DISCOUNT_AMOUNT_FM>
    <INTEREST_AMOUNT_FM>0.00</INTEREST_AMOUNT_FM>
    <PAYMENT_AMOUNT_FM>66.24</PAYMENT_AMOUNT_FM>
    <SELECTED_PS_TOTALS>66.24</SELECTED_PS_TOTALS>
    <SELECTED_PS_TOTALS_FM>66.24</SELECTED_PS_TOTALS_FM>
    </PARENT>
    My requirements for this are:
    1) To sort the table by Payee, grouping similar Payees together. This I have achieved by adding the below after <?for-each:PARENT?>.
    <?sort:PAYEE?>
    2) With the Payees grouped, to add a subtotal of each of the groups WITHIN the main table, something like this:
    Payee     Site     Amount Discount     Payment      Total Payable
    GROUP A     MILTON KE .00     70.50     .00     70.50
    GROUP A     MILTON KE .00     483.06     .00     483.06
    Subtotal= 553.46
    GROUP B     DIRECT DE .00     209.40     .00     209.40
    GROUP B     DIRECT DE .00     209.40     .00     209.40
    Subtotal= 418.80
    ..etc
    Totals          GBP     40,519.87     .00     .00     40,519.87     .00     40,519.87
    I am having trouble with getting this subtotal of each group to be within the table. My Psuedo-code I was thinging of was:
    Declare variable sub_total = 0
    Declare variable temp
    For-Each Row
    temp = this_row_payee
    if(temp = next_row_payee) then
    sub_total = sub_total + Total_Payable
    Output this row
    else
    Output the subtotal
    temp = next_row_payee
    sub_total = 0
    end if
    End For-Each Row
    I have tried using the for-each-group and using the Sum with current_group() but I am new to XML Publisher and would greatly welcome any feedback.
    Thanks!
    Mark

    I have solved it, many thanks for your reply which has provided me with the solution.
    <?for-each-group:PARENT; PARTY_NAME1?>
    <?sort: PARTY_NAME1?>
    <?for-each: current-group()?>
    -- Then list the placeholder fields e.g.
    <?PARTY_SITE_NAME?>
    <?INVOICE_NUM?>
    ... etc
    <?end for-each?>
    <?sum (current-group()/TOTAL_PAYABLES)?>
    <?end for-each-group?>
    This sorts the Payees into alphebetical order and then groups, then lists every row within the group, then and at the end of the group, the total pyables field is added up and provided as a subtotal.
    Thanks,
    Mark

  • What is needed for sorting on two fields in a table control

    Hi Everybody
    I am going to certification in a couple of days. I need some help and was hopeing that you  guys could help.
    What is needed for sorting on two fields in a table control?
         One sorted table and two processing blocks
         Two standard tables and one processing blocks
         Two standard tables and two processing
    Which one is corret??
    //Script

    Hi Kimallan
    I am not sure what is meant by a "processing block". However, it seems the question wants the original table order to be preserved. If so; as far as I understood the problem we need:
    itab_proxy[] = itab_main[] .
    "two standard tables"
    SORT itab_proxy BY field1 field2 .
    If we have a sorted table, then it is always sorted by its keys. So, the question seems to become obsolete for that option.
    Hope I've understood correct...
    Regards
    *--Serdar
    [email protected]

  • Dynamic field labels in table control

    Hi experts,
        My requirement is to display dynamic field labels in table control can we do this. I am much aware
    that we can do it in alv_grid. Please let me know.
    Thanks in advance.
    Sri

    Hi Anubhab,
         Thanks. With your help i could able to solve the problem. Let me put this in some
    more detail.
    When we are pulling the field from a table to table control we need to make sure the fields should have a data elements. After pulling all the fields to a table control ,we need to drag out  and delete the current table control column headings and then drop in the (new) I/O fields into their place.  I then set the text on these new fields within the PBO.  If we try to drop the (new) I/O fields on top of the existing ones with out deleting it won't work.
    Thanks & Regards.
    Srikanth

  • VT01N User exit for adding additional field to VTTP table and populate the

    Hi,
    Can any one sujjest what is the use exit/bapi when we add(append) a custom field to vttp table to populate the incremental number  based on ship to address when we create a shipment..
    need user exit in ...............to populate data to vttp table custom field when we append......

    hi,
    check these exits for vt01n.
    Transaction Code - VT01N                    Create Shipment
    Enhancement/ Business Add-in            Description
    Enhancement
    V56USVDP                                Preparation for updating new objects for transport?
    V56USVDO                                Update new objects for transport
    V56USTAT                                User-individual definition of transportation planning status
    V56UNUMB                                Shipment number allocation
    V56UDLUP                                Obsolete as of 4.6C: Delivery Update on Delivery Routines
    V56UCHCO                                Check shipments are complete
    V56UCHCH                                Shipment processing: Check whether changes were made
    V56TDLIF                                Filter Delivery Items for Shipment
    V56SLDET                                Shipment processing: Leg determination
    V56MVT04                                Extensions for Collective Processing of Shipments
    V56LOCID                                Shipment Processing: Determine Location Identification
    MV56AINI                                Initialization of transaction control for transportation
    V56AFCCH                                Shipment processing: Check function code allowed
    V56AGTAR                                User Exit for Filtering Shipping Unit Calculation
    V56ARCHV                                Customer-spec. checks for archiving shipments
    V56ATKTX                                Change the number of lines for text input in shipment
    V56BMOD                                 Transportation processing: Field modification
    V56DISTZ                                Shipment Processing: Determine Distance
    V56FCOPY                                Shipment processing: Copy delivery data
    V56FSTAT                                Shipment processing: Activities when setting a status
    V56L0001                                Status of Shipments for a Delivery
    V56LDELI                                Read Delivery Data for Shipment Processing
      Business Add-in
    BADI_LE_SHIPMENT                        BadI: Shipment Processing
    BADI_V56N                               User Exit for Message Determination: Shipment

  • Create a drop down list in a cell within a table ?

    Is there a way to create a drop down list in a cell within a table ? Like the way it can be done in ms word or excell ? I dont mean an interactive pdf/form. I want to create a table in indesign which has drop down lists other people can use to populate a table quickly.

    Not possible. InDesign isn't designed to be form-filling software. At best, it can create fields which can be passed on to a PDF file, which usually further has to be edited in Acrobat Pro.

  • How to add the contents of a field of internal table.

    Hello Everybody,
    How to sum up the individual field from a internal table. Like i have a internal table that has menge field , I need to sum up the menge field for each matnr..
    exm : for each matnr there are 5 menge entries, I need to add all the menge fields and shud be put against the matnr .
    Thanks,

    Hi Khaleel,
    One more option is using the "collect" statement.....
    imagine in the internal table itab..we have 2 fields only..
    MATNR,MENGE,
    we have 2 internal tables itab1 and itab2...
    loop at itab1.
    collect itab1 to itab2.
    endloop.
    Action performed is ...for the same MATNR...menge gets added and saved as a single record...When matnr changes...new record is Appended
    another case is we have 3 fields in internal table
    MATNR,UNIT,MENGE
    imagine we hane the records
    Material1 KG  100
    Material1 LT   20
    Material1 LT   200
    MAterial2 KG 100
    in this case...the output will be
    Material1 KG 100
    Material1 LT  220
    MAterial2 KG 100
    Reason is that the fields before the addable value is checked for similarity..
    here field UNIT is also checked and also MATNR before adding up....
    Hope it gave you some alternative idea to proceed with....
    Reward if helpful
    Regards
    Byju

Maybe you are looking for

  • N8, can't find a timer...

    As silly as it sounds I can't find a timer on my N8... I would like to just put the phone to alarm after say 12 minutes or 2 hours as in my old nokia. I can't find either any free apps to do that on Ovi store, hardly it is possible that there's no ti

  • Swatch name Variable

    Hi, It's my first time posting on this forum. I´m new around scripting but I need to do a simple task. I think It´s impossible without using script. Example: I have 4 rectangles, each one with personalized colors using color Palette. Model is RGB. I

  • Is it possible to exclude tagged files from Time Machine backups in OS X Mavericks?

    E.g. I want to exclude all files and folders tagged "red" from backups.

  • Firefox flickers during ADF PPR

    Hi, When a PPR event is fired on ADF page element, which sets values to other fields, the panel or page is going grey for a while before re-rendering. Did anyone face this? This 'flicker' is supposed to be firefox bug as per some forums. Also, this f

  • Issue with video files

    running Windows 7 Whenever I import a video file into Photoshop CS6 the audio plays but the playback screen is black. There's also no image in the timeline and no thumbnail present when using bridge or Lightroom 4. Videos will also not play in Lightr