GUI- Cop Catching up with speeder scenario

Here's the problem:
A state trooper spies a speeding car going at a speed of 100 miles/hour on I-95. The trooper's car can accelerate as much as 12 miles/hour/second.
* Write a simulator and GUI for this problem. Your GUI should have "Go" and "Quit" buttons, should depict the two cars going across from left to right and should show the point the two cars meet. Your simulator should find the distance traveled for each car as a function of time.
* At what time and distance does the trooper catch up with the speeding car?
* What is the trooper's speed at the moment they catch up?
* Plot the velocity function for each car.

ok so i'm kinda on my feet here.. and this is what i've got so far
import java.util.*;
public class ChaseSimulator
     public static final double STEP_LENGTH = 0.2;
     public static final int MAX_STEPS = 10000;
     Car speeder = null;
     Car cop = null;
     boolean caught = false;
     double finalTime = 0;
     public ChaseSimulator()
          speeder = new Car("Speeder", 0, 100, 0, STEP_LENGTH);
          cop = new Car ("Cop", 0, 0, 12, STEP_LENGTH);
          caught = false;
          finalTime = 0;
          simulate();
     public void simulate()
          for (int i=0; i < MAX_STEPS; i++) {
               speeder.takeTimeStep();
               cop.takeTimeStep();
          System.out.println(speeder.toString());
          System.out.println(cop.toString());
class Car
     double pos, vel, acc;
     double stepLength;
     String name;
     public Car(String name, double s_i, double v_i, double a_i, double stepLength)
          this.name = name;
          pos = s_i;
          vel = v_i;
          acc = a_i;
          this.stepLength = stepLength;
     public double getS() { return pos; }
     public double getV() { return vel; }
     public double getA() { return acc; }
     public void takeTimeStep() {
          pos += stepLength*vel;
          vel += stepLength*acc;
     public String toString() {
          String result = "";
          result += "Current Position=  "+ pos + ", Current Velocity= " + vel + ", Current Acceleration= " + acc;
          return result;
}So, I made a text-based version of it with toStrings and what-not just so i could see if the velocities were working (they are). But what im really confused about is how the gui will work. Can you shed any light on that?

Similar Messages

  • How to implement a Copy or Create with Reference scenario

    For business objects, you might want to implement a Copy or Create with Reference scenario. The following procedure describes the UI configuration that you need if you want to place a copy button (in our example on an OWL) that starts a quick activity floorplan (on the same BO = Copy, or a different BO = Create with Reference). Pre-requisie in the target BO: The target BO requires a BO element SourceBOID and a Copy action that reads the SourceBO by SourceBOID by query, and copies the elements from the source to the target BO.
    The UI configuration in the target floor plan is:
    1. Open the QAF floor plan of the target BO (target floor plan).
    2. In the DataModel view of the target floor plan, select the Root entry and select Add Data Field from the context menu. Rename the created data element to OBN_OriginBOID.
    3. Choose the Controller tap, and select INPORTS and choose ADD INPORT from the context menu. A new in-port is created. Rename the in-port, for example to Copy.
    4. In the in-port maintenance form, activate the check box OBN INPORT.
    5. Select the namespace of your solution and the target business object.
    6. In the input field SELECT OPERATION enter Copy. A new select operation is created. The combination of business object name (including namespace), business object node and operation identifies the in-port and therefore the related floor plan as navigation target.
    7. Select the port type package /SAP_BYD_UI/SystemPortTypes.PTP.uicomponent.
    8. In the PARAMETERS section of the form, click the ADD button. Maintain the binding of the created parameter to /Root/OBN_OriginBOID. Based on this configuration, the system will transfer the parameter of the in-port to the element in the data model when the OBN is executed.
    9. In the Properties view, select the drop-down list box of the property EVENTS u2022 ONFIRE. Scroll down and select the entry u2026 NEW EVENT HANDLER u2026. The system starts the maintenance window for event handlers. Rename the event handler to CopyIn.
    10. In the OPERATIONS table of the maintenance window for event handlers, select type: BUSINESS OBJECT OPERATION. In the form below the table select the value CREATE for the input field BUSINESS OBJECT OPERATION TYPE. This operation will create a BO instance in the backend when the OBN is executed.
    11. In the OPERATIONS table, create a new operation of type: DATAOPERATION.  In the configuration of the data operation, select the operation type ASSIGN, source expression /Root/OBN_OriginBOID and target expression /Root/<BO>/OriginBOID.
    12. Create a third operation of type: BUSINESS OBJECT ACTION. Select the Copy action of the target business object and click the BIND button. Note: This action enforces another roundtrip to the backend. The Copy action must be implemented so that it will read the origin BO and copy selected data from the origin to the newly created object.
    13. Test the changes in the preview. If no error message is issued, save and activate the floor plan.
    The following procedure describes the configuration in the source floor plan (e.g. OWL floorplan ):
    1. Open the Source BO OWL floor plan (source floor plan).
    2. In the Designer view, place cursor the on the toolbar area and select ADD u2022 APPLICATION-SPECIFIC BUTTON u2022 MY BUTTON from a context menu. Rename the new button to Copy.
    3. In the Properties view, select the drop-down list box of the property MENU INFORMATION u2022 NAVIGATION. The system launches the maintenance window for OBN configuration.
    4. Select the in-port of the target floor plan by selecting the target business object (with namespace and name) the target business object node and the target operation, and the operation Copy.
    5. Choose the navigation style NEWWINDOW.
    6. Close the OBN configuration maintenance window by clicking the OK button. The system creates the OBN configuration, an out-port, that is used by the OBN configuration, and an event handler that uses the out-port and that is assigned to the button (see Properties view, EVENTS u2022 ONFIRE).
    7. Go to the Controller view and rename the OBN configuration to Copy, the new out port to Copy and the new event handler to CopyOut.
    8. Check that the event handler CopyOut fires the out-port Copy.
    9. In the Parameters section of the out-port maintenance form, click the ADD button. Maintain the binding of the created parameter as /Root/<BO>/<BO>ID. Based on this configuration, the system will transfer the identifier of the selected source BO to the out-port data structure when the OBN is executed.
    10. In the Operations table, select type: FIREOUTPORT. In the form below the table select the out-port CopyOut.
    11. Test the changes in the preview. If no error message is issued, save and activate the floor plan.

    Hi Dries-
    There are no pre-packaged solutions with BADIs since they are, by definition, custom development.  If that's the path you need to go down then consider the following high level alternatives:
    Incorporate custom code into the BPC Write Back BADI.  You can restrict the execution of the BADI using filters on the BADI definition, so that the BADI execution only occurs when a data manager package is called, and only for some defined combination of applications/appsets.  Utilized the standard copy/move functions delivered in Data Manager. When the BADI is called, interrogate each record being processed (table CT_ARRAY) and determine if the record has a value you want to process (i.e. save to the target application).  Skip any record that has a zero value.
    Another alternative is to develop the BADI as custom logic.  Data Manager parameters can be picked up in Script Logic and the values can be sent to the BADI by adding parameters.  Please see an example of parmater use in the "How To" document for Destination App at:
    [EPM How To Guides|https://wiki.sdn.sap.com/wiki/display/BPX/Enterprise%20Performance%20Management%20%28EPM%29%20How-to%20Guides]  > "How-to Desitnation App"
    Regards,
    Sheldon

  • Movies stop then spped up to catch up with sound help me

    movie picture keep stoping then speeds up to catch up with the sound while im watching movies on itunes. help!!!!

    Hey davey145,
    Depending on what version of Windows you're using, you'll want to follow the troubleshooting help in one of the following articles:
    Troubleshooting iTunes for Windows Vista or Windows 7 video playback performance issues
    http://support.apple.com/kb/TS1718
    iTunes for Windows XP: Troubleshooting video playback
    http://support.apple.com/kb/TS1386
    Have a great day,
    Delgadoh

  • I'm about to purchase Lion.  My husband and I each have a desktop, iPad and iPhone.  We currently use one Apple ID for iPad/phone purchases.  Can we purchase 2 copies of Lion with one Apple ID?

    I'm about to purchase Lion.  My husband and I each have a desktop, iPad and iPhone.  We currently use one Apple ID for iPad/phone purchases.  Can we purchase 2 copies of Lion with one Apple ID or do we have to use different Apple IDs for the purchase?  If we use the different Apple IDs can we still use the same ID for all of our purchases.

    And just in case you were wondering, installing one purchased copy on all the Macs you own is specifically called out as allowed in the Mac OS X Lion license.
    If you do not want to download multiple times, just copy the Applications -> Install Lion app to a safe place BEFORE you do the first install.  Then copy that copy to any Mac you own where you want to install Lion.

  • COPA Report Layout with Object List (ALV)

    Hi,
    I have question about the COPA report layout with object list (ALV). Everytime I executed the report with ALV format, the amount for quantity column always shows with 3 decimal number, menwhile for amount column always follow by 2 decimal number.
    Can anyone help me regarding this matter? I do not know how to turn off the decimal number to be 0 in this type of layout, although in the form itself I already put 0 decimal number.
    Thanks.

    Hi,
    Better to raise this issue in CO Forum. You can expect some solution.
    regards

  • Part 2: Flat files and Business Contents: Any issues with this scenario?

    I will appreciate some clarification on the some points made in response to my previous post "Flat files and Business Contents: Any issues with this scenario?"
    1.
    " ...you’d better analyze those cubes for data redundancy and presence of data you’ll never use. " I will appreciate some clarification on the type of analysis you are referring to. Examples will help.
    2.
    "If you want to combine several found IOs in your custom dataprovider, then again you must know (or figure out) relationships between these IOs." I will appreciate some clarification on the type of relationship you are referring to. Examples will help.
    3.
    I am a bit confused with "..include into ODS structure ALL fields required for the cube" but you also noted noted that "...except navigational attributes and chars and KFs that are going to be determined in TRs or URs."
    If you exclude ALL these, haven't you excluded all the fields you included in the ODS structure?
    4.
    "Consider carefully the ODS’ key fields selection. Their combination should not allow data aggregation that you don’t need."
    I may be missing the point here, I understand that you need to select the fields which will form the unique ID for the records in the ODS under the Key Field (please correct me if I am wrong with the purpose of the Key Field), but I don't understand the discussion of "aggregation" in the context.
    Thanks in advance

    Hallo
    I try to give some exaplanation based on the previous answer.
    1. Data redundancy - make sure you do not store the same information. does not make sense to have data redundanty across you Data Warehouse. this is also a cost. just sotre the same information one time if you get all what you need.
    2. whatwhever you build you dp, which consist of IO, you need to know with kind of relation (1:1 or 1:n - n:n and so on) exist between them. that will help you when you model you infoprovider. For example I would never pit togheter IO (n:m) in the same dimension if you expect an high number of cardinality. Sometime an IO can be an attribute of another one (depend on relation. For example
    Business Partner and his Address. Usually you have a relation 1:1, in this case address is an attribute of BParten and store it in the Masterdata instead then DP
    3. Sometime when you load from ODS to CUBE, you can fill some IO (which are in the infocube and not in the ODS)through ABAP routine in TR-Start Routine of Update Rule. Does not make sense to include these IO in the ODS as they are NULL or Blank (the deault value). This can happen when for example, you first load in the ODS (Price and Quantity) and then you calculate Sell price later (Price * Quantity). of course it could be doen also in the Bex. Depends on other factors (Performance - Loaidng -Sizing)
    4. Make sure that the KEY definition of ODS is accordingly to the data otherwise you will aggregate the data and later maybe if you need the detail you miss it.
    for example: customer - product - Distr Chan - Sell Price
    if each Customer can buy each product for any Distrution Channel, then when you build your ODS(Customer - Product and Distribution must be KEY) otherwise (if you have only Customer - Product KEY for example) you will lose the details for Distribution Channel.
    I hope eveyrhting is clear
    Regards
    Mike

  • Using the Netbeans GUI within a Project with existing Ant Script

    I cannot seem to figure out how to use the Netbeans GUI in my Project with existing Ant Script. Is this possible? I have no problem creating GUI interfaces in a java Application, but attempting to make a new JFrame Form gives the error: package org.jdesktop.layout does not exist, and I have not been able to find a way around this. Any suggestions? Thanks in advance.
    Chris Coulon

    OK, I think I am on the right track, but I don't understand why I am still getting this error:
    clean:
    compile:
    Copying 1 file to /Users/chris/**JavaProjects/Netbeans_ImageJ
    Created dir: /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build
    Compiling 292 source files to /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:31: package org.jdesktop.layout does not exist
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:31: package org.jdesktop.layout does not exist
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:34: package org.jdesktop.layout does not exist
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:38: package org.jdesktop.layout does not exist
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    Note: Some input files use or override a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    4 errors
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build.xml:11: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 6 seconds)
    I no longer have the error in my java code in the Projects list, but I still cannot build the project. This is my current build.xml file:
    <!-- Ant makefile for ImageJ -->
    <project name="ImageJ" default="run">
      <target name="compile" description="Compile everything.">
          <!-- Copy the swing layout library into dist.lib -->
        <copy file="dist/lib/swing-layout-1.0.3.jar" todir=".." />
        <!-- First, ensure the build directory exists. -->
        <mkdir dir="build" />
        <!-- Build everything; add debug="on" to debug -->
        <javac srcdir="." destdir="build" optimize="on" source="1.4" target="1.4" debug="on">
          <!-- The plugins directory only needs to be
                 present at runtime, not at build time. -->
          <!-- exclude name="plugins/**"/-->
        </javac>
      </target>
      <target name="build" depends="compile" description="Build ij.jar.">
        <!-- Copy needed files into the build directory. -->
        <copy file="IJ_Props.txt" todir="build" />
        <copy file="images/microscope.gif" tofile="build/microscope.gif" />
        <copy file="images/about.jpg" tofile="build/about.jpg" />
         <copy file="plugins/MacAdapter.class" tofile="build/MacAdapter.class" />
        <copy todir="build/macros"><fileset dir="macros"/></copy>
        <!-- Build ij.jar. -->
        <jar jarfile="ij.jar" basedir="build"
             manifest="MANIFEST.MF" />
      </target>
      <target name="clean" description="Delete the build files.">
        <delete dir="build" />
        <delete file="ij.jar" />
      </target>
      <target name="run" depends="build" description="Build and run ImageJ.">
        <copy file="ij.jar" toDir=".." />
        <java maxmemory="640m" jar="ij.jar" fork="yes" />
      </target>
      <target name="run2" depends="build" description="Build and run ImageJ.">
        <!-- Run in ImageJ directory -->
        <copy file="ij.jar" toDir=".." />
        <java maxmemory="640m" dir=".." jar="ij.jar" fork="yes" />
      </target>
      <target name="zip" depends="clean" description="Build zrc.zip.">
        <zip zipfile="../src.zip"
           basedir=".."
           includes="source/**"
        />
      </target>
      <target name="javadocs" description="Build the JavaDocs.">
        <delete dir="../api" />
        <mkdir dir="../api" />
        <javadoc
               sourcepath="."
               packagenames="ij.*"
               destdir="../api"
               author="true"
               version="true"
               use="true"
               windowtitle="ImageJ API">
        </javadoc>
      </target>
       </project>notice I added this line: <copy file="dist/lib/swing-layout-1.0.3.jar" todir=".." />
    because the dir ".." is where the other jar files are placed, i.e.:
    [GAIAG:~/**JavaProjects/Netbeans_ImageJ/source] chris% ls ..
    PolarDisplay          ij.jar               swing-layout-1.0.3.jar
    TestFrames          myApp
    api               source
    So why is the build not able to see the package org.jdesktop.layout in the jar file?
    Chris

  • Error in ECC6.0(Windows GUI 640 Exception 0xC0000005 with ID=0x590A1113/0x)

    Hi ,
    In our environment , SAP is ECC6.0 installed in HP-Unix.Some time user face problem "Windows GUI 640 Exception 0xC0000005 with ID=0x590A1113/0x590A1113 occurred (PL=27)" and it spread to all computer . I have updated latest patched for GUI also , but it the problems seems occur.
    Please let me know how to correct this problem and why its occuring again and again
    Thanks and Regards
    Brijesh Prasad

    If this error is reproducible and you´re on the latest patchlevel I suggest you create an OSS call and attach the tracefile generated.
    Markus

  • I already have a new book that is ready to publish as an iBook. In addition I also have an app prepared for this book. Please tell me how to upload this book (title is: "How To Cope...with life") and the app for it into your iBook Authors app so I can hav

    I already have a new book that is ready to publish as an iBook. In addition I also have an app prepared for this book.
    Please tell me how to upload this book (title is: "How To Cope...with life") and the app for it into your iBook Authors app so I can have it offered for sale @$0.99, in your app store?
    FROM: Terry Weber, Email: [email protected]

    https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/wa/bookSignup

  • Please help with subcontracting scenario............

    Hi All,
    Can anyone please help me in dealing with subcontracting scenario with scrap taken into account. Please provide the screen shots from BOm creatio to challan closing. the requirement is urgent. please help me. all replies will be suitablly rewarded.
    regards,
    vvr sharma

    Sub Contracting Cycle
    (1) You have a material that can be procured externally, and you have maintained BOM with components. Any waste generated and received during subcontracting process can be maintained as component with negative quantity. 
    (2) You create a subcontracting PO (PO with Item Category L). You can also maintain Purchase Info Record for Subcontract category for material and subcontractor. 
    (3) You make a transfer posting to issue components for SC PO. Material is sent to subcontractor.  As material remains under your ownership, system does not make any value entry. But quantity is shown as "Material Provided to Vendor" 
    (4) You receive finished material against SC-PO. You also specify components consumed in manufacturing of finished goods. Additionally, if you have negative components in BOM, now you'll also receive subcontracting by-products. There are three events, so three accounting entries are generated: 
    DR FG Stock/ SC By-Product Stock 
    CR Change in Stock (FG/ SC By-Product ) 
    (for finished goods received) 
    DR Subcontracting Charges 
    CR GR/IR Clg 
    (for moneys payable to Subcontractor) 
    DR Consumption (Components) 
    CR Change in Stock (FG/ SC By-Product ) 
    (material provided to Vendor is now charged to expense) 
    (5) You do the IV for SC Invoice, and the process is complete. 
    Process of Subcontract in MM
    Sub-contract business process: 
    You want to buy material from the supplier (processed material/ assembled item) , but for some reason (quality of certain item / price ) you will give some component to vendor . 
    Vendor shall process the item / use the item provided & supply the final item. 
    SAP process: 
    1.Create the finished goods material code. 
    2.Maintain the BOM for the material. 
    3.Create PO with item category as "L" . 
    4.Issue material to vendor with movement type 541 
    5.Receive the material against the PO with movement type 101. 
    6.MIRO to account for vendor's invoice for the service charge& material used by him. 
    Can anybody tell me how a process has to be given to subcontracting?
    Suppose, I have 3 operations  1)weaving 2)dyeing 3)cutting & packing 
    if no 2 process (i.e Dyeing) has to be given to subcontracting, what process should i follow ?
    The following process to be followed for subcontracting. 
    1. Item code(material master) to be created at the stage of before dyeing. 
    2. Item code(material master) to be created after Dyeing as subcontracted item.(F30) 
    3. Bill of material to becreated for the material(2) calling for material(1) 
    4. Inforecord and source list to be created for material(2) with the corresponding vendor 
    5. PO to be released for material (2) 
    6.Along with PO the material(1) to be issued to vendor 
    7.On receipt of material when GR is made the stock with vendor will get updated. 
    How to Create a Subcontract Order?
    To create a subcontract order, proceed as follows: 
    Enter the material you want to order and the item category for subcontracting (L) in the order item. 
    Press ENTER to display the screen for component processing. 
    Enter the components that the vendor requires to manufacture the product. 
    Please note: 
    – You do not need to enter the date required for the components. This date is proposed by the system when you press ENTER. 
    It is calculated as follows:
    Delivery date of the item - Planned delivery time
    – If you do not want the quantity of the components to be changed if the order quantity of the end product is altered, set the indicator Fixed quantity (column F). 
    – You can determine whether the components are available on the date required by selecting Edit -> Availability check. 
    If you entered a bill of material as the material in the subcontract order, the components are created automatically. 
    If you want to determine the components in the bill of material at a later date (for example, if the bill of material is subsequently changed), choose Item -> Component -> New BOM explosion. The existing components are deleted and redetermined in the bill of material. 
    Save the purchase order. 
    When you print the purchase order, the components are printed per order item
    Subcontracting - Key Points
    Special Procurement Process.
    Item category: L
    Order type: NB
    In info record vendor should be maintained as subcontractor.
    Vendor (Subcontractor) receives the components used to manufacture a finished product directly from your company or through third party.
    Your company should place a purchase order for the finished product.   In this manually you can enter the required individual components or it can be determined via the explosion of BOM (if exists).
    Stock check at vendor level: ME2O
    Company stock check: MMBE
    GR for individual components through movement type: 501 or 561 (if with out PO or without reference).
    GI to subcontracting vendor: through movement type 541.
    GR from sub contracting vendor: through movement type: 101
    Movement type 543 is displayed to cancel the material cost account.
    If the subcontracting order has to be generated through materials planning,the special procurement key has to be set in MRP 2 screen.
    - To create the Subcon Info Record : Tcode ME11 - Info Category - Click Subcontracting
    - To create Material BOM : Tcode CS01
    - With the Info and Material Setup, you can then create the Purchase Order in Tcode ME21N
    Hope this is helpful.
    Regards
    Ravi

  • Is it possible try  with out catch but with finally

    can any body tell me that try with out catch but with finally is possible or not and also if I dont want to execute the finally block but i want to execute the try and catch then what can i do for that.

    ... and also if I dont want to
    execute the finally block but i want to execute the
    try and catch then what can i do for that.Obviously the best way then would be to not have the finally block at all.
    But if you insist then add a boolean flag. Set it in the catch and test it in the finally block.

  • Officejet 6500: All print jobs (except copies) come out with black smudged background. Fixes?

    I have an Officejet 6500.:  All print jobs (except copies) come out with dark black smudged background and the text is also smudged.  Any suggestions?  Thx

    FYI, for Black not printing on OJ 6500 ...
    If the printer is out of warranty it may be worth following the suggestion in this post re. soaking the Printhead. Note it's important to switch the printer off at the Power button rather than just plugging out at the wall (as otherwise the Printhead won't get capped properly and may dry out)
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • GUI "out of sync" with filesystem?

    We have one OS X Server (10.3.9) box here that is displaying a very odd problem. It appears that the only way to get an accurate view of what files are in what directories is from within Terminal. The GUI is not displaying files that really do exist in any given directory (confirmed via Terminal), and the view into any given folder may be into that folder, or into a completely different folder.
    For example:
    * Log in as admin
    * Click the "admin" home icon
    * Click into "documents"
    * None of the files that we know are there appear
    * According to the Workgroup Manager, admin's' home directory is /Users/admin
    * When we navigate in and out of the folder, we see that we are not really in /Users/admin, we're actually in /Shared Items/Data/Admin
    Its as if the GUI has lost sync with the actual contents of the filesystem.
    The system is running fine otherwise, and the issue seems to be manifested only in user folders.
    Has anyone ever seen this before?

    Hi gothambus and Welcome to Apple Discussions!!
    You might be better off asking this question in the Mac OS X Server forum, since it would appear to be an issue with where the Home folders really are.

  • SRM 7.0 with PDP scenario

    Dear Experts,
    In SRM 7.0 with PDP scenario which BADI should be used in order to replace the RFC user to the original requestor ?
    Thanks and Regards,
    Venkata Koppisetti.

    Hi Manjunat
    His requirement is very clear.
    All the PDP scenarion PR converted to shopping cart - good recipient as a RFC user but he wanted to transfer really who created a request in ECC ( if venkat created a PR means VENKAT name shown as Good recipient). I think this is one of crucial request most BUYER requirement since BUYER has to see who really created this request if any clarification of the request BUYER needs to refer backend system as well. this creates some conflict on auditing as well.otherwise BUYER has to refer Purchase request and needs to log in ECC who created this request .Buyer community wants to work only in Web front end not with stone age Dialog screens.

  • My laptop got wet - battery icon now has a X inside and it is not holding any charge at all, anyone else dealt with this scenario?

    My laptop got wet - battery icon now has a X inside and it is not holding any charge at all, anyone else dealt with this scenario?

    The battery is not detected, so it means that the battery or the battery connector are not working, which is a serious problem.
    Turn off your MacBook and take it to an Apple Store or reseller. It will be an expensive repair if your logic board has to be replaced. Read > https://discussions.apple.com/docs/DOC-5511

Maybe you are looking for

  • My computer operating system is Windows XP. My HP Office Jet G85 no longer works as it once did

    I have an XP opporating system and a HP G85 Printer that we bought and have been using several systems ago.  I have the "original" HP installation disk, but feel I need an updated HP disk/driver/software to myake the printer work properly with my cur

  • Printing of VAT number

    Hi Gurus, I have a scenario in which one of our Sales org changed its VAT number and now in 2009 we have new VAT number printed on the FORM to get printed on Invoices. The issue is that when user needs to reprint the invoices from 2008, needs old VAT

  • Ni teststand 3.5 numeric limits properties

    Hello! I have a test step with the numerical limits -0.3 and 0.5. Sometimes the DMM 4 wires measures 0.50007 for example and the test result is FAIL.I don't need this precision. I want to take into consideration only 2 digits after the comma, in orde

  • Start Windows in Mac OS X

    Is it possible to restart in windows from mac os x using boot camp? just like when you restart to mac os x while in windows.

  • How to control/set window size of applications?

    When I press "command-shift-A" my application folder opens on the desktop. However, it always opens in a very small size requiring me to enlarge the window to see the entire folder. How can I set a default size of the entire screen when this window o