Issue activating and object with ALPHA routine

Hi Experts,
yesterday we had a problem with the infoobject 0CUSTOMER. Accidentally, we deleted the ALPHA routine conversion and now the object can't be activated with the ALPHA routine conversion again because the object is in use in some infoproviders.
We cannot delete infoprovider's data, and we need to activate again the ALPHA routine.
We are using BW 3.5
Can somebody help us please?
Thanks in advance,
Muhammad

Hi Muhammad,
I dont think you will be able to add the alpha conversion routine back in the master data object without deleting data from all infoproviders where 0CUSTOMER object is used.
Addition of any attribute to master data object doesnot cause any issue however deletion of any attribute or conversion routine, where master data has been already loaded and used in other infoproviders (remember referential integrity) requires one to delete the data from all infoproviders where it is used.
As rightly suggested by Vikram you can try to achieve what the alpha conversion routine does by writing a transfer routine.
Best Regards,
Sameer

Similar Messages

  • Activation of Objects with Type Data Transfer Process

    Hi Experts,
    I am stuck in a problem of activation of DTP. I loaded the data from the Datasource to PSA and there are about 200,000 reocrds.
    Now I wanted to take this load to DSO NEW table ..I have created a DTP and when I try to activate the DTP I get this Error
    Activation of Objects with Type Data Transfer Process
        Internal Activation (Data Transfer Process )
             Post Processing/Checking the Activation for Data Transfer Process DTP_49Z7OSAHFAR9O8335ED6
                  Error when activating Data Transfer Process DTP_49Z7OSAHFAR9O8335ED67X11C.
    I tried to activate the Data source but it still didnt help. Looked in SDN for some related stuff but most of them are talking about going for SP 11 ..we are already on
    *SAP_BW     700     SAPKW70014     *
    Your suggestion will be appreciated with maximum points
    Thanks

    Hello Experts,
    Could you'll please help me out with this ...I
    I deleted the DTP and created back again
    logged out of BW and logged back again
    Infact I found a SAP note 1086877 and i applied it ..but it still didint help
    Whie loading the Master Data from PSA to DTP ..it worked fine.
    While Loading the transactrion data I went to Tcode RSBATCH and in the drop down I selected the DTP activation and gave a 3 Back ground processes....Ever since that it started giving me problem
    Your help will be appreciated...my data loads are stalled ..i mean I cant move forward.
    Thanks

  • Getting this messg on Factime "could not sign in, check your network connection", but I have Wifi activated and working with internet??

    Getting this messg on Factime "could not sign in, check your network connection", but I have Wifi activated and working with internet?? what can I do?

    Usually it's because you are not making internet connection via wifi. Open Safari and see if it connects.
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
     Cheers, Tom

  • How to read and write Png and jpeg with  Alpha

    Hi
    I have trouble reading and writeing PNG and JPEGs that have an alpha channel (for transparency).
    Reading works, if i use Toolkit.getImage() method, but works NOT if i use ImageIO.read() method.
    Writing does NOT work using ImageIO.write()method. Instead i got a "java.lang.UnsupportedOperationException: Unsupported write variant!"
    See Test class and commandline output below:
    /****************START*****************************/
    package de.multivisual.bodo.test;
    import java.awt.*;
    import java.awt.image.*;
    import java.io.File;
    import java.net.URL;
    import java.util.Iterator;
    import javax.imageio.*;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.stream.ImageInputStream;
    import javax.imageio.stream.ImageOutputStream;
    public class AlphaChannelTest implements ImageObserver {
      Toolkit toolkit;
      Image img;
      public AlphaChannelTest() {
        super();
        toolkit = Toolkit.getDefaultToolkit();
        URL url =
          AlphaChannelTest.class.getResource(
            "/de/multivisual/bodo/test/" + "alphatest.png");
        img = toolkit.getImage(url);
        try {
          ImageInputStream imageInput =
            ImageIO.createImageInputStream(url.openStream());
          Iterator it = ImageIO.getImageReaders(imageInput);
          ImageReader reader = null;
          while (it.hasNext()) {
            reader = (ImageReader) it.next();
            System.out.println(reader.toString());
          reader.setInput(imageInput);
          ImageReadParam param = reader.getDefaultReadParam();
          BufferedImage bimg = reader.read(0, param);
          SampleModel samMod = bimg.getSampleModel();
          ColorModel colMod =       bimg.getColorModel();
          String[] propNames = bimg.getPropertyNames();
          IIOMetadata meta = reader.getImageMetadata(0);
          System.err.println("\n*****test image that was read using new Jdk 1.4 ImageIO.read() method");
          alphaTest(bimg);
        } catch (Exception e) {
          //e.printStackTrace();
        if (img != null)
          toolkit.prepareImage(img, -1, -1, this);
        try {
          synchronized (this) {
            System.out.println("wait");
            this.wait();
        } catch (Exception e) {
          e.printStackTrace();
        System.out.println("end");
      public void alphaTest(BufferedImage bi) {
        Raster raster = bi.getData();
        float[] sample = null;
        System.out.println("raster :");
        for (int y = 0; y < raster.getHeight(); y++) {
          for (int x = 0; x < raster.getWidth(); x++) {
            sample = raster.getPixel(x, y, sample);
            System.out.print("(");
            for (int i = 0; i < sample.length; i++) {
              System.out.print(":" + sample);
    System.out.print(")");
    System.out.println();
    Raster araster = bi.getAlphaRaster();
    if (araster == null){
         System.err.println("there is no Alpha channel!!!!!!!!!");
         return ;
    } else {
         System.out.println("Alpha channel found !");
    float[] asample = null;
    System.out.println("raster alpha:");
    for (int y = 0; y < araster.getHeight(); y++) {
    for (int x = 0; x < araster.getWidth(); x++) {
    asample = araster.getPixel(x, y, asample);
    for (int i = 0; i < asample.length; i++) {
    System.out.print(" " + asample[i]);
    System.out.println();
    String format ="PNG";
    System.out.println("##########Test Writing using new JDK1.4.1 ImageIO:");
    Iterator writers = ImageIO.getImageWritersByFormatName(format);
    ImageWriter writer = (ImageWriter) writers.next();
    ImageWriteParam param = writer.getDefaultWriteParam();
    ImageTypeSpecifier imTy = param.getDestinationType();
    ImageTypeSpecifier imTySp =
    ImageTypeSpecifier.createFromRenderedImage(bi);
    param.setDestinationType(imTySp);
    File f = new File("c:/tmp/myimage."+format);
    try {
    ImageOutputStream ios = ImageIO.createImageOutputStream(f);
    writer.setOutput(ios);
    writer.writeInsert(0, new IIOImage(bi, null, null), param);
    } catch (Exception e) {
         System.err.println("could not write "+format+" file with alpha channel !");
    e.printStackTrace();
    public boolean imageUpdate(
    Image img,
    int infoflags,
    int x,
    int y,
    int width,
    int height) {
    if ((toolkit.checkImage(img, -1, -1, null)
    & (ImageObserver.HEIGHT | ImageObserver.WIDTH | ImageObserver.ALLBITS))
    == 35) {
    int iw = img.getWidth(this);
    int ih = img.getHeight(this);
    BufferedImage bi = new BufferedImage(iw, ih, BufferedImage.TYPE_4BYTE_ABGR);
    Graphics2D big = bi.createGraphics();
    big.drawImage(img, 0, 0, this);
    System.err.println("+++++test image that was read using old Toolkti.getImage method");
    alphaTest(bi);
    synchronized (this) {
    this.notifyAll();
    return false;
    return true; // image is not yet completely loaded into memory
    public static void main(String[] args) {
    //     BufferedImage image = new
    // BufferedImage();
    new AlphaChannelTest();
    /*************************END********************/
    The commandline looks like this:
    [i]
    com.sun.imageio.plugins.png.PNGImageReader@d1fa5
    *****test image that was read using new Jdk 1.4 ImageIO.read() method
    raster :
    there is no Alpha channel!!!!!!!!!
    wait
    +++++test image that was read using old Toolkti.getImage method
    raster :
    Alpha channel found !
    raster alpha:
    ##########Test Writing using new JDK1.4.1 ImageIO:
    could not write PNG file with alpha channel !
    java.lang.UnsupportedOperationException: Unsupported write variant!
         at javax.imageio.ImageWriter.unsupported(ImageWriter.java:600)
         at javax.imageio.ImageWriter.writeInsert(ImageWriter.java:973)
         at de.multivisual.bodo.test.AlphaChannelTest.alphaTest(AlphaChannelTest.java:113)
         at de.multivisual.bodo.test.AlphaChannelTest.imageUpdate(AlphaChannelTest.java:135)
         at sun.awt.image.ImageWatched.newInfo(ImageWatched.java:55)
         at sun.awt.image.ImageRepresentation.imageComplete(ImageRepresentation.java:636)
         at sun.awt.image.ImageDecoder.imageComplete(ImageDecoder.java:135)
         at sun.awt.image.PNGImageDecoder.produceImage(PNGImageDecoder.java:511)
         at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:257)
         at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:168)
         at sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)
    end

    in between i found out that the my png and jpeg test images did not have an alpha channel, since the tool i used to create them, did not write the alpha channel to disk.
    if i use png with alpha channel, then the read works correktly with ImageIO.read()
    however the read problem still remains for gifs and the write does not work for gifs and neither for pngs.
    whether jpegs can be read with alphachannel i don't know since i don't have a tool to create jpeg with alpha channel. (at least gimp and corel9 are not able to )
    and it is not possible to write the previous read png with alpha channel back as and jpeg with alpha channel

  • Active X object with a program to see my USB camera alive

    I´d like to use an active X object with a program to see my USB camera alive. I don't know if it is possible, does anyone could help me to do it?
    I have a program to use with my camera but I don't know what object I have to insert in the Active X container to play it.
    It could be another program, you suggest.
    I tried another solution before but it didn´t work: http://forums.ni.com/ni/board/message?board.id=170&message.id=397511
    So I thought it could be done in this way.
    Thanks in advance.
    Celia

    Thank for your help, but it didn´t work.
    But I've got a way using Imaq, it is an attchment. The difference from the others is the Imaq USB PropertyPage.vi. Even if I cancel the dialog box it works, but it don't work if I don't use it. As I don´t want the dialog box opens I am figuring out how to eliminate the Imaq USB PropertyPage.vi, what kind of configuration i have to do...
    Thanks again,
    Celia
    Attachments:
    TesteInternet.vi ‏41 KB

  • User Details with Related T-codes-Activity and Objects

    Dear Sir,
    My requirement is list of All users, Authorization object, user's assign t-codes and related activity(Create, Change and Display) with Organization level.
    Is there any Standard report for this. If standard report is not available please guide how to do this in Custom Reports.
    I have searched in SDN and web but not find any satisfactory answer. Actually
    Thanks in Advance.
    Ram Shanker

    Dear Fred,
    Actually I want to see all the user (Exist in System) and related Authorization object and Transaction Code with Transaction Activity. So Can you give some details about that. I have seen those tables like AGR% but It have not details description about Transaction Code and related activity.
    Please guide.
    Thanks.
    Ram Shanker

  • After Effects CC, Mavericks and Video with Alpha layer

    After installing mavericks I can't import video's with Alpha (animation codec) into AE,  it says the file is damaged or unsupported. These files worked fine before or are even created and freshly exported from AE. When I try to open them in Quicktime it tell me it's "converting" them. The files open fine in QT7. Does somebody know how to fix this issue?

    Hi,
    I had the same problem on a project we are working on.
    Solution (time consuming if you have a lot of alphas to work with) - Right click on the alpha file in finder and open with > Quicktime Player (i have Version 10.3 (727.1))
    The file is automatically converted
    Then once it has opened, just save the file again. It keeps the alpha data within the file.
    Maybe the best way to replace files with the same name, is to move the current files from there exisitng location, put them in a new folder. Then when you open each file in quicktime and save, remove the [converted] from the file name and save it in the original location (this should then all reconnect back into your projects)
    Not ideal but its working fro me right now.

  • Issues reading and burning with superdrive (mac pro 1.1)

    I am starting to experience a very annoying issue: the superdrive in my mac pro started to get bonk; not reading dvd that i burned some time ago with nero on pc; then it started to cause issues while burning with any software (finder, disk utility, toast on mac, and also nero and clonecd using parallels and bootcamp.
    The drive in my machine is a IDE Optiarc AD-7170A (that should be either a NEC or a Sony; but either firmware is not recognized by the drive)
    The media that i am using are MEmorex -R and DL +R; both of them were working just fine earlier ( i do not burn anything since 6-7 months ago).
    Now this is what happens: I get errors while burning, but not while doing the simulation; the error appear at any speed (tried 2X and up); and i tried with ISO images, DMG, just dragging stuff from my desktop and the result is the same: no writing and error message right after the lead-in (i assume; since it stays on lead-in on toaster).
    Using bootcamp and vista, with Nero; I get a calibration error; and if i use the built in feature to burn data in vista, i get an error too.
    Now; I would give a shot to another brand of media (verbatim? TDK?); but the fact that i cannot burn anything in any OS with any software would be a clear sign that something is wrong either on the drive or on the firmware; hence my request of help to anyone that experienced this issue
    - i cannot update the firmware (that i see as 1.N8); tried to go on the sony and nec sites and download their windows utility but no luck....the drive is not recognized; so i wonder if Apple has no way to let us update a firmware, what is the point of buying a superdrive instead of a normal dvd burner?
    - if my drive is broken....can i buy any dvd-rw drive and stick it in my mac pro?
    thanks for the help!

    Thanks for the suggestion; I've installed a new dvd drive and now seems that everything is working fine!
    I've also cleaned the old drive, taking it apart, and now at least i can use it as spare to read and burn in case that the new one would not work.

  • Issues, bugs and crashes with Email on C5-00 5MP

    Hello,
    I recently bought a C5-00 5MP and all is fine except some annoyances mostly in the email app.
    Sometimes it crashes when exiting the email app leaving the phone useless and I have to hard reset the phone (battery out or hold down power off), this happens quite often and is extremely annoying.
    Secondly when replying to an email I have T9 text on. I have disabled the 'predictive' text as it causes more grief than it's worth. If the T9 picks the wrong word I cycle through the options with * and select the one I want by hitting 0 as I want to add a space afterwards. However on hitting zero rather than adding a space it goes to a new line! This utterly infuriating!
    Finally, I downloaded the excellent Nokia Evolve theme as a free gift, but unfortunate as lovely as it looks and presumably may cut down battery usage being a lot of black, the background of the email app remains white and the text of the emails in the inbox is white but the background also remains white! Impossible to see the email subjects unless you move the cursor over the email title. i tried turning off and on again but to no avail.
    The email editing issue is particularly annoying and the more I use it the more it makes me wish I had gone for the Nokia E5...
    Please help?
    Vicky

    Hi!
    Have the same problem. Do you already have a solution?

  • Copying shared actions and objects with new parameters

    Hi All
    I have a problem with objects and shared actions. Here is the scenario:
    I have a sentence where parts of it are written in an informal way. The user is to tap the words of the sentence she/he thinks are informal, and they become highlighted. The user may click a submit button at any time, and if all the correct words have been highlighted, they receive a correct message.
    To achieve this I have given each word two click boxes (one for on and off), a highlight box, and have created shared actions for these to work.
    When I copy the group (the two click boxes and the highlight box), the actions are copied too. However, the shared actions parameters still point to the original, and not the copy. So my question is...
    Is there a way to copy objects and their associated shared actions, and have the parameters of the shared actions change to match the newly copied objects?
    Cheers
    Lewis Carey

    Hi Lewis,
    While Copy-Pasting can you make sure that you copy all the referred objects that are used as parameters.
    Also can you please upload your project file(cptx) to acrobat.com and email me the download link at [email protected]
    Regards,
    Haridoss

  • All of you who use the 80gb ipod classic and have problems with it freezing and syncing with itunes...well I have joined the club. This is a serious issue with apple and they need to correct it. I have tried everything to no avial.

    This is beyond frustrating. I just wasted 70 dollars between a new battery and gas for my ipod 80gb classic. It was having major issues syncing and freezing with itunes. I tried everything possible and noticed that a lot of people have been having the same issues with their ipod classics as well. I must have restored it several times and now it just totally bit the dust. Now I have to shell out 130 dollars to send it in to apple to be rebuilt/fixed. This is nonsense and I just cant believe apple isn't doing anything to address this issue. My ipod was doing great for about nearly 5 years and now  this. I even down-graded to itunes 10.7, but by the time I had it set up to try, that's when my ipod totally failed and will not even come on. Grrrrrrrrrrrrrrr

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • Print or export runtime created vector graphics with alpha values intact

    I want to be able to save the dynamically generated state of a swf as a vector image. I know I can right click on the swf and print to a pdf via the Adobe pdf print driver. This works well but all alpha values are lost. Does anyone know how to print to a pdf or any other vector format and retain the alpha values? The pdf format clearly supports it as I can save objects with alpha values from Illustrator as a pdf no problem.
    Any alternative solution that achives this result would be welcome e.g. save runtime swf via actionscript to swf or Illustrator format etc.
    thanks

    Hi All,
    Flash Pro CC 2014 (v14.0.0.110) is now available for download via the Creative Cloud App and Adobe website.
    We have added SVG Export feature to Flash Pro with this new release. You will now be able to export out vector content from the selected frame as an SVG image that can be opened directly in a Browser and even imported in Adobe Illustrator.
    SVG Export option can be accessed via the Publish Settings as well as via File Menu > Export > Export Image option.
    Along with this, we have added several new features with this release. Complete list is available at these links:
    Overview:         https://www.adobe.com/in/products/flash.html
    Whats new:      https://helpx.adobe.com/flash/using/whats-new.html
    Release Notes: https://helpx.adobe.com/flash/release-note/flash-professional-cc-2014.html
    Thanks,
    Nipun

  • List of infoobjects with transfer routines

    Hi,
      I want to get the list of all the infoobjects for which the transfer routines are existing.Is ther any table r transaction from where we can get this information?
    can anyone give me quick answer pls.
    thank you
    venku
    Message was edited by:
            venku chittidi

    Hi,
    if you create a routine in TR for an info object, system generates an ID.
    This ID is stored in the table. In my last answer I assumed, that you want to
    determine <b>all</b> info objects with a routine in TR and the way to do this is to
    identify all info objects with such an ID (value ne blank).
    Regards
    Joe

  • Syncing contacts and calendar with outlook and gmail - use Exchange or not?

    I need to sync my contacts and calendar between my iphone and Outlook and google on my laptop. Syncing via iTunes is fine as a backup but not as a constant process. I then saw that Gmail would permit an Exchange account to be used to allow immediate syncing so I installed an Exchange account on the iphone. It works but I now have doubled contacts. Is there a better way of doing this to avoid duplicate contacts? If I dedupe the contacts on the iphone do I risk then deleting contacts in Outlook on my PC? Alternatively if I delete the Exchange account on the iPhone is there a simple way of keeping calendars in sync on Iphone, Google and Outlook? (I just have two gmail accounts and do not have a Microsoft Exchange server)
    Grateful for any useful advice on this issue!

    FYI I eventually developed a work around that works better. I have a mac at home and a window pc at work. You can use plaxo to sync contacts between the two and the ipod syncs with the mac as advertised. Also as a bonus you don't have to deal with any issues, problems and pains with multiple itunes locations...

  • Why can't I see the Finder thumbnails for .mov files with alpha channels?

    Ever since I upgraded to Mavericks I haven't been able to see the thumbnail for or preview using spacebar any .MOV clips that contain alpha channels in Finder. PSDs and PNGs with alpha channels are fine, and I can still see their thumbnails and previews, it's just .MOV clips with alpha. Here are a couple screenshots:
    Most of these clips are using a PNG codec, but I converted on to the Animation codec and tested it in After Effects to make sure it kept the alpha channel and it did, but the same thumbnail error persists.
    Any idea why this might be or how to fix it?
    27" iMac late 2012
    1TB Fusion
    NVIDIA GeForce GTX 680MX 2048 MB
    16GB RAM
    OS X Mavericks
    Thanks.

    ok, have copied the photos again from the memory card and hey presto, it all works fine.  So in summary...for RW2 files from GF1 camera, I have no thumbnail images, couldn't view in Preview, and neither Quickview nor Coverview were working.  Ran the bit of code provided at "https://discussions.apple.com/message/18369759#18369759" (thanks to Snoop Dogg) and then recopied the photos onto my Mac (only required for photos copied since upgrading to Lion, everything from before the upgrade is fine anyway).
    Hope others find this helpful.

Maybe you are looking for