Problems with CIF (Logical system not assign to BSG)

Hello,
We are sending all master data from ECC to APO. We set up the CIF in DEV and all worked fine. But when we try to send the data from ECC to APO in QA an error appears. It says that the logical system is not assign in the BSG. Apparently the configuration that we have in DEV is the same that we have in QA. The logical systems in all instances (DEV & QA) have the same name. Could this be the problem?
Thanks,
David

Hi David,
1) Check whether BSG is defined in customisation under the below
link
SAP - Implementation Guide > Integration with SAP Components
     >  Integration via APO Core Interface (CIF)    >
    Basic Settings for Creating the System Landscape   > Maintain Business System Group
2) Check the BSG is assinged to the logical system under the
spro transaction
SAP - Implementation Guide > Integration with SAP Components
     >  Integration via APO Core Interface (CIF)    >
    Basic Settings for Creating the System Landscape   >
Assign Logical System and Queue Type
3) Check BSG is showing in APO material master for a location
product under "Properties" tab.
Regards
R. Senthil Mareeswaran.

Similar Messages

  • Cost center integration with HR - logical system for CRT inconsistent

    Hi there,
    we are distributing Cost centers from our SAP ERP system to another SAP HR system via ALE [COSMAS01 basic type].
    The cost center created in target system contains information about source system logical system name - table CSKS, field LOGSYSTEM.
    This is causing problems in Travel Managment in SAP HR system, where we get the error: Logical system for CTR inconsistent.
    Cost centers created/changed in HR system does not contain any value in CSKS-LOGSYSTEM field and work fine.
    Any ideas how to solve this issue?
    For now to fix the issue, user needs to do a phony change in SAP HR system to get rid of original LOGSYSTEM value.
    I am thinking about removing field E1CSKSM-LOGSYSTEM from COSMAS IDoc but I gues there must be simpler soloution.
    Thanks for your advices,
    Igor

    Igor :
    I think this has something to do with matching logical system with controlling area in TKA01. Another option for cc's logical system to have no values when outbound ALE is to config V_TKA01_ALE (so it will be transported to the system that has cc ALE to other systems) to have field 'ALE Distribution Method' blank (No distribution to other system).
    This way, when SAP is creating outbound idoc for COSMAS, field CSKS-logicalsystem will not be populated (logic is in SAP 'MASTERIDOC_CREATE_COSMAS' , around line 86).
    Rgds.

  • Error:System not assigned to a host

    Hi,
    I am trying to download maintenance stk SRM 7.0 SPS 5.0, via solman, but I am getting the error called  "Error:System not assigned to a host" in the stage where solman looks for OS/DB dependent files.
    When I go back and check the entries in SMSY, all the relevant entries are present there..
    Could anyone has encountered this before?
    Thanks
    Abhishek

    >
    Abhi wrote:
    > Hi,
    >
    > I am trying to download maintenance stk SRM 7.0 SPS 5.0, via solman, but I am getting the error called  "Error:System not assigned to a host" in the stage where solman looks for OS/DB dependent files.
    > When I go back and check the entries in SMSY, all the relevant entries are present there..
    > Could anyone has encountered this before?
    >
    > Thanks
    > Abhishek
    Hi Abhisek,
    are you sure that is in TX "smsy -> Systems -> <your SID> -> logical Component -> Header Data" an entry at the field "message Server" ?
    I think that is meant with host.
    regards
    Tobias

  • Problem with looping logic

    Hello all,
    Ok reposted using code tags, sorry about that.
    I'm trying to write some code to take in a 2D int array, loop through the array to identify where certain blocks of numbers begin and record that location so that I an jump straight to it at a later time. The number blocks go up iteratively from a point from 0 to 9 and are surrounded by nodata values(-9999).
    The problem is that when I print out the numbers they are only being recognised up to 6 (7th number) and when I check the locations against the original text file they dont match. I think it's just a problem with my logic but I'm not sure why.
    The text file is converted to ints and placed in an array from a buffered file reader in a seperate class. I can put this up if needed.
    Any help would be much appreciated.
    Thanks.
    Duncan
    *  Class imports text file which contains a collection of values, either nodata(-9999) or a location
    *  represented by numbers moving away from a point; 0 closest then 1, then 2 etc.
    *  records the first location of each number to avoid having to loop through the whole file each time.
    *  i.e. can later jump straight to the first recorded location of each number.
    *  In current text file there are 10 numbers(0 - 9) but for some reason it stops finding them after
    *  6(seventh no.) and having checked the location values against the original text file these are wrong
    *  by a fair way as well.
    import java.io.*;
    //import java.awt.*;
    //import java.awt.event.*;
    public class Hydrograph {
         int width = 0;
         int height = 0;
         int dZeroC, dZeroD = 0;
         int dOneC, dOneD = 0;
         int dTwoC, dTwoD = 0;
         int dThreeC, dThreeD = 0;
         int dFourC, dFourD = 0;
         int dFiveC, dFiveD = 0;
         int dSixC, dSixD = 0;
         int dSevenC, dSevenD = 0;
         int dEightC, dEightD = 0;
         int dNineC, dNineD = 0;
         public Hydrograph() {
              /* Ignore this bit it's being used for something else
              //File file = new File("c:/Users/Duncan/Documents/MODULES/MSc Dissertation/Code/A1.txt");
              //File file = new File("M:/java/code/A1.txt");
              ArrayRead ar = null;
              ar = new ArrayRead(file);
              int rows = ar.getRows();
              int columns = ar.getColumns();
              int steps = ar.getSteps();
              int[][][] threeDIntArray = ar.getThreeDIntArray();
              // Creates a new instance of delay class which takes in a text file and converts
              // it to int form, placing it into a 2D int array.
              Delay dLay = null;
              dLay = new Delay();
              width = dLay.getWidth();
              height = dLay.getHeight();
              int[][] twoDDelayFile = dLay.getTwoDintArray();
              int delayCount = 0;
              // Loops through 2D int array to identify when number first equals 0, then passes
              // the height and width values to storeDelayPos method below. Then finds for 1, 2
              // 3, 4,...etc by adding 1 to delayCount.
              System.out.println(" ");
              for (int a=0; a<width; a++) {
                   for (int b=0; b<height; b++) {
                        if (twoDDelayFile[a] == delayCount) {
                             int c, d = 0;
                             c = a;
                             d = b;
                             storeDelayPos(c, d, delayCount);
                             System.out.println(delayCount);
                             delayCount++;
                             break;
                   //System.out.println(" ");
              System.out.println(" ");
              System.out.print(dZeroC + " " + dZeroD);
              System.out.println(" ");
              System.out.print(dOneC + " " + dOneD);
              System.out.println(" ");
              System.out.print(dTwoC + " " + dTwoD);
              System.out.println(" ");
              System.out.print(dThreeC + " " + dThreeD);
              System.out.println(" ");
              System.out.print(dFourC + " " + dFourD);
              System.out.println(" ");
              System.out.print(dFiveC + " " + dFiveD);
              System.out.println(" ");
              System.out.print(dSixC + " " + dSixD);
              System.out.println(" ");
              System.out.print(dSevenC + " " + dSevenD);
         // Takes in width, height and delayCount value and sets variables according to
         // the value of delayCount.
         void storeDelayPos (int setC, int setD, int setDCount) {
              int dCount = 0;
              dCount = setDCount;
              switch(dCount) {
                   case 0:
                        dZeroC = setC;
                        dZeroD = setD;
                        break;
                   case 1:
                        dOneC = setC;
                        dOneD = setD;
                        break;
                   case 2:
                        dTwoC = setC;
                        dTwoD = setD;
                        break;
                   case 3:
                        dThreeC = setC;
                        dThreeD = setD;
                        break;
                   case 4:
                        dFourC = setC;
                        dFourD = setD;
                        break;
                   case 5:
                        dFiveC = setC;
                        dFiveD = setD;
                        break;
                   case 6:
                        dSixC = setC;
                        dSixD = setD;
                        break;
                   case 7:
                        dSevenC = setC;
                        dSevenD = setD;
                        break;
                   case 8:
                        dEightC = setC;
                        dEightD = setD;
                        break;
                   case 9:
                        dNineC = setC;
                        dNineD = setD;
                        break;
                   default:
                        System.out.println("OUT OF BOUNDS");
                        break;
         public static void main (String args[]) {
         new Hydrograph();

    Hi,
    I am working on a hydrograph program in java as well... I am trying to represent rainfall data. Do you think that you could share some of the code that you came up with, so that I don't have to go through the whole process.
    thank you so much,
    Kevin

  • A problem with the cooling system has been detected

    I bought a new computer not to long ago, I've had it for almost a month now. It runs fine, and I've had no problems until not too long ago. I was playing a game, and I got a random error message: "A problem with the cooling system has been detected. Please turn off the computer immdiately, and return it for service." I don't understand how or why this came up, and I don't have any money to return it for any type of repairs. After I got this message, I left my computer off for about an hour. All seems well so far. Any suggestions?

    What laptop do you have?
    - Peter

  • Logical system not defined in table SMOF_ERPSH!

    Hello,
    In the inbound queue of CRM, the queues are in 'SYSFAIL' status. The error message is ' logical system not defined in table SMOF_ERPSH!' .
    the table has an entry for relevant ERP system.
    I dont know where else to check.
    I have checked the logical destinations on CRM and it is defined correctly.
    can anyone help me here.
    Regards,
    Pratima

    Hi Pratima,
    I am also facing the same issue. I checked all the entries and Entries are there in the respective tables but still the same issue.
    But if I delete the queue, the changes are replicated for that time but after some time again the queues are getting blocked with the same issue.
    Pratima, can you please tell you whether your issue got fixed on this.
    Thanks,
    Sharath.

  • Problem with the EFI system partition's file system.

    I installed latest yosemite 10.10.2 update - did a verify disk on “WDC WD1001FALS-403AA0 Media” (internal HD on my iMac 21.5-inch, Mid 2011) and got
    Problems were found with the partition map which might prevent booting
    Error: The partition map needs to be repaired because there’s a problem with the EFI system partition’s file system.
    However a verify disk on the volume partition gets a clean bill of health!
    I haven't done a 'repair disk' yet. Thought I'd check if anybody else has same message first.
    Cheers

    I had issues where my MacPro 8-core would not boot after the 10.7.4 upgrade, but my MacBook Air 13" 2011 upgrade worked just fine.
    I had to restore my MacPro HD from my TimeMachine back up. Apparently, the Softraid raid drivers that I use on my MacPro are not compatible yet with 10.7.4. See here for more info:
    http://macperformanceguide.com/blog/2012/20120511_1-MacOSX-SoftRAID.html
    I contacted Softraid and they are already aware of the issues and are working with Apple for a fix.
    Cheers.
    Bud

  • Problem with transforming coordinate systems

    Hiho,
    i've got a problem with transforming coordinate systems.
    When I'm trying to transform a sdo_geometry object to another coordinate sytem and then back to the old system, the coordinates are not the same.
    Here's an example:
    StartSystem SRID is 8220 (Longitude / Latitude (DHDN))
    TargetSystem SRID is 8307 (Longitude / Latitude (WGS84))
    Original object:
    Polygon: {ExteriorRing: LineString: { (0.0, -90.0) (1.5, 0.0) (0.0, 90.0) (4.5, 0.0) (0.0, -90.0)} }
    Transformed object:
    Polygon: {ExteriorRing: LineString: { (0.0, -5156.620156177403) (85.94366926962347, 0.0) (0.0, 5156.620156177403) (257.8310078088704, 0.0) (0.0, -5156.620156177403)} }
    Transformed back to old system:
    Polygon: {ExteriorRing: LineString: { (0.0, -5156.620156177403) (4924.209525017614, 0.0) (0.0, 5156.620156177403) (14772.628575052844, 0.0) (0.0, -5156.620156177403)} }
    Any ideas what to do?
    Thanks for the help in advance.
    Dirk

    Hi Dirk
    Since the transform you are trying to do is just a datum conversion of lat./long. coordinates, even the first transform yields obvious rubbish. What you have provided here does not illustrate how you submitted your polygon to CS_TRANSFORM.
    Provide the syntax of your construction of the corresponding SDO_GEOMETRY object and your SQL select statement that gave these results.
    Bruce

  • SLD Business System with or with out Logical System If so, which Log system

    Hi
    I'm in confuse with the Logical System when creating a Business System in SLD.
    Our requirement is LEGACY -- PI/XI -- ECC.
    When I create Business sytem in SLD, I need to give a Logical System. Which system (Is it xi/pi or ECC ) Logical System to be provided?
    Thanks.

    >
    Pothana Yadav wrote:
    > Hi
    >
    > I'm in confuse with the Logical System when creating a Business System in SLD.
    > Our requirement is LEGACY -- PI/XI -- ECC.
    >
    > When I create Business sytem in SLD, I need to give a Logical System. Which system (Is it xi/pi or ECC ) Logical System to be provided?
    >
    > Thanks.
    if you are using File to IDoc scenario then need to define logical systems for both business systems you are going to create for
    i.e they will be used as sender and receiver partners in case of logical systems
    if need more details check the below blog
    /people/rajeshkumar.pasupula/blog/2009/03/16/unable-to-convert-the-sender-service-to-an-ale-logical-system
    check the same for how logical system are used in this case...
    note above will be helpful in case of only idoc scenario..else no need of creating logical systems even though target sysstem is ECC
    HTH
    Rajesh

  • Problems with the File System Repository & User Mapping!

    Hi All
    I am having a problem with a file system repository, and setting up user mapping for that repository.
    I have done the following:
    Created a File System Repository
    Created a Network Path
    Created a System (Including the alias)
    Now when I go into User Administration and select my user the is no user mapped systems to select.
    All this system is doing is connecering to a folder on our File System.
    Any help would be great as this is really frustrating!
    Thanks
    Phil

    I am using EP7 Stack 11 and unfortunately the only options I have are:
    user
    admin
    admin,user
    It is currently set to admin, user and does not seem to work!
    Phil
    Message was edited by:
            Phil Wade

  • SOLMAN 7.0 problem with Stack16-question on note#1231975

    SOLMAN 7.0 problem with Stack16-question on note#1231975    
    I'm importing Stacks 16&17 into our Solution Manager 7.0 system
    and getting errors when importing the Java part in JSPM after the ABAP
    went in with no errors. The error matches OSS note 1231975 but we are
    having problems understanding what this note is advising to fix the
    issue. "SAPJTECHS SP16 component needs to be applied before proceeding
    with the whole SP16 stack. It should fix the usages on the systems
    fixing missing rows at BC_SL_PARTS table." Each time we start JSPM it
    gives the errors mentioned in this note. How are we to import
    SAPJTECHS before the rest of the Java Support Packs if we can't get
    JSPM to come up due to this error? About half of the Java Support
    Packs were imported before this error occured.

    You can deploy that component manually using SDM (instead of JSPM).
    Markus

  • Error-logical system not created in client 001

    Hi Experts,
    When I was trying to delete the application from Administration Client its giving me the error "Logical system not found on client 001"
    I created the Logical system in 001 but still same problem...
    Did I do anything wrong during the installtion??
    Can anyone please help me
    Bobby

    Hi Experts,
    I get the same error "Logical system not created in client 001"when I try to delete the appset from backend using program UJS_ACTIVATE_CONTENT...
    Please suggest..
    Thanks
    Bobby
    Edited by: bobbydon on Jul 7, 2010 7:46 PM

  • I recently upgraded to iTunes 11.1.5 and now my iPod Nano is not recognized in iTunes. I also upgraded my iPhone 5s to iOS 7.1. i Tunes on my computer does recognize my iPhone. What is the problem with my iPod Nano not being recognized?

    I recently upgraded to iTunes 11.1.5 and now my iPod Nano is not recognized in iTunes. I also upgraded my iPhone 5s to iOS 7.1. i Tunes on my computer does recognize my iPhone. What is the problem with my iPod Nano not being recognized?

    I would think, Twins1995, that if we are having the problem, others are as well. Hopefully, Apple will shortly issue a follow-up software release to fix the problem. Or is that just wishful thinking on my part.
    It would be helpful, if there were some kind of work-around in the interim, so we can use our devices. Pretty frustrating when you consider that all of the hardware and software is produced by Apple.

  • 'A problem with the cooling system' error message on Satellite A660

    Hi all,
    Hope I can get some help here. I've had about 5 HP laptops after all of them had problems and faults. I got sick of them and therefore got a refund and bought a high spec A660-1FH.
    The A660 has been a great laptop for two days until yesterday when I started getting a warning message saying 'A problem with the cooling system has been detected. Please turn off the computer immediately, and return it for service'.
    The cpu fan works fine as you can here it spinning and the temperature of the i5-460m processor is around 40 degrees for both cores - which seems normal to me. I've noted that it happens only when running on battery and if you switch from eco utility to power saver mode. Its fine when running on the 'balanced' power setting. The fan is louder before when this message appears.
    As its under 28 days my retailer swapped it for a brand new one straight away. Got the new one home, and the same message appears again. Has anyone else experienced this. As two laptops have had this, I'm wondering if this is normal for the A660 series laptop or if there is really a hardware issue?!
    I have tried to upgrade eco utility and the bios of the laptop but both are the latest versions. Can anyone help or share if they experience a similar issue with their laptop?
    Thanks

    In front of me I have Satellite A660-13Q (PSAW3E) and I have it about 6 weeks now. It runs almost 10 hours daily and until now I didnt notice such message or anything else that can be suspect for hardware functionality.
    I really dont know why this happen on your notebook and dont think there is anything you can do about it.
    I would exchange it again. What you can also try is to contact nearest Toshiba service. Make a call, explain the situation and ask if they can help you with this.

  • LSMW by BI  : Unable to specify file in step 7; logical Path not assigned

    Hi,
    I'm trying to uplaod HR DATA using object 0555 and method 0000 for Program RPDUSTD00 using LSMW Batch Input Method.
    In step 7 when i specify file which tab delimited text file at front end pc(at my pc) let say  c:\test.txt and save I got error message 'Logical path not assigned'.
    Please suggest what I'm missing and what i need to do to get it correct.
    Thanks,
    Anshuman.

    Hi,
    There are other files specified in the screen for imported and converted data. These files must be accessible on SAP application server. If the logical file names are not created use physical ones lik /tmp/blabla.lsmw.read etc.
    Make sure you use different files for different objects.
    Kind regards
    Michael

Maybe you are looking for

  • Error when reading preview code

    While loading images to LR 5 I received the following, "Lightroom encountered an error when reading from its preview code and needs to quit. Lightroom will attempt to fix this problem the next time it launches." Every time I launch Lightroom I get th

  • How can I extend the MRP Areas?

    How can I extend the MRP Areas of a material for different warehouses by LSMW? Is there a specific field for it?

  • Is there any workflow for travel cancellation?

    Dear All, Is there any workflow for travel cancellation? Regards Somu

  • Where are flash player parameters stored?

    Hello, when we modifiy our parameters for flash player here: http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l where are these parameters stored in the computer? because i want to delpoy my parameters on all

  • Lookup a MySQL Datasource with a EntityBean EJB with jboss

    Hy all, For a few days, i have problems to instance a datasource from my Entitybean EJB jboss release is 3.2.2 , MySQL 3.23.38 i use mysql-connector-java-3.0.9-stable-bin.jar for jdbc connectivity Here is the source of my datasource mysql-ds.xml <dat