Questions on  UJR_WRITE_BACK BADI

Hey all,
We have written Write back BADI for one of our application. Now we want to write a BADI for different application also in the same appset.
But when i use the same class ZCL_UJR_PRE_PROCESS_EX it takes me to the previous implementation. I would like have different implementation so that I can implement different logic. How can i do it. Do I have to create a new class like ZCL_UJR_PRE_PROCESS_EX.
Please help.
Thanks,
Diksha.

Hi Gersh,
Am sorry not to mention in my previous posting. I implemented my BADI using the following HTD.
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0309226-814f-2d10-61a6-ef8da29e3727?QuickLink=index&overridelayout=true
I am trying to implement a new BADI in the same for my different application. I use the same class and it takes me to the previous code.
I hope am able to explain my situation properly.
Thanks,
Diksha.

Similar Messages

  • UJR_WRITE_BACK BADI Help

    Dear Expert,
    I have implemented UJR_WRITE_BACK Badi to disaggregate higher level when input data in EPM like this:
    2006.02
    2006.03
    2006.01
    Africa
    200
    2000
    4000
    Algeria
    100
    1000
    2000
    South Africa
    100
    1000
    2000
    But I want to disaggregate base on parameter percentage which user enter. So how can I do this?
    thanks so much.

    You can't pass parameter to write back badi like to custom logic badi. But you can use some member property that will be analyzed by write back badi code or use some table with parameter values.
    B.R. Vadim

  • Question on BATCH_MASTER BADI

    Hi folks,
    Could you kindly help me on this issue of mine? The client requirement is to auto-populate the region of origin (MCHA-HERKR) during MSC1N. We are using the user exit EXIT_SAPLV01Z_002 to generate the batch numbers (special coding required). The problem is, the region of origin is not found in that particular user exit. It is in EXIT_SAPLV01Z_013 but this is not invoked during MSC1N.
    I tried implementing a BADI, definition name BATCH_MASTER. I created and activated the implementation Z_UPDATE_REGION. My code is in the method CHECK_DATA_BEFORE_SAVE. However, the system does not pass through it whenever I transact using MSC1N. I read through some email threads in this forum and somebody mentioned that the BATCH_MASTER BADI only gets triggered during MSC2 and MSC2N. So, I tried changing my created batches via MSC2N just to see if the BADI gets triggered. Still, no update happened.
    If any of you has done the BADI before, could you please share your knowledge with me? Do I need to activate something else in order for the BADI to work?
    Thank you in advance.
    Hoops

    Please disregard this question.  I have found the answer to it.  Thanks to all who took time to read my post.

  • Question on CCM BADI Approval_BADI

    I'm trying to make enhancements to BADI Approval_BADI to validate a field called product group against a list of product categories.  How can I find/view the structure of the parameter Product Group in the BADI?

    Hi Elly,
    Firstly - can you check in customizing if the catalog is maintained with the status 'Approved'.
    i.e. SPRO -> Cross App Components -> SAP CCM -> SAP Catalog Authoring Tool -> Specify default value for catalog status.
    Here the catalog will either be set to Approved or To be approved initially.
    After this, you can define approvals on characteristic level, drill into a characteristic component and you can set a percentage or absolute deviation which will based on these rules set items with this characteristic either to be approved or approved.
    Alternatively you can make use of the CCM Approval Badi, You can use this BAdI to change the approval status of your catalog entries (items).
    Normally, the approval status of catalog entries is determined by approval rules, which are stored for a characteristic. You can use this BAdI to get the status information of the catalog entries after the rules have been processed, and to change this status information as appropriate.
    Regards,
    Jason

  • Questions Questions Questions via bootcamp/bad hard drive

    I think i fried one partition of my hard drive. I have the latest bootcamp installed onto my macbook pro 13". One partition is MAC OS 10.6.2 and the other is Windows 7 Ultimate 32 bit. The Windows 7 boots up just fine. The Mac 10.6.2 does not. It freezes on the apple logo in the beginning of the start up. I ran disk utilities from my install DVD and it indicated that it could not repair the mac os 10.6.2 partitioned drive.
    Has anyone had this problem? the drive is only 6 months old. What would be a good utility to make sure both partitioned drives can be maintained and fixed?
    Interestingly I also noticed that when running under windows 7, the macbook pro heats up considerably. Is there anyway to fix this problem?

    Never rely on just Apple First Aid to find or repair problems.
    There are a number of good solid 3rd party ($$) programs that will.
    Alsoft Disk Warrior 4.2
    MicroMat TechTool Pro 5.0.x
    Drive Genius 2
    are the three I am most familiar with.
    In any event, you will want to install OS X on external drive for emergency repair maintenance and such.
    Clone your system (SuperDuper, Carbon Copy Cloner) is a good idea also, to backup volume (or even a sparse disk image).
    Apple doesn't - and Windows can't - it is up to the vendor of the motherboard or 3rd party fan control and monitoring the sensors. Normal steps like elevating the laptop so air gets underneath... not sure what people are doing, and heat is an issue with MacBook/iMac.

  • Question about bad query

    Hi all ,
    I have small question related to bad query .
    what is the affecting happens to database if there is lot of bad query , i know the performance issue is there what's other things .like archive log generated database time , IO , TMP tablespace , please give me information about it's .
    thanks & regards.

    user11969912 wrote:
    I have small question related to bad query . What do you consider a bad query? A bad query can be the result of poorly written and illogical SQL. It can be due to not using bind variables. It can be due to a on-optimal execution plan generated by the CBO. It can be due to poorly designed code that uses what seems to be a "good query", badly and in the wrong way (using bulk collection when a native SQL alone suffices, or hitting the very same data multiple times, etc).
    what is the affecting happens to database if there is lot of bad query Each of these have a different impact on the database. A "bad query" can cause a snapshot-too-old error. A deadlock error. A shared pool memory allocation error. Can cause no error and simple increase I/O. Or increase CPU. Etc.
    It is a lot more complex than what you seem to think, given your question.

  • BADI UJR_WRITE_BACK

    Hi Experts,
    I am a beginner in BPC and would like to know how many times UJR_WRITE_BACK BADI will be called per Input Schedule? I know the write back will be called automatically. The reason for this is i am trying to debug an application build by some one else and noticed that the BADI is called many times. Is there any specific rule or logic for this? I am sure there are couple of commit work statements in the script logic file.
    Thanks in advance.
    Thanks & Regards,
    Raja

    Hi Gersh,
    Thank you for your reply.
    As per my understanding WRITE BACK BADI will be called automatically and we can't call it explicitly from DEFAULT.LGF.
    Although my application has DEFAULT.LGF, it doesn't have any refrence to call the WRITE BACK BADI. However, it calls other BADI (Custom Logic) and is having COMMIT WORK statements. May i ask you to throw some light from this perspective?
    Thanks,
    Raja

  • New Hard Drive still have Question Mark Folder

    So I first got the 'Question Mark Folder' and had to keep running Safe Boot Mode to use computer. Finally got around to replacing the Hard Drive, but this Question Mark Folder still comes up trying to turn the computer on and now trying to setup the new hard drive. Won't let me do anything. I've tried all of the button combos/recovery mode/etc. Tried inserting both a backup disk of Mavericks and Snow Leopard, nothing. Is there any other problems that could cause this? Maybe a dead SATA cable? or something else small hopefully?

    My newest Mac just did the same "folder of death" dance. It's too late for you now, but you might consider a passport backup drive.You can get 2&3 T-bytes now fairly reasonably priced. A given with computers is they will crash, just a question of how bad and when, so you can be prepared for the next time.

  • Image Gallery question

    I have been asked to help re-create a web site. The existing site is 100% flash. The site owner wants to redo the appearance and navigation and get away from flash.
    They want to have the various project galleries re-created without flash but want the behaviors to be the same as they are in the existing flash setup. check the link below.
    http://www.ecummingsarchitect.com/FLASH/main.html
    Specifically they want the thumbnails to auto scroll when the cursor rolls over the scroll arrow.  Also  want the roll over effect where -  roll over the thumbnail changes it to color and also changes the larger/primary image above.
    I have a couple of slideshow generators from Project 7 but they will not quite achieve these effects.
    Is this possible with html/css and/or can anyone recomend a third party product or tool I might use to create this sort of gallery?
    Additionally they want to re-create the opening animation on the home page of the site. They have made a little 1.7 meg movie in imovie or something that plays a series of stills but with an animated camera move acroos each still like a Ken Burns film. Slow zoom in or  zoom out or pan. Also has sound track.
    My question, is it "bad" practice to have a .mov or .wmv or some such movie auto play on the home page?
    Again, is this possible with html/css and/or can anyone recomend a third party product or tool I might use to create this sort of slideshow with zoom/pan effects and soundtrack?
    Thanks in advance for any advice or help with this.

    As Martin said, you can do some amazing things with jQuery transitions, animations and fadeIn effects.  And jQuery is  supported by nearly all web devices.
    http://jquery.malsup.com/cycle/ 
    You can also use Adobe Edge Preview to create animations in HTML5, CSS3 & JavaScript.   NOTE:  Edge animations are not supported by older browsers (pre-IE9).  Before you start, decide who your target audience is.
    http://labs.adobe.com/technologies/edge/
    Finally, for video & audio playback, have a look at Pickle player. 
    http://www.pickleplayer.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Screen displays small folder icon with question mark

    My powerbook won't boot up, makes a clicking noise when turned on and is displaying a small folder in the middle of the screen that alternates with a symbol and a question mark. Bad hard drive?

    "Also, can I purchase a hard drive from a brick and mortar Mac store or do I need to buy it online?"
    I suspect Apple Stores don't carry older style hard drives. I buy all my hard drives from this outfit:
        2.5" ATA Laptop Drives               All Pre-2006 Apple Laptops and most PC Laptops utilize a standard ATA type drive.               80GB to 320GB  from                $59.99   
    I've had good results with the Western Digital  Scorpios in older Mac notebooks. Just remember that your PowerBook uses the older ATA/IDE drives, not the more common SATA models. Keep the height to 9.5MM for best compatibility.

  • My macbook pro is still under warranty.  I have just put it into Mac 1 to be repaired because I had the folder with the dreaded Question mark on it....new hard drive.  I was told that if I wanted my data retrieved, I would have to pay $445 p/h. Ahh!!!

    My macbook pro is still under warranty.  I have just put it into Mac 1 to be repaired because I had the folder with the dreaded Question mark on it....new hard drive.  I was told that if I wanted my data retrieved, I would have to pay $445 p/h. Ahh!!!  Shouldn't that be covered by warranty?

    My newest Mac just did the same "folder of death" dance. It's too late for you now, but you might consider a passport backup drive.You can get 2&3 T-bytes now fairly reasonably priced. A given with computers is they will crash, just a question of how bad and when, so you can be prepared for the next time.

  • Questions for Integration

    Hello,
    Our VoIP Architect recently left the company as well as his knowledge and I'm just a data guy :-(. We are preparing to perform an integration for a new acquisition and out-sourcing was not considered prior to his leaving, plus funds may not be available to outsource. We will not be integrating there PBX into the infrastructure as we will be providing them IPT services.
    My question to the forum is: what questions should we be asking to perform the integration with regards to VoIP.
    1) What type of dial plan do they have
    2) They will want to keep there DID so a port is needed with local PRI
    3) I believe long distance will be provided through corporate
    4) Do they have a night attendant
    Any assistance is appreciated. Thanks
    Anthony

    Hello Anthony,
    So you have the honor to learn VoIP on the fast track!? Well then let´s see the options.
    First your questions are not bad, but only a small portion of the whole picture. The underlying question is: What functionality does telephony offer them now?The second question will be what are you able to reproduce with voip, what will be missing and what will be added.
    About a few parts of functionality now:
    - Availability (power, network, fallback scenario,...)
    - Dial plan
    - Voice mail
    - 911
    - call waiting/redirect/conference/...
    - secretary function (rings ith boss phone)
    - etc.
    Now this is a lot of stuff to think about. So you can take everything at CCO that a search for "SRND voice" delivers you. SRND = Solution Reference Network Design, this is what you are asking for.
    And doing this will show you that there is a lot more to tell than I could possibly write in a single post.
    Another starting point would be "CISCO IP TELEPHONY SOLUTION" http://www.cisco.com/en/US/netsol/ns340/ns394/ns165/ns268/networking_solutions_package.html
    Being a Global Knowledge Technical Instructor I would also like to point you to our Web page, where you can find the officil Cisco classes about IPT:
    http://www.globalknowledge.com/training/category.asp?pageid=9&methodid=c&catid=206&country=United+States&translation=English
    When you are interested in design then you could start with "IPTD (IP Telephony Design)"
    http://www.globalknowledge.com/training/course.asp?pageid=9&courseid=9124&catid=206&methodid=c&country=United+States&translation=English
    The other classes are more technology oriented and provide also hands-on to real euquipment.
    Hope this helps! Please rate all helpful posts
    Martin

  • Is this bad usage of the applet sound player

    I have this class for playing audio for my application.
    currently it is a game the is presented in a JFrame but when trying to play audio i kept coming across the use of java.applet.AudioClip for playing audio.
    what i want to know is what i am doing really bad use of this class?
    and if so where should i look to find tips on how to make a better audio class for my game?
    import java.applet.AudioClip;
    import java.applet.Applet;
    public class SoundPlayer {
         public static final int WALL_HIT_SOUND = 1,  BRICK_HIT_SOUND = 2,  POWER_UP_SOUND = 3;
         private static boolean setUp = false;
         private static AudioClip wallHit = null,  brickHit = null,  powerUp = null;
         public void play(int clipID) {
              if (!setUp) {
                   setUp();
              AudioClip clip;
              switch (clipID) {
                   default:
                   case WALL_HIT_SOUND:
                        clip = wallHit;
                        break;
                   case BRICK_HIT_SOUND:
                        clip = brickHit;
                        break;
                   case POWER_UP_SOUND:
                        clip = powerUp;
                        break;
              if (clip != null) {
                   clip.play();
         public void setUp() {
              wallHit = loadClip("wallHit");
              brickHit = loadClip("brickHit");
              powerUp = loadClip("powerUp");
              setUp = true;
         public AudioClip loadClip(String name) {
              try {
                   return Applet.newAudioClip(getClass().getResource("/sound/files/" + name + ".wav"));
              } catch (Exception e) {
                   System.err.println("Cannot open Audio File: " + name + ".wav will not play this sound");
                   return null;
    }Thanks Scott.

    To respond to your first question (Is it bad to use)
    java.applet.AudioClip isn't part of the JavaSound API, so this isn't really the correct forum to ask this question.
    You should go check out a generic applet forum for the question...
    To respond to your second question (What should I use if it's bad)
    javax.sound.sampled.Clip is probably what you should be using for an application to play short sounds.
    /*  To load a clip */
    AudioInputStream ais = AudioSystem.getAudioInputStream(new File("bang.wav"));
    Clip c = AudioSystem.getClip();
    c.open(ais);
    /* To play a clip */
    c.start();
    /* To stop */
    c.stop();
    /* To stop & reset to beginning */
    c.stop();
    c.setFramePosition(0);

  • Transport system BADIs

    Hello, ladies and gentlemen,
    I have a question regarding the BADIs in the transport system. I would like to implement the code inspector check of the transport request with some additional features. I know there is the BADI called CTS_REQUEST_CHECK. This one is launched before the standard code inspector integration into the transport system. That means that at the moment when it is executed, I have no idea what will be the users reaction to the "situation".
    Can anbody suggest how to reuse the interaction between the system and the user when releasing the request, but still integrate the code inspector there? One of the options would be to have a BADI which is called AFTER the transport with SCI warnings was released.
    Any ideas welcome:))
    Thanks Otto

    Thanks gentlemen,
    but I see no news for me. I named one of the BADIs in my original post, I also researched the SE18 entries, I found all this information already. My question is whether there us way how to trick the system (or find another spot) so I can process stuff AFTER the release. I am interested in the state when there were SCI messages but the admin decided to "release anyway". When I only have a BADI which is called before the standard procedure I can`t access the information "what really happens". That means that I either have to dig out all the standard functionality and reuse it in my custom code (and then turn off the standard solution) or let the standard to do the job and process the information after everything happens.
    Thanks for your time and effort anyway,
    cheers Otto

  • How bad will this hurt?

    I have been considering buying a RV for a while. My boys aren't getting any younger. We currently have our house on the market. It seems like it is going to take forever to sell. My question is how bad do you think it will hurt my credit if I were to take out a small loan for approx $10,000 for a RV? My credit scores on fico 8 are around 660-670. I know waiting until after we buy a house is probably the best idea, but it just doesn't seem like it's going to sell anytime soon and I am dying to go camping and enjoy the summer with my husband and two boys.

    Kyliemarie85888 wrote:
    I have been considering buying a RV for a while. My boys aren't getting any younger. We currently have our house on the market. It seems like it is going to take forever to sell. My question is how bad do you think it will hurt my credit if I were to take out a small loan for approx $10,000 for a RV? My credit scores on fico 8 are around 660-670. I know waiting until after we buy a house is probably the best idea, but it just doesn't seem like it's going to sell anytime soon and I am dying to go camping and enjoy the summer with my husband and two boys.How about teaching your boys the joy of camping in a tent while hiking in the mountains or in a campground?  Most boys would rather do this than hang out in a motorhome.  (Motorhomes: Think retirees). I have been reading a lot about personal finance and the rule seems to be borrow only for necessities, pay cash for luxuries.    Just something to think about. I know RV's can easily cost 60K - 100K or more, so I might be concerned about a 10K RV needing expensive repairs. Your boys won't be boys forever, but the important part is that you spend time with them.  They don't need an RV to enjoy their parents. You could also rent a lot of nights in a nice cabin for less than 10K if you don't like sharing your bedroom space with bugs and bears.

Maybe you are looking for

  • How to change Flex Application frame rate at runtime

    hello, i have Flex application that need to change the Frame Rate at runtime. when i am changing it by using the slider component, here the code: private function onChangeSlider(e:Event):void frameRate = sliderFR.value; trace(frameRate); <mx:HSlider

  • Static on my screen

    Static since update with Mountain Lion. Does anybody has this problem? Fix?

  • Connecting G5 with Sony Trinitron Only---Problems

    I am running MediaCentral on my Powermac G5 to turn it into a media center. All I want to do is connect my Sony Trinitron to the G5. I bought the comosite/S-Video adapter from Apple. However, when I plug in my TV, I get absolutely no picture on the s

  • "Aperture Library Needs to be Upgraded" after iPhoto 9.3 upgrade

    This issue began when iPhoto crashed during a low battery scenario while using latest version of iPhoto before 9.3 upgrade. I could not open iPhoto unless I bought and installed Aperture. I have never owned or installed Aperture. I am running lion OS

  • Load Masterdata with Infopackage and DTP..Is there any other way simplier ?

    Dear all: We are currently working under BI 2004s SP09. And we are trying to loading Masterdata from R3. For Attributes and text, we have to create Infopackage for DS, load data from R3 into PSA(Not able to into Char directly), then create transforma