SRM oneclient supplier synchronization : table BBPM_BUT_FRG0061 empty

Hello,
We are in the development system, using SRM one Client and our issue is
that the suppliers does not appear in the search help entry.
We have synchronised the vendor to business partners and assigned them
in our purchasing organization vendor structure (PPOMB_BBP).
The table BBPM_BUT_FRG0061 is empty.
We are using the Search Help BBP_BUPA_SOURCE_OF_SUPPLY
Included Search Helps
BBP_BUPA_VENDOR
BBP_BUPA_AVL
BBPH_BUHI_VENDOR
Could you help us beacause we are blocked to follow our implementation.
We Think that it could be an issue of liniking with of the vendor
structure with the purchase organization in SRM organization structure.
In theory the BBP_VENDOR_SYNC programme should do the job in a
separated server but it is not available in the add on SRM oneclient.
Could you help us because we are lost and late in our timing.
Thank you very much in advance for your quick answer.
Best regards,
Sylvain Chabrier

The change you have made through business partner maintenance in portal would result in table BBP_SENDMEDIUM.

Similar Messages

  • Supplier Registration Table

    Hello,
    We have created our own questionnaires at IMG SRM + Supplier Registration + Basic Settings + Create / Change Questionnaire.
    Where are loaded this data in SRM?. Which tables?.
    Thanks

    Hi
    <b>Please refer to following SRM Tables</b>
    Table Name           Short text                                                                               
    TUWS_DATA            XML Data                                                      
    TUWS_DATAT           Descriptions to TUWS_DATA                                     
    TUWS_FORMSERVICE     XML Data                                                      
    TUWS_FORMSERVICT     Descriptions to TUWS_FORMSERVICE                              
    TUWS_LDAPKEY         Assignment LDAP Server <-> Technical Key and Variant          
    TUWS_LDAPKEYLANG     Language Table for TUWS_LDAPKEY                               
    TUWS_LDAPVARIANT     LDAP Server Parameter Variants                                
    TUWS_LDAPVARLANG     Language Table for TUWS_LDAPVARIANT                           
    TUWS_SURVEY          Survey                                                        
    TUWS_SURVEYT         Descriptions for TUWS_SURVEY                                  
    TUWS_SURVEY_LOG      Survey Log                                                    
    TUWS_SURVEY_PUB      Survey Publishing                                             
    TUWS_TARGETHIER      XML Data                                                      
    TUWS_TARGETHIERT     Descriptions for TUWS_TARGETHIER                              
    TUWS_TAROBJ          Survey: Recipients                                            
    TUWS_TAROBJ_ATTR     Survey: Recipient Attributes  
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • Linking of ECC vendor with SRM ROS supplier in EBP

    Hello,
    How can we link manualy created ECC vendor with SRM ROS supplier in EBP, I dont have PI system.
    Thnks,
    Raju

    Raju the link is established basically (if i talk purely technical) in table VENMAP.
    it has 3 fields...
    partner guid| logical_system| vendor number(in logical system)
    so here
    partner_guid is the guid of the supplier in BUT000
    log_sys is the logical system to which you want it to connect it to(in this case ECC logical system)
    and vendor is the vendor number in that connecting logical system(means ecc vendor number)
    so this creates the link.
    but which version of SRM and SUS are you using?

  • I need to add check whether 21 fields of a internal table are empty or not.

    Hello,
    I need to add check whether 21 fields of a internal table are empty or not.How can we write a code for the same wand what would be the correct syntax for it.
    I tried entering all the fields in the IF loop with AND condition but its giving syntax error.Perhaps this is because the lenght of the IF condition would be more than the allowed one.

    Hi,
    After the select quiery.
    If not itab is initial.
    Message 'Table is not empty'    type 'I'.
    Endif.
    Regards,
    Jagadish.

  • How to find out that the database table is empty

    Hello all,
    How to find out in ABAP in the best performant way, that the database table is empty. The table could have several milions of records or be empty. SELECT count( * )  looks to me as not the best way.
    Kind regards
    Radim Benek
    Moderator message: FAQ, please search for previous discussions of similar topics.
    example: "SELECT SINGLE" vs. "SELECT UP TO 1 ROWS"
    Moderator message: Please Read before Posting in the Performance and Tuning Forum
    Edited by: Thomas Zloch on Aug 11, 2011 5:06 PM

    Hi,
    One approach is:
    check lt_mytable is initial.
    This will be true if there are no lines.
    Another:
    describe table lt_mytable lines lv_count
    if lv_count = 0.
    "Empty
    Thanks.
    Anitha a

  • Moving data between tables (how to find out if the 2nd table is empty)

    Hi,
    I have 2 tables, and I'm copying records from one table to another.
    I've followed the Wiki: [https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/movingdatabetween+tables]
    So far, everything works ok.
    Here is my question: how do I get the number of records passed?
    I mean, how do I know the number of rows in the 2nd table? (Remember that this number is variable, because it depends on how many rows I've inserted and deleted on the 2nd table).
    I've tried to achieve that using a data store with a numeric field, but I couldn't find the way to increment/decrement the numeric field on data store, and insert/delete the row on table at the same time .
    All I want is to find out if the 2nd table is empty or not.
    Any ideas to solve this?
    Thanks in advance!
    Help will be point-rewarded.
    Marcelo

    Hi Ahmed
    thanks for your reply, it was very helpful!! (I've assigned points to you)
    However the user can add twice or more times the same row... so the counter doesn't reflect the real number of rows in the 2nd table.
    I've partially solved this also using a data store with a parameter called key_list, where I add (I mean, concatenate) the key field for the selected row.
    So, if I have a table with 4 rows with key fields "key1", "key2", "key3", the parameter key_list would get "key1;key2;key3".
    So far, it's ok. But when I remove a row previosly added.... I can't remove the key from the key_list parameter. (I mean, from 2nd table I choose to remove the "key2" row, but I don't know how also remove the key name from the key_list)
    I hope be clearly enough.
    Any help will be really appreciated and point-rewarded.
    Thanks again.
    Best Regards
    PS: is there any way of "mark" a row that has been added to the 2nd table? I mean, using (for example) a hidden boolean field named "added", that becomes true when the selected row is added to the 2nd table.

  • Consuming Webservice in ABAP - ComplexType table is empty

    Hello,
    I've the following problem:
    I consume a webservice, which has two parameters as response-result. The first parameter is a simple type. The second parameter is a table type described as follows in the WSDL:
    - <element name="getVarListResponse">
    - <complexType>
    - <sequence>
    <element name="getVarListReturn" type="impl:ServiceResult" />
    </sequence>
    </complexType>
    </element>
    - <complexType name="ArrayOf_xsd_string">
    - <sequence>
    <element maxOccurs="unbounded" minOccurs="0" name="item" type="xsd:string" />
    </sequence>
    </complexType>
    - <complexType name="ServiceResult">
    - <sequence>
    <element name="_errorMessage" nillable="true" type="xsd:string" />
    <element name="_resultList" nillable="true" type="impl:ArrayOf_xsd_string" />
    <element name="_successfull_processed" type="xsd:int" />
    </sequence>
    </complexType>
    - <element name="getVarListFromDWDocument">
    - <complexType>
    - <sequence>
    <element name="dwdocumentID" type="xsd:long" />
    </sequence>
    </complexType>
    </element>
    - <element name="getVarListFromDWDocumentResponse">
    - <complexType>
    - <sequence>
    <element name="getVarListFromDWDocumentReturn" type="impl:ServiceResult" />
    </sequence>
    </complexType>
    </element>
    I created a proxy to consume this service. When I test the proxy directly I get the correct result displayed as XML (the response). When I try to call the service over ABAP code (use the proxy in a report), I've the problem that the complex-type table is empty. The simple type value is correctly filled.
    Does anyone have an idea which could be the problem? I guess the mapping of the XML response in the DDIC-types isn't working correctly, but I've no idea why.
    Thanks in advance
    Cunanan1980

    I solved the problem "accidentally": The name of the Webservice was to long! Changing the name from "EdilogUserManagementWebservice" to "UserManagement" did the trick.
    This is probably due to the restricted fieldlength of ABAP-programnames.
    Regards
    Jan Hempel

  • PI Development  to Transfer PO  from SRM to Suppliers through PI 7.1

    Hi,
    PI Development Question:
    I have requirement to Transfer PO Document(XML) from SRM 7.0 to PI and PI to Suppliers in cXML format. In PI , SLD I have created Technical and Business System for SRM System. I am planning to use HTTP adapter in cXML format to Suppliers. I have URL from Supllier Where to Post this PO Document. But When I am trying to Configure in SLD  for Suppliers( As Third Party Systems) its asking System Name and Host Name.
    Do I need to request Suppliers for Hostname and System name too regarding their system?
    For each supplier do I need to create a seperate Technical and Business System? If yes, When PO sent from SRM, based on Supplier on PO How to identify for whom I need to sent the PO(Purchase Order).?
    What is the complete process from SRM->PI -> Suppliers? If you have any steps or documentation for this please let me know.
    Thanks for your help!
    Thanks,
    Monica

    Hi Monica,
    Create one business system for SRM and for cXML suppliers. Use them for all the suppliers. For SRM you can assign the technical system giving the techincal details for SRM and for all suppliers you can create busniess system something like Sys_DCorpcXML  where D is for development and for Quaity you can give Q and P for production (you can cahnge according to your naming standards). Now assign the role as application system and the corresponding xi as integration server.
    > Do I need to request Suppliers for Hostname and System name too regarding their system?
    No need to ask them
    > ( As Third Party Systems) its asking System Name and Host Name
    Specify as I mentioned above
    > For each supplier do I need to create a seperate Technical and Business System?
    Use teh same business system for all the suppliers
    > how to identify for whom I need to sent the PO(Purchase Order).?
    Configure and route them in receiver determination based upon supplier no. etc.
    Regards,
    ---Satish

  • Function module table returning empty rows but export data is getting

    Hi,
    I am executing function module through JCO after setting importing parameter and when i retrieve the table i get table with empty data 0 rows but i am able get export parameter data . when execute the same function module in abap through sap gui i get table containing 5 rows. what may be the problem. please find below code 
          function = getDefaultJCoConnection().getJCoFunction("ZCRM_ICSS_PROJ_CUST_USR");
                function.getImportParameterList().getField("USER_ID").setValue("MLDL010");
                getDefaultJCoConnection().execute(function);
                exportTable = function.getTableParameterList().getTable("PROJCUSTLIST");
                int rowsNumber = exportTable.getNumRows(); // companies table number of rows
                log.error("rowsNumber----"+String.valueOf(rowsNumber));
      try
         if (rowsNumber > 0)
         int i = 0;
         do
         tempString="table valuesZCOMP_ID"(String)exportTable.getValue("ZCOMP_ID")"ZCOMP_SPC-"+(String)exportTable.getValue("ZCOMP_SPC")
                     + "table valuesZCOMP_DESC"(String)exportTable.getValue("ZCOMP_DESC")"ZPRICE-"(String)exportTable.getValue("ZPRICE")"---" ;
         log.error(tempString);
         while (exportTable.nextRow());
         catch (Exception th)
         log.error("The following error occured: while retrieving table values ", th);
    Do you have any idea where may be the problem
    Regards,
    Pavan
    Edited by: Pavan Reddy on Apr 10, 2010 4:46 PM

    Hi Pavan,
    This could be the case. The function module might be expecting a value converted into its format.
    By this, I mean that the function module might be expecting 0012345678 for 12345678 (Where data element of the ID is of type CHAR 10 ).
    Please check if it is so.
    Best Regards,
    Kris.

  • Table BWFI_AEDAT empty?

    Hi Guru's,
    I am loading DS 0FI_AP_4 into our BI7 system.  However, I notice that even after running an init load and then a delta the next day, that the BWFI_AEDAT table is empty.
    I perhaps do not understand the purpose of entries in this table?  I thought it was to store all rows already transferred via the delta load (for use in a repeat delta if required) if the corresponding date was still available in the BWOM2_TIMEST table for this DS?  And also for failed rows requested on a prior delta request?
    If not, is there any config I need to do to enable entries to get written into this table?  Our BI system is fairly new and perhaps not fully set up, so maybe we still need to do some config settings?...
    Thanks!
    Darryl

    Hi there,
    Both 0FI_AP_4 and 0FI_AR_4 need to be run only after running 0FI_GL_4.
    Did you run 0FI_GL_4 first?
    Check in here:
    [http://help.sap.com/saphelp_bw33/helpdata/en/3f/fbf83a0dfa5102e10000000a114084/content.htm]
    In particular it says this:
    Features of the Extractor
    As the strict connectoin of DataSources has been abolished as of PlugIn2002.2, you can now load 0FI_GL_4, 0FI_AR_4, 0FI_AP_4 and 0FI_TX_4 in any order you like. You can also use DataSources 0FI_AR_4, 0FI_AP_4 and 0FI_TX_4 separately without 0FI_GL_4. The DataSources can then be used independently of one another (see note 551044).
    Note
    As soon as DataSource 0FI_GL_4 has been loaded, it is the leading DataSource with regard to accruals, such as the time and date (CPU date) by which extraction should be carried out.
    From the transition of the data requirements in Delta-Init-Modus to Delta operation therefore, the data requirement in Delta mode 0FI_GL_4 should take place first.
    Connecting the DataSources in delta operation helps to ensure consistent extraction of FI data. Consistency must be ensured using the Init selection criteria.
    Diogo.
    Edited by: Diogo Ferreira on May 27, 2009 4:05 PM

  • How to disply the input text box when the data in the table is empty

    Hi,
    I m using JDeveloper 11g 5.1.1.1 : How to display the Input text box when the data in the table is empty or by using the dual table.
    Since there is no record in the table, screen is displying only the lable. not displying the Input text box.? Any property is there to enable?.
    One more case i tried by using dual (eg Select '0' as name from dual) created one view object and dragged in the JSF screen as input combo box with list of values.
    In this case also it is not displaying the combo box.Just displaying the Lable name and 0 only.
    Regards
    Bijesh K

    Hi,
    I didn,t get you.Could you please explain. I am not choosing the ADF table. Selecting and dragging ADF form only.
    Regards
    Bijesh K

  • Internal error occured when table is empty

    I got a internal error when I have a master/detail
    page without a search page and the master table and detail table are empty
    If i insert 1 record in master table everything goes fine
    Is this a know bug

    Edwin,
    Yes, this scenario will result in an internal error because we try to retrieve the child rows for a "null" master datasource.
    We will look into this how it best can be fixed for the next release.
    Work around is to change the layout style of the master-group to "select-form", or add a find page.
    Steven Davelaar,
    JHeadstart Team.

  • Global temporary Table-Table becomes empty

    Hi,
    I have used global temp table on commit preserve rows.
    During initialization of the screen i'm creating temp tables and all the manipulation done on
    screen has been stored on temp table ,
    at the end of all the insert and delete operation i'm retrieving it from temp table and displaying
    it in the screen,at some point of time the temp table value is lost.So nothing is been displayed in
    screen.
    I tried to find out the problem according to me the session got expires coz of that the value in
    the temp table becomes empty and last value inserted is stored.
    can anyone help me out to solve this problem it will be great to get a help.

    What is your application architecture?
    Are you using session-pooling. If so that would explain it: very likely the request that finds the empty temp-table, is being serviced by a different database session, than the one that originally created the contents of the temp-table.
    Temp-tables are database-session specific: db-session X cannot see the contents of some temp table in db-session Y. db-session X has it's own copy of that temp-table.
    Toon

  • Sending Bids from SRM to suppliers and receiving responses

    Hi Experts,
    Help me with a suggestion for sending Bids from SRM to suppliers and receiving responses - preferably through email adapter.
    Regards,
    Hemanthika
    Edited by: hemanthika patnaik on Apr 28, 2008 2:24 PM

    Sorry for the delay,
    I have worked in a similar integration with SRM - XI, but the only difference is that we used Proxy -- HTTPS for Purchase Order Request.
    In your case it would be:
    1. Create custom IDOC and Message type.
    2. Find the triggering process from the SRM side, trigger the IDOC from SRM.
    3. Generate the partner profile and ALE config.
    4. Import the custom IDOC in XI.
    5. Use a map in XI to convert the IDOC data to customer format.
    6. Use  HTTP adapter to connect.
    7. In the HTTP adapter you can use url method or the RFC destination to do the connectivity. ( I would recommend using the RFC destination to do it.)
    8. You should be receiving an acknowledgment from the customer when the document is posted at their end.
    9. The response is either 200 for successful transmission. It would be 400 or 500  for errors.
    10. Use the response message to do a message map with the mail adapter.
    11. Generate the content of the mail adapter using the message map.
    12. In the message map ideally you should use Value mapping to generate the   TO and FROM data. (This enables you to change the receipients while in development and production without changing the message mappinng program.)
    13. Use mail package in the Mail adapter to send the mail content to the business users.
    Hope this helps.
    Indranil.
    Award points if this helps

  • Requests are green in the infocube but the E- and F-table are empty???

    Hallo Experts,
    we made an upgrade from 3.5 to 7.0 and have therefore a testsystem (after systemcopy we made the upgrade technical).
    So it looks good. But one InfoCube looks bad. The dim-tables are alright but the E- and F-tables are empty. So the administrator and the user doesn´t´t get data from this cube. Can someone help? You can see the copied requests and the data and we already load data but you just got the new data (after system copy).
    Thanks Santra

    You have two ways to nail this issue
    1. Use transaction SE38 to run the "SAP_FACTVIEWS_RECREATE" ABAP report.This report creates "factviews" for all InfoCubes in the system, in case these are not available.This is the fastest method.
    2. Reactivate the affected InfoCube.This may take a long time if the InfoCubes have already been filled.In this case, you should switch to option 1.
    Hope it Helps
    Chetan
    @CP..

Maybe you are looking for

  • Is it possible to find readable info in safari cache

    We are using Safari the OS is Leopard. I wondered if it is possible to view a web page off line from the Safari Cache in a readable form for non techies. We know the date & time we visited the page The information we want is the kind of info we can v

  • Multiple Click boxes in Captivate 5

    Hi I'm a new user of Captivate (using 5) and trying to figure out capabilities and suitability to my needs.  I've also searched through the forum and can't find similar so I apologise in advance if this has been answered. Ideally I would like to prod

  • How to store Invalid Dates in SQL Server 2008

    Hi, I have SQL Server 2008 and My table has start_Date and end_date column which is DATETIME datatype. Somehow my table is having invalid dates which is lesser than 1753-01-01 00:00:00.0 range. I want to know how this date get inserted in the SQL Ser

  • Duplicate iPhoto Events issues...

    I have duplicate events and when I try to delete one and clear the trash it deletes all my originals!!! (since both events point to the same photos...). How can i delete the event without removing all original files? Is there a way to modify the even

  • Front Conroller Performance issue

    We consider using a front controller servlet as the entrance to the web server. We could allow direct access to more then one conroller. We would like an advice regarding to performance - would it be better to use a few controllers to reduce load on