P2 field offloading question

Hi all,
I'm looking for recommendations on a mac solution for p2 field offloading.
I'm currently offloading via PC laptop to external drive without firewire - usb only. It's slow. And I can't view the footage that's been put onto the external drive becuase my laptop and usb is too slow. I don't load footage to laptop drive - i go straight to external drive. Using p2 viewer I can view footage from the laptop drive or p2 card, but I need to view it from the drive to check for problems and see that it made it over without corruption. (yes, i've enjoyed corrupted p2 footage in the past) So now I'm considering a mac laptop, but they have no pcmcia slots! And i heard the adapters are prone to corrupting footage.
I just want to quickly move the P2 footage off the p2 card and onto an external drive QUICKLY and be able to VERIFY footage on that external drive before deleting my sacred footage from the P2 card.
I'd love to know other peoples' solid p2 field workflow setups.
Thanks, vscomm.

I am keeping my Powerbook for this reason too. But I know that the Duel Adapter cards work, but they can be jiggled loose. The connection isn't the most secure. That is the biggest issue with Express 34.
Shane

Similar Messages

  • Continuation of Field Shift Question

    This is a continuation of my previous question which was answered.  Using the rect property, I am able to move a field horizontally or vertically based on the value of a radio button (yes/no).  If Yes, I want to shift a specific field down.  If No, I keep the field in its original position.  The problem I am encountering is when a user toggles between Yes and No.  The specific fields are shifted down due to the radio button value being Yes and when the value is changed to No, the fields remain in the new position.  Is there a way to Setthe X,Y coordinates of a field using rect or rectangle?  Did some research but can't figure it out.
    Thanks

    Out of curiosity, instead of opening a new thread, should I have just replied to the original thread?
    The problem is when a user toggles through the Yes and No values on the radio button.  Ideally, the user would only select one or the other.  If so, my script using rect would move the fields down if yes is selected and keep the fields in their original position if no is selected.  However, if a user selects yes, then changes their selection to no, the fields will stay in the new position and not revert to the original position.
    I wanted to see if there was a way to actually set the rect properties to actual X,Y coordinate values so that when Yes is selected, the fields move to a specific position and when No is selected, the fields move to a specific position.  I am using part of a script I found in the reference guides and my lack of knowledge of this script property is leading to my confusion.
    The code I'm using is:
    var a = this.getField("costs");
    var aRect = a.rect;
    if (this.getField("radiobutton").value == "Yes") {
    a.display = display.visible;
    aRect[0] -= 0; // increment first x-coordinate by 10
    aRect[1] -= 100; // increment first y-coordinate by 20
    aRect[2] -= 0; // increment second x-coordinate by 10
    aRect[3] -= 100; // increment second y-coordinate by 20
    a.rect = aRect; // update the value of b.rect
    } else {
    a.display = display.visible;
    aRect[0] += 0; // increment first x-coordinate by 10
    aRect[1] += 0; // increment first y-coordinate by 20
    aRect[2] += 0; // increment second x-coordinate by 10
    aRect[3] += 0; // increment second y-coordinate by 20
    a.rect = aRect; // update the value of b.rect
    By changing the "else" part of the script, I can have the field move up (+= 100) if No is selected after Yes.  The problem with adding that to the script is if a user selects No first, the field will move up.
    Additionally, I thought I could avoid a lot of the headache here by marking either Yes or No as the default value but my form also has a reset button and when the form is reset, the fields move either up or down depending on the last value.
    Is there a way to set the coordinates to specific values?  My script is using the fields current position to move accordingly.
    Thanks

  • JTextArea(Field) & JDropMenu Questions

    I am wondering how to take the values put in by a user into a TextArea(TextField) and a ComboDrop(DropMenu) and have whatever is inserted into them saved into a document using FileWriter/PrintWriter...
    I have the plain textboxes working by using the get text methods and outputFile.println([object]); fine... I just need to know how to incorporate using a text field instead... my teacher mentioned something about using the /n to get multiple lines but I am unclear on the actual code used.
    Also, how to have it recognize what object is selected in a dropmenu and have that object passed to the document saved. (In this case we are making it save all the input information from a patient form to an HTML document-- it is just a mock program for a 101 class).
    Again I have the textboxes identified as strings and used the gettext method to hold the info in them and then the file writer/outputFile/println to send it to a document... just wondering how to do that for a text area and a dropmenu...
    One last question too I am using a Try and Catch method with the IO class(Exception)... but I am using net beans and had to manually import the IO class. My outputFile.Println(); are all tagged in red... is there another class I need to import besides the IO?
    Thanks.

    Check out my RememberData class. This works with comboboxes
    Textfields and TextAreas would be trickier; you'd need to know when to add an entry although if you just wanted to restore the entry on the next start you could just continually save everything or do it on focuslost
    Anyhoo here is RememberData. You are free to use and modify this class but please do not change the package or take credit for it as your own work.
    RememberData.java
    ================
    * Created on Jul 3, 2005 by @author Tom Jacobs
    package tjacobs.io;
    import java.awt.Component;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.*;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipException;
    import java.util.zip.ZipFile;
    import java.util.zip.ZipInputStream;
    import java.util.zip.ZipOutputStream;
    import javax.swing.DefaultListModel;
    import javax.swing.JComboBox;
    import javax.swing.JList;
    import javax.swing.ListModel;
    import javax.swing.MutableComboBoxModel;
    import javax.swing.event.ListDataEvent;
    import javax.swing.event.ListDataListener;
    import javax.swing.event.ListSelectionEvent;
    import javax.swing.event.ListSelectionListener;
    import tjacobs.zip.ZipUpdate;
    public class RememberData implements Runnable {
         private static HashMap<ListModel, JComboBox[]> mComboDependencies = new HashMap<ListModel, JComboBox[]>();
         private static HashMap<ListModel, CommonListDataListener> mModelListeners = new HashMap<ListModel, CommonListDataListener>();
         private static HashMap<ListModel, File> mFileMap = new HashMap<ListModel, File>();
         public static final String FOOTER = "\n\n\n";
         private boolean sWritingToFile = false;
         private static ArrayList<CommonListDataListener> sQueue;
         private boolean sRunning = true;
         private static RememberData sSingleton;
         private static boolean useZip = true;
         private RememberData() {
              super();
         public void run() {
              while (sRunning) {
                   if (sQueue.size() != 0) {
                        CommonListDataListener listener = sQueue.remove(0);
                        listener.saveChanges();
                   else {
                        synchronized (RememberData.class) {
                             try {
                                  RememberData.class.wait();
                             catch (InterruptedException ex) {}
         public void addDependencies(MutableComboBoxModel model, JComboBox[] combos) {
              if (sSingleton == null) {
                   //don't know how this could happen, but it's good just to be paranoid
                   throw new Error("RememberData: Singleton is null");
              mComboDependencies.put(model, combos);
              if (combos != null) {
                   ModelListener l = new ModelListener(model);
                   for (int i = 0; i < combos.length; i++) {
                        combos.addActionListener(l);
         private static class ModelListener implements ActionListener {
              private MutableComboBoxModel mModel;
              public ModelListener(MutableComboBoxModel model) {
                   mModel = model;
              public void actionPerformed(ActionEvent ae) {
                   //disable Listener
                   CommonListDataListener l = mModelListeners.get(mModel);
                   if (l == null) {
                        throw new RuntimeException("model must have listener");
                   JComboBox[] combos = mComboDependencies.get(mModel);
                   File f = mFileMap.get(mModel);
                   mModel.removeListDataListener(l);
                   loadData(mModel, f, combos);
                   mModel.addListDataListener(l);
                   //enable Listener
         public static void RememberData(MutableComboBoxModel model, File f) {
              RememberData(model, f, null);
         public static void RememberData(MutableComboBoxModel model, File base, JComboBox[] dependencies) {
              mFileMap.put(model, base);
              loadData(model, base, dependencies);
              CommonListDataListener l = new CommonListDataListener(model);
              model.addListDataListener(l);
              mModelListeners.put(model, l);
              if (sSingleton == null) {
                   sSingleton = new RememberData();
              sSingleton.addDependencies(model, dependencies);
         private static File getRelativeFile(File f, JComboBox[] dependencies) {
              if (dependencies != null) {
                   String path = f.getAbsolutePath();
                   int idx = path.lastIndexOf(".");
                   String ending = idx == -1 ? "" : path.substring(idx + 1);
                   path = idx == -1 ? path : path.substring(0, idx);
                   StringBuffer sb = new StringBuffer(path);
                   for (int i = 0; i < dependencies.length; i++) {
                        sb.append("-" + dependencies[i].getSelectedItem().toString());
                   f = new File(sb.toString() + ending);
              return f;
         private static void loadData(MutableComboBoxModel model, File f, JComboBox[] dependencies) {
              //create file name
              if (!useZip) {
                   f = getRelativeFile(f, dependencies);
              //test if exists
              if (f.exists()) {
                   try {
                        String s;
                        if (!useZip) {
                             s = IOUtils.loadTextFile(f);
                        else {
                             ZipFile zip = new ZipFile(f);
                             ZipEntry entry = zip.getEntry(getRelativeFile(f, dependencies).toString());
                             s = IOUtils.loadAllString(zip.getInputStream(entry));
                        int size = model.getSize();
                        for (int i = 0; i < size; i++) {
                             model.removeElementAt(0);
                        LineNumberReader lnr = new LineNumberReader(new StringReader(s));
                        lnr.readLine();
                        String line;
                        while ((line = lnr.readLine()) != null) {
                             model.addElement(line);
                   catch (IOException iox) {
                        iox.printStackTrace();
         private static String getHeader(Component c) {
              String name = c.getName();
              return c.getClass().getName() + " " + (name == null ? "Unnamed" : name) + "\n";
         public synchronized static void addToQueue(CommonListDataListener l) {
              if (sQueue == null) {
                   sQueue = new ArrayList<CommonListDataListener>();
              sQueue.remove(l);
              sQueue.add(l);
              if (sSingleton == null) {
                   sSingleton = new RememberData();
                   Thread t = new Thread(sSingleton, "Remember Data Thread");
                   t.setPriority(Thread.MIN_PRIORITY);
                   t.start();
              } else {
                   RememberData.class.notify();
         private static class CommonListDataListener implements ListDataListener {
              private DefaultListModel mModel;
              private MutableComboBoxModel mComboModel;
              private ListDataEvent ev;
              public CommonListDataListener(DefaultListModel model) {
                   mModel = model;
              public CommonListDataListener(MutableComboBoxModel model) {
                   mComboModel = model;
              public void contentsChanged(ListDataEvent ev) {
                   this.ev = ev;
                   addToQueue(this);
              public void intervalAdded(ListDataEvent ev) {
                   this.ev = ev;
                   addToQueue(this);
              public void intervalRemoved(ListDataEvent ev) {
                   this.ev = ev;
                   addToQueue(this);
              void saveChanges() {
                   File file = mFileMap.get(mModel);
                   JComboBox[] dependencies = mComboDependencies.get(mModel);
                   PrintWriter pw = null;
                   try {
                        if (!useZip) {
                             file = getRelativeFile(file, dependencies);
                             pw = new PrintWriter(new FileWriter(file));
                             String contents = null;
                             contents = getSaveString();
                             pw.print(contents);
                             pw.close();
                        else {
                             ZipUpdate.update(file.getPath(), getRelativeFile(file, dependencies).toString());
                   catch (IOException iox) {
                        iox.printStackTrace();
              public boolean equals (Object o) {
                   if (o instanceof CommonListDataListener) {
                        CommonListDataListener lis = (CommonListDataListener) o;
                        return lis.mModel == mModel;
                   return false;
              private String getSaveString() {
                   StringBuilder sb = new StringBuilder();
                   if (mModel != null) {
                        int size = mModel.getSize();
                        for (int i = 0; i < size; i++) {
                             if (i != 0) {
                                  sb.append('\n');
                             sb.append(mModel.getElementAt(i).toString());
                        return sb.toString();
                   //else
                   int size = mComboModel.getSize();
                   for (int i = 0; i < size; i++) {
                        if (i != 0) {
                             sb.append('\n');
                        sb.append(mComboModel.getElementAt(i).toString());
                   return sb.toString();

  • Address book field sort question

    Does anyone know how I can set upp my City field so I can sort by city? When I call customers for appointments I would like to sort by city so I can group all my calls together. Presently I group it in with Last name which does not work well if I want to do a mailing.
    Note to Palm; Why wouldn't Palm have set City field seperately so you can sort by city?
    Post relates to: Tungsten E2

    McAfee will warn you about anything sometimes lol. I've downloaded about 10 different programs and no viruses yet, so you shouldn't need worry. There should be some sort of advanced search tool on that site. You can also try using google. I do apologize the device does not come with that search method natively. I hope you find what you are looking for though through add ons.
    Let me know if you have any further questions and have a nice day.
    Post relates to: Treo 800w (Sprint)

  • Progressive scanning and Field Dominence questions

    Beginning questions. I will be making simple video movies mostly for viewing on Macbook Pro, maybe on TV, but unlikely.
    I have some settings questions. I will shoot with miniDV Sony DCR-VX2100, 16 bit, 48 khz, NTSC.
    The camera has a setting: Progressive On/Off (normal). The (rather confusing) manual suggests Progressive for more stable stills, otherwise use normal for moving images.
    Should I use Progressive Off? And what setting for Field Dominance, in FCE?
    Hope that I have provided enough info.
    Thanks,
    Sonny

    Should I use Progressive Off? And what setting for Field Dominance, in FCE?
    For regular shooting I'd leave it off. A fast shutter and good lighting will give pretty good stills in off mode.
    If you need (rarely) rock solid stills then switch it on if you like.
    Lower field dominance for DV. When you select the correct Easy Setup in FCE all the leg work is done.
    You should use Easy Setup>DV-NTSC. Set this and Save before capturing to your Sequence.
    Al

  • MDS field customization question

    I'm working on an application that I want to make customizable thru MDS. The part of the application that I am trying to customize is basically simple data entry. I want to use MDS because there are a lot of fields that potentially need data, but everyone uses different subsets of the fields and I would like to give everyone the ability to customize which fields they see on the various pages.
    I thought Oracle Composer might be able to help with this. My initial idea was to put all the fields in a Resource Catalog and let people add them to the page as needed. But I can only find examples of add Task Flows and whole pages to the Catalog, not individual data fields with preset EL. The default Resource Catalog already has the ADF Components page that has individual components, but that seems to be populated from some backing Java, not something declarative and easily customizable.
    So at this point I have 2 questions:
    1. Am I approaching this customization problem correctly? Is there a better way for me to approach the customization aspect?
    2. If there isn't a better way to perform the customizations, can someone point to be a good sample on how to populate a Resource Catalog with individual data fields?
    user756338

    From the SNMP navigator at http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?objectInput=enterprises.9.9.293.1.4.0.3&translate=Translate&submitValue=SUBMIT&submitClicked=true
    this is the fcNameServer Notification which makes sense since the 21 00 00 E0 8B 0F 00 E0 appears to be a fibre channel WWN. So, that is the Cisco-NS-MIB and is a notification. So, assuming I looked up the last digit in the notification in the MIB correctly, the description for 3 is: "This notification is generated by the Name Server when a new entry gets added to the Name Server database."
    Thus, It appears the trap is that that PWWN was registered to the nameserver.

  • Photo Field Box Question?

    I am doing an a form and i have photos to add and i click the button to add more photo field button to get more boxes, but nothing happens how do i get more boxes to add photos?

    What software are you using to do this?  (Adobe Reader cannot create forms or other PDF files.)

  • Basic Field Dominance question

    In Tom Wolsky's FCE HD3.5 Editing Workshop book (xlnt), he mentions setting Field Dominance to None when working in 24p, but I'm unclear what this does and whether it applies to my situation:
    I'm shooting 24p HDV on Canon HV20, exporting to QT movie, burn in iDVD. DVD to be played on generic DVD players - not going to Sundance.
    Also, if I should be setting Field Dominance to None, when should this be done - before rendering, before exporting to QT, or ???

    Most consumer cameras don't shoot true 24p. They shoot pseudo 24p recorded at 29.97. The material is still interlaced with a pulldown cadence. Pull the canvas up to 100% and step through the video at a point where there is some motion. If the HV20 uses the normal 2:3:2:3 pulldown you'll see a cadence of two frames without interlacing, then three frames with interlacing, then two without and so on. That's how movies are mashed onto television; four frames of film are spread over five frames or 10 fields of video. Changing the sequence field dominance to none doesn't affect the captured material in any way; it only affects how anything that needs to be rendered in the sequence is rendered. It should render it without interlacing.

  • Lifecycle designer 8 Field Locking question

    I have created a Remote access request form that is sent out to people when they need to connect to our network remotely. the form asks them to enter their contact details (Text field) and i have also created a table that asks what server they need access to (drop down list). However i also have text fields next to the drop down list. The user is only supposed to fill out their contact details and server name fields, then send it back to me and i will issue them an ip address, password etc. I will then save the form and send them a copy for reference. What i would like to do is lock down the form so they can only enter data in certain fields, but when it is sent back to me i can fill in the rest of the fields, ( ip address, password fields etc). Choosing to lock down a field after signing isn't any help to me because when they sign it and send back to me i want to be able to enter the rest of the information.
    Is there any possible work around to this.. how will the document know who has full access to it?
    Cheers,
    Dan
    IT Admin
    FEA LTD.

    A couple steps have to be made to have your form expand. Make sure when you save the form, it is saved as "Dynamic" and not "static".
    Also, make sure you click "Expand to fit" under "Height" in the Layout tab.
    If you want everything below your "expandable" section to move down, you will have to make sure all of those parts below are "wrapped" in a subform and the content is set to "flowed". You can wrap a "positioned" subform in a "flowed" subform.
    I hope this is some what helpful and understandable.

  • Field Dominance Question for Sequence

    I shot my video in DVCPro50 format at 30p. I have edited my video in a DV50 sequence. I am ready to take to a production house to be transferred to BetaSP. In the past with other videos I take the finished sequence and nest it into a Uncompressed 8-bit NTSC sequence and that is what I give to production house. In this Uncompressed 8-bit sequence should I select Field Dominance: None or Field Dominance: Lower (even)?
    Thanks for your help!

    If someone could help me out to confirm this. I would rather do this right than find out when my commercial is broadcast that I messed up the field dominance.
    My final sequence is being transferred to BETASP. I take to the production house an uncompressed 8 bit NTSC sequence.
    If I understand this correctly my uncompressed sequence will have a field dominance of lower if the original footage was SD.
    If my original footage was HD than my uncompressed sequence should have the field dominance set to upper.
    So the uncompressed sequence that is transferred to BETASP has a field dominance set by the original footage?
    Thanks for taking the time with this.
    Darrin

  • Dropdownlist box value and display field retrieval question

    have a case on a dropdown list where I want to not only retieve the value from the selected item, but I also want to retrieve the display field. I know that you use the the tempDropdownlist.getValue() to get the value, but how do you retrieve the display field?
    The dropdown box is bound to a table with id(int) and Name(string).

    Yes there's no easy way - but you can loop thru the select items list and find the one that matches the current getValue result... and get it that way - see the tutorial on Using Listbox Components...
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/index.jsp
    hth,
    v

  • Adobe LiveCycle Date/Time Field Scripting Question

    I have a date/time field in Livecycle which the end user chooses a random date from.  I need to populate a date 180 days from this date for an eligible to date/time field.  I have tried various javascript and formcalc options with no success.

    Try this site here for a reference: http://eslifeline.wordpress.com/2008/09/26/date-manipulation/
    The following was the use case. A form has 2 TextFields Start_Date and End_date
    User enters a certain date in the Start_Date text field for example 09/24/08 (MM/DD/YY)
    The End_Date should add 90 days to the Start_date and populate the End_Date
    The following script would do that
    var current = Date2Num(Start_Date.rawValue, “MM/DD/YY”)
    var future = current+90
    var newDate = Num2Date(future,”MM/DD/YY”)
    form1.#subform[0].End_Date.rawValue = newDate 
    Validating End Date is later than Start Date
    var diff = Date2Num(EndingDate.rawValue, “YYYY-MM-DD”) – Date2Num(StartingDate.rawValue, “YYYY-MM-DD”)
    if (diff > 0) then
    xfa.host.messageBox(“The End date is later than start date”)
    else
    xfa.host.messageBox(“PLEASE CHECK….The End date is before the start date”)
    endif

  • Configuring Call Pickup and Busy Lamp Field - SIMPLE QUESTION UNANSWERED

    In configuring BLF do I need to declare a station name ? The name should be only one at the entire network or could double if the ext/ usr is different ?
    c. Enter the following string in the Extended Function field:
    fnc=blf+cp;sub=Stephanie@$PROXY;ext=300@$PROXY
    Using the following syntax:
    fnc=type;sub=stationname@$PROXY;ext=extension#@$PROXY
    where:
    - fnc: function
    - blf: busy lamp field
    - cp: call pickup
    - sub: station name
    - ext or usr: extension or user (the usr and ext keywords are
    interchangeable)
    Thanks in advance !
    Regards

    Hi Jerry,
    The second button option is the only way I can see this working because the BLF feature is only meant to monitor Busy/Idle Directed call park slots and does not have the access prefix assigned. For example;
    User A has a directed call park slot 88 assigned to him/her as a button on the BLF.So when they use this feature they are really speed dialling 88.
    When someone wants to retrieve this call that was parked by User A they must dial the directed call park prefix that you set up (example 21) plus 88 (2188).
    When User A tries to retrieve the call by pressing the same button they originally used they are really dialling 88 again and thus get the"call park slot unavailable" message.
    You would need to setup a second button with the 2188 prefix+park slot for this to work properly.
    Here is an excerpt from the documentation;
    "User cannot retrieve parked calls. After dialing the directed call park number to retrieve a parked call, the user receives a busy tone, and the IP phone displays the message, Park Slot Unavailable.
    Ensure that the user dials the retrieval prefix followed by the directed call park number."
    Hope this helps!
    Rob
    Please remember to rate helpful posts....

  • Field order question

    I have some footage from two camera's I need to do a multicam cut on. The first cam recorded SD DV  (lower field first). The second cam recorded MPG 60i which is upper field first. How should I edit this for best quality?
    Thanks
    Ben

    I do not think it will matter much which field you choose but make sure
    you reverse the field of the other footage.
    Also check if Encore is set to the same field if encoding in Encore.

  • Fill table using different statements for each field (newbie question)

    Hi all, I'm about to fill table table1 (field1, field2, etc.) using different statements (and maybe variables) for each field.
    My statements are too different to combine them into one query, but my example is simple:
    statement 1:
    SELECT ttt AS field1 FROM dual
    statement 2:
    SELECT yyy AS field2 FROM dual
    Each statement returns one value. Maybe I need some variable for each value, so var_field1 = field1, var_field2 = field2, etc.
    As a result I have to fill table table1 using my variables, so it must be some procedure.
    I know I can do it using one statement below, but I have more than 100 queries, so they should be executed one by one.
    with t1 as(
    select (SELECT 'ttt' FROM dual) field1, (SELECT 'yyy' FROM dual) field2 from dual
    select * from t1;
    Could you please show me some example, how this procedure should be written?
    Thanks ahead.

    This hasn't got anything to do with Oracle Reports, but here we go anyway. Your query can simply be:
    with t1 as(
    select 'ttt' field1, 'yyy' field2 from dual
    select * from t1;
    FIE FIE
    ttt yyy
    1 row selected.But maybe your example was an over simplification of your problem.

Maybe you are looking for

  • Edit in Photoshop Elements 9 from Lightroom 3 on a Mac

    I can't seem to get the PS9 to open properly with my photo.  So I'm in LR3 and I right click and select 'edit in photoshop elements 9'.  It asks me if I want to 'edit a copy with lightroom adjustments' - I say yes and click 'edit'. PS9 opens and I se

  • Frequency out of range

    I hooked up my MacBook Pro to a high quality Sony Data Projector and the screen showed the message: "Frequency out of range". I tried detect displays, which didn't help. I could not get an image until I clicked on "Mirror Displays" under System Prefs

  • [9i] poor performance with XMLType.transform

    Hello, I've got a problem with the Oracle function XMLType.transform. When I try to apply a XSL to a big XML, it is very very slow, and it evens consumes all the CPU, and other users are not able to work until the processing is complete... So I was w

  • Premiere Pro, Media Encoder Crashing When Exporting/Rendering

    For the longest time if I ever tried to export or render a video longer than 5 minutes, my Premiere Pro or Media Encoder crashes. I don't know why but it is EXTREMELY irritating when attempting to make lengthened gaming videos. I have tried 15 differ

  • Looking for T-code like 9KE0 (Correction Between Profit center)

    Hi experts, Iml looking for a T-code that allows me corrections from a profit center to another one. I used 9KE0 but it allows the correction without control. (for example when i want to make correction between cost center, it's better to use KB61 th