New syntaxes for Obsolete ones

Can anyone tell me the new syntaxes for these-
1) Using 'occurs' for creating an internal table is obsolete now.
2) Move statement is obsolete. For a unicode upgrade what is the solution for these?
Search before posting further
Edited by: Vijay Babu Dudla on Jan 15, 2009 4:28 AM

Hai,
TYPes: begin of ty_tab,
           f1 type element,
          f2 type element2,
end of ty_tab.
types: ty_it_tab type table of ty_tab.
data: it_table type ty_it_tab.
data: wa type ty_tab.
Use explicit work areas for the internal tables. you can also use field-symbols if required.
Regards,
Venkatesh

Similar Messages

  • New syntax for Go URL in Analytics 10.1.3.2 onwards

    Can someone please share the location of any documentation for parameter passing in version 10.3.4.1 ?
    Specifically, I am having difficulty getting the BETWEEN qualifier to function as expected: *&op1=bet*
    Almost all of the GO URL examples that reference the new variable passing style simply use *&col1=* and *&val1=* and leave off the optional operator, letting it default to *&op1=eq*. Filtering for a single date using &op1=eq, &op1=gt, &op1=le works just fine. But when I try to overload the new &val1= pararameter the same method that the older syntax uses
    &P3=2+"8/12/2012 12:00:00 AM"+"08/18/2012 12:00:00 AM"
    &val1=2+"8/12/2012 12:00:00 AM"+"08/18/2012 12:00:00 AM" or any variant of date/time then it fails.
    I need to be able to filter for a specific range of dates and tried every combination of escaped sequences that I can think of with no success.
    Thanks in advance for any suggestions or links,
    -Marco
    (Dallas, TX)

    Thanks, I have the docs for the older &P0, &P1-P3, &P4-P6, etc. structure. I prefer the newer and cleaner format of the &col1= and &val1=, especially given the fact that there isn't a limit on the number of filters, the old approach cannot have more than 6 conditions.
    I really don't want to have to code for both formats since I already have a lot of queries built using the newer syntax. Surely, Oracle still supports the BETWEEN operator.

  • 11gR2 SELECT statement: new syntax for specifying partition key

    I have an Oracle 11gR2 table which is interval partitioned on a single NUMBER column.
    I am trying to query a single partition using the new SELECT ... FOR ( < partition key> ) syntax.
    I keep getting an ORA-00905 error as follows, any ideas what I am doing wrong?
    SQL*Plus: Release 11.2.0.2.0 Production on Wed Dec 12 10:34:36 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select * from rpt_dif_daily_instance_fact for ( 41215 )
    2 /
    select * from rpt_dif_daily_instance_fact for ( 41215 )
    ERROR at line 1:
    ORA-00905: missing keyword
    SQL> show sqlpluscompatibility
    sqlpluscompatibility 11.2.0

    Welcome to the forum!
    Thanks for providing your 4 digit Oracle version. You should always do that when you post since functionality may be different between versions.
    >
    I have an Oracle 11gR2 table which is interval partitioned on a single NUMBER column.
    I am trying to query a single partition using the new SELECT ... FOR ( < partition key> ) syntax.
    I keep getting an ORA-00905 error as follows, any ideas what I am doing wrong?
    SQL*Plus: Release 11.2.0.2.0 Production on Wed Dec 12 10:34:36 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select * from rpt_dif_daily_instance_fact for ( 41215 )
    2 /
    select * from rpt_dif_daily_instance_fact for ( 41215 )
    ERROR at line 1:
    ORA-00905: missing keyword
    >
    As bencol said you are not using the new syntax. See the SQL Language doc 'partition_extension_clause' for the syntax diagram that shows the syntax options.
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_10002.htm
    If you provide the partition name then the syntax is
    . . .PARTITION (partition)If you provide a partition key value the syntax is
    . . .PARTITION FOR (partition_key_value)

  • Still need a new firmware for linksys one/cisco svr3500

    now i tried over a year to just find someting about this either firmware or manuals or someting.. it freezes after a little time
    and this didnt help me the phone support just send me around in a circle to ppl that dosent know anything and left me only with a phone bill since im from denmark
    and after all that time used for nothing and have an expensive router just collecting dust that it just not funny anymore
    1. May 10, 2010 6:17 PM (in response to Chris Rasmussen)
    Re: linksys svr3500
    Hi HightowerDK,
    Contact the BAC (Broadband Access Center) for Linksys One support if you are in the USA on 1 866 870 5826
    Regards,
    Cindy Toy
    Cisco Small Business Support
    Community Manager

    Hi,
    Thank you for your quick reply.
    My DVD drive is a SD-R6112 I found a frimware update on the page you have given searching on the model of my drive but when executing the exe file it says I don't need the update and program stopped.
    On another forum someone said the third party firmware I installed should have changed some calibration data of my drive thats why I can not read any DVD-R anymore and no firmware will fix it anymore.?
    I still can read CD's and original DVD's but I can not read DVD-R's anymore which is very annoying.
    Do you know if Toshiba technicians could re-calibrate my drive?
    Can I buy an intern DVD drive for my model?

  • Mysql 'distinct' syntax for only one column

    I want to select an entire table and limit the results to those rows which have distinct information in a particular column.
    for example:
    ID
    main_category
    sub_category
    1
    letter
    t
    2
    letter
    s
    3
    letter
    s
    4
    letter
    t
    I want to create a mysql sntax statement that collects all the columns (i.e. SELECT * FROM my_table) yet only selects the distinct cells of 'sub category' to only display the letters 's' and 't' (when using the php code "echo $row_exampleRS['sub_category']" on a repeating loop).
    When I use the statement "SELECT DISTINCT * FROM my_table" it returns 't', 's', 's', 't' because I didnt set the DISTINCT on sub_cateogry
    How do I SELECT all the columns yet limit one of those columns to only distinct entries??
    thanks

    >1) I need to select the ID as well for another reason.
    Which ID? All of them? Some of them?   The select statement will retrieve columns and rows from the table. If you want it to select all of the ID's, then it would need to select all of the other values associated with that row, including 'duplicates'.
    Now, if you only want to select some of the ID's, so that the other columns are not duplicated, you can do that - but you need to tell SQL how to decide which rows to return. You could use max or min or some other aggregate.
    >using only 'second' in GROUP BY seems to have done the job.
    Be aware that using only part of your select list in the group by clause is known to cause unexpected results, and is not syntactically or logically valid. Note that most DBMS's would return an error. For some reason, MySQL chooses to not return an error, but the results may be unexpected. So it may work now, but you may get strange results later.

  • Best way to set up two new iTouches for kids

    I have a two new iTouches for my daughter (8) and son (5). My iPhone is set up with iTunes on my iMac computer. Both kids have an a user account on the iMac. What is the best way to set up the iTouch's for my kids?
    Do I use my Apple ID for their iTouch and sync it to iTunes on my iMac user account (same as my iPhone)?
    Do I use my Apple ID for their iTouch and set up iTunes on their user accounts on my iMac?
    Do I get my kids their own Apple ID and sync it to iTunes on my iMac user account?
    Do I get my kids their own Apple ID and sync it to iTunes on their user accounts on my iMac?
    Do I set up one Apple ID for both kids and sync to iTunes so they can have the same games and only pay once?
    I also have an iPad that I sync to iTunes on my usser account.
    Thanks

    I have the same dliemma. Daughter 8, son 6 - 2 new itouches for xmas - one library , my iPad, wife's iPhone ??
    I was intending on just keeping one library (this does contain music with explicit lyric content etc) and manage their music via separate playlists.
    As far as accounts and restrictions go, I was going to set them up with their own itunes account (using mail addresses only I can use). Load the account up with a voucher each.
    The restrictions I was going to apply at the iPod (rather than the account) using a PIN I know - this way you can limit Safarii browsing (i.e. turn it off), youtube, and the age limit to the apps they can install and run - and the movie ratings allowed etc.
    Happy to hear other ideas though - I'm intending on setting this up BEFORE they get them.

  • New FM for WWW_USER_AUTH_MESSAGE

    Hi,
    What is the new function module for WWW_USER_ AUTH_ MESSAGE  as it is obsolete.
    thanks,
    satya.
    Edited by: satya ranjan on Jan 22, 2010 2:47 PM
    Edited by: satya ranjan on Jan 22, 2010 2:57 PM

    Hi Satya,
    What is the new FM for  obsolete FM WWW_USER_ AUTH_ MESSAGE?
    Thanks!!

  • I recently had to get a new windows computer, old one crashed. My tech guy got all my itunes library over to the new one, and all my songs are there. However, some won't play and ask me for the password for the apple id they were purchased under. 2 of the

    I recently had to get a new windows computer, old one crashed. My tech guy got all my itunes library over to the new one, and all my songs are there. However, some won't play and ask me for the password for the apple id they were purchased under. 2 of these ids are obsolete and I have no access to those accts. The songs all played on my old computer without prompting me for a password.
    Any ideas how I can get around this hassle and get them all to play? We're talking about 800 songs that are being obstinate. The new computer is authorized under my "new" Apple id, which I have used for years.

    Downloading past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not available in all countries; apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Movies currently available in the USA only. Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list, or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid.  Apple notes it is your responsibility to back up your purchases.
    Select the store on the left side of iTunes.
    Click on Purchased on the right side under Quick Links.
    You can re-download your available previous purchases.

  • How do I use family share to setup a new device for my child when I don't already have one with iOS 8?

    My kids want apple products.
    I don't own any.
    I buy an iPad for one and an iPhone for the other, but I can't set them up because they require me to setup Family Share and create accounts.  I can't do that because I don't have a device with iOS 8 already setup.
    I do have a valid AppleID.  I've had it for years.  I use it with iTunes.
    I wish they would just let me manage the account setup and Family Share through a web page.  Right now I'm dead in the water and Christmas is approaching fast.

    I have found a solution.
    It turns out that all the documentation I could find on the web was wrong.  At least in the case of the iPad I just bought. I did manage to borrow a device so that I could setup family share and the kids accounts, but when I went to enter the new existing account into the setup of the iPad, it then started leading me through the process to create the account (clearly it didn't bother to check if it really existed already).  In reality, I believe had I just entered a "new ID" for my child, that didn't exist, it would have led me through the same process.  As it was, I had to back out to the first screen and skip the creation process, since I had already created the IDs elsewhere.
    The only part I'm not clear on, is if I still would first have needed to turn on family sharing for my ID before starting this whole process, or whether it would automate that while creating the child AppleID.

  • Downloaded new iOS for iPhone 5. Now the handset is running hot, keeps freezing on different screens, won't charge on official charger ( only charges on crap poundland one) and battery is loosing 1% every two minutes!

    Downloaded new iOS for iPhone 5. Now the handset is running hot, keeps freezing on different screens, won't charge on official charger ( only charges on crap poundland one) and battery is loosing 1% every two minutes! I've closed all apps and reset the complete phone but no luck. Any one know what else I can try apart from a new phone?

    I have done a factory reset at 45% battery. After the reset it's still hot and at 35% now

  • I have a new iPod Touch and one apple ID. I want to use My laptop aswell as my desktop computer for the one ipod, using the same apple ID. I have music on both computers and want to merge the two without losing any music or apps. How do I do this?

    I have a new iPod Touch and one apple ID. I want to use My laptop aswell as my desktop computer for the one ipod, using the same apple ID. I have music on both computers and want to merge the two without losing any music or apps. How do I do this?
    My iPod has music and apps from my apple ID that I downloaded to my iPod via iCloud and some apps that I got free from the store, straight onto my iPod, but my laptop has some music on it aswell, separate from my other library. I want to put the music from my laptop into my iTunes library which I want to use on both computers. Is it possible to do this?
    Thanks.

    - You can only sync an iPod to one iTunes library/computer. You can however, manually manage music and videos among different libraries.
    Go to iTunes>Help>iTunes Help>Sync your iPod....>Sync You Device>Set up Syncing>Sync your device manually and follow the instructions.
    - If y wnat to switch syncing libraries/computer see:
    go to iTunes>Help>iTunes Help>Sync your iPod....>Sync You Device>Set up Syncing>Sync your device manually and follow the instructions.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities
    If all the synced media like music is in the iTunes library of the second computer it is very easy.

  • Two users share one Apple ID, on two phones. can they be separated without losing phone backups? IE creating a new ID for one of the users?

    my in-laws share one apple id for two separate iPhones. They would like to create a new ID for one of the users but maintain his current backup. can this be done?

    If you want to create a new account make sure you sign out of everything via the settings. (ICloud, iTunes, facetime, messages, etc) APPS: since the apps were downloaded with a different apple ID, you will always need to use the password for the apple ID that downloaded that particular APP when it needs to be updated. Unless it is free, you can simply delete it and download it under the new apple ID. As for the music, you can keep it on the IOS device,  but if it's accidentally deleted, you'd have to sign back into the original account and download from the cloud. (But, you risk getting the 90 day lockout. )

  • I want to Facetime my Ipad from my Iphone but they are both set up with the same Apple id.  Do I need to create a new id for one of them in order to facetime with the other?

    I want to Facetime my Ipad from my Iphone but they are both set up with the same Apple id.  Do I need to create a new id for one of them in order to facetime with the other?

    You should be able to call the iPad using your Apple ID from the iPhone. When calling from iPad use the iPhone's phone number to initiate the call.

  • Can I use my new 4gs on a line different then the one it was upgraded on. I have many phones on my account. I am not eligible for upgrade but I had to buy two new phones for others. Can I give one of them my old iPhone 4 and take the 4gs.?

    I have many phones on my account. I am not eligible for upgrade but I had to buy two new phones for others. Can I give one of them my old iPhone 4 and take the 4gs? Thinking maybe switch sim cards? Thanks in advance for any help

    Yes.
    Just call your provider and tell them what you want and they will help you get it done properly.

  • 1. I have an iPod which has purchases synced with I tunes with an apple ID. I now have an iPad with a new ID for cloud. I have cloud storage capacity of 5gb which came with the iPad. How can I use one ID and store my existing music in cloud?

    1. I have an iPod which has purchases synced with I tunes with an apple ID. I now have an iPad with a new ID for cloud. I have cloud storage capacity of 5gb which came with the iPad. How can I use one ID and store my existing music in cloud?

    HI Frostyfrog
    CHeck out iTunes Match which has an annual fee of £21 or thereabouts. You can store a maximum of 25,000 songs there and they all become available on your other kit, iPhone, iPad and iPod. I know it works as I have over 23000 songs uploaded of which only a few we're bought through iTunes.
    it works by comparing your music to the whole iTunes music dadata base so you access the same tunes that you could get from iTunes. If you have obscure stuff, it uploads your own music to the cloud as a copy.
    I Find it incredible that on my iPhone with its 16gb memory I can view almost 200 gb of music (ie my 23000 songs) and play any of them. Anything I add to iTunes becomes available via the cloud fairly quickly from a few minutes or a little longer if adding a lot.
    The first time you use it it will take quite a while to match your music if you have a lot, but after that it is all automatic. Read the stuff on the apple site. Your PC needs to be at least running Vista. I recommend it and at less than 50p a week it's good value.
    Good luck

Maybe you are looking for

  • Lightroom 1.2 is slow with NEF

    I use a Dualcore 9750, so my PC is fast. But it took LR sometimes a few minutes to settle a predefined preset. Anyone else the same problem ? Dirk

  • Multiple languages in flat file

    HI, I m trying to load data throw flat file, how i can load the multiple languages into bw. i  mean spliting in bw. while loading throw r/3 data , one check box will be enable in bi side ( multiple languages), what about flat file.

  • Mod_jk binaries or Studio11 FTP dowload

    I need compile mod_jk.so for Soalris10 and SPARC. So i ma two ways: the sorter: download mod_jk.so for SPARC from somewhere. the longer: install studio11 and then compile. Someone know from where i can download studio11 via FTP ?

  • Sql (Select) result in string

    Hi , I found this code in internet but it´s put a result in range on excel.  I would like some code with end is some like  "MyVarString = objMySQLRecordsetResult" For example: In my select result = "User01" , I would like put this value in a var stri

  • Save/create a variant in user defined screen in dialog program

    is there a way to save/create a variant in user defined screen in dialog program? thanks...