How to get no. of entries in BSEG in production

Hi
I am getting dump when I tried to get the no. of entries in BSEG in production even in background run also.
Can anybody let me know how to get the no. of entries in BSEG in production.
Thanks & Regards
Bhaskar

Hi,
go to se11-> give table name BSEG-> the click on Contents button on appln. toolbar->click on display button->then click on No.of entries button on appln. toolbar.
      It will show the no. of entries in the table BSEG. If it gives u the dump then there may be two reasons behind it:-
1) may be no. of entries are so large that ur system get time out. Ask ur Basis consultant to increase time-out.
2)may be in the standard enhancement coding there may be some bugs which can lead u to dump.
                I hope it will help u.
Regards,
Raghav

Similar Messages

  • How to get  time of entry and date  fields during creation of excise inv

    Dear all,
    During creation of Excise invoice i am getting only removal time field.
    Please guide how to get the entry time field and date.
    Regards,
    deepti

    Hi
    Deepti
    When you do J1II OR J1IIN u will find the posting date that is nothing but Date which is used when entering the document in Financial Accounting or Controlling. For time system is taking the SAP time to record the doc.
    Thx.

  • How to get the medium and long text for PRODUCT HIERARCHY?

    hi experts,
    i am using data source called 0prod_hier_text. in ECC there is description for medium and long.
    but in BW it is mapped to 0TXTSH which is short text, and in the transformations medium text is mapped to short text of BW (0TXTSH) which is having length only 20.
    IF it exceeds more than 20 it is now showing.
    so how to get  add 0TXTMD which is medium text so that i can see the description for MEDIUM.
    i did try to add  to 0PROD_HIER but i cannot add.
    i need to show medium text description in the Report.
    plz provide me the input.
    regards
    venuscm

    Hi Venu,
    Check in RSD1 screen which text you have chossen .....for object 0product
    try to check for medium & long text(if not checked) ..
    so that you can add mdtxt & long txt in transformations........
    hope this will help you.
    Thanks,
    Vijay.

  • How to get Acrobat menu in MS Office 2013 products

    I purchased a new laptop with Acrobat XI Standard already installed. I have since manually installed MS Office 2013.  How do I get the Acrobat menu in my Office products?  We are a not-for-profit, so I usually purchase software separately and install it myself.  I would normally install Office and then Acrobat, so this has never been an issue for me.
    Thanks for any help someone can provide!

    A "Repair" did not work, however, had I been a little more patient, an "Update" presented itself, as they do nearly daily (!!).  After installing the update, the Acrobat menus appeared in the Office applications.
    Issue resolved!

  • I wonder how to get the data entries one week to be uploaded into BW system

    HI,SDNs
        Our clients requires us to get the whole data entries to be loaded into bw system fo r onw week or get the delta data number to be loaded
        How to deal with it?
    thanks and best regards

    Dear Terry,
    In the InfoPackage selection, you can provide the week for which you want to load the data.
    If it does not help, then could you please elaborate yoyr problem.
    Best Regards,
    Ankit Agrawal
    P.S.: Assign points if helpful

  • How to get customizing table entries in to dropdown list

    Hello All,
    I have field in my screen from customizing table. How do i get values in this field when the presses drop down button?
    I know that we can do it by entering fixed values to that field and also when we create a check table we will get values.
    Is there any other way to get the values?
    Can any one help me.
    Regards,
    Lisa.

    Hi,
    I have 2 solutions for your post, one go for DROP DOWN BOX if you are having fixed input values.
    And two go for search help if you want multiple entries has to be displayed in your field form your customized table.
    If you want procedure decide your option and revert me i will send you.
    Good Luck
    Thks

  • How to get rid of "entry point sqlite3 checkpoint" error on startup

    When I startup my laptop (win7 64bit) I get the popup error box saying "This procedure entry point sqlite3_wal checkpoint could not be found in the dynamic link library SQLitwe3.dll. I'm realy tired of seeing it especialy seeing as its caused by Apples new and improved iTunes update. How can I get rid of it short of deleting iTunes?

    When I startup my laptop (win7 64bit) I get the popup error box saying "This procedure entry point sqlite3_wal checkpoint could not be found in the dynamic link library SQLitwe3.dll. I'm realy tired of seeing it especialy seeing as its caused by Apples new and improved iTunes update. How can I get rid of it short of deleting iTunes?

  • How to get the selected entry from a Dropdown (using IF_WD_SELECT_OPTIONS)

    Hello,
    I created a Selection screen by adding attribute M_HANDLER of type IF_WD_SELECT_OPTIONS.
    This way I can create a selection screen with normal select-options.
    Now I added a parameter for a dropdown list. The Value set is passed correctly. No problem there. The values are filled and diplayed correctly.
    * add the SHIP-TO field to the selection
      DATA: ltp_text  TYPE string.
      DATA: lta_ship_to_table type WDY_KEY_VALUE_table,
            lwa_ship_to       like LINE OF lta_ship_to_table.
      DATA: context_node_ship_to_table TYPE REF TO if_wd_context_node.
    * get all declared attributes
      context_node_ship_to_table = wd_context->get_child_node( 'SHIP_TO_TABLE' ).
      context_node_ship_to_table->get_static_attributes_table(
        IMPORTING
          table  = lta_ship_to_table ).
      ltp_text = wd_assist->if_wd_component_assistance~get_text( 'L01' ).
      wd_this->m_handler_dlv->add_parameter_field(
                             i_id           = 'KUNWE'
                             i_description  = ltp_text
                             i_as_dropdown  = 'X'
                             it_value_set   = lta_ship_to_table
                             i_within_block = 'BLK1' ).
    The problem is to GET the selected value in the method that is called after clicking on the Search button.
    I tried using several methods, for example GET_PARAMETER_FIELD and GET_SELECTION_SCREEN_ITEMS.
    * Get the Ship-to
      DATA: ltp_kunwe       TYPE REF TO data.
      ltp_kunwe = wd_this->m_handler_dlv->get_value_of_parameter_field(
                                            i_id = 'KUNWE' ).
    * Assign it to a field symbol
      ASSIGN ltp_kunwe->* TO <fs_kunwe>.
    Result was INITIAL.
    DATA: lrf_get_selection_screen_items TYPE if_wd_select_options=>tt_selection_screen_item.
      wd_this->m_handler_dlv->get_selection_screen_items(
                  IMPORTING
                     et_selection_screen_items = lrf_get_selection_screen_items ).
    Result was INITIAL, although the table was retrieved with all values.
    wd_this->m_handler_dlv->get_parameter_field(
                                          EXPORTING
                                            i_id = 'KUNWE'
                                          IMPORTING
                                            e_value = ltp_kunwe ).
    Also INITIAL.
    It looks like I am missing a step (maybe to set lead selection for this field). What did I miss?
    How can I get to the value?

    Thanks!
    Problem solved:
    DATA: lr_value             TYPE REF TO data.
    CREATE DATA lr_value TYPE string.                     "<----  I was missing this code
      LOOP AT lta_ship_to_table INTO lwa_ship_to.
        value_set-key   = lwa_ship_to-key.
        value_set-value = lwa_ship_to-value.
    *    INSERT value_set INTO TABLE lt_value_set.
        append value_set TO lt_value_set.
      ENDLOOP.
      ltp_text = wd_assist->if_wd_component_assistance~get_text( 'L01' ).
      wd_this->m_handler_dlv->add_parameter_field(
                              i_description  = ltp_text
                              i_id           = 'KUNWE'
                              i_value        = lr_value   "<----  I was missing this code
                              i_as_dropdown  = abap_true
                              it_value_set   = lt_value_set
                              i_within_block = 'BLK1' ).
    I looked at that parameter, but thought is was only used to SET the value, not required to get it back as well. Because it IS an import parameter...

  • How to get a form entry with index ?

    Guys:
    I have a form and I submit data through this form.  Upon clicking a submit button, I want to get the data that a user entered.  Please review the following ColdFusion code to see what I mean:
    for (i = 1; i LTE ArrayLen(cateNodes); i++) {
          itemNodes = cateNodes[i].item;
          for (j = 1; j LTE ArrayLen(itemNodes); j++) {
              if (IsDefined("FORM.submit_#i##j#")) {
                 item = "FORM.item_" & i & j & "_sm";
                 writeoutput(#item#);
    This form has multiple submit buttons.  Suppose that the "submit_ij" button is clicked, I want to be able to get the value that a user entered for item_ij_sm.  For example, I want to get the value entered for
    #FORM.item_21_sm#
    Instead displaying the value that the user entered for item_21_sm, it displayed FORM.item_21_sm.  And, I can see why it did that.  It's because FORM.item_21_sm is a string.  It would have been very easy without the indecies.
    I'm a ColdFusion newbie.  Any recommendation is appreciated !  Thanks a lot !

    Guys:  I would like to thank for your recommendation using HTML selection instead of multiple submit buttons and I will seriously consider this.  However, this is not the point of my question.  The point is that, for example, how do I get user's input for
    #FORM.item_21_sm#
    The difficult thing here is how to insert the two indeces i and j into item_.  If you spend your time and follow my example, you'll see that it does not work.  It does not display the value entered by the user for item_21.  Instead, it displays FORM.item_21_sm.  It would have been extremely easy without the indecies i and j because #FORM.item# works as expected.  So, the question here is that, if I have multiple items and if I don't use HTML selection/option, how can this be handled in ColdFusion ?  Please see my original post for details.  Thanks so much.

  • How to get notified of entry that are deleted?

    Hello,
    I'm trying to get notified when an entry is deleted after a certain expiration time. The listener that I've registed gets correctly all the added/updated notification but does not get anything as far as the entryDeleted() is concerned. My guess is that either my listener is not correctly configured or that my expiration schema is wrong. Here is the configuration I'm using:
    <backing-map-scheme>
    <local-scheme>
    <expiry-delay>10s</expiry-delay>
    <flush-delay>15s</flush-delay>
    <listener>
    <class-scheme>
    <class-name>com.cache.MyCacheListener</class-name>
    </class-scheme>
    </listener>
    </local-scheme>
    </backing-map-scheme>
    Any idea why my I don't get notified or why my entries are not deleted?
    Thanks
    Jean

    Hi Jean,
    Your configuration looks right. Eviction happens lazily and on the client thread - did you wait for 15s+ and invoke any cache method (get/put/size etc) to trigger eviction ?
    For example, attached MyCacheListener.main should print:
    entry foo deleted, isSynthetic:true
    null
    Regards,
    Dimitri<br><br> <b> Attachment: </b><br>coherence-cache-config.xml <br> (*To use this attachment you will need to rename 369.bin to coherence-cache-config.xml after the download is complete.)<br><br> <b> Attachment: </b><br>MyCacheListener.java <br> (*To use this attachment you will need to rename 370.bin to MyCacheListener.java after the download is complete.)

  • How to get fast one entry of an returning table ?

    Hello experts,
    I'm calling a method (see example) and after receiving the returning table
    I just want select one entry of this tabel. How can I do this with fast perfomrance ?
    AT the moment I am doning this with a loop, but I need something faster !
          DATA: EV_PARTNER TYPE BU_PARTNER.
          DATA: ET_ATTRIBUTES TYPE /MRSS/T_FIELDNAME_VALUE_TAB.
          DATA: RT_PARTNER TYPE /MRSS/T_PARTNER_TAB.
          DATA: WA_PARTNER TYPE TABLE OF /MRSS/T_PARTNER_TAB.
          DATA: WAA_PARTNER TYPE LINE OF /MRSS/T_PARTNER_TAB.
          DATA: PARTNER_ROLE(2) TYPE C.
          PARTNER_ROLE = 'WE'.
          IF LV_PARTNER = ''.
            CALL METHOD <FS_ITEM>-OBJECT->PARTNER_GET
              RECEIVING
                RT_PARTNER = RT_PARTNER.
            LOOP AT RT_PARTNER INTO WAA_PARTNER.
              IF WAA_PARTNER-PARTNER_ROLE = 'WE'.
                LV_PARTNER = WAA_PARTNER-PARTNER_ID.
                EXIT.
              ENDIF.
            ENDLOOP.
          ENDIF.
    Thanks,
    Gerd

    Hi,
    Instead of looping in to a work area and then chekcing the condition , you can directly specify the condition in the loop by which the loop will only execute on those which satisfy the condition thereby making it much faster
    DATA: EV_PARTNER TYPE BU_PARTNER.
    DATA: ET_ATTRIBUTES TYPE /MRSS/T_FIELDNAME_VALUE_TAB.
    DATA: RT_PARTNER TYPE /MRSS/T_PARTNER_TAB.
    DATA: WA_PARTNER TYPE TABLE OF /MRSS/T_PARTNER_TAB.
    DATA: WAA_PARTNER TYPE LINE OF /MRSS/T_PARTNER_TAB.
    DATA: PARTNER_ROLE(2) TYPE C.
    PARTNER_ROLE = 'WE'.
    IF LV_PARTNER = ''.
    CALL METHOD <FS_ITEM>-OBJECT->PARTNER_GET
    RECEIVING
    RT_PARTNER = RT_PARTNER.
    LOOP AT RT_PARTNER where partner_role = 'WE'.
    LV_PARTNER = RT_PARTNER-PARTNER_ID.
    EXIT.
    ENDLOOP.
    Regards,
    Vikranth

  • How to get a Connect meeting room or a product trial account

    How do I get and set up an Adobe Room?
    Thankyou
    Message was edited by: ashish gupta. to add a meaningful title.

    You can get a 30 day trial here: http://www.adobe.com/go/try_adobeconnect/
    You can contact a reseller off this list: http://www.adobe.com/products/adobeconnect/strategic-partners.html
    If you would like, you can contact me off forum jorma[at]realeyesconnect.com and I'd be happy to help identify what licensing is right for you.

  • How to get list of users assinged the same product catagory

    Hi  All ,
      we have a requirement in which we need to get the list of users who are assigned   the same  product category.
    ie if we give the  prod category 14000000 then  we need the list of users assigned the  14000000 prod category.
      is  any FM available.
      please  help.
    Regards
    Channappa Sajjanar

    Hi Chinnappa,
    1) You can create a table query for tables HRT1222 and HRP1222 to get the org Id or Position Id assigned for the product category.
    Then use FM BBP_OM_STRUC_GET_USER_FROM_POS to get the list of users for that org ID.
    2) or if you want to check list of prod categories linked to user ID, then use FM BBP_READ_ATTRIBUTES
    rgds,
    Ravi

  • How to get lifnr in alv

    Hi experts i have got 'belnr' from 'bseg' table by providing
    corresponding 'hkont' field values.
    And also got 'budat' from 'bkpf' for the corresponding
    values of 'belnr' from bseg.
    Now my problem is how to get the 'lifnr' values in 'bseg'
    (for the corresponding values of 'bkpf-belnr' and 'bseg-belnr').
    send me the coding .....

    Hi,
    have got 'belnr' from 'bseg' table by providing*
    corresponding 'hkont' field values.
    at this same time can you not pick LIFNR also from bseg?
    Amit.

  • How to get Mario for MAC

    Hi
    How to get Mario game for MAC

    Mario is a product of Nintendo....
    It's not very likely, but your best bet is to contact Nintendo and ask if they will ever release a game version in the App Store.

Maybe you are looking for

  • Photos are not visible in Aperture 3

    Hi guys, I hope you can help with this one. There are no photos showing in my albums. I have checked and re-set all filters, tried the smart folder trick etc. but nothing will make the photos re-appear. I know there are 100's of photos in this folder

  • Updated field in CO01 unrecognized

    Hello, I update production scheduling profile (caufvd-sfcpf) in user exit EXIT_SAPLCOZF_003 at CO01. I added the field to HEADER_CUST and it is transferred outside. İt is a field of a subscreen. The transaction starts with the general tab and if I do

  • Can you make a table a placeholder in your ibook?

    I've added a table to one of the layout pages. When I use that layout in my book, I'd like to keep the table formatting but allow the text and number of rows to be edited. A second question following the same idea - when I read the book on my iPad, w

  • Charging port on MacBook died, what to do?

    so my laptop was at 3% and I went to go charge it; wouldn't charge. I kept trying and trying but eventually my laptop just died. I'm really hoping it's my charger and I'll just buy a new one and it'll be fine. But of course I'm over here, thinking ab

  • Calling another database connection within a database connection

    Dear All, I am using an oracle form by connecting with oracle database and or runtime I have connected succesfully with ms sql server database wtih EXEC_SQL package. The syntax is as follows: open connection with odbc open cursor parse ddl statement