Tell me the procedure to SPLIT a var1 into var2 and var3.

var1 contains 8918018901/7818
when i write the following code var2 gets 7818. and var3 contains 0.
split  var1 at '/' into : var2 var3.
but i want var2 should contains  8918018901.
               var3  7818.

Hi,
Your Code is:
SPLIT var1 at '/' into : var2 var3.
Please remove the ':' from your coding. And check.
Also Please refer the below example:
DATA: NAMES(30) VALUE 'Charly, John, Peter',
          ONE(10),
          TWO(10),
          THREE(10),
          DELIMITER(2) VALUE ','.
SPLIT NAMES AT DELIMITER INTO ONE TWO THREE.
The output would be:
ONE -> "Charly"
TWO-> "John"
THREE-> "Peter"
Rgds,
Ramani N

Similar Messages

  • I have few PDf files on my computer and I want to add them to my ipod touch, please tell me the procedure on how should I do that? Secondly I want to run these Pdf files through the ibook app, as it also have the Pdf file sections

    I have few PDf files on my computer and I want to add them to my ipod touch, please tell me the procedure on how should I do that? Secondly I want to run these Pdf files through the ibook app, as it also have the Pdf file sections

    You should be able to just place them in your Books library in iTunes and check to ensure that your Book library is configured to sync to your iPod when you sync your iPod to iTunes.

  • I need to do a clean install with Lion. How do I do this. I can't find any doc. to tell me the procedure.

    I need to do a clean install with Lion. How do I do this. I can't find any doc. to tell me the procedure.

    Follow the instructions at the link I posted 
    have a lot of old stuff transferred from Mac to Mac to Mac that is slowing down everything
    If that included Power PC apps, read here >  Lion upgrade questions and answers:  Apple Support Communities

  • Please tell me the procedure .

    I am using eclipse IDE.
    I see a.java and b.java file in my eclipse IDE.
    Now i put c.java and d.java in the same physical location side by side to a.java and b.java
    But , i dont see those in the eclipse IDE !!
    i want those files inside the IDE...what needs to be done ?
    please tell me the procedure .
    thanks

    Right click svn update only two actions!!!!
    cmd = open prompt cd to dir then svn
    Thats three!!!
    That extra moment could be priceless lolIf you're used to working with command-line tools, you'll have at least a couple of shells open all the time anyway. I always have a few, one of which is already at the root of whatever source code I'm working on. The shell has all the common tasks in it's history, so a quick tap on the up arrow and you're there :-)
    Plus, I'm not using Windows so Tortoise is irrelevant anyway

  • Please tell me The Procedure to open apple reseller store

    Hiii,
    I am a post graduate in Inetrnational Business And Marketing From Amity university (india) . I want to open apple reseller store or a service center. please tell me the procedure and investment
    Thanx
    Ankit Sharma
    <Email Edited by Host>

    I'm afraid I can't offer you good news. I quote:
    'Apple is not currently accepting reseller or service provider applications. Please check the Apple Channel Programs page periodically for new information.'

  • Please tell me the procedure to the run the interactive alv in the backgrou

    please tell me the procedure to the run  the interactive OO alv in the background?
    Edited by: ramyav on Apr 4, 2008 3:56 PM

    Hi,
    If u want to run the interactive ALV in background how do u trigger At line-selection event?

  • Can any one pls tell me the procedure of crm datasourse data extraction r/3

    hi
    pls can any one pls tell me the procedure of crm datasourse data extraction from r/3
    regards
    subbu

    Subbu,
    First off please don't post the same question twice.  I have locked your other question due to it being a duplicate.
    Second off:  don't expect an answer to your question immediately.
    Third off:  You need to read the rules of engagement before posting any more questions here:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/home/rulesofEngagement
    Fourth:  You question is way too vague and honestly if you would have done a search or read some introductory material on CRM, you would have learnt that the CRM middleware handles the data transfer.
    Last:  I'm locking this thread because your question is way too vague, please take a look at the CRM wiki and help.sap.com and read all the associated documentation about CRM on those sites.
    CRM wiki
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/crm/home
    Then you can come back here if you have a detailed question after reading those materials.
    Take care,
    Stephen
    CRM Forum Moderator

  • Tell me the procedure to get certificate for applet signature

    tell me the procedure to get certificate for applet signature
    tell me the procedure to get certificate for applet signature
    after certificate code will not show dialogbox.

    I suppose that you want to sign an applet?
    OK, here we go:
    'keytool' is delivered with Sun's development kit.
    keytool -genkey -keyalg rsa -alias yourkeyFollow the instructions and type in all needed information.
    Now we make the certificate:
    keytool -export -alias yourkey -file yourcert.crtNow we have to sign the applet:
    javac yourapplet.java
    jar cvf yourapplet.jar yourapplet.class
    jarsigner yourapplet.jar yourkey

  • What is the difference between MOVE var1 TO var2 and var2 = var1? Help!

    Hi Experts,
        What is the difference between MOVE var1 TO var2 and var2 = var1?
    Thanks
    Gopal

    Gopal,
      pls. look into it.Good explanation on you requirement.
    To assign the value of a data object <f1> to a variable <f2>, use the following statement:
    MOVE <f1> TO <f2>.
    or the equivalent statement
    <f2> = <f1>.
    The contents of <f1> remain unchanged. <f1> does not have to be a variable - it can also be a literal, a text symbol, or a constant. You must always specify decimal points with a period (.), regardless of the user’s personal settings.
    Multiple value assignments in the form
    <f4> = <f3> = <f2> = <f1>.
    are also possible. ABAP processes them from right to left as follows:
    MOVE <f1> TO <f2>.
    MOVE <f2> TO <f3>.
    MOVE <f3> TO <f4>.
    In the MOVE statement (or when you assign one value to another with the equal sign), it is not possible to specify the field names dynamically as the contents of other fields. If you need to do this, you must use field symbols .
    There are three possible outcomes of assigning <f1> to <f2>:
    The data objects <f1> and <f2> are fully compatible, that is, their data types, field length, and number of decimal places are identical. The contents of source field <f1> are transferred byte by byte into the target field <f2> without any further manipulation. The MOVE statement is most efficient when this is the case.
    The data objects <f1> and <f2> are incompatible. This is the case, for example, if the two fields have the same type, but different lengths. The contents of the source field <f1> are converted so that they are compatible with the data type of <f2>, and are then transferred. This procedure only works if a conversion rule exists between the data types of <f1> and <f2>. Type conversions make the MOVE statement less efficient. How much less efficient depends on the individual conversion.
    The data objects <f1> and <f2> are incompatible, and no conversion is possible. The assignment is not possible. If this can be recognized statically, a syntax error occurs. If it is not recognized before the program is run, a runtime error occurs.
    The source and target fields can be of different data types. In contrast to other programming languages, where the assignment between different data types is often restricted to a small number of possible combinations, ABAP provides a wide range of automatic type conversions.
    For example, the contents of a source field with an elementary data type can be assigned to a target field with any other data type. The single exception to this rule is that it is not possible to assign values between type D fields and type T fields. ABAP even supports assignments between a structure and an elementary field, or between two structures.
    DATA: T(10) TYPE C,
          NUMBER TYPE P DECIMALS 2,
          COUNT  TYPE I.
    T = 1111.
    MOVE '5.75' TO NUMBER.
    COUNT = NUMBER.
    Following these assignments, the fields T, NUMBER, and COUNT have the values ‘1111      ’, 5.75, and 6 respectively. When you assign the number literal 1111 to T, it is converted into a character field with length 10. When you assign NUMBER to COUNT, the decimal number is rounded to an integer (as long as the program attribute Fixed pt. arithmetic has been set).
    Pls. reward if useful

  • HT1727 i copied itune music from old hard drive to memory disk the copied onto new hard drive into itunes and music wont play unless removalbe disk is inserted

    i copied itune music from old hard drive to memory disk the copied onto new hard drive into itunes and music wont play unless removalbe disk is inserted

    Then your iTunes must be looking at the removable disc, not your hard drive. Did you actually copy the songs onto your computer, or simply tell iTunes to look at the removable drive?
    Highlight a song and click on File/Get Info/Summary>Where and check the location that iTunes has listed for the song. What does it say?

  • I put in the code to get the digital copy for star trek into darkness, and i clicked download later, but it didn't show up in my movie library like the other movies i did the same thing to, where is my digital copy of star trek?

    i put in the code to get the digital copy for star trek into darkness, and i clicked download later, but it didn't show up in my movie library like the other movies i did the same thing to, where is my digital copy of star trek?

    Yes, the old album art view is gone, bu you can see the album art for a song that's playing by clicking on the art image and it will open a bigger view.
    Everything else in your post is a waste. I'm not going to spend time reading it. If - and I repeat if, you have a question on how to get the best out of the new look iTunes, post it. But don't spend your time in long rambling negative rants.

  • I have an old MacBook (Mac OSX 10.5.8) with iPhoto '08.  Is there any way to back up not only the photos, but the way I have organized them into events and labeled them?

    I have an old MacBook (Mac OSX 10.5.8) with iPhoto '08.  Is there any way to back up not only the photos, but the way I have organized them into events and labeled them?

    Yes. Back up the Library.
    Most Simple Back Up:
    Drag the iPhoto Library from your Pictures Folder to another Disk. This will make a copy on that disk.
    Slightly more complex: Use an app that will do incremental back ups. This is a very good way to work. The first time you run the back up the app will make a complete copy of the Library. Thereafter it will update the back up with the changes you have made. That makes subsequent back ups much faster. Many of these apps also have scheduling capabilities: So set it up and it will do the back up automatically.
    Example of such apps: Chronosync - but there are many others. Search on MacUpdate or the App Store

  • Divide the Vendor Account  BSEG-KOART= 'K' into 90% and 10% in MIRO.

    I want to divide the Vendor Account  BSEG-KOART= 'K' into 90% and 10% in MIRO.
    I entered PO and selected the  tax , the balance amount is adjusted,
    when i click on the simulation button I want to   divide the Vendor Account  BSEG-KOART= 'K' into 90% and 10% .
    The  90%  will be shown in Vendor account and 10% should be show in GL account, is there any exit  or BADI to perform this calculation?
    This operation should be done before posting .

    Hi,
    I guess your question is more related to MIRO than to real estate business. Please address your question in forum
    ERP - Logistics Material Management (MM).
    Regards, Franz

  • TS3694 Hi, My iphone 5 loses the 3G connections everytime i go into tunnel and also to holland park and it does not come back untill i restart the phone? i dont know why is it happening?

    Hi, My iphone 5 loses the 3G connections everytime i go into tunnel and also to holland park and it does not come back untill i restart the phone? i dont know why is it happening?

    Hi, beth.lau.gr.
    Thank you for visiting Apple Support Communities.  
    I understand you have been experiencing issues with your iPhone restarting and showing you a blue screen.  I wont be able to give you an exact answer as to why this is happening.  However, this is the most relevant troubleshooting article for this issue.  This article also provides options to reach out to us via phone for additional assistance.  
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it
    http://support.apple.com/en-us/HT203899
    Cheers, 
    Jason H.  

  • I wen to update my ipad to the iOS7, but then it went into recovery and wont restore, can someone please help me figure out how to restore it?

    i went to update my ipad to the iOS7, but then it went into recovery and wont restore, can someone please help me figure out how to restore it?

    Follow step 1 to step 3 very closely.
    http://support.apple.com/kb/HT1808

Maybe you are looking for

  • IPhone 4: Visual Voicemail asks to be 'set up now' after each reboot

    Hello everyone, Here is my recurring problem: Every time I turn my iPhone 4 off and back on, the visual voicemail asks to be set up again (when I've done it over 10 times now!). I tried resetting the network settings, taking out the SIM, and even cal

  • How to keep videos from pixelating in browser

    Hi, How do I keep my flash videos from pixelating badly when viewed in a browser using the zoom feature (as in Opera, Explorer, and Firefox)? So far, I've been embedding my videos using the Dreamweaver CS3 "insert: media: flash video" routine. The vi

  • Very odd question...

    My mother had received a message on her answering machine from our local police department yesterday saying that they needed her to call them, that it wasn't important, but that they needed to speak with her. Today, she called back, and the officer t

  • IDOC at the time of APP

    Hi All, I have made the payment to more than one vendor in APP with different payment methods. I have assigned two variant in last tab. Once the Payment is successful system has generated IDOC only two vendors. i cant understant what is the reason fo

  • How to create an IIS virtual directory programmatically?

    All- Is it possible to create an IIS virtual directory programmatically using Coldfusion? Is there some set of server objects that could be tapped into using COM, for example? Any guidance would be appreciated. Thanks. -Josh