Alternative for SE16

Is there any alternative for SE16 to check number of entries in tables.
Scenario is,
Based on filter company code, find number of records in BKPF and then in BSEG. Is they any other way?
thanks,

Hello Mark,
thanks for reply.
I am checking if there is any alternative for SE16.
Since the BSEG table is big and in most of the cases in foreground with SE16 it will give time out error.
i know we can check by running SE16 in background job.
This is the reason I am wondering if there is any another option.
regards,
Sant

Similar Messages

  • Unable to create a 'Z' for se16 transaction

    Hi everyone,
    we have a requirement where we are unable to create a Z for transaction SE16.
    I went to se93 and checked it was a function pool so i went to SE80 to make a copy of standard function group SETB to ZSETB.
    it made a copy of it anf I copied all the FM's and made a Z of those.
    Once it is done. When I activate it it give a lot of errors , I have checked it and made sure that it is copying entire Function Group but all are fine.
    My system is ECC6.0, earlier we had ZE16 which is a replica of SE16 and this had a lot of problem like ending in dumps , so we thought we would make a new Z transaction for SE16, but we get many error.
    Please try it out once in ur system before U suggest me a change to be made.
    Regards,
    Raj

    It is always best to minimize such issues by making a copy of programs or function modules where changes are needed to add new functionality. Also this would ensure any patches/notes  added in future would have minimum impact on your clones.
    -Cheers

  • What is the alternative for DisplayMemberPath="Value" for Windows Store applications?

    I think there is a bug with Windows Store Applications when it comes to using DisplayMemberPath="Value".
    Here is my code
    <ComboBox Height="40" VerticalAlignment="Stretch" SelectedValuePath="Key" DisplayMemberPath="Value" x:Name="comboBox1" FontSize="25"/>
    var source = new Dictionary<string, double>();
    source.Add("Item1", 0.4);
    source.Add("Item2", 0.3);
    source.Add("Item3", 0.1);
    source.Add("Item4", 0.1);
    var formateDSource = new Dictionary<string, string>();
    foreach (var item in source)
    formateDSource.Add(string.Format("[{0}, {1}]", item.Key, item.Value), item.Key);
    comboBox1.ItemsSource = source;
    If you use this code in WPF in works perfectly. However if you use this code in a Windows Store Application then the Combo Box is empty and an error is thrown. So is there an alternative way to do this in Windows Store Applications and have I unearthed a
    bug? Because I have researched the Web for days and found no solution to this.*please do not comment unless you have tried my code as a Windows Store App not a WPF in Visual Studios. Can Someone post an example based on my code that works in Windows Store
    Apps please because this is terrible.
    Thanks

    It looks like you got an answer on SO:
    http://stackoverflow.com/questions/29817124/what-is-the-alternative-for-displaymemberpath-value-for-windows-store-applicat
    This does look like a bug.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Creation of custmized tcode for se16, sm30, se38 ?

    Hello,
    Myself Naveen Dalal. Working as a sap security consultant and a new user for this furum. I have one question to u all sap security gurus:
    Requirement is to create customized tcodes YSE16, YSM30 and YSE38 for se16, sm0 and se38. Lets start with YSE16.
    1. Client want YSE16  tcode to restrict users based on some tables within a authorization group or even * value for auth group field.
    SE16 restricted on:
    S_TABU_DIS -
    Auth Group  and Activity
    As per Requirement YSE16 tcode sld be restricted on :
    Y_TABU_DI2 (customized object)  -
    Auth Group, Activity and Table name
    We dont want to give SE16 to user. So basically requirement is to restrict users on table name with YSE16 irrespective on authorization group. User sld  only be able to access the table mentioned in Table name field.
    We have some program and we asked our ABAPers to modify accordingly but not succeed.  Everytime it is going to check S_TABU_DIS to access any table and se16 as well.
    Do u guys have some other solution. We want it for YSM30 and YSE38 as well. Thanks.
    Regards,
    Naveen Dalal

    Thanks Sri and Martin. Here is the Code of the customized program. Abaper did bit changes. They used YSE16 tcode name and Y_TABU_DI2 is the authority chk object like S_TABU_DIS in SE16. Can you please advice the necessary modification so that I can suggest to my ABAPER. I even doubtfull how many FMs they have created till now for this ..Problem is All tables are alligned with Auth Group and they are with S_TABU_DIS. So in our program we want to perforn it without checking S_TABU_DIS. But to check Y_TABU_DI2
    REPORT  zsec_se16_databrws NO STANDARD PAGE HEADING
                               LINE-SIZE 132
                               LINE-COUNT 65.
    Report   : ZSEC_SE16_DATABRWS                       T-Code :ZSE16    *
    Author   :                                                       *
    Title    : Custom data Browser with Auth Check For Table name        *
               This program will Allow the same functionality as SE16    *
               but provide additional authorization check functionality  *
               to limit access based on table name.                      *
    Change History:                                                      *
    Author       | Date        | Request#  | Description                 *
                 |             |           | Initial Version             *
    TABLES:  tddat.
    Selection Screen                                                    *
    PARAMETERS:  p_tablen LIKE databrowse-tablename.
    At slection screen                                                  *
    AT SELECTION-SCREEN.
    Check custome authorization object for table name
      SELECT SINGLE * FROM tddat WHERE tabname = p_tablen.
      IF sy-subrc <> 0  OR  tddat-cclass = space.
        tddat-cclass = '&NC&'.             " 'non classified table'
      ENDIF.
      AUTHORITY-CHECK OBJECT 'Z_TABU_DIS'
               ID 'DICBERCLS' FIELD tddat-cclass
               ID 'ACTVT' DUMMY
               ID 'TABLE' FIELD p_tablen.
      IF sy-subrc IS INITIAL.
      ELSE.
        MESSAGE e419(mo).
      You are not authorized to display this table
      ENDIF.
    Start of selection                                                  *
    START-OF-SELECTION.
      SELECT SINGLE * FROM tddat WHERE tabname = p_tablen.
      IF sy-subrc <> 0  OR  tddat-cclass = space.
        tddat-cclass = '&NC&'.             " 'non classified table'
      ENDIF.
      AUTHORITY-CHECK OBJECT 'Z_TABU_DIS'
               ID 'DICBERCLS' FIELD tddat-cclass
               ID 'ACTVT' DUMMY
               ID 'TABLE' FIELD p_tablen.
      IF sy-subrc IS INITIAL.
      ELSE.
        MESSAGE e419(mo).
      You are not authorized to display this table
      ENDIF.
      CALL FUNCTION 'RS_TABLE_LIST_CREATE'
        EXPORTING
          table_name = p_tablen.
    Thanks Guys.
    Regards,
    Naveen

  • What are the Flash alternatives for iphone and ipad?

    Hello,
    I would like to know what could be the Flash alternatives for iphone, ipod, and ipad. I would like to create iphone applications that have 3D animation I usually create with Flash.
    But since Apple does not support the use of flash, I need to know what applications or programming languages I must use to create movies or animations for iphone or ipad.

    I would like to create iphone applications
    Then you need to go here:
    http://developer.apple.com/programs/iphone/

  • Alternative for AT NEW --- ENDAT

    Hello experts,
    I am using field-symbol as internal table. I cant use AT NEW statement inside this loop.
    Can u pls provide alternative for above control break statement.
    Thanks in advance.
    Zak.

    Hi,
    to use control break statement, first you should sort the internal table and then you use it.
    Take one example:
    data: begin of it9 occurs 4,
               f1,
               f2,
             end of it9.
      it9 = '1A'. append it9. "Fill it9 with data
      it9 = '3A'. append it9.
      it9 = '1B'. append it9.
      it9 = '2B'. append it9.
    sort it9 by f1.
    loop at it9.
         at new f1.
             write: / 'start of:', it9-f1.
             endat.
         at end of f1.
             write: / 'end   of:', it9-f1.
             endat.
         endloop.
    free it9.
    Hope it is helpful.
    Regards,
    Chris Gu

  • HT4597 what will be the new alternatives for iWeb publishing,  Idisk & photo gallery ?

    what will be the new alternatives for iWeb publishing,  Idisk & photo gallery ?

    Thanks for the reply that there will be 3rd party support.
    One of the main reasons why I went from PC to Mac was because of all these cool features.
    Am dissapointed to see them leave.  ( Iweb, Photogallery, Idisk... )

  • Alternative for FM 'NAMETAB_GET'

    Hi ,
      Can any one suggest an alternative for the FM 'NAMETAB_GET' in 4.7.
    Regards
    Arun

    Hi,
    You did noyt specify why you want this alternative for.
    Anyways, just check out RFC_GET_NAMETAB, which is also quite similar.
    Regards,
    Anand Mandalika.

  • Alternative for WBS BOM

    hello
    In standard BOM for PP in T-code eg cs01 I can write alternative. But if I want to create WBS BOM with T-code cs71 I can't see such field for alternative. I checked in help.sap.com that alternative for WBS BOM are not used. I don't know why but there is not alternative filed in CS71.
    So is there any other way to get alternatives for WBS BOM like modification, exit etc.
    I checked SAP notes for this but I can't find.
    Any help?

    hello
    Thank you for your answers.
    I have business process where I need WBS alternative. Why? Because of history of changes. My client wants to have 2 versions of one WBS BOM. One for history only and second for operative work. After some changes in WBS BOM and finish the project my client wants to analyse historical version which is created when project starts and the last operative version of the same WBS BOM.
    @Uddhab
    >If we prepare two BOM for a single WBS and attach the same in the WBS, then 2 requirement will flow and there will additional >quantity in the production.
    Yes, if we attach. I want to attach only one WBS BOM so I don't multiply quantity.

  • Alternative for TOAD on Linux

    Hi
    I am migrating my desktop from Windows 2000 to Redhat Linux 9.
    I have been using third party tool TOAD for accessing the data from the database. As TOAD does not have a Linux setup, can any one suggest an alternative for the same.
    Thanks in advance.
    Manoj

    you are posting in the wrong forum.. this forum is for the Desktop Datacenter Oracle on Linux VMware kit..
    you'll get better luck in other forums or better yet, Google.. I put toad and linux as keywords and got lots of hits on TOra.. so you might research that way..
    good luck,
    locking.

  • Alternative for "FND FLEXSQL" in PLSQL

    Hi All
    I have a requirement to created a PLSQL based report for GL data, with range of GL CC as parameter. This could be achived in Oracle reports through user exit FND FLEXSQL.
    But is there an alternative for FLEXSQL to be used in PLSQL. I came across a package FND_FLEX_ORACLE_REPORTS_APIS, but the no contents, it is set to return the message "'This API has not been implemented yet...';".
    The version of the package is /* $Header: AFFFORAB.pls 120.1.12010000.1 2008/07/25 14:14:12 appldev ship $ */
    Is there a newer version for this? or is there an alternative?

    Can u look into gl_flexfields_pkg and see if this helps.
    Cheers,
    ND

  • Alternative for vmware workstation?

    I am learning Application Packaging and it requires me to have a vmware workstaion in my machine. I am currently using MacBookPro Retina 15". Is it possible to install vmware workstation on Mac OS or is there any alternative for it? I would highly appreciate any suggestions.

    Go to the VMWare website for that information. They have VM Fusion for the Mac, and I believe there is also a workstation version.

  • Alternative for HELPSCREEN_NA_CREATE

    Hi
    I am working on a update from 4.0b to 4.7 , on performing extended check on a program the FM HELPSCREEN_NA_CREATE is said to be obsolete , what could be the alternative for it.
    Regards
    Arun

    Hi Christian,
    The function  module "HELPSCREEN_NA_CREATE" itself is calling the function "HELP_OBJECT_SHOW".
    How can we go about calling this "help_object_show" function.
    Regards
    guru

  • Alternative for RFC_READ_TABLE FM

    Hello All,
    SAP has asked not to use RFC_READ_TABLE function module (not to be used by SAPu2019s customers) directly or indirectly. Can anybody please suggest me what will be the alternative for this FM. Or what is the replacement for RFC_READ_TABLE FM?
    Thanks in Advance.

    Hi,
    you can use  RFC_GET_TABLE_ENTRIES  for the same

  • Alternative for CodeXpert

    TOAD has a nice, integrated feature called CodeXpert. It evaluates pl/sql code and recommends possible changes according to a set of programming rules and standards.
    I'm trying to find an alternative for this feature in SqlDeveloper. Maybe a plug-in ?
    Any suggestions ?

    I'm afraid there isn't, but you can always vote on the existing request for this at the SQL Developer Exchange, to add weight for possible sooner implementation. (I believe there is one, else create a new request)
    Regards,
    K.

Maybe you are looking for

  • How to output 3D Surface Graph as image file (bmp or jpg or png)

    I'd like to output a graph from the 3D surface.vi module as a regular image (like a JPG or BMP).  At this time, I'm going through an awkward process of taking a screen cap, then isolating the image with photoshop (painful and time consuming). Any ide

  • IE8 compatibility mode error?

    Greetings, I built this page a few weeks back: http://www.brightwork.com/overview and recently I've been told there's a bug where all the text on the first page wont display. It merely appears as Undefined. From other errors I've weeded out I know th

  • EasyDMS 7 - Error in search / find function

    Hi Folks, When I click the "find document" button EasyDMS 7 the find dialog box does not display the classification and object links tabs. It also does not show a drop down for document type. Once I enter a search term and click OK, I get the followi

  • NB520 won't run skype

    Performance for SKYPE . I was recommended to replace my faithful R-100 a 1.1Ghz single core with 1.25Mb RAM with the NB520 duel core etc, after mobo troubles began. I cannot begin to say how dissapointed I am with it. After removing the bloatware fro

  • ETA for Eclipse 3.0 support

    empty