Master data Synchronizing program in BCS

Hi,
When i executing Master data Synchronizing program:UGMD_BATCH_SYNC .Where i got the selections
and i have given below selection conditions to run the program.
application = 10
application area = FL
Field Name = /1FB/COMPANY
Synchronization Mode:You can use either  supplementary synchronizing or Full synchronizing.
Which synchronizing mod need to use to synchronize the masterdata.
Is it fine if select Field Name = /1FB/COMPANY ? in the selections.
I have added new cost centers in cost center hierarchy i am executing the program to synchronize the mastered between BW and BCS.
Please some one advise me in this scenario

Dan,
Replicate in BW  where all the fields are not replicate mode except item.
When i was try to load the data where i am not able to load data for new company 100 and warning is saying these records are ignored.
The error message
5 of 5 data rows were ignored
Message no. UCF7017
Diagnosis
A total of 5 data records were read from file C:\Documents and Settings\Laxmikant.dube\My Docume. Of those, 5 records contain parameter settings that exceed the user limitations for executing the data collection task.
System response
The ignored records were not checked any further and will not be written.
Procedure
Make sure that the ignored records are irrelevant for the current task. If some of the ignored records were supposed to be written, then the file probably contains an error.
In this case, closely examine the settings for the fields Version, Fiscal Year, Period, Group Currency, and Consolidation Units in the file.
If you have more than one characteristic with the role consolidation unit (a socalled "matrix organization"), also check whether the settings in the ignored records refer to valid combinations of consolidation units.
What would be the issue?
Edited by: Prasad B on Oct 7, 2008 7:16 PM

Similar Messages

  • Master data dealetion program

    hello friends,
    I have to create one program,in which whatever data range will enter by user in selection screen those master data will be delete from the master table.
    Can you please tell me the logic behind that....
    Thanks in advance

    Hello Amar,
    You can delete the data from master data.
    Before deleting, you need to lock the table and after deleting you need to unlock the table.
    Here is one sample code which ii used for deletion of material numbers from master data MARA..
    REPORT y16v_update_zvleknvv1.
    TABLES: mara.
    SELECT-OPTIONS: s_matnr FOR mara-matnr.
    START-OF-SELECTION.
    Lock the table*
      PERFORM lock.
    Deleting the records from the Table*
      DELETE FROM mara WHERE matnr IN s_matnr.
      IF sy-subrc EQ 0.
        WRITE 'Deleted'.
      ENDIF.
    Unlock the table*
      PERFORM unlock.
    *&      Form  LOCK
          Lock the Database Table*
    FORM lock.
      CALL FUNCTION 'ENQUEUE_E_TABLEE'
           EXPORTING
                mode_rstable   = 'E'
                tabname        = 'MARA'
           EXCEPTIONS
                foreign_lock   = 1
                system_failure = 2
                OTHERS         = 3.
      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.                    " LOCK
    *&      Form  UNLOCK
          Unlock the Database Table*
    FORM unlock.
      CALL FUNCTION 'DEQUEUE_E_TABLEE'
           EXPORTING
                mode_rstable = 'E'
                tabname      = 'MARA'.
    ENDFORM.                    " UNLOCK
    Its working.
    Reward If Helpful.
    Regards
    Sasidhar Reddy Matli.
    Edited by: Sasidhar Reddy Matli on Jan 24, 2008 3:33 PM

  • Creation of Location Master Data

    What's the transaction code for creating Location master data or program SAPL0A02? Has anyone tried to do LSMW or SCAT for uploading hundreds of items?

    Hi,
    If I am correct we can create locations through SPRO transcation.
    Enterprise Structure>Definition->Logistics General--> Define location.
    Here we can create number of locations on plant wise.
    The key in this field indicates a location within a plant.
    You can use the location to set up a plant according to space and local area. You can assign an address to a location.
    The following master data objects can be referenced to a location:
    Asset master records of asset management
    Equipment
    Functional location
    Work center
    Production resource/tool
    Regards
    Srinivas

  • HR Master Data Export error

    Hi all,
    I'm working at a client where we upgraded from 4.6 to 6.0. This client has never used the master data export program.
    I'm trying to configure the master data IDOCs, but I'm having an error when running the program RPCEMDU0_CALL. It refers  to an OSS note back in 2001, so that really does not apply to this installation. The problem seems to be with function module HR_PU12_UPDATE_T532K_T532L on IT0106. Some sort of data dictionary discrepancies. I haven't been successful in finding any newer notes related to this.
    Has anyone experienced this problem before?
    Thanks in advance for your response.
    Cesar

    Hi Bernd,
    Thanks for your response. I looked at that OSS note but it doesn't seem to be realted to the problem I'm having.
    The error reads:
    "Export program terminated   A009
    Export program obsolete, regeneration required
    Do not regenerate immediately: First make a  $STRUC_P0106 back up of the include
    PERNR N 000008 000000
    (See note 375108) This include is very important if old cluster IF records"
    I've re-activated the program and interface formats, but still getting the same error.
    Thanks again,
    Cesar

  • Master Data Export - PC00_M10_OTEM - Information

    Does anyone know where or if there is any detailed documentation on using the standard delivered Master Data Export program?  We are currently using it in production but have questions as to what/when/why certain information is picked up passed to ADP.

    Thanks for the information!  But I'm looking for more details such as:
    What triggers an IDoc to be created for an individual?
    How does the program pick which items get included in the IDoc?
    How do I trouble shoot why information came over, why some information keeps coming over or why some information isn't coming over?
    We keep seeing unexpected things coming over in our IDocs even though nothing was changed.

  • Loading Master Data - Help

    Hello Friends,
    I have a current program loading Master Data through program.... basically it loads data reading from multiple ODSs and master data tables into another ODS through ABAP program ... during this process it also loads the Masterdata (i have the sample Master data load part below...).
    Now my question is, instead of loading like this, can i just bring the BC object 0MATERIAL and assign the other related objects (please check the sample code below..) as the attributes and load data to this 0MATERIAL...
    Can i do this ?
    also which one is better on performance aspect ?
    All useful answers would be awarded points ...
    *Material Related Information (ITAB6).
    SORT ITAB BY MATERIAL.
    SORT ITAB6 BY MATERIAL.
      LOOP at ITAB.
        Read Table ITAB6 with Key MATERIAL = ITAB-MATERIAL Binary Search.
            IF ITAB-MATERIAL IS INITIAL.
                ITAB-/BIC/GPRODCTGY = ''.
                ITAB-/BIC/GPRODCD = ''.
                ITAB-/BIC/GPRODFAM = ''.
                ITAB-/BIC/GPRODGRP = ''.
                ITAB-/BIC/GPRODPLFM = ''.
            ELSE.
                ITAB-/BIC/GPRODCTGY     =     ITAB6-GPRODCTGY.
                ITAB-/BIC/GPRODCD     =     ITAB6-GPRODCD.
                ITAB-/BIC/GPRODFAM     =     ITAB6-GPRODFAM.
                ITAB-/BIC/GPRODGRP     =     ITAB6-GPRODGRP.
                ITAB-/BIC/GPRODPLFM     =     ITAB6-GPRODPLFM.
            ENDIF.
         COLLECT ITAB.
          MODIFY ITAB TRANSPORTING  /BIC/GPRODCTGY
                                    /BIC/GPRODCD
                                    /BIC/GPRODFAM
                                    /BIC/GPRODGRP
                                    /BIC/GPRODPLFM.
          CLEAR: ITAB, ITAB6.
       ENDLOOP.
    Cheers,
    Happy One ..
    Message was edited by: HAPPY ONE

    Thank you Mate ...
    Will do that and will come back if i have more trouble
    Thanks for your assertion.
    Cheers,
    Happy One.

  • Activating Master data time out problem

    Dear all,
    when i try to activate master data, it gives error message "time out" . in which tcode i can increase tha time out duration?
    Thanks

    Hi John,
    Please check the thread below:
    Activate time-dep. master data (0EMPLOYEE)
    This also  suggests to run the master data activation program in background, This will solve your issue,
    -Vikram

  • SEM-BCS on SAP-BW master data alignment

    We are implementing SEM-BCS rel 3.2 on SAP-BW 3.2
    In the SEM infoproviders some standard BW info-objects are used such as 0CO_AREA, 0COMPANY etc.
    These info objects are also used in BW infoproviders.
    In SEM-BCS the masterdata that is already available in these infoobjects is not visible. The documentation describes that the SEM system is leading concerning the master data.
    When we create masterdata in SEM for these infoobjects, with te same key as used in BW (the same company number), it creates new records in the BW masterdata table and so deleting the attribute values in the BW tables.
    Note 689229 describes some synchronization programs that can be used to synchronize master data from SEM into BW. It is also possible to use these programs to initially synchronize the BW masterdata to SEM so you don't have to create the master data in SEM but only have to enhance it.
    Has anyone have experience with this issue and can you provide me with information what to do and what not to do.
    Thanks, Wil Heijmans
    Trespa International

    Hi Wil,
    it's right you'll have to synchronize the master data. When we implemented SEM-BCS 3.1 we had some problems with the reports so we used the following routine.
    1. Upload attributes into SEM-BCS.
    2. Put them into the hierarchies if needed.
    3. Synchronize attributes to BW.
    4. Do attribute change run in BW.
    Synchronizing hierarchies was a bit painful so we decided to use different hierarchies (it helped at some other points too because we needed additional features in BW hierarchies like other InfoObjects).
    Synchronizing BW attributes into SEM-BCS attributes was even worse because the standard BCS attributes could not be filled this way.
    We worked on early SEM 3.1 as one of the ramp-up customers. The programs may have changed in the meantime but the one above has worked for us.
    Best regards
       Dirk

  • Master Data synchronisation between BW and SEM BCS

    Hi,
    Can any one guide me how to synchronize data between BW and SEM BCS.
    Master data like Cost centre, Segment, Profit centers and all other sub assignments are created in BW  from source ystem i.e SAP.
    Now when I upload data into BCS, i am facing errors l;ike master data doex not exists.
    Currently I am Flexible upload for updating into BCS.
    So pls suggest me hoe to proceed this approach in Production? IS there any synchronisation program which does this automatically from BW to BCS?
    Regards,
    Richard

    Hi Scotsman,
    The issue is, here we have created Sub Assignments, where the master data for these sub assignments will increase on daily basis.
    Can say atleast 50 Sub assignmenrs are created as new master data, example: Customer is a sub assignment, but it is assigned only for few accounts, so taking sub ledgerlevel data inco is not an issue.
    Now when transaction data is posted in to BCS, the sub assignments master data is created automatically.
    Now the question is how to get the data in BW for the specific sub assignmnets into BCS.
    Currently I planned to use the [program UCMDSYNC to do this.
    Pls do suggest me if any other option available for me.
    Thanks in Advance,
    Richard

  • Automatic Payment Program Master Data Validations

    Hi,
    We´re configuring a new payment method for our company code (payment method T - bank transfer). We are using program RFFOM100 to generate the file that has to be sent to the bank. We had to enhance this program because the format of the file that our bank uses differs from MT100.
    Now, the automatic payment program validates certain data before it allows an automatic payment to be posted, in particular it checks vendor master records to see if it has the necessary information to fill the MT100 format. Our bank's format doesn't require the same information that the MT100 format requires.
    ¿How can I stop the automatic payment program from checking for certain information in the vendor master data?
    Hope you can help
    - Julio

    Hi Rudra,
    your Question:-
    in Vendor Master we have bank details section.for the vendor to be picked in APP, There the bank should be maintained, which is maintained in FBZP. Please correct me if I am wrong.
    In FBZP, we maintain the Bank Accounts which we own and in vendor master we enter the Bank Account No.'s held by the vendors with their banks and this has got nothing to do with House banks that we maintain in FBZP. In some of the cases, the bank key may play a common role.. but this also depends upon bank key, its usage, design etc..
    Does the Payment Method have any role to play here?I mean if the payment method is Q(cheques) , is it not needed to maintain the bank details in Vendor Master?
    In FBZP, go to Pmt methods in a country.. There you will find a section which says, "Required Master Record Specifications". In configuration, you define for a Payment method, what the system should check, so if you have specified against a Pmt Method, that Bank Details>Account Number Required is a mandatory field, then system will check otherwise not. Usually, in case of Checks, we do not tick this as Vendor Bank Account No. has no relevance in case of check payment.
    Regards,
    SAPFICO

  • Updating Q and P table of master data using ABAP program

    Hi All
    I have a requirement to update Q and P table(non key and non date fields) of master data using an ABAP program.
    Is this something recommended?
    Will there be any issues if I do that?
    Thanks
    Deepak

    Thanks Vikram. Ok. My look up is on some other master data Q table and that is the reason why I asked about ABAP custom program.
    Look like I will have to do the following approach.
    Load the required supporting master data to BW.
    Execute Attribute change run process for those master data objects.
    Load the actual master data and look up on supporting master data.
    Execute attribute change run process.
    This process takes me long time and I am trying to reduce the overall execution time. let me know if you have some good suggestions.
    Thanks
    Deepak

  • BCS - master data change in productive system?

    Hi group,
    We are about to go live with our BCS system, but of course someone got the great idea of changing the company code currency for one of the "non-SAP" companies in the group since the sytem was set up.
    When I enter the consolidatin workbench in our production system, everything is considered customizing, so no changes are allowed - even to master data. I''ve searched the "Object changeability" settings of the BW system but couldn't find any settings regarding BCS. I also checked settings in se06 and found a namespace "/FINB/" which I suspect has something to do with BCS (currently set to "Not modifiable")?
    What are the correct system settings for the BCS system to function correctly, and what is the normal procedure for maintaining master data in SEM-BCS? - by transport requests or by changing directly in the productive system?
    Best regards
    Thomas
    P.S.: Are there any usefull resources for BCS on the Internet? The help in the system is very limited and I can't find anything on the SAP marketplace.
    Message was edited by:
            Thomas Ringe Pontoppidan

    Hi Dan,
    Example: you have a single selection containing a set (not range) of separate values. Then you decided to change the set (adding one more value, for example). Are you saying that this single selection change in DEV will be reflected automatically in PROD? 
    From my experience I know that while using single selections, the system replaces it by the set/range/node. And when a single selection was changed, nothing yet happened with elimination settings using SS. You have to go into each part of the settings in the method and refresh the SS. You'll see that only after that the set of values was changed. It's obvious for me that if I don't do this refreshing in DEV and then import the request into PROD, I'll have the old, not modified, version of my settings.

  • Program to update info record with material master data

    I am trying to determine if there is a standard SAP program that can be run as a batch file  to update the fields in the info record with the same fields that are in the material master?  ie:  Planned delivery time, Tolerance, purchasing group etc.

    Hi,
    There is no standard report or transaction that can do this.
    The data from these fields in the material master is brought in as a default to the info record when it is created. beyond this point the Info record is treated as being the correct data regardless of what happens to the material master data and so no updates occur in the standard system.
    It would not be difficult to build an LSMW job to copy the data from the material master to the info records and this would be the recommendation if you want to do this.
    Steve B

  • Why we will prefer our own programs to load master data .

    Hi gurus ,
    What are the techniques involved in using SAP supplied programs
    why we will  prefer to write our own programs to load master data.
    Thanks and Regards :
    B.Madhu sudhan reddy
    Moderator message - Please ask a specific question - post locked
    Edited by: Rob Burbank on Dec 2, 2009 9:20 AM

    Hi Madhu,
        Sap has already have their own predefined upload programs in LSMW for Master Data .
    Techniques To Load Master Data in SAP :
    1) BAPI
    2) LSMW
    3) BDC (Call Transaction & Session Method)
    Regards,
    Sudhakar Reddy.A

  • BCS and BW Master Data Synchronization

    Hi,
    Consolidation Unit master data text in BCS and BW is not synchonized. They have different text.  Text in BCS is correct but not BW.
    Can you please advise.
    Regards,
    UR

    Narayana Murty,
    since you represent an SAP, please be especially careful in giving advice.
    An RFC-connection in the Data basis definition is not mandatory:
    The consolidation system (SEMu2013BCS) uses precisely one RFC destination to SAP NetWeaver Business Intelligence (BI). This RFC destination is used to transmit the transaction data to the consolidation system. If you do not specify an RFC destination, the system uses the BI located in the SEM system.:
    http://help.sap.com/saphelp_sem60ep1/helpdata/EN/9d/f4783b5fed4834e10000000a114084/frameset.htm

Maybe you are looking for

  • Suppressing Applet alerts when using java mail api

    Hi, Im using the following code to send email from my application. Im using JSF (tomahawk), Spring and hibernate in my application. I'm using spring email API classes to send email. This code works perfectly fine in the sense its parsing template and

  • How do you go back to a previous version of osx mountain lion

    As the new upgrade to maverick does not work with several programs on my mac, magic mouse, neat receipts, kaspersky internet security and probably others.

  • PC suite error message

    i just upgrade my pc suite from v6 to v7 just now. no problem appear on 1st sync with my pc. after make some modification on my calender, this message pop out during sync with pc.... unable to load resources: C:\PROGRAM FILES\NOKIA\NOKIA PC SUITE 6\L

  • Installing Smart Card Reader Software

    I'm trying to install a cherry smart card (CAC) reader on my iMAC G5 OSX 10.4.11. I have downloaded the driver but see that I need to install PCSC lite 1.1.1 of PCSC Framework before loading the driver. To load those middleware products I have to per

  • Ipod Touch - recovery and restore does not delete unknown Restrictions Code

    Hi, I'm sure this has been answered hundreds of times already. Having put into recovery and restored on numerous occasions, I find that ipod is still in '10 failed attempts' on wanting to enter passcode (whether it's Restrictions or Reset).  All info