BUPA creation - yellow BDoc problem

Sincere,
I'm creating Business partner and partner is succesfull created in CRM, and also in R3, but BDoc won't go green. Status of the BDoc is SENT, Creator: R3RFC, Queue name: CSABUPA0000xxxxxx, no errors, everything seems fine except BDocs.
I'm also getting Outbound queue R3AD_CUSTOME - Update BDoc status FAILED. BDoc not found.
Please advise.
Matej

Hello Rohit!
In SMQ2 I have series (400) meerly equal entries like:
400  R3RFC        BAPI_CRM_SAVE                   R3AD_CUSTOME              20.11.2010  07:32:24  Update BDoc status failed - BDoc not found
This relates to newly entered BP in the CRM system. When new entry happens, BDoc is sent to ERP (R3) system and BDoc is stil status yellow, although in SMW01  state is SENT.
Sent to receivers (not all have confirmed)     BUPA_MAIN     mBDoc Notification 16.11.2010 13:35:00     CSABUPA0000980404     R3RFC
CRM - transaction BP and customer is shown as created, ERP - transaction BP and customer is also shown as existing. The data is the same in CRM and in ERP.
Case 1: crmm_bupa_map looks like this:
http://www.shrani.si/f/b/bS/46nOEGgO/untitled.jpg
If I hit Enter tab or refresh Queue, statuses disapears (printscreen: 1 are transformed to 0). I believe this isn't problematical, just reprocess.
Case 2: In crmm_bupa_map ERP number is missing although I customer exist in ERP. What to do?
Regards,
M.
Will check notes, but for now I believe that there is smth with bupa_map. How to reautomate it for future?

Similar Messages

  • BP Creation - Yellow Bdoc Problem

    Hi ,
    I am using CRM Middleware for replicating business partner(BP) from CRM to ECC
    and material from ECC to CRM.
    BP and Materials are replicating well.
    My Issue is,
    while checking queues in SMQ1 (Outbound Queue in ECC Side), i am getting queues are pending also
    status as "SYSFAIL". SYSFAIL status is "Update BDoc status failed - BDoc not found."
    QUEUE Names are R3AD_CUSTOME, inside that queues 1000 entries are there.
    I tried to unlock the queues and activated, afterthat also queue status is "SYSFAIL". Then i checked in CRM side
    Transaction Code SMW01,
    while checking smw01 transaction, all bupa_main b-doc's displaying as yellow colour.
    Thanks in Advance,
    Ravi A

    Check Dumps and update terminations.
    try reprocessing one Bdoc so that you could immedietly see the issue. eithe from dump St22 or update termination SM13.
    regards,
    Dinesh.

  • Creation of BDOCs for CRM Billing - BEAIPMOBILLDOC

    Hi all,
    can anybody give me a hint, where I have to look for BDoc creation, especially BDOC type BEAIPMOBILLDOC? I mean really the piece of code, where the system is forced to create a bdoc of a special bdoc type.
    The background is, that I copied this standard bdoc type to a Z-one but I have no glue, how I tell the system to create a bdoc of this z-type when a predefined action is performed by the user.
    If anybody has an idea, where I can get an example of bdoc creation, please don't hesitate to post it.
    Thanks a lot!
    BR
    Mireille

    Chk txn SBDM (BDoc modeler) and create your own bdoc and assign the same to a Z table.
    Thanks,
    Mahesh

  • Apple macbook pro with retina display is having yellow screen problems in which screen is not perfectly white and is yellowish. More over the service frm apple's part is ridiculous as they have faulty spare part. Does ne1 hv email of senior person?

    Apple macbook pro with retina display is having yellow screen problems in which screen is not perfectly white and is yellowish. More over the service frm apple's part is ridiculous as they have faulty spare part. Does ne1 hv email of senior person?

    Apple service centre employee told me that they do not have this 14 day offer in India.
    And My mac book pro is taken in by Service centre people to run test etc and I will be informed the next day if they accept it as a fault or not ?
    I feeling ridiculously bad.

  • Will I get my iPhone replaced for yellow tinting problem

    Will I get my iPhone 4S replaced for yellow tinting problem, it's hardly 6 months old phone and this problem is from day one. Screen is not whitish it's yellowish.

    If you think there is a problem with the screen, try making a reservation with a Genius.

  • Looks like my screen has yellow tint problem.

    looks like my screen has yellow tint problem, images look  more yellowish. Does anyone have similar issue with their mac airs?

    This isn't an actually an issue. Apple have recently changed the screens they put in all their devices. If you were to put an iPhone 4 bought on release date next to one bought a month ago you would see that the older iPhone 4 would have a "bluer" screen. This is because the old screens had unnaturally bright whites so the new screens are supposed to be closer to the real colours and give a broader range of colours.

  • Changing CRM BUPA Address in BDOC before Replication to ERP

    Hi Guys,
      I have a problem where we are only replicating the BUPA's standard address (home) to ERP. 
      What we need to do is at the point of replication check if the BUPA has a delivery address. 
      If so then change the BDOC address details ( or whatever ) to this delivery address - essentially overwriting the standard home address in ERP.
      Anybody know the BADI's involved?
    cheers,
    Todd

    Not sure what version of CRM you are currently in.
    However please check if the following OSS note is of any help.
    OSS Note 908157 - Error R11 123 during BP data exchange in the CRM system
    also try to bump up the trace levels to "detailed" and figure out if you get some additional error description.

  • List creation - invisible output problem

    the method in question is appendItem(Object obj) in the ObjList class.
    The ObjList class:
    import java.util.NoSuchElementException;
    public class ObjList {
         protected Node              list;   // Link to start of list;
         /** Creates a new (empty) ObjList. */
         public ObjList() {
              this.list = null;
         /** Returns the length of this ObjList. */
         public int length() {
              Node ndcur = this.list;     // Currently scanned node.
              int i = 0;                    // Index of current node nd.
              while (ndcur != null) {
                   // Count one more item, and move on to the next one.
                   ++ i;  ndcur = ndcur.tail();
              // i is index of the null item at the end of the scan,
              // which is also the number of non-null node links scanned.
              return i;
         /** Inserts the given object at the front of this list. */
         public void prependItem(Object obj) {
                Node n = new Node(obj, list);
                list = n;
         /** Inserts the given object at the end of this list. */
         public void appendItem(Object obj) {
                Node t = new Node(obj, null);
                list.setTail(t);
         /** Returns the item at position i in this list. */
         public Object getItemAt(int i) throws NoSuchElementException {
                    Object obj = null;
              return obj;
         /** Inserts the given object into this list at position i
          * (so that the item previously at position i, and any
          * items at later positions, are all moved up by one position).
         public void insertItemAt(Object obj, int i)
         throws NoSuchElementException {
              if (i == 0)
                   // "insert at 0" is just "prepend".
                   this.prependItem(obj);
              else {
                   // ASSERT: 1 <= i;
                   // TBD
         /** Deletes the item at position i from this list. */
         public void deleteItemAt(int i) {
              if (this.list == null)
                   throw new NoSuchElementException(
                        "deleteItemAt("+i+"): list is empty!");
              // ASSERT: list is non-empty.
              // TBD
         /** Returns a string representation for this list. **/
         public String toString() {
              // Represent the list as one item per line,
              // plus header/footer...
              final String EOL = System.getProperty("line.separator");
              // Use a string buffer to build the result.
              StringBuffer str =
                   new StringBuffer("----ObjList:start----"+EOL);
              // Scan the nodes, generating one line for each.
              for (Node nd=this.list; nd!=null; nd=nd.tail())
                   str.append(nd.head()).append(EOL);
              str.append("----ObjList:end----"+EOL);
              return str.toString();
         /*########  Node class definition.   ########*/
         /** The list Node class definition is essentially as in
          * the lecture notes.
         protected static class Node {
              private Object      h;          // head
              private Node        t;          // tail link
              public Node(Object hd, Node tl) {
                   this.h = hd;  this.t = tl;
              public Object   head() { return this.h; }
              public Node     tail() { return this.t; }
              public void     setTail(Node tl) { this.t = tl; }
    }The Main class:
    public class IntList extends ObjList implements IntListSpec {
        /** main() -- basic IntList checking method. */
        public static void main(String[] args) {
        IntList intlist = new IntList();
        intlist.prependItem(1);
        intlist.prependItem(2);
        intlist.prependItem(3);
        intlist.appendItem(1);
        intlist.appendItem(2);
        intlist.appendItem(3);
        System.out.println(intlist.toString());
    //        // e.g. ...
    //          // Create a list of size 1 million -- if this takes a long time
    //          // then the constructor that takes an array parameter is
    //          // not as efficient as it could be.
    //        int[] million = new int[1000 * 1000];
    //        System.out.println("List of a million --- start creation.");
    //        IntListSpec ilm = new IntList(million);
    //        System.out.println("List of a million --- created.");
    //        System.out.println();
              // Release the large data items.
    //        million = null;
    //        ilm = null;
              // etc., etc.
    /*########  IntList Constructor and Instance Methods.  ########*/
        /** Creates a new (empty) IntList. */
        public IntList() {
            super();
        /** Creates a new IntList containing the given values, in order. */
        public IntList(int[] values) {
            this();
              // TBD
              // (add successive values from the array into the list, but
              // do it efficiently!)
         /** Inserts value n at the front of this list. */
        public void prependItem(int n) {
       // Delegate this one to our superclass.
            super.prependItem(new Integer(n));
         /** Appends value n at the end of this list. */
        public void appendItem(int n) {
            // Delegate this one to our superclass.
      //      super.appendItem(new Integer(n));
         /** Finds and returns the value at position i in this list. */
        public int getIntAt(int i) {
    //        // Delegate this one to our superclass.
          return i;//((Integer)(super.getItemAt(i))).intValue();
         /** Inserts value n at position i in this list. */
        public void insertIntAt(int n, int i) {
            // Delegate this one to our superclass.
      //      super.insertItemAt(new Integer(n), i);
         /** Deletes the value at position i in this list. */
        public void deleteIntAt(int i) {
            // Delegate this one to our superclass.
      //      super.deleteItemAt(i);
         /** Returns a one-line display string for this list. */
        public String toString() {
            // Represent this list as a single-line string
              // (which may be inconvenient when the list is big!).
            StringBuffer str = new StringBuffer("<");
            if (this.list != null) {
                str.append(this.list.head());
                   Node cur = this.list.tail();
                while (cur != null) {
                    str.append(" " + cur.head());
                        cur = cur.tail();
            str.append(">");
              return str.toString();
    }The interface class:
    import java.util.NoSuchElementException;
    * NB  In the method definitions below; the index i is assumed
    * to be non-negative; if it is too big for the given operation
    * then a NoSuchElementException should be thrown.
    public interface IntListSpec {
        // List operations, as in the "Linked Data Structures"
        // lecture.
         /** Inserts value n at the front of this list. */
        void prependItem(int n);
         /** Appends value n at the end of this list. */
        void appendItem(int n);
         /** Finds and returns the value at position i in this list. */
        int getIntAt(int i) throws NoSuchElementException;
         /** Inserts value n at position i in this list. */
        void insertIntAt(int n, int i) throws NoSuchElementException;
         /** Deletes the value at position i in this list. */
        void deleteIntAt(int i) throws NoSuchElementException;
         /** Returns a one-line display string for this list. */
        String toString();
    }My problem, as implied by the subject, is that when outputting the contents of this list after the 6 operations, only prependItem is being shown. Bear in mind that we were given all the code (degree course at uni) other than the prepend method, the append method, and all other places marked 'TBD'.
    Any help would be appreciated. I think what is happening is that 'list' doesn't know it has these extra items on the end, although I thought list.setTail(t) should have sorted that.
    Anyhow, many thanks in advance.

    You're not linking the previous tail with this new item you're trying to append.
    This is not a Java related question. It is an algorithm question. You don't have your algorithm correct, and we're not here to do your homework for you.

  • Missing Creation Date Causing Problems

    Where to begin. Well, we've moved several terabytes of data to a new Xserve RAID. Somewhere in the process of setting up permissions, etc. we've lost some creation dates of files, mostly .NEF files as far as I can tell. The problem comes in with Bridge CS3. When you click on a folder with these files, you get a double popup window with "The Operation Could Not Be Completed". Once you click through the popup for every file in the folder, everything seems to be peachy. Anyway to fix this so the users don't get the error message?
    All Mac users using Bridge 2.1.0.100 some PowerPC G5's, Some Intel MacPro's. Lots and Lots of RAM in each.

    Afp has a lot of problems. On our network using an Xserv we were forced to use a single authentication because of this exact issue. security wise it's pretty crap but the servers isn't accesable off our physical subnet so was acceptable. Unfortunatly we are now using a mixed envrionment (PC/MAC) and the server will shortly be moved to a centeral location so a mover ot Active directory authentication will be needed.
    To get around these problems we're using a Samba implimentation called DAVE (the licencing is pretty reasonable). It allows full AD authentication/Workgroups etc and fixes a lot of issues with Apples SMB. On our shared storage system for video editing (Edit Share) which also uses DAVE because Final cut Pro and Quicktime (both apple produces) cant reliably write Quicktime files across a network using Apples AFP, but is 100% reliable with DAVE.
    Glad to see some of these issues being sorted
    BRETT

  • X11 Yellow-Cursor Problem: Still Not Solved

    Sorry for bringing this up again, but previous discussions (search for "X11 yellow cursor") are not active anymore, and the problem is unsolved. Let me briefly restate it for those who just joined in:
    When displaying X11 windows from Linux machines on Intel Macs using Apple's X-server, the cursor turns into a hardly visible yellow something. Apparently, the cause is related to some wrong assumption about the Endianness.
    There used to be a patch available (http://www.macosxhints.com/article.php?story=20060316124704289), but it was superseded by Apple's latest X11 update. The alternative solution suggested in that article (fiddling with the icon set on the Linux side) seems not work reliably - it doesn't for me.
    So the present situation is very unsatisfactory. I just bought iMacs for my research group and myself. Having tested all the software we need for our daily work (which includes X11) on my Powerbook G4, I thought I would be on the safe side. Now, we've run into this Intel-specific bug, which annoyingly enough seems to be understood and solved, but Apple decided not to correct it in its latest X11 release.
    I would highly appreciate any suggestions how to work around the problem for the time being. And I hope that somebody at Apple is reading this: The usefulness of Macs in a Linux/Unix-dominated scientific-computing environment critically depends on the availability of a reliable, stable X11 implementation.
    Hans
    iMac 24", PowerBook G4   Mac OS X (10.4.9)  

    Hi Hans,
    but it was superseded by Apple's latest X11 update.
    What do you mean by "superseded"? The patch
    http://homepage.mac.com/lycestra/yellowcursor.patch
    works well with the latest Apple's X11 source code.
    Just download X11-0.46.4.tar.gz from
    http://www.opensource.apple.com/darwinsource/10.4.9.x86/
    and put it in the same directory as yellowcursor.patch
    Then you can apply the patch as follows:
    $ tar zxvf X11-0.46.4.tar.gz
    $ cd X11-0.46.4
    $ patch -p1 < ../yellowcursor.patch
    Now you can build everything by
    $ cd xc
    $ make World >& logfile
    I guess it will take 20 to 30 minutes.
    (build may be faster if you add some definitions into config/cf/host.def)
    After the build, don't run "make install". Instead, just install the new Xquartz. Be sure to backup the origianl:
    $ sudo mv /usr/X11R6/bin/Xquartz /usr/X11R6/bin/Xquartz.ORG
    $ sudo cp -n programs/Xserver/Xquartz /usr/X11R6/bin/
    You may compare the output of xdpyinfo and glxinfo before and after installing it. I have noticed any performance difference between the original and the new Xquartz.
    PowerMacG4, PowerBookG4, iMac(C2D)   Mac OS X (10.4.9)  

  • BDoc problem

    Hi guys
    I have a problem whereby all newly created transactions and BP's are displaying queing in SMQ2
    I had a look at SMQR - Queues R3A* and CSA* activated
    Bdoc State shows I02 ( Intermediate State ) for all my Bdcos,
    Bdoc type is bus_trans_msg
    Queue Name csa_order*
    Im able to re reprocess these Bdcos successfully, I need to know what is causing this?
    Seems like this has been happining since support pack upgrade
    Ravi

    Dear Ravi,
    IF the queues are in STOP status, it means that they have got an explicit lock in there. So you need to release the lock from the transaction SMQ2, and activate the queues and I am sure these will get processed.
    You may also see a Generic queue, like MASS* which would also be in STOP status, so before you activate the queues individually first you need to release the lock from the generic queue.
    Regards
    Sidd

  • Premiere CS5 + AVCHD = Yellow bar problem?

    I just wanted to ask, if this is normal or what I'm doing wrong, because I never had this problem with CS4. After I recorded some footage with my Canon HFs100 (AVCHD 1920x1080, interpreted to 25p) and I tried to edit it on Premiere(sequence: AVCHD 1920x1080, 25fps) , I always get that yellow bar, which  indicates that there is a mismatch between footage properties  and sequence settings.
    In Premiere Cs4, I always intepret the footage at fisrt, because the way HFS100 captures video and the it works just fine without yellow/red bar, but in CS5, I still get that yellow bar. Why?

    My english sucks.
    So does mine and all the more reason, when we are handicapped by not using our native tongue, to be as precise as possible. We are not alone here, there are people from all over the world for whom English is only a second or third language, so the better we express ourselves, the easier it is to get understood and get valuable feedback.
    Look here: Adobe Forums: A glossary of video terms
    This is not to sound arrogant, but to help you express yourself in this rather complicated language of video editing.

  • Yellow tint PROBLEM FW+AI+PS

    Hello,
    I am having a serious problem with kuler panel in FW, AI, PS
    and with search field in FW + AI.
    http://www.designme.sk/junk/omg.png
    Cant see the kuler colors as they should look like, because
    they are covered with yellow tint (looks like 50% alpha).
    This was happening on with my old graphics (geforce 8600gt),
    but happens with new (radeon hd4670) one also. Latest drivers,
    latest updates, lates everything.. So I reinstalled windows, sp3,
    windows update, new drivers, clean CS4 install.. Same freakin
    thing. Can anyone tell what is the problem here? I am using
    download version cs4 design premium english.

    @designme.sk,
    I am curious... did you use calibrated device to help correct
    color management problem in your monitor? If no, I recommend that
    you should consider to invest in one of those nice
    professional-quality calibrated device. In many case, having
    corrected color profile set up in your monitor, then workflow
    working with your project with "the right color profile" in right
    approach, the right way of managing color management.
    As you probably already know how important color management
    is, so I don't have to go into that further.
    Hope that helps.
    Cheers, DWD

  • Yellow Screen problem

    My 15" Macbook Pro 5.3, bought in July 2010, has developed a weird problem. The screen goes yellow. No other functionality affected. The problem can be somewhat masked by selecting "thousands" rather than "millions" of colours in the detect displays menus. Sometimes the problem goes away, apparently of its own accord. Sometime a slight movement of the screen angle makes it go away. Sometimes it's there for a few minutes then goes; recently it's been like this for a couple of days. I will have to live with it at the moment as I am a long way from a service agent and need my laptop.
    I can't see how to upload a picture to this board, but if anyone can advise me on how to do that I will.
    My guess is that this is a hardware failure related to the screen signal supply cable in the hinge. But one Mac expert said he'd seen the same thing as a precursor to, and symptom of, board failure. It's also been suggested, by a moderator on the Mac Forum board, that it might be a graphics card problem, though I wonder how that can be so intermittent - I would expect the GC to either work or not work, not to work for a bit, then not work, then work for a bit longer
    I'd be very interested if anyone has come across this problem, and has any thoughts on it.
    Best wishes
    R

    Your machine is just under the 1 year deadline for getting AppleCare. If you haven't gotten it yet, and have treated your machine well, I strongly recommend getting it, incase this yellowing problem turns out to be a hardware or software issue Apple can repair. You can buy it anyplace as long as the original shrinkwrap is on it, and it is for MacBook Pro. It extends both Apple hardware and software support for an additional two years.

  • South korea : yellow gradation problem

    Korea iphone 3gs is a problem.
    The greater part of iphone 3gs is yellow gradation lcd.
    Apple is nothing after service about The problem.
    Korean users are dis-satisfied.
    Why apple take proper follow-up measures?
    Are Korean users trivial?
    I will expect adequate solution.

    "You may expect whatever you like."
    Oh yeah, that's nice, roamingnome. English is probably not zinoska's first language. How well could you phrase a request for help in Korean?
    zinoska, you will have to take the phone back to your supplier and work with them to solve the problem. Sorry.

Maybe you are looking for