Does pricing type have any effect in Delivery to billing copy controls

Hi,
Does pricing have any effect on delivery to billing copy controls, for example pricing type, since there is no pricing related data in delivery.
iF the billing is maintained as delivery related billing, will pricing type has any effect.
Thanks
Keshi

Yaa, It is a good question.
If the billing is maintained as delivery related, its all about the qty of the material to be billed after delivery. (setting maintained at VOV7).
Even though the delivery doesnt have any pricing relevant data, the pricing type has an important effect.
Of course it is maintained at delivery to billing copy control, but u have to see where u are finding the pricing type field. It is in the copy control item level for TAN. So it is not relevant to the delivery transaction any more, it is relevant to the item category only.
So the conclusion here is if the item category is relevant for billing transaction, after delivering the item, how the pricing is carried out during the billing (whether the same pricing or diff. pricing). This is explained by the pricing type field.
Hope i answers ur query. if u have any further queries, please post.
Do reward points if it is useful.

Similar Messages

  • VDBench50403rc1 does item 8 have any effect on heartbeat time out errors

    In the past you have intimated that heartbeat timeouts could be caused by socket traffic, does item 8 of the bug list or the new SlaveSocket.class help out with this problem.

    The SlaveSocket update I sent out for 50402 ONLY moved the 'slow socket' message from the console to the logfile, that was mainly a cosmetic change.
    The Vdbench Master sends a heartbeat message to each slave every 45 (3*60/4) seconds.
    If the master does not hear back within three minutes he'll time out.
    The same for a slave. If he has not received a heartbeat message for 3 minutes he'll also time out.
    Could it be that socket traffic gets so far behind that we get to the timeout? Possible.
    If however the Vdbench reporting has come to a complete halt it means that no socket traffic is happening at all, so that for me is no indication that we're running behind, we've just lost contact with the slaves.
    For me most heartbeat timeouts are related to system overload: just yesterday I had a case here where four independent Vdbench tests were all filling up file system cache and with that system memory. After that the OS was thrashing full time looking for free memory and no real work, including socket traffic, was done.
    In your case I would suggest you give 50403rc1 a try and see what happens.
    Henk.

  • Resizing a TIFF File: Overwriting TIFFFields does not have any effect

    Hi,
    I have some TIFF files that I am receiving through a FAX server. Some of the TIFF files have an image length of *1077 pixels and a DPI of 200x98*. These images open fine in generic viewers like Microsoft Image Viewer and IrfanView and the image size in the information dialog shows up fine (1752x2158). But when I open the images in a LeadTools viewer (that works off TIFF Header tags), the image appears stretched out.
    I am trying to re-sample the image to make it a true Letter size image (1700x2200) with resolution of 200x200. I have been able to set the TAG_X_RESOLUTION and TAG_Y_RESOLUTION which I can see changed in the Tag Viewer. But changing the following tags does not have any effect on the resulting image:
    TAG_IMAGE_WIDTH
    TAG_IMAGE_LENGTH
    TAG_ROWS_PER_STRIP
    the following is the code I am using, I have tried all possible ways (removing TIFFFeilds and then adding them), but it has no effect. The last options is to use a Print Driver from within Java and Print the image (that re-samples it into a 8.5x11 inch image with 200 DPI). At this point, I am just curious about writing TIFFFields with images. Any ideas are appreciated:
    Thanks,
    Manuj
    +
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.util.Iterator;
    import javax.imageio.IIOImage;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.ImageWriter;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.stream.ImageInputStream;
    import javax.imageio.stream.ImageOutputStream;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    import com.sun.media.imageio.plugins.tiff.BaselineTIFFTagSet;
    import com.sun.media.imageio.plugins.tiff.TIFFDirectory;
    import com.sun.media.imageio.plugins.tiff.TIFFField;
    import com.sun.media.imageio.plugins.tiff.TIFFImageWriteParam;
    import com.sun.media.imageio.plugins.tiff.TIFFTag;
    import com.sun.media.imageioimpl.plugins.tiff.TIFFT6Compressor;
                   //set the input stream for to the reader
                   tiffFileReader.setInput(tiffFileInputStream);     
                   //define the writer
                   ImageWriter tiffWriter = (ImageWriter) ImageIO.getImageWritersByMIMEType("image/tiff").next();
                   //define the writer param with compression;
                   TIFFImageWriteParam writeParam = (TIFFImageWriteParam)tiffWriter.getDefaultWriteParam();
                   TIFFT6Compressor compressor = new TIFFT6Compressor();
                   writeParam.setCompressionMode(TIFFImageWriteParam.MODE_EXPLICIT);
                   writeParam.setCompressionType(compressor.getCompressionType());
                   writeParam.setTIFFCompressor(compressor);
                   writeParam.setCompressionQuality(Float.parseFloat("1"));
    // get the metaData
                   IIOMetadata imageMetadata = null;
                   IIOImage testImage = null;
                   for(int i=0;i<filePageCount;i++)
                        imageMetadata = tiffFileReader.getImageMetadata(i);
                        TIFFDirectory dir = TIFFDirectory.createFromMetadata(imageMetadata);
              // Get {X,Y}Resolution tags.
              BaselineTIFFTagSet base = BaselineTIFFTagSet.getInstance();
              TIFFTag tagXRes = base.getTag(BaselineTIFFTagSet.TAG_X_RESOLUTION);
              TIFFTag tagYRes = base.getTag(BaselineTIFFTagSet.TAG_Y_RESOLUTION);
              TIFFTag tagImageWidth = base.getTag(BaselineTIFFTagSet.TAG_IMAGE_WIDTH);
    TIFFTag tagImageLength = base.getTag(BaselineTIFFTagSet.TAG_IMAGE_LENGTH);
              TIFFTag tagRowsPerStrip = base.getTag(BaselineTIFFTagSet.TAG_ROWS_PER_STRIP);
              TIFFField fieldRowsPerStrip = new TIFFField(tagRowsPerStrip, TIFFTag.TIFF_SHORT, 1, (Object)new char[]{2200});
              // Create {X,Y}Resolution fields.
              TIFFField fieldXRes = new TIFFField(tagXRes, TIFFTag.TIFF_RATIONAL,1, new long[][] {{200, 1}});
              TIFFField fieldYRes = new TIFFField(tagYRes, TIFFTag.TIFF_RATIONAL,1, new long[][] {{200, 1}});
              // Create Width/Height fields.
              TIFFField fieldImageWidth = new TIFFField(tagImageWidth,TIFFTag.TIFF_SHORT,1, (Object)new char[]{1728});
              TIFFField fieldImageLength = new TIFFField(tagImageLength, TIFFTag.TIFF_SHORT,1, (Object)new char[]{2200});
              //TIFFTag imageLengthTag = fieldImageLength.getTag();
              // Append {X,Y}Resolution fields to directory.
              dir.addTIFFField(fieldXRes);
              dir.addTIFFField(fieldYRes);
              //add Image Length and height parameters
              dir.addTIFFField(fieldImageWidth);
              dir.addTIFFField(fieldImageLength);
              // dir.removeTIFFField(278);
              dir.addTIFFField(fieldRowsPerStrip);
    testImage = new IIOImage(tiffFileReader.read(i), null, dir.getAsMetadata());
    +
    The resulting image with this carries the updated DPI values (200x200) but still carries the old values of 1752x1077, the length being exactly half of what Irfan view is showing.
    Edited by: Manuj on Nov 2, 2010 10:48 AM

    Your problem for some reason sounds familiar.
    EDIT
    Ok, now I remember. Your post is like this one in the old forums,
    http://forums.sun.com/thread.jspa?forumID=540&threadID=5425983
    Basically, for viewing purposes Irfanview scales the image's height by 2 and changes the dpi to *200x196*. It does this to achieve a 'square' pixel. The image that appears on screen now looks roughly how a printer would print it. However, the image data is still the same squished 1752x1077 image.

  • When I type my email address in the "To:" field, a random name comes up next to it as "Holidays in United States". This just started happening out of the blue and I have no idea why. Does anyone else have any idea?

    When I type my email address in the "To:" field, a random name comes up next to it as "Holidays in United States". This just started happening out of the blue and I have no idea why. Does anyone else have any idea?

    Just to recap, this is a collection of ports I have collected over time for people who needed this information when setting up the HP ePrint app so that they could view their email from within the app.  I am certain other applications also need this information.  Although lengthy, I could not find a more comprehensive place to retrieve this information.  Feel free to post additional information, faulty information, or other related topics below as this is simply a collection of data and it would be practically impossible to test all of them. Thank you!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • Does Flash Player protected mode / disabling it have any effect on XP?

    Does Flash Player protected mode / disabling it have any effect on XP / Firefox?

    Been experiencing severe slowness and lock-ups with Firefox of late (since 27.0 / 28.0),  which ends with a sudden drop in memory usage and me having to  repeatedly shut it down through Task Manager. I have created a new profile and disabled hardware acceleration. I have tried disabling all  plug-ins and extensions, yet I noticed that at times (not always) plug-in container was still an active process, which I don't understand. Why would it be active when there are no enabled plug-ins? I also noticed that when plug-in container is not active (showing under Processes in Task Manager) I do not have this problem and Firefox runs normally?
    I have run MalwareBytes, TDSSKiller, Hitman Pro and McAfee Stinger - no threats found.

  • Hi.does ipad smart case have any effect on its screen.because of strong magnets?

    hi.does ipad smart case have any effect on its screen.because of strong magnets?

    What kind of TV? The older cathod ray tubes would be affected by nearby magnets. Usually the picture would be distorted. But LED screens use a completely different technology for producing the image and are not affected by magnets.
    I've had a Samrt Cover on my iPad 2 since it was new and now have a new iPad Air with a Smart Cover. No screen problems of any kind.

  • Does Mavericks have any effect on MBP battery life?

    Does updating to Mavericks have any effect on the battery life of the MacBook Pro?

    It's suppose to have a postive affect on battery life. At least that's what I'm seeing in comparison to OS X Mountain Lion (Macbook Pro Retina).
    See Conclusion at the bottom of this PDF from Apple. You can also skim through the PDF to see how battery life is extended.

  • I'm using a pc, (windows 8.1,) and I cannot get a thick and thin line with CS6. None of the brush tool settings have any effect, even in the preview. Is there a setting I need because I'm using a pc?

    I'm using a pc, (windows 8.1,) and I cannot get a thick and thin line with CS6. I want to draw, but I cannot get any linework like I should. I also use Sketchbook Pro, and ToonBoom, and I get wonderful linework. But not with Photoshop.
    None of the brush tool settings have any effect, even in the preview. Is there a setting I need because I'm using a pc and not a mac?

    Thanks for your response,
    I'm using a Fujitsu T901 laptop, with a stylus pen. Painting works great in Photoshop, but for drawing there is no sensitivity at all.  Frans Vischer
    author and illustrator of Fuddles, A Very Fuddles Christmas and Jimmy Dabble
    www.fransvischer.com
    pamperedfatcat.wordpress.com

  • My hand me down MPC keeps repeating the start up chime and nothing comes on and no buttons have any effect. Any ideas?

    MY "hand me down" Mac Book Pro has decided that it will not boot up. I just get the first chime repeating over and over and none of the keys seem to have any effect at all. I cannot get into safe mode etc. My nearest Apple S tore is about 40 miles away. Any ideas out there?

    Alanmeats,
    Do you know the year of production (e.g., "15-inch Late 2011")?
    Never mind - it looks as if it's a mid-late 15" 2009.
    It's sounds as if your problem is something mechanical - a bad drive, something, that will simply not allow the system to boot. Do you have the discs that originally came with the machine (gray discs)? If so, you can try booting from Disc One and see if you can boot into recovery mode. If not, you'll need to call Apple, with your serial number handy, and purchase a set of the machine-specific discs that came with the system (10.4.9 or 10.4.10 or perhaps even 10.5).
    Then you can see if you've a hardware or system problem.
    Clinton
    MacBook Pro (15-inch Late 2011), OS Mavericks 10.9.4, 16GB Crucial RAM, Crucial M500 960GB SSD, 27” Apple Thunderbolt Display

  • Does Captivate 8 have any facility to allow users to see a word definition upon clicking/hovering over text in a Captivate project?

    Does Captivate 8 have any facility to allow users to see a word definition upon clicking/hovering over text in a Captivate project?

    You can have both clicking and hovering. But you need to add the definition manually for every such word.
    Sreekanth

  • Does photoshop touch have any new updates?

    does photoshop touch have any new updates?

    Does this Forum focus on Photoshop as opposed to the companion apps?
    http://forums.adobe.com/community/creative_cloud_touch_apps/adobe_photoshop_touch

  • My iPad Air has its screen unlit since yesterday though I can hear messages/emails notification. The wake-up button seems not to have any effect.

    My iPad Air has its screen unlit since yesterday though messages/emails notifications are heard. The wake-up button seems not to have any effect. What should I do?

    Press and hold both the home and power buttons 10-15 seconds till the Apple logo appears. Release both buttons. Wait 15-20 seconds till your iPad starts on it's own.

  • Setting mediaplayer.autoPlay doesn't seem to have any effect

    Hi,
    As topic says, setting the autoPlay property on MediaPlayer to false doesn't seem to have any effect on the VideoElement.
    The MediaPlayer always auto play when assigning it a new VideoElement. I'm using OSMF 1.5
    Thanks

    Hi,
    It looks ok. Can you provide the code for createVideoElement as well?
    This is the snipet that works for me:
    var resource:URLResource = new URLResource("http://mediapm.edgesuite.net/strobe/content/test/AFaerysTale_sylviaApostol_640_500_short.f lv");
    // Create the MediaElement and add it to our container class.
    var videoElement:VideoElement =  new VideoElement(resource);
    container.addMediaElement(videoElement);
    var mediaPlayer:MediaPlayer = new MediaPlayer();
    mediaPlayer.autoPlay = false;
    mediaPlayer.media = videoElement;
    Gelu

  • Does PLX file have any compiled code

    What exactly is a plx file. I created a plx file giving the COMPILE_ALL option as
    NO. I saved the plx and the pll in the libraries directory .
    When i run my form i can see the changes. Does the plx have any code or is it just
    a referece to the pll file.
    thanks

    the point with the security is a good point. I appended it in my blog:
    our projects are normally applications for customers and never standard-software. So we have no problem with security. The application server with the deployed forms and libraries is secured as strong as the database, so that only admins have access.
    ### this is added in the blog - try the example on your machine ###
    Other developer say: plx is only the compiled code, so nobody can steal my sourcecode or something valuable from within the code - in that case try this example:
    Create a library with a package and this variable:
    <pre>
    PACKAGE Const IS
    HiddenPW CONSTANT Varchar2 (100) := 'HiddenPW';
    END Const;
    </pre>
    Generate the plx and open it in an editor. Search for "HiddenPW". You'll find the name of the variable and the string associated to the var. That's not save in my eyes. Only the sourcecode is hidden. I think, that a pll on an Application Server is secure enough.
    If the application is standard software and is not for free, then you can use the plx-technique :-)
    ###

  • HT5627 Does Mail (Mavericks) have any limitations for size, numer of mailboxes, folders, messages, etc.?

    Does Mail (Mavericks) have any limitations for size, numer of mailboxes, folders, messages, etc. ?

    Ah, so you're not considering running OS X Server here, you're running OS X client and asking about the mail client — looks like both the Apple bot that suggested that support article and I were confused.
    Mavericks Mail.app does have a few flakies that I've noticed but does work.  If Mail.app gets confused, restart it and see if it's less confused.  If the accounts get confused and start tossing the password prompt, remove and re-add the accounts.  When re-adding the accounts, don't use the Internet Accounts path, use the Mail > Preferences path.
    Do make a backup or two before the Mavericks upgrade, and most definitely configure and use Time Machine or some other backup tools after the upgrade.
    If you do decide to go to server (which is where I'd thought this question was originally headed), then you can download everything to your own local server — that'll take some add-on software to pull the mail from your ISP, or a set of mail-forwarding rules to push the mail, and some command-line tweaks to relay the mail out (as you're probably on a DHCP dynamic residential IP address), but that'll work, too.

Maybe you are looking for