What are v1 ,v2 v3 runs

Hi,
We have different types of  Runs like v1,v2 v3 .?
When we use each of them.?
where we shedule them.?
Do we run manually , the Tcode : sm13 for unseralised v3 for tranfer of records from update to delta queue? or do we set it in any other place?
we have optin of v1 ,v2 in sm13. when we use them?
Also please tell me about  WHAT IS MARKER UPDATE  OPTION?
Regards.
Naresh.
Edited by: Naresh P on Feb 13, 2010 10:23 AM

Hi,
V1 : if one job is going on( like sales document entry) up to completion of that work we can not perform other job
V2: the cusrsor wii be released once the work is over ( direct delta) it will be happening
V3 update , even though lot of back ground jobs will run like (billing doc or sales doc creation i sgoing) but it will not effect the data extraction for, extarctor queue to Detla queue
we can observe the V3 updatein qued delta.
No need to run mannully SM13 , when ever the data is coming the conetent will be available in SM13
when the records are moving from extractor queue to delta queue  if it is v3 update no problem because the cursor will be free we can enter the documents by end user
if it is v2 upadte up to completion of this job user should wait
always it is better go with V3 update.
Marker update: it will come the inventort load of stock initiization
when uwe are doing closing balance stock we are loading for do not cjhnage teh closing stock there is  aoption marker update we should check that box only for initil load of inventory.
Thansk & Regards,
Sathish

Similar Messages

  • What are CLASSPATH settings to run WLST scripts from JYTHON

    Hi,
    I am trying to run a Jython script that uses WLST calls.
    Following steps were done
    1. Run WLST.sh
    2. writeinit("wl.py")
    3. Invoke Jython and then do "import wl"
    The import fails with error
    from weblogic.management.scripting.utils import WLSTUtil
    ImportError: No module named weblogic
    Looking at the wlst.sh, it extends classpath for bunch of jars like
    if [ -d "${WLST_HOME}/lib" ] ; then
    for file in "${WLST_HOME}"/lib/*.jar ; do
    CLASSPATH="${CLASSPATH}${CLASSPATHSEP}${file}"
    done
    fi
    Question - what are all the files to be added to classpath ? Is there a script to explicitly set classpath for all relevant jars for WLST usage ?
    Any help will be appreciated

    You shouldn't need to press the Sync button. In the Pod options menu for the share pod, with the PPT loaded, you will see an option for Show Presentation Playbar. Use that to get the Play button for the Hosts and Presenters in the room, and press play. The presentation will now play in a looped mode for everyone in a synchronized mode. You can also then hide the playbar to keep other Hosts and Presenters from stopping the playback and the Participants will never see the playbar or have the option to stop the presentation.
    Additionally, if your focus is on the Share pod (has the focus highlight), you can use the 'P' key to begin playing the presentation without revealing the playbar to anyone. Adobe Connect 9 * Accessibility features

  • What are you allowed to run on a Free Hyper-V 2012 host?

    I have been looking for a "layman" version of the license for the Free Hyper-V 2012, and more precisely, what services you are allowed to run on the
    host.
    The OS itself does not prevent you from installing a variety of applications and services, but I wonder how legal this is.
    You can install 3rd party virtualization managers or servers: anything based on http.sys will run f.i, and so will 3rd party FTP or mail servers.For that matter you can even install alternative desktop shells, explorers, browsers and utilities etc. so the
    OS itself does not prevent installation of any 3rd party software, only the OS components are missing.
    Several third parties are even selling software to leverage those possibilities.
    My particular question would be to know if and how far the license allows to use the Free Hyper-V 2012 as a "bare-metal" OS that can be extended by 3rd party software?

    In theory you can install anything that will install (considering the missing components such as the Windows Shell).
    If you start hacking the OS to add supporting roles that are not there out of the box - then you exit the realm of supportability.
    If you want a licensing answer, you must contact Microsoft Licensing.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • What are the requirements to run a Swing application?

    I'm trying to send a simple swing application to a friend that has Mac OSX, but the buttons don't show up.
    Do people actually need the Java SDK in order for swing apps to work? Or is plain java enough? (He has normal java, because we play minecraft sometimes)
    Anyway, my buttons are not showing up on his computer, not even when I use the cross platform look at feel

    Here is the code I'm using, it's an application that makes the user select a folder and stuff will happen to it.
    import java.awt.Font;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.JButton;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.UIManager;
    import javax.swing.UnsupportedLookAndFeelException;
    public class SomeGUI extends JFrame implements ActionListener, Runnable
        public JButton exit;
        public JButton run;
        JPanel panel;
        JFileChooser chooser;
        String returnpath;
        JLabel progress;
      public SomeGUI()
         try
         UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
         catch (ClassNotFoundException ex)
             Logger.getLogger(SomeGUI.class.getName()).log(Level.SEVERE, null, ex);
         catch (InstantiationException ex)
             Logger.getLogger(SomeGUI.class.getName()).log(Level.SEVERE, null, ex);
         catch (IllegalAccessException ex)
             Logger.getLogger(SomeGUI.class.getName()).log(Level.SEVERE, null, ex);
         catch (UnsupportedLookAndFeelException ex)
             Logger.getLogger(SomeGUI.class.getName()).log(Level.SEVERE, null, ex);
          setTitle("BenkyoAdd");
          setSize(206,100);
          setResizable(false);
          setDefaultCloseOperation(EXIT_ON_CLOSE);
          setLocationRelativeTo(null);
          setVisible(true);
          panel = new JPanel();
          getContentPane().add(panel);
          panel.setLayout(null);
          run = new JButton("Run");
          run.setFocusable(false);
          run.setBounds(0,0,100,30);
          panel.add(run);
          run.addActionListener(this);
          progress = new JLabel("Please click run");
          progress.setFont(new Font("lol",Font.PLAIN,14));
          progress.setBounds(10, 30, 200, 50);
          panel.add(progress);
          exit = new JButton("Exit");
          exit.setFocusable(true);
          exit.setBounds(100, 0, 100, 30);
          panel.add(exit);
          exit.addActionListener(this);
          chooser = new JFileChooser();
          chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
        public void actionPerformed(ActionEvent e)
         if(e.getSource().equals(exit))
             System.exit(0);
         if(e.getSource().equals(run))
             progress.setText("Select a folder...");
             chooser.showOpenDialog(panel);
             this.returnpath = chooser.getSelectedFile().getAbsolutePath();
             exit.setEnabled(false);
             run.setEnabled(false);
             progress.setText("Copying to output folder...");
             new Thread(this).start();
      public static void main(String args[])
          new SomeGUI();
        public void run()
         new Changer(this, this.returnpath);
         exit.setEnabled(true);
         exit.requestFocusInWindow();
         progress.setText("Done! You can now exit!");
    }

  • What are good specs to run OSX Mavericks?

    I have been running OSX 10.6 snow leopard smoothly on my 2009 Unibody Macbook for a while now. I was wondering, if I have a 2.26 GHz intel core 2 duo and 4gb of 1067 MHz DDR3 memory would I still be able to run Mavericks smoothly? I saw Apple has apparently stopped patching 10.6 so I was thinking of upgrading but I don't want to if its going to make my Mac run slower.
    Also, if I do upgrade the OS, do my files like music and pictures stay or do I need to back them up? Sorry if that's a stupid question this is my first mac and I have never upgraded the OS before.

    Yes, you can run Mavericks just fine, but be aware that you may find older software may not run.
    Upgrading to Mavericks
    You can upgrade to Mavericks from Lion or directly from Snow Leopard. Mavericks can be downloaded from the Mac App Store for FREE.
    Upgrading to Mavericks
    To upgrade to Mavericks you must have Snow Leopard 10.6.8 or Lion installed. Download Mavericks from the App Store. Sign in using your Apple ID. Mavericks is free. The file is quite large, over 5 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
        OS X Mavericks- System Requirements
          Macs that can be upgraded to OS X Mavericks
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.
    You should always backup before doing any OS update. I would also recommend:
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.

  • What are the ways to Run an LAb veiw application remotely in windows Xp /2000 System.

    I need to run LV Appliccation remotely what is the best possible way to do.
    Suresh Thangappan

    Hello Suresh T,
    Remote front panels may be the easiest way for you to run your VIs remotely. They work by allowing you to embed your VIs into a web page. Please see the links below for more information.
    Remote Panels in LabVIEW -- Distributed Application Development
    Developing Remote Front Panel LabVIEW Applications
    Regards,
    Matt F
    Keep up to date on the latest PXI news at twitter.com/pxi

  • For Lenovo anon data collection - what are good apps to run to help improve? (K1 but all really.)

    In the spirit of helping Lenovo improve software/firmware, are there apps I should be running a lot so they can collect data that will contribute toward improvements? I assume anything streaming would help like Netflix.

    jay1981 wrote:
    I own a dvd business and would like to use it.
    //Create new DVD objects and add them to the inventory
    DVD theDVD = new DVD("Good Luck Chuck", "Comedy", "1", 10, 19.99);
    theInventoryGUI.addDVDToInventory(theDVD);
    theDVD = new DVD("The Bourne Identity", "Action Adventure", "2", 20, 15.49);
    theInventoryGUI.addDVDToInventory(theDVD);
    theDVD = new DVD("The Reaping", "Horror", "3", 13, 15.99);
    theInventoryGUI.addDVDToInventory(theDVD);
    theDVD = new DVD("Deja Vu", "Action", "4", 17, 14.49);
    theInventoryGUI.addDVDToInventory(theDVD);Bad luck if the customer wants anything other than those 4 DVD's

  • I have an old Imac G4 from 2003. I haven't used it in years, but I would like to start. What are my options for getting it up to date? Is it even worth the trouble/cost? I was hoping to at least get it running Snow leopard, if not Lion. Options?

    I have an old Imac G4 from 2003. I would like to start using it again, however it is so out of date and runs too slowly. What are my options to update it? I really don't want to invest a ton of money - I might as well get a new one, so if there are any reasonable ways to get it to run Snow Leopard or even Lion, please help. I've also considered using a mac mini? Is that worth it either? I'm not sure which way to go here. I don't want to trash it, I feel like it can be a great computer if updated.

    Presumably it is running tiger 10.4.11?
    It may be able to run Leopard 10.5:
    Leopard system requirements:
    http://support.apple.com/kb/SP517
    But that is as far as the old PPC Macs can go, and Leopard can cost up to $200 on Amazon.

  • What are the dependent master data for running MRP

    Hi Experts,
                      My client wants to Run MRP After 8 Months of implementation. Now i want to know
    1) What are the Master Data need to be check. They are Using the Strategy 20.
    2) They have confirmed sales order for few customers. Forecast sales orders for few customers.How to map it in sap.
    3) Where will i get Gross Requirement in SAP. Because  MRP run will generates the net requirements.
    4) Is there any report in SAP displays the Forecast values for the selected material.
    Please help me on the above points.
    Thanks
    Satheesh

    HI Vishwa Upadhyay,
                                     Thank you Once again,
    The first point is cleared. Can you please suggest me on the 2,3& 4 points please. What are the configuration settings needed for the different sales order type( i.e.. confirmed and forecast)
    Thanks
    Satheesh.N

  • Currently running OSX 10.6.8 and Safari 5.1.10. What are the steps to update my IMAC?

    I'm currently running OSX 10.6.8 and Safari 5.1.10. What are the steps to get my IMAC totally up-to-date?

    Back up your data, check your applications for compatibility, and download Yosemite from the Mac App Store.
    (116042)

  • Looking for a drum loop app that will run in the background. What are you using?

    Looking for a drum loop app that will run in the background. Suggestions? What are you using? I tried Loopseque and I like it, but I can't make it run once I switch apps. Help please.

        That's definitely strange, kzmidge. I want a working phone in your hands though. I noticed you mentioned you received the suggestion to complete a reset. Did you already do that? Is it working again? Are you receiving an error message?
    If you hesitated a little longer to complete the reset, you can try to place your phone into Safe Mode http://vz.to/rxg0ii and see if you can access mobile sites from your browser. This mode will stop 3rd party applications from running, so you won't be able to use the apps you mentioned but we may be able to narrow down the trouble in Safe Mode. If the mobile sites work, that means the trouble may be in a recently downloaded application and you may be able to avoid the reset my uninstalling some of your more recently installed applications. If it's still giving you trouble, the reset http://vz.to/18wzOCi is the next best step.
    JenniferH_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • If my hard drive disappears and is no longer running what are my options?

    this is a last resort. Dropped the MBP. it wouldn't boot up. wouldn't boot in any mode, did the resets in order. safe mode failed to work as did all the disk util recommendation. It finally booted off the install DVD. Hard drive icon there. Did an archive and install. I did all the disk util prior to  archive and install. permissions and disk checked out ok.
    Attached a USB external. started backing things up manually. SU came up and i did the combo update to 10.5.8
    Restarted MBP and the drive died, not even getting to login screen, onlly endless spinning at startup screen identical to problem after dropping it. installed Leopard on external. tried to set startup disk from internal. icon not there as if drive did not exist.
    After HD crash, ran diskutil in verbose mode, device not present when i used the name,
    note: this is the second external drive. i did the combo update on the external and it also died. couldn't see the icon. booted into single user mode. device no found. Again, safe mode failed to work as did all the disk util recommendation.
    at this time, the external is leopard 10.5, no update, firefox running with adobe flash update.
    1. SU combo update, never again. use the one from the Apple website in all future updates.
    2. physical inspection of inside revealed no loose connections, broken cables or wires.
    3. dropped the MBP on the side of the optical drive which i had to repair and reinstall. works fine now. PRAM battery in good order.
    4. looked at every discussion from every forum on here with varying results, all dead ends.
    if the drive isn't spinning or responding, is it dead or frozen? is $99 for diskwarrior the next step? Will it even see the internal drive, since no other freeware or shareware recovery apps have been able to see the internal HD.
    what are my options? i had no backups made, i have no firewire cable or drive, i didn't know about time machine, i absolutely must have the drive restored, or the data.

    diskwarrior manual:
    To build a graph for the directory of a disk, all of the following must be true:
    1)The disk must appear on the desktop.
    2)The disk must be an HFS (Mac OS Standard) or HFS Plus disk (Mac OS Extended).
    3)The disk must be locally attached.
    4)There must not be any detected hardware problems with the disk.
    disk does not appear on HD. therefore i have to assume there is physical damage to internal drive, pull it
    install a new one and send the old one to data recovery.
    this here concludes today's discussion on "*** were you thinking when you didn't have a back up"
    also, investing in Firewire drives and cables is selling out to proprietary mandates that Apple thought up as one more way to tie up its users to Apple theology. reason one i have refused to put the money out for it.
    guess the man wins.

  • What are the best plug ins for iMovie 11 running on Lion?

    What are the best plug ins for Imovie 11 or Imovie HD running  Lion? Especially transitions & effects for still pictures.
    Thank you

    Hi
    For iMovie'08 to 11 - There are no Plug-ins - not supported at all
    iMovie HD (in reality HD5) - doesn't work under Mac OS X.7 - at all
    iMovie HD6 - can take Plug-ins and run under Mac OS X.7 - BUT some of the Plug-ins doesn't work under X.7
    old list on - Plug-ins - Only relevant to  iMovie HD6 (May be they are too old)
    Stupendous software
    www.stupendous-software.com
    GeeThree   
    www.geethree.com
    cf/x.
    www.imovieplugins.com
    Apple
    www.apple.com/downloads/macosx/video/ezediapluginsforimovievol1.html
    www.imovieplugins.com/fxhome.html 
    fxStabilizer - for iMovie - Google it
    Yours Bengt W

  • What are the Client machine requirements for running Forms 6i?

    What are the minimum/ideal hardware requirements of the client machines which run forms 6i in separate frames.
    The reason for asking this is that the users have multiple sessions of separate Forms frames. When they do a lot of activity/transactions, and try to do a windows Print Screen on a MSWord file, nothing seems to print on the Word document. If they save the document and reboot the computer and open the same word document again then the screen print shows up. I am thinking it is because the separate frames take up lot of RAM. Typical configurations of our m/c are PII 400's with 64MB RAM.
    Thanks in advance.

    Hi Lionel,
    As a general rule of thumb, the ATI Rage 128 Pro will not support a 20" LCD. That being said, there are reports of it doing just that (possibly the edition that went into the cube).
    I'm not that familiar with the ins and outs of the Cube, so I can't give you authoritative information on it.
    A good place to start looking for answers is:
    http://cubeowner.com/kbase_2/
    Cheers!
    Karl

  • What are the video card requirements for running a 23" cinema display

    What are the video card requirements for running a 22" cinema display(clear acrylic case) w/ a PC? My motherbaord is AGP. Thanks to anyone who can help.
    Intel P4 3.0ghz   Windows XP  

    Hi Lionel,
    As a general rule of thumb, the ATI Rage 128 Pro will not support a 20" LCD. That being said, there are reports of it doing just that (possibly the edition that went into the cube).
    I'm not that familiar with the ins and outs of the Cube, so I can't give you authoritative information on it.
    A good place to start looking for answers is:
    http://cubeowner.com/kbase_2/
    Cheers!
    Karl

Maybe you are looking for

  • No audio on Timeline Premiere Elements 13 and no longer on 12 after upgrading to 13.

    On my Mac with OS X Yosemite I've worked with Premiere Elements 12 for a while and it just worked fine. Now I;ve upgraded to Elements 13 and the clips that were fine the other day have now lost there audio when I put them on the Timeline. However if

  • Lock Box Validation

    We have created our own formats,sql loader in tune with the bank file format. We succesfully brought data into interface tables. we have batch header, Trailer and two receipts. Now we are doing the second step of ie validation. Report shows the recor

  • Flash Crashes on EVERY YouTube video, Firefox 4, Firefox 3.6.x, Chrome, Everything.

    Every single YouTube video will crash Adobe Flash, regardless of browser. I've gone from Firefox 3.6, to the beta/minefield? version of Firefox 4, and i've even tried Chrome. Regardless of browser, it will crash Adobe Flash. As you can understand thi

  • ABAP Help .. What does those brackets means

    hi, I am learning sap abap and trying to use f1 on certain key words, I am unable to understand even simple statements because of lot of brackets. What those brackets means ?? Please let me know. may be this is silly, I am sorry about my ignorance. R

  • Starting managed servers from admin console vs. command line

    Will the arguments I enter in the "Arguments" section of the "Server start" admin console page also be used if I start the managed server from the command line using startManagedWeblogic.sh? And conversely, will changes I make to the scripts take eff