How to make copy of T-code VL02

Hello All,
I want to make copy of t-code VL02, in ZVL02.
I want my copy transaction should behave in exactly same manner as of VL02.
Kindly help
Sachin Yadav

Hello Sachin,
The easiest way to create your own transaction from standard one is;
1. Open transaction SE93.
2. Goto 'Transaction code->Copy' or simply press Shift+F1.
3. A pop-up box pops up, specify from transaction as VL02 and Transaction Code as ZVL02, and hit COPY, save as Local Object.
4. VL02 is now copied to ZVL02. Further, open ZVL02 in Change mode.
5. Go to 'Edit' -> Change transaction type or simply press Shift+F1.
6. Choose last radio button; Transaction with parameters (parameter with transaction).
7. Provide transaction as VL02 (must), screen no as 0101 (opt) and from module pool as SAPMV50A (opt), you can even specify to skip initial screen.
8. Do remember to check SAPGUI for HTML, SAPGUI for Java and SAPGUI for Windows.
9. Save and execute your Z transaction.
Finally, Bob is your uncle.
Regards,
Zahack

Similar Messages

  • How to make a peace of code wait to be exicutes/loading bar

    hello i would like to know how to make a peace of code wait like 3 or 4 secounds before being exicuted
    <example>
    System.out.println("Loading back up prefes...");
    // wait 3 secounds
    System.out.println("Loding hardware prefs...");
    //wait 3 secounds
    //...ect
    </example>
    im a novice java prgrammer and im looking to know how to do that kind of stuff

    >
    yeah i figured now one would help a noob>What?! No-one posted you the codes in that entire 6 minutes you waited patiently?
    As a bonus though, if you don't get the solution in 30 minutes, it's free! ;-)

  • How to make in the loop codes?

    How to make in the loop codes to have like my output(below)?
    For example:
    I am trying to figure out how to make them correct the way I want to have the output.
    String start = "02-01-08";
    String end = "02-29-08";
    Calendar a = new GregorianCalendar();
    while( start <= end ) {
              a.add(Calendar.DAY_OF_WEEK, 7);
              Date d = a.getTime();
              DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
              String ss = df.format(d);
              System.out.println(ss);
    }The output:
    +02-01-08+
    +02-08-08+
    +02-15-08+
    +02-22-08+
    +02-29-08+
    Anybody know how to make it correct?

    artist_tech07 wrote:
    I am confused where is the answer in the doc that you gave me?Read my first reply and read the docs. Then read them again.
    And then re-read this
    To do what you want you need a start and end Dates. These you can compare in one numeric form or the other. For example by using getTime.
    Then during each loop iteration you will need to add *1 day (using the Calendar)* to the start date.
    I am telling you what methods to use. I have told you were you can find those methods. I have given you a link to the Calendar class API. All you have to do is put 2 and 2 together. Or at the very least make an attempt to do so.

  • How to make changes in company code global data

    Hi folks,
    Can some one suggest me how to make changes in company code global data (t code oby6). I want to assign 1 to co code > co Area which is blank.
    Thanks in advance

    Hi,
      actually if you want to change co code > co Area , it is under controlling (maintain controlling area), transaction code  OX06 .You change the assignment control and save it. It is automatic update you COmpany code global data.
    *give me a point if my answer solve your problem.
    Thank You.
    -akma-

  • How to make COPY drop action the default?

    Hi,
    I've a working drag&drop implementation for copy and move actions.
    The thing is, the by far predominant action for the application is copy, so users need to nearly always press the control button during D&D. So I'm looking for a way to make copy action the default and if the user wants to do a move, can still do this by holding shift during D&D.
    Until now I couldn't find out how to do this. Do you have an idea?
    Thanks,
    Nelian

    Hi,
    did you try calling setDropAction() ([http://java.sun.com/javase/6/docs/api/javax/swing/TransferHandler.TransferSupport.html#setDropAction%28int%29]) in canImport()?

  • How to make copy client with customizing but with no deleting appl.data

    Hello,
    Which profile of copy client i need if i want make copy customizing without deleting application data in target client.
    regards,
    Denis

    hello dennis,
    There is no way you can do that, you cannot copy only customizing onto a client without deleting the application data since there is no such profile in the client copy profiles to do so.
    Also, to me it seems a bit strange to keep the application data (which depends on customizing for integrity) and update the customizing with something else!
    However, still if you wish to do this, there is a crude way of doing it (theoratically). You could use the client copy by a transport request where in you club all your customizing transport requests into one single transport request using transport of copies and then use the client copy via transport request to copy the customizing.
    Here are the steps:
    1. Create transport of copies [click here|http://help.sap.com/saphelp_nw70/helpdata/EN/57/38e1a94eb711d182bf0000e829fbfe/frameset.htm]
    2. Copy the newly created transport request into the target client via copy by a transport request functionality.
    click the following link for the same:
    [client copy via transport request|http://help.sap.com/saphelp_nw70/helpdata/EN/69/c24c754ba111d189750000e8322d00/frameset.htm]
    Regards,
    Siddhesh

  • Please teach me how to make the arrangement using Code Interface Node.

    How is what is necessary just to make arrangement (for example, Sine?Wave)
    using Code Interface Node? Please teach me a way.

    Try to get hold of the 'Advanced Analyis' library for labview. It contains VIs for doing FFT! No need to reinvent the wheel.
    If you can't get it and want to take the hard way, try to learn CIN programming by
    - reading the manual (no joke or cynism intended)
    - look for advice in NI's developer zone (www.ni.com/devzone) by using the search phrase 'CIN tutorial': you'll get several links which should be helpful in your case.
    - better than a CIN: try to use the DLL calling mechanisms and compile your C code into a dll. In order to learn dll intewrfacing for LabVIEW, follow the route explained under point 1 and 2 above...
    Good luck,
    Franz

  • How to make already written Encryption code in JDK 1.3  work in JDK 1.4

    Hi,
    We are using JCE to encrypt a number.The following code was written in JDK 1.3 and is now on the Live site.
              byte[] publicKeyBytes =new BigInteger("zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz", Character.MAX_RADIX).toByteArray();
         EncodedKeySpec spec = new X509EncodedKeySpec(publicKeyBytes);
    PublicKey key = KeyFactory.getInstance("RSA").generatePublic(spec);
    // Create Cipher
    Cipher desCipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
         desCipher.init(Cipher.ENCRYPT_MODE, key);
    We are now migrating to JDK 1.4. When I tried to execute the above lines in JDK 1.4, it came back with the following error
    "Cannot find any provider supporting RSA/ECB/PKCS1Padding"
    Then I downloaded and copied over the iaik_jce_full.jar in \j2sdk1.4.1_05\jre\lib\ext\ folder
    and added the following entry in \j2sdk1.4.1_05\jre\lib\security\java.policy
    security.provider.1=iaik.security.provider.IAIK
    Now, it has started giving me the following error:
    java.lang.ExceptionInInitializerError
         at javax.crypto.Cipher.a(DashoA6275)
         at javax.crypto.Cipher.getInstance(DashoA6275)
    Caused by: java.lang.SecurityException: Cannot set up certs for trusted CAs
         at javax.crypto.SunJCE_b.(DashoA6275)
         ... 39 more
    Caused by: java.lang.UnsupportedOperationException
         at java.security.cert.CertificateFactorySpi.engineGenerateCertPath(CertificateFactorySpi.java:155)
         at java.security.cert.CertificateFactory.generateCertPath(CertificateFactory.java:470)
         at javax.crypto.SunJCE_d.a(DashoA6275)
         at javax.crypto.SunJCE_d.a(DashoA6275)
         at javax.crypto.SunJCE_b.i(DashoA6275)
         at javax.crypto.SunJCE_b.h(DashoA6275)
         at javax.crypto.SunJCE_v.run(DashoA6275)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 40 more
    Can someone tell me where I am wrong and please write the steps I need to follow to make the above code work in JDK 1.4
    Bye

    in java 1.4 JSSE is default provider
    may be u need to use another provider (SunJCE)
    see JSSE :
    Note for People Implementing Providers
    The transformation strings used when SunJSSE calls Cipher.getInstance() are "RSA/ECB/PKCS1Padding", "RC4", "DES/CBC/NoPadding", and "DESede/CBC/NoPadding". For further information on the Cipher class and transformation strings see the JCE Reference Guide.
    PS u didnot need load jce. it is into j2se 1.4

  • How to make copy of existing sap script

    may any one suggest me that how can i make a copy of an existing sap script as i m working on 4.7 version of sap.

    Hi,
    Go to transaction se71 and then create new SAPSCRIPT by giving its name and press create.
    Then give the text and then go to main menu and then u
    <b>Form---> copy from</b>
    click it.
    Then give the source script name..
    Then the whole sapscript gets copied with all it's elements..
    Then u can edit the newly copied SAP script..
    Cheers
    Simha.
    Reward if it helps....

  • How to make Copy and Paste buttons to transfer data from one form to another

    Hi, a complete newbie here.  I’m looking to create a Button 1 that can Copy data from a filled out adobe form, mainly the text fields and checked radio buttons, and then have another Button 2 that can Paste the copied data to another form, containing the exact same text fields and radio buttons.
    Example:
    1. Click "Copy" in Form 1
    2. Click "Paste" in Form 2
    3. Fills data from Form 1 to Form 2
    Any idea how to do this?

    Users will need to uncheck Enable Global Object Security Policy, found in the JavaScript section of the Preferences to do it. That's unlikely to be the case since the opposite is the default.
    Take a look at the section of the JavaScript SDK "Querying an Acrobat form field value in another open form" for details on how to do it.
    http://livedocs.adobe.com/acrobat_sdk/10/Acrobat10_HTMLHelp/JS_Dev_AcrobatForms.76.41.html

  • How to make copied text appear in the correct order?

    I have a PDF document with text created from a Photoshop file.
    There were multiple text layers in this Photoshop document.
    Problem:
    When I do "select all text" in Acrobat and then "copy" and then paste it into a text editor the text is pasted out of order.
    This is somewhat expectable because of the multiple text layers in the original Photoshop file.
    Question:
    How can I tell Photoshop the desired order of the text layers when creating the PDF file?
    The layers are stacked in the correct order in the layer panel in Photoshop. I was hoping that was the issue, but it's not. Is there any other way in which I can specify the text order?
    Your help will be much appreciated!

    This is a screen capture taken of Acrobat XI Pro. In the left-hand side try right-clicking (or Ctrl-click on the Mac) ont he navigation pane and then choosing Content.

  • HT4889 How I make copy from iBooks on my iPad to iBooks on Mac Pro , without deleting my iPad books most of them not purchased books , thanks

    I want to make another copy of my iBooks on iPad to iBooks in Mac Pro device without deleting my any book from my iPad . All the books are not purchased from apple store .   Thanks 

    Hey Aggiesmommy 91,
    Thanks for the question. I understand that you are experiencing issues downloading purchased iBooks. Let’s see if we can troubleshoot this so you can enjoy those purchases.
    First, try forcing the iBooks application to close:
    Force an app to close in iOS - Apple Support
    http://support.apple.com/en-us/ht5137
    If the issue persists, try restarting your iPad:
    Restart or reset your iPhone, iPad, or iPod touch - Apple Support
    http://support.apple.com/en-us/HT201559
    Thanks,
    Matt M.

  • HOW TO MAKE MY JAVA APPLICATION CODE INTO A EXE?

    I JUST FINISH WRITING A JAVA APPICATION code USING JCreator.
    there is no error in the program.
    Can someone provide me the steps to change it into a exe so that i can use the application in any computer. THANK YOU!

    You could use Google. I know, it means you need to do some research yourself. But an exe will only work on a Windows platform. Try looking for a tutorial on jar files instead.

  • How to make tableUI readyonly with code???

    hi All,
    I have a scenrio were i have two radiobuttons and two table UI(say table1 and table 2). my requriment is when i select  radiobutton1 , table1 has to be editable and table2 has to become readyonly. xxxxxx (please read forum rules)
    Sai Sharan Kalla
    Edited by: Armin Reichert on Jan 17, 2008 10:23 AM

    Hi
    1)Set the <b>keyToSelect</b> =<b>button_1</b> for Radio Button 1
    2)Set the <b>keyToSelect</b> =<b>button_2</b> for Radio Button 1
    3)Create a context value attribute of type String say <b>selectedRB</b> and bind that to the <b>selectedKey</b> property of both the Radio Buttons.
    4)Create a <b>Boolean</b> Value Attribute say "<b>ReadOnlyTable</b>" and bind that to the <b>readOnly</b> property of TableUIElement
    onSelect() // radio Button 1
    if(wdContext.currentContextElement().getSelectedRB().equals("button_1"));
    wdContext.currentContextElement.setReadOnlyTable(true);
    onSelect() // radio Button 2
    if(wdContext.currentContextElement().getSelectedRB().equals("button_2"));
    wdContext.currentContextElement.setReadOnlyTable(false);
    Best Regards
    Chaitanya.A

  • How do make copy's

    My printer is not working

    hi there,
    could you provide the community with a little more information to help narrow troubleshooting? Things like your printer model and your operating system help out a lot.
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

Maybe you are looking for