Change the demical point in layout create PO in field net price

hai frineds,
can we extend the net price decimal point form two to 4 decimal point?

Better you use "per" unit price rather that change the decimal currency, eg: 2500 USD per 1000PC, you can read several thread that similiar with your question:
Re: Purchase price to have 4 digits after decimal point
Decimal Place
decimal places in Purchase orders

Similar Messages

  • Can I create a keyboard shortcut to change the reference point? (Mac CS6)

    I'm forever changing the reference point during a job and the tiny squares are a nightmare (my eyes aren't what they used to be), a shortcut to change it from the centre to top left would be great.
    Cheers
    Mark.

    @Mark – and here an overview of all available options:
    AnchorPoint.BOTTOM_CENTER_ANCHOR
    The center point on the bottom of the bounding box.
    AnchorPoint.BOTTOM_LEFT_ANCHOR
    The bottom left corner.
    AnchorPoint.BOTTOM_RIGHT_ANCHOR
    The bottom right corner.
    AnchorPoint.CENTER_ANCHOR
    The center point in the bounding box.
    AnchorPoint.LEFT_CENTER_ANCHOR
    The center point on the left side of the bounding box.
    AnchorPoint.RIGHT_CENTER_ANCHOR
    The center point on the right side of the bounding box.
    AnchorPoint.TOP_CENTER_ANCHOR
    The center point on the top of the bounding box.
    AnchorPoint.TOP_LEFT_ANCHOR
    The top left corner.
    AnchorPoint.TOP_RIGHT_ANCHOR
    The top right corner.
    Uwe

  • Change the end point URL in WSDL for web-service

    Hi All,
    Morning , could someone please help us with this question, we are stuck with this currently.
    In SOA Suite 10g as well 11g we have a jsimple Java class whose one of the methods is exposed as a web service.
    In the project it has created the WSDL as well and have deployed the .ear file to the servers from EM console successfully.
    Now we need to migrate this web service to testing & production environments.
    1. Could someone please let us know the steps as to how do we change the end point url in the WSDL for this web service (present in web content --> WEB-INF/wsdl path in the j-developer project) for migration in case of both 10g (OC4J) as well 11g (WLS) servers.
    2. Also could this change/update be done prior to deployment as well as post deployment as well.
    Looking forward to inputs regards this...as we are stuck with this ..would be very helpful
    Thanks as always for help & guidance..

    Hi
    As Vijay mentioned, you develop a WebService in JDeveloper and test in JDeveloper integrated Weblogic Server say at http://localhost:7101/MyWebService/MyPort?wsdl. Thats it. Once it is working. Export it into a .WAR file. If you have any other supporting EJB JARs etc, put all these into a full blown .EAR at application level. NOW deploy this .EAR or .WAR into any Domain on any host and any port. DOES not matter. That server's host and port will be taken. Infact even if this other domain is Clustered domain, still it will work by giving webserver host and webserver port that sits in front of the cluster.
    I develop my webservices in JDeveloper and test at 7101 port. This .WAR gets deployed in QC Env at qchost:qcport. Same .WAR deployed to UAT at uathost:uatport and finally to prod also at prodhost:prodport.
    Its just the Client (WebService Proxy) that is calling this WebService need to use appropriate host and port based on which Env it is connecting to. For this, simply do not hard code WSDL URL in the java code or anywhere. Simply get it from a .properties file using a key value pair like this.
    WSDL_URL=http://host:port/MyWebService/MyPort?WSDL.
    Now have Environment specific values for above key and put that properties file in that domain root folder. And in your code always refer this key.
    You can use many approaches along the above lines.
    If your WebServies proxy is a webservice adapter say within bpel, still you can modify the value using deployment plan .xml file file while deploying.
    I would not absolutely prefer opening war file from ear and modifying war and updating ear file etc etc. Also do not have multiple EARs for Environment specific. Just have only one single EAR or WAR file that can be deployed to any environment.
    Thanks
    Ravi Jegga

  • Change the end point in a web service client???

    Hello,
    With the Web Service Proxy Wizard of JDeveloper 10g R3, I created a web service proxy that connects to a (web service) end point like this: http://carina.bicevida.cl/OidServices/OidBasicWebServiceSoapHttpPort
    My three related questions are:
    1.- How can I change the end point registered in the (client) web service proxy ?
    2.- How can I do this without need to rebuild the client application?
    3.- How can I do this once my client application have been deployed in the application server?
    Please help.

    Hi,
    these are your options
    - Edit the endpoint meta data stored in the .proxy xml file (e.g. \src\project\myservice.proxy)
    - Use WS proxy wrapper and call setEndpoint on the proxy
    - Recreate the proxy in JDeveloper based on the new endpoint. This may require merging any business logic if it was inserted directly in the proxy (as opposed to a wrappering class)
    where I think option 1 and 2 is what you would look for. I don't know how exactly JDeveloper 11 is different, but I got the info from development that there will be simplifications.
    Frank

  • How to change the registration point on a shape

    Hi,
    Is there a way to change the registration point on a shape
    created in Director? For instance, I created a filled oval, and by
    default Director sets the top left corner of the surrounding square
    as the registration point. Nevertheless, I need to place that
    registration point at the center of the oval.
    Best regards.

    Hi, if you create a shape vector from director, the reg point
    is in the center of it; if you import a vector created in other
    aplication (flash), the regpoint is in the top left corner. To
    change the regpoint of an imported shape, try this:
    put your shape in the stage in x,y = 0,0 position, then, if
    your shape rect is 12,8 pixs, and if you want to move the regpoint
    to the center of it
    on preparemovie me
    member("yourshape").regpoint = point(6,4)
    end
    play and stop the movie, your shape will change the regpoint
    to 6,4
    remove the script, and that's all.
    Best regards.
    sayeg

  • Changing the Registration point via AS3 . how?

    hello,
    is it posseple to change the Registration point via AS3 ?
    Best Regards,
    Crimson

    The Attach Code window isn't working for me on this so I
    pasted the code into the message. Hope the formatting remains
    reasonable.
    public class HomePage extends MovieClip {
    public var frenchieReal:Swimmer; //Swimmer extends
    MovieClip; contains image of French Angel
    public var frenchie:Sprite; //To offset regisration point of
    frenchieReal
    public function loadStage() {
    var timer:Timer;
    var wayPoints:Array;
    //Establish timer for swimmers
    timer = new Timer(100, 0);
    //Create new swimmer supplying: image path, width, heigth,
    and initial x and y location
    frenchieReal = new Swimmer("Photoshop/oceanswimmer.png", 57,
    41, -24, -28);
    frenchie = new Sprite();
    frenchie.x = 244;
    frenchie.y = 532;
    this.addChild(frenchie);
    frenchie.addChild(frenchieReal);
    frenchieReal.setTimerListener(timer);
    //Set waypoints for swimmers
    wayPoints = [[230, 530],
    [240, 520],
    [250, 500],
    [260, 480],
    [298, 480],
    [358, 540],
    [368, 544],
    [388, 520],
    [398, 495],
    [404, 475],
    [420, 500],
    [458, 545],
    [528, 550]];
    frenchieReal.setPath(wayPoints);
    package {
    import flash.display.MovieClip;
    import flash.events.*;
    import flash.utils.Timer;
    import flash.net.*;
    import flash.display.*;
    public class Swimmer extends MovieClip {
    private var path:Array;
    private var pathLength:uint;
    private var pathLocation:int;
    private var loader:Loader;
    private var intercept:int;
    public function Swimmer(imagePath:String, w:uint, h:uint,
    xx:uint, yy:uint) {
    var urlRequest:URLRequest;
    this.x = xx; //Transaltion offsets for image MovieClip (eg,
    -24 and -28)
    this.y = yy; //Image is visible if these two values are
    nonnegative
    this.loader = new Loader();
    this.addChild(this.loader);
    urlRequest = new URLRequest(imagePath);
    if (urlRequest != null) this.loader.load(urlRequest);
    //Sets an array of waypoints
    public function setPath(p:Array) {
    this.path = p;
    this.pathLength = p.length;
    this.pathLocation = 1;
    this.parent.x = this.path[0][0];
    this.parent.y = this.path[0][1];
    this.intercept = -this.parent.y;
    public function setTimerListener(t:Timer):void {
    t.addEventListener(TimerEvent.TIMER, timerListener);
    //this.parent in timerListener is the Sprite object to which
    image MovieClip is parented
    function timerListener(e:TimerEvent):void {
    var i:int;
    var iMinus1:int;
    var xx:int;
    var y1:int;
    var y2:int;
    var rise:int;
    var run:int;
    var rotationAngle:int;
    if (this.path != null) {
    //Move to next segment?
    if (this.parent.x >= this.path[this.pathLocation][0]) {
    this.pathLocation++;
    //Go back to first segment?
    if (this.pathLocation == this.pathLength) {
    this.pathLocation = 1;
    this.parent.x = this.path[0][0];
    this.parent.y = this.path[0][1];
    this.intercept = -this.parent.y; //Minus y to translate
    everything to lower quadrant
    //y = ax + b
    //y = ((path
    [1] - path[i-1][1]) / (path[0] - path[i-1][0])) * this.x +
    path[i-1][1]
    i = this.pathLocation;
    iMinus1 = i - 1;
    this.parent.x += 2;
    xx = this.parent.x - this.path[iMinus1][0];
    y1 = -this.path[iMinus1][1];
    y2 = -this.path
    [1];
    rise = y2 - y1;
    run = this.path[0] - this.path[iMinus1][0];
    this.parent.y = ((y2 - y1) / (this.path
    [0] - this.path[iMinus1][0])) * xx + intercept;
    this.parent.y = -this.parent.y;
    rotationAngle = -(180/Math.PI) * Math.atan2(rise, run);
    this.parent.rotation = rotationAngle;
    trace("rise = " + rise + " run = " + run + " rotationAngle =
    " + rotationAngle + " Intercept = " + this.intercept);
    trace("x = " + this.parent.x + " y = " + this.parent.y + "
    rotation = " + this.parent.rotation);

  • Possible to change the business Partner from a created Contract in ICWEB??

    Hello experts,
    I would like to know if it is posible to change the BP from a created contract in ICWEB.
    I check the option "CONTRACT MANAGMENT" and there is an option to change the premise with the button "Move To Other Premise" but I don't find an option to change the Business Partner from a created contract.
    Can you help me, please??
    Thank in advance.
    Edited by: Javier Garcia on Aug 19, 2008 7:01 PM

    Hello S Reddy and a lot of thanks for your help.
    But I don't know where I can select this option, there isn't the  where I can associate the option in customizing or what transaction. Could you explain me with more details, please ??
    Thanks in advance.
    Regards.

  • User Exit/Badi to change the billing plan date when create sale order

    Experts,
    Please advise which user exit/badi can be used to change the billing plan date wen create sale order.
    My requriement is based on some rules to dynamically change the line item billing plan start date and end date when create sales order.
    I tried some user eixt in MV45AFZZ, but the date got revert to the orginal date from billing plan.

    Hi,
      check the include MV45AFZB.
    Thanks & Regards,
    Sateesh.

  • How can i change the mouse pointer image?

    Hi friends!!
    It's possible to change the mouse pointer image in Swing?
    Thanks a lot.

    There's a setCursor() method on the frame component.

  • I would suggest a new feature:The possibilty to change the mouse pointer icon when you hover on an a

    I would suggest a new feature:The possibilty  to change the mouse pointer icon when you hover on an active link by any other one icon I select.

    Current Firefox versions have a feature called tear-off tabs.<br />
    You can detach a tab from the current window and open it in a new window by dragging a tab in the browser window.<br />
    You can drag that tab back to the tab bar in the original window to undo that detaching.
    bug489729 (Disable detach and tear off tab):
    * https://addons.mozilla.org/firefox/addon/bug489729-disable-detach-and-t

  • Can I change the center point for a motion scale

    I would like to motion scale an image with the center for the scaling at the bottom of the image, not the center of the image. I tried changing the anchor point numbers, but that moves the photo as well.

    Try setting the Anchor Point - NOT the Center Point. The Ccenter Point is where the center of the image will be; the Anchor Point is the point at which the image is anchored.
    -DH
    Message was edited by: David Harbsmeier

  • How to view the input and output layouts created in the planning folder?

    Hi all,
    How to view the input and output layouts created in the planning folder in the bw 3.5?
    Thanks
    Pooja

    Hi,
    You can refer to this link. How to create planning folder and executing the planning folder.
    http://help.sap.com/saphelp_nw04/Helpdata/EN/5d/7c4b52691011d4b2f00050dadfb23f/frameset.htm
    Hope this helps

  • Change the delta pointer at source system side

    Hi BI friends,
       I'm facing some problem while extracting the data from XI system. Whenever i try to fetch the data from XI then it throws an ABAP dump TSV_TNEW_BLOCKS_NO_ROLL_MEMORY.
      As per my konwledge, we have made setting in source system to maintain delta only for 14 days and now we are in 13th day.
    we have only one day remaining to correc the memory issue at source system otherwise we will miss out all transaction data (delta).
    My question is,
    1. is there any way that we can change the delta pointer to change no. of days from 15 to 30 in source system side?
    2. is there any way to resolve the above memory /ABAP dump other than following checkings (we have checked the below mentioned terms).
    - - - - RFC, IDOC, Reduce packet size, RFC
    Your help is highly appreciated.
    Regards,
    Varun

    we already proposed this solution to XI team but is there any way to resolve this issue from BW System side...
    even we have performed some t-codes but dint help us to resolve the issue.
    throw some input.

  • How to change the font used to fill in a text field.

    Can you please tell me how to change the font that comes up when a text field is filled in?
    Can I change this setting in InDesign or does it have to be done in Acrobat?

    It must be done in Acrobat. InDesign only allows Times Roman for some reason.
    To change it in Acrobat 11, open the PDF and select: Tools > Forms > Edit
    and select the field(s) you want to change, bring up the field properties dialog, and look on the Appearance tab for the font dropdown.

  • Routing : disable the field "net price" in external process

    Hi all PP guru,
    in Routing, is there any way i can disable the field "net price" in external process, not let user enter any value in, also force the Purchase info record as mandatory field ?
    anyone know how to use "OP5D" ?
    Regards
    kh

    Hi,
    In the Transaction: OP5D:
    Select PP/QM task lists: operation screens
    In the Next Screen all the Fields are arranged in the Alphabetical Order.
    For Net Price: Select the Disp. Radiobutton (Display)
    For Purcase Infor record: Select the Req Radiobutton ( Required)
    Every time the Filed Net Price is for display purpose and Purchase Info Record is a Mandory Field for you.
    Hope this helps..
    Regards,
    Siva

Maybe you are looking for

  • Opening a Windows iTunes library with Mac iTunes

    I have my iTunes folder on a shared drive on my network. This was created in Windows XP using that version of iTunes. I have a Macbook Pro and have access to the shared drive. I would like to use that same library so that I can preserve my ratings an

  • Net Price in PO Item not updating for Item Category "D"

    In purchase order with line item category "D" Service, upon first input of gross price in Service tab, Net Price in line item was updated successfully, but upon changing the gross price again in service tab, Net Price in line item is not updating any

  • Upgrade to Apex 4.2 - apex.widget.tabular' is null or not an object

    After upgrading to Apex 4.2 the following error occurrs when loading a page that contains a Group Select List [Plug-in]: *'apex.widget.tabular' is null or not an object* The error message appears to be related to a Group Select List [Plug-in] item wi

  • RCA TO HP PAVILLION 23 ALL IN ONE

    I am trying to connect an Ion Profile LP (Vinyl-Archiving Turntable to an HP 23 All in One.  The turn table has RCA cords. I do not see any audio input cables much less RCA input.  What can I use to plug the device in and where can I plug it into. Th

  • Sending SAP Standard message through EMAIL

    Hi All, Is there any way to send the EMAIL to one dedicated person when SAP standard message get POP-UP. I want to use this functionality in TCODE-SNRO object and want to shot email when no. range has reached on specified threshold limit. Regards Jal