Include IDNUMBER as find option in transaction BP.

Hi Experts,
How can I include the ID Number as one of the options in the find tab to find a business partner? It seems you can only find BP by BP Number, Addresses, Name, and Search term. Is there a user exit for that that you know of?
Regards

this is correct , all the organization units will not come up as BP
you need not worry , if you check pposa_bbp , you will find an column which says BUsiness partner , only those will be shown in the transaction BP

Similar Messages

  • How to find out the Transactions used per month & the USER who used that

    Hi,
    1)How to find out the Transactions used per month & the USER who used that?
    2)and can i get the above same for minimum 20 month?
    System : SAP- Enterprise Core Component.

    You can use my program...
    *& Report  Z_ABAP_TCODE_MONITOR
    *****&  Program Type          : Report                                 *
    *****&  Title                 : Z_ABAP_TCODE_MONITOR                   *
    *****&  Transaction code      : ZTCODE_USAGE                           *
    *****&  Developer name        : Shailendra Kolakaluri                  *
    *****&  Deveopment start date : 26 th Dec 2011                         *
    *****&  Development Package   : ZDEV                                   *
    *****&  Transport No          : DEVK906086                                       *
    *****&  Program Description   : This program is to display
    *List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    *& Modification history
    REPORT  Z_ABAP_TCODE_MONITOR.
    *& List all tcodes executed during previous day.
    *& Show the number of users executing tcodes
    TYPE-POOLS : slis.
    DATA: ind TYPE i,
          fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          layout TYPE slis_layout_alv,
          variant TYPE disvariant,
          events  TYPE slis_t_event WITH HEADER LINE,
          heading TYPE slis_t_listheader WITH HEADER LINE.
    *REPORT  z_report_usage.
    TYPES: BEGIN OF zusertcode,
      date   TYPE swncdatum,
      user   TYPE swncuname,
      mandt     TYPE swncmandt,
      tcode     TYPE swnctcode,
      report TYPE swncreportname,
      count     TYPE swncshcnt,
    END OF zusertcode.
    *data   : date type n.
    DATA: t_usertcode  TYPE swnc_t_aggusertcode,
          wa_usertcode TYPE swncaggusertcode,
          wa           TYPE zusertcode,
          t_ut         TYPE STANDARD TABLE OF zusertcode,
          wa_result    TYPE zusertcode,
          t_result     TYPE STANDARD TABLE OF zusertcode.
    PARAMETER: month TYPE dats DEFAULT sy-datum.
    *PARAMETER: date TYPE dats.
    *select-options : username for wa_usertcode-account.
    START-OF-SELECTION.
    PERFORM get_data.
    PERFORM get_fieldcatalog.
      PERFORM set_layout.
    PERFORM get_event.
    PERFORM get_comment.
      PERFORM display_data.
    FORM get_data .
    *date = sy-datum - 2 .
    After start-of-selection add this line (parameter Month required 01 as day).
      concatenate month+0(6) '01' into month.
      CALL FUNCTION 'SWNC_COLLECTOR_GET_AGGREGATES'
        EXPORTING
          component     = 'TOTAL'
          ASSIGNDSYS    = 'DEV'
          periodtype    = 'M'
          periodstrt    = month
        TABLES
          usertcode     = t_usertcode
        EXCEPTIONS
          no_data_found = 1
          OTHERS        = 2.
      wa-date  = month.
    *wa-date  = date.
      wa-mandt = sy-mandt.
    wa_usertcode-account = username.
      LOOP AT t_usertcode INTO wa_usertcode.
        wa-user = wa_usertcode-account.
        IF wa_usertcode-entry_id+72 = 'T'.
          wa-tcode  = wa_usertcode-entry_id.
          wa-report = space.
        ELSE.
          wa-tcode  = space.
          wa-report = wa_usertcode-entry_id.
        ENDIF.
        COLLECT wa INTO t_ut.
      ENDLOOP.
      SORT t_ut BY report ASCENDING.
      CLEAR: wa, wa_result.
    endform.
    FORM get_fieldcatalog .
    fcat-tabname     = 't_ut'.
    fcat-fieldname   = 'DATE'.
    fcat-seltext_l   = 'Date'.
    fcat-key         = 'X'.
    APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'MANDT'.
      fcat-seltext_l   = 'Client'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'USER'.
      fcat-seltext_l   = 'User Name'.
      fcat-key         = 'X'.
      APPEND fcat.
      CLEAR fcat.
      fcat-tabname     = 't_ut'.
      fcat-fieldname   = 'TCODE'.
      fcat-seltext_l   = 'Transaction Code'.
      fcat-key         = 'X'.
      APPEND fcat.
    ENDFORM.
    *&      Form  SET_LAYOUT
          text
    -->  p1        text
    <--  p2        text
    FORM set_layout .
      layout-colwidth_optimize = 'X'.
    ENDFORM.                    " SET_LAYOUT
    *&      Form  GET_EVENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_event .
    events-name = slis_ev_top_of_page.
    events-form = 'TOP_OF_PAGE'.
    APPEND events.
    *ENDFORM.                    " GET_EVENT
    **&      Form  GET_COMMENT
          text
    -->  p1        text
    <--  p2        text
    *FORM get_comment .
    DATA: text(30).
    text = 'Billing Report'.
    heading-typ = 'H'.
    heading-info = text.
    APPEND heading.
    *ENDFORM.                    " GET_COMMENT
    **&      Form  top_of_page
          text
    -->  p1        text
    <--  p2        text
    *FORM top_of_page .
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
         it_list_commentary       = heading[]
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
    *ENDFORM.                    " top_of_page
    *&      Form  DISPLAY_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM display_data .
      sort t_ut[].
    DELETE ADJACENT DUPLICATES FROM t_ut[] COMPARING ALL FIELDS.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = sy-cprog
          is_layout          = layout
          it_fieldcat        = fcat[]
          i_save             = 'A'
          is_variant         = variant
          it_events          = events[]
        TABLES
          t_outtab           = t_ut
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " DISPLAY_DATA

  • In sales order cross selling pop up screen requires FIND option

    Dear Friends,
    In our company we are using the pop up screen for cross selling items per BOM.
    Our requirement is in the pop up screen we require find option also. we have only copy and cancel options are there in the standard functionality.
    Could any one of you help us how can add the functionality of find option with out changing any standard code, ( i mean any OSS notes or user exits ).
    Thanks in advance,
    NLX

    Hi Joshi,
    By seeing the above link, I think after creating transaction variant we need to create Custom tcode to use that transaction variant.
    But, in this case we should use transaction VA01 only, but not any Custom Tcode..
    This is very urgent ..
    Is there any other option to meet my requirement...
    Thanks,
    Radhika

  • How to find the Business Transactions involved by a Business Partner

    Hi all,
    My requirement is :
    i wanted to delete some Business Partners, we have only Opportunity Management implementeed.
    i have taken one BP and removed the Opportunites which are involved. then tried to delete that BP, but i'm getting the message as " Business partner xxx still used in business transactions"
    could any help me out, how to find what are all the Business transactions involved/ assigned to a BP ?
    Thanks
    Ven

    In sap gui use transaction crmd_order. For 'Find' option set 'All'. For 'by' set '2 Customer'. in field 'Buspartner' type the number of customer. Start the search and you will get all transactions.

  • Find option missing with IE11

    What happened to the Find option when displaying on IE11?  It works great on earlier browser versions but it does not even display with IE11.
    I am specifying the option in both the C# code in the PreRender section and within the aspx code with no positive results in IE11.
    protected void ReportViewer1_PreRender(object sender, EventArgs e)
    ReportViewer1.ShowFindControls = true;
    <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" 
    Width="100%" Font-Size="8pt" Height="300px" OnPreRender="ReportViewer1_PreRender"
    ShowFindControls="true" >
    <LocalReport ReportPath="Members\Maintenance\BatchMaintenance.rdlc">
    <DataSources>
    <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" 
    Name="BatchListDataSet_GetBatchList" />
    </DataSources>
    </LocalReport>
    </rsweb:ReportViewer>

    Hello,
    As per my understanding, SSRS render in IE 11, it has compatibility issue. It cannot be avoided on the Reporting Services level. We can make the IE 11 open all intranet sites with Compatibility View mode automatically, please use the following steps:
    1. Launch the IE 11, and press Alt+T to select the Tools.
    2. Click Compatibility View settings.
    3. Check the “Display intranet sites in Compatibility View” option, and click Close.
    Alternative, please check HtmlViewer.CSS file (By default, it is located in: C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\Styles), if it is include below code:
    .ToolbarFind
     display: inline;
    If the issue is persist, you can reinstall IE 11 try to solve the issue. Also, you can open the report in other computer to check if it is work well in IE 11.
    If you also have question, please feel free to let me know.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Equivalent to ZAM 7 "Find" options?

    In ZAM7, there was a "Find" option under Reports that opened up a page full of fields that one could search on. This is probably the most often used feature in ZAM7 by our PC Techs. I can't find any way to offer them an equivalent in ZCM11. What am I missing?
    For instance, finding a laptop by its serial number is a very simple matter in ZAM7. How can I do that in ZCM11?

    Originally Posted by hnewman
    I looked at that, but it doesn't help because the Advanced Search doesn't search sub-folders. I consider that a bug, since the Basic Search does have that ability. I submitted an enhancement request for that ages ago (#77930), back on 11.2.1. The status is "Awaiting Release Prioritization".
    Hi Holly,
    The advanced search will search subfolders, it's just totally not intuitive
    How to get it to search subfolders:
    Either:
    1) On the ZCC -> Devices do your advanced search (it'll search everything then, including servers). Or so I was told.
    or
    2) Go to ZCC -> Devices -> Workstations
    Check the box for "search subfolders" and THEN click the advanced search and execute a saved search. I do this all the time, so I know this one works.
    Again, not totally intuitive.

  • How to find CRM Business Transactions - Error Messages

    Hi,
    Can any one help me in how to find the error messages in CRM for the given Object No. and status code combinations from CRM_JEST table.
    There is a transaction available SLG1 to see the errors, but i wanted to create a separate report which shows the error messages for the given object number and status code combinations.
    Regards,
    Kumar bly

    In sap gui use transaction crmd_order. For 'Find' option set 'All'. For 'by' set '2 Customer'. in field 'Buspartner' type the number of customer. Start the search and you will get all transactions.

  • Find option for  Catalog Selection

    Hi All
    In transaction code QS42, there is no FIND option for Catalog Selection list. Please advice whether it is possible to provide find option for catalog selection.
    thanks
    Ravindra Suvarna

    Hello Ravindra,
    In the transaction QS42, there is F4 help for Catalog.
    You can give serach parameters there and get the required catalog.
    Other than this if you want to change the selction parameters of the transaction QS42, then following are the steps -
    1. Tcode - QS42
    2. Menu Catalogs -> Selected Sets -> Display
    3. Selection screen will change accordingly. You can revert back to original screen similar way by the menu Selected Sets.
    If the above doesn't solve your query, plz elobarate your query.
    PS: If the answer solves your query, plz reward points.
    Regards

  • Hierarchy Node Variable search (find) option not working

    Hi Experts - I have created a hierarchy node varibale on a fixed hierarchy. When user run the report and click on hierarchy node variable selection option , A new window will pop up which has all the nodes.
    As the list is quite big and has many levels , On the same pop up , we have find option , when we enter any node in the find box , its always give a ABAP Dump , It never works for me...
    Is node find/search in not working in Bi 7.0 .
    Thanks
    R

    Hi Rohan,
    We can restrict the hierchey level at property of of the hiearchey enabled characteristic.
    Hope this hels...let me know if u require any further info on this..
    Best Regards,
    Maruthi

  • How to Find Out the Transaction No?

    I only have the initiator name and id.  This is the only information details that I got from my client.
    I don't know when he initiate it also.
    Is there a way that I can find out the transaction number initiated by using only the initiator id/name?

    Hello,
    I assume you're talking about workflows and you want to know the workitem id?
    To find workflows started by a certain user, you can look in table SWWWIHEAD
    where type = F and WI_CRUSER = username (without the US).
    regards
    Rick Bakker
    Hanabi Technology

  • Is it possible to burn playlists in MP3 format from i tunes to an external drive such as a USB stick.  I can only find options to burn to a CD

    hi there,
    New to these forums and communites and was just trying to get feedback on this question...is it possible to burn playlists in MP3 format from i tunes to an external drive such as a USB stick.  I can only find options to burn to a CD.
    If anyone can help[ that would be great.

    Melofthesea wrote:
    hi there,
    New to these forums and communites and was just trying to get feedback on this question...is it possible to burn playlists in MP3 format from i tunes to an external drive such as a USB stick.  I can only find options to burn to a CD.
    If anyone can help[ that would be great.
    Mel,  Sure, although that is "copying," not "burning."  It is easily done, as follows:
    Insert the USB stick into your computer, and open it up so it looks like a folder.  Highlight the songs you want in iTunes, and drag them into the folder.
    If you normally run iTunes in full screen mode, make it smaller so that you can do the drag.

  • How to include the insert picture option in the PDF form?

    Hi, Can some one please help How to include the insert picture option in the PDF form? I am using acrobat XI pro and trying to use an evaluation form which requires to insert product pictures.

    Here's a link to a previous topic where this was discussed: http://forums.adobe.com/message/6050458

  • Since i install the OS X v10.7 Lion on my IMac, i can´t open the finder option or any of my folders. plis help

    Hi,
    I just finish installing the OS X v10.7 Lion on my IMac, but i can´t open the finder option or any folder (documents, download, movies, etc). I´m going crazy because i need to open my files, plis some help here.

    go to disk utility and verify and repair your disks then run software update to get up to date with 10.7.2 then see if your issue is fixed.

  • Show in Finder Option Missing from Search

    I can't figure out how to find the "Show in Finder" option after searching for a file. Is there some new secret finger gymnastics option to get this to show up? It used to be all I had to do is right-click.

    I found "Show all in Finder" after scrolling down like you said. Unfortunately, that does not show those search results in the finder, it runs a new search and shows thousands of results that I have no interest in. What I want is the "Top Hit" usually, but it becomes a needle in a haystack after clicking "Show all in Finder". With trial and error I found that if I hold down the Command key, the tail end of the file path is shown in the preview window, but not enough to find the file and it is not clickable.
    Another thing I found is that if you click on the Kind section heading, it will run a search showing all documents of that kind -- also useless since there are thousands. Unfortunately clicking on "Top Hit" does nothing. Is it possible there is another secret way to get the functionality I want that used to be there?

  • Safari 7.0.4. Couldn't find option "Safari opens with:"

    I'm using Safari 7.0.4. Couldn't find option "Safari opens with:". I want to enable all my tabs and windows to be restored where I left off when I quit Safari. I can see that option in my iMac which is running at same version level.

    It should happen automatically, unless you checked the box marked Close all windows when quitting an application in the General pane of System Preferences.

Maybe you are looking for