Hi plz give answer 4 this

using sql query display following
input is : VIJAY
OUT PUT IS:
VIJAY
VIJA
VIJ
VI
V

Hello 841049,
this is a forum for professionals, so please don't use IM-speak.
And this is not the forum for SQL but for the tool SQL-Developer. The forum for SQL questions is PL/SQL
And please read this before posting a question {message:id=9360002}
Regards
Marcus

Similar Messages

  • Please give answers for this. This is urgent

    1)can u create internal table dynamically ?how?
    2)what is the model dialogbox?
    3)can u create more than one selectionscreen
    4)in which event we will be writing authorization object.

    Hi
    1)can u create internal table dynamically ?how?
    Dynamic internal table is internal table that we create on the fly with flexible column numbers.
    For sample code, please look at this code tutorial. Hopefully it can help you
    Check this link:
    http://www.****************/Tutorials/ABAP/DynamicInternaltable/DynamicInternalTable.htm
    2)what is model dialog box?
    Go to SE51 and create the model dialog box and see.
    It is like creating the screen.
    3)can u create more than one selectionscreen
    Why do you need more than one selection screen for a program,One is enough .
    4)in which event we will be writing authorization object.
    In general different users will be given different authorizations based on their role in the orgn.
    We create ROLES and assign the Authorization and TCODES for that role, so only that user can have access to those T Codes.
    USe SUIM and SU21 T codes for this.
    Much of the data in an R/3 system has to be protected so that unauthorized users cannot access it. Therefore the appropriate authorization is required before a user can carry out certain actions in the system. When you log on to the R/3 system, the system checks in the user master record to see which transactions you are authorized to use. An authorization check is implemented for every sensitive transaction.
    If you wish to protect a transaction that you have programmed yourself, then you must implement an authorization check.
    This means you have to allocate an authorization object in the definition of the transaction.
    For example:
    program an AUTHORITY-CHECK.
    AUTHORITY-CHECK OBJECT <authorization object>
    ID <authority field 1> FIELD <field value 1>.
    ID <authority field 2> FIELD <field value 2>.
    ID <authority-field n> FIELD <field value n>.
    The OBJECT parameter specifies the authorization object.
    The ID parameter specifies an authorization field (in the authorization object).
    The FIELD parameter specifies a value for the authorization field.
    The authorization object and its fields have to be suitable for the transaction. In most cases you will be able to use the existing authorization objects to protect your data. But new developments may require that you define new authorization objects and fields.
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/67167f439b11d1896f0000e8322d00/content.htm
    To ensure that a user has the appropriate authorizations when he or she performs an action, users are subject to authorization checks.
    Authorization : An authorization enables you to perform a particular activity in the SAP System, based on a set of authorization object field values.
    You program the authorization check using the ABAP statement AUTHORITY-CHECK.
    AUTHORITY-CHECK OBJECT 'S_TRVL_BKS'
    ID 'ACTVT' FIELD '02'
    ID 'CUSTTYPE' FIELD 'B'.
    IF SY-SUBRC <> 0.
    MESSAGE E...
    ENDIF.
    'S_TRVL_BKS' is a auth. object
    ID 'ACTVT' FIELD '02' in place 2 you can put 1,2, 3 for change create or display.
    The AUTHORITY-CHECK checks whether a user has the appropriate authorization to execute a particular activity.
    This Authorization concept is somewhat linked with BASIS people.
    As a developer you may not have access to access to SU21 Transaction where you have to define, authorizations, Objects and for nthat object you assign fields and values. Another Tcode is PFCG where you can assign these authrization objects and TCodes for a  profile and that profile in turn attached to a particular user.
    Take the help of the basis Guy and create and use.
    In general different users will be given different authorizations based on their role in the orgn.
    We create ROLES and assign the Authorization and TCODES for that role, so only that user can have access to those T Codes.
    USe SUIM and SU21 T codes for this.
    Much of the data in an R/3 system has to be protected so that unauthorized users cannot access it. Therefore the appropriate authorization is required before a user can carry out certain actions in the system. When you log on to the R/3 system, the system checks in the user master record to see which transactions you are authorized to use. An authorization check is implemented for every sensitive transaction.
    If you wish to protect a transaction that you have programmed yourself, then you must implement an authorization check.
    This means you have to allocate an authorization object in the definition of the transaction.
    For example:
    program an AUTHORITY-CHECK.
    AUTHORITY-CHECK OBJECT <authorization object>
    ID <authority field 1> FIELD <field value 1>.
    ID <authority field 2> FIELD <field value 2>.
    ID <authority-field n> FIELD <field value n>.
    The OBJECT parameter specifies the authorization object.
    The ID parameter specifies an authorization field (in the authorization object).
    The FIELD parameter specifies a value for the authorization field.
    The authorization object and its fields have to be suitable for the transaction. In most cases you will be able to use the existing authorization objects to protect your data. But new developments may require that you define new authorization objects and fields.
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/67167f439b11d1896f0000e8322d00/content.htm
    To ensure that a user has the appropriate authorizations when he or she performs an action, users are subject to authorization checks.
    Authorization : An authorization enables you to perform a particular activity in the SAP System, based on a set of authorization object field values.
    You program the authorization check using the ABAP statement AUTHORITY-CHECK.
    AUTHORITY-CHECK OBJECT 'S_TRVL_BKS'
    ID 'ACTVT' FIELD '02'
    ID 'CUSTTYPE' FIELD 'B'.
    IF SY-SUBRC <> 0.
    MESSAGE E...
    ENDIF.
    'S_TRVL_BKS' is a auth. object
    ID 'ACTVT' FIELD '02' in place 2 you can put 1,2, 3 for change create or display.
    The AUTHORITY-CHECK checks whether a user has the appropriate authorization to execute a particular activity.
    This Authorization concept is somewhat linked with BASIS people.
    As a developer you may not have access to access to SU21 Transaction where you have to define, authorizations, Objects and for nthat object you assign fields and values. Another Tcode is PFCG where you can assign these authrization objects and TCodes for a  profile and that profile in turn attached to a particular user.
    Take the help of the basis Guy and create and use.
    In general different users will be given different authorizations based on their role in the orgn.
    We create ROLES and assign the Authorization and TCODES for that role, so only that user can have access to those T Codes.
    USe SUIM and SU21 T codes for this.
    Much of the data in an R/3 system has to be protected so that unauthorized users cannot access it. Therefore the appropriate authorization is required before a user can carry out certain actions in the system. When you log on to the R/3 system, the system checks in the user master record to see which transactions you are authorized to use. An authorization check is implemented for every sensitive transaction.
    If you wish to protect a transaction that you have programmed yourself, then you must implement an authorization check.
    This means you have to allocate an authorization object in the definition of the transaction.
    For example:
    program an AUTHORITY-CHECK.
    AUTHORITY-CHECK OBJECT <authorization object>
    ID <authority field 1> FIELD <field value 1>.
    ID <authority field 2> FIELD <field value 2>.
    ID <authority-field n> FIELD <field value n>.
    The OBJECT parameter specifies the authorization object.
    The ID parameter specifies an authorization field (in the authorization object).
    The FIELD parameter specifies a value for the authorization field.
    The authorization object and its fields have to be suitable for the transaction. In most cases you will be able to use the existing authorization objects to protect your data. But new developments may require that you define new authorization objects and fields.
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/67167f439b11d1896f0000e8322d00/content.htm
    To ensure that a user has the appropriate authorizations when he or she performs an action, users are subject to authorization checks.
    Authorization : An authorization enables you to perform a particular activity in the SAP System, based on a set of authorization object field values.
    You program the authorization check using the ABAP statement AUTHORITY-CHECK.
    AUTHORITY-CHECK OBJECT 'S_TRVL_BKS'
    ID 'ACTVT' FIELD '02'
    ID 'CUSTTYPE' FIELD 'B'.
    IF SY-SUBRC <> 0.
    MESSAGE E...
    ENDIF.
    'S_TRVL_BKS' is a auth. object
    ID 'ACTVT' FIELD '02' in place 2 you can put 1,2, 3 for change create or display.
    The AUTHORITY-CHECK checks whether a user has the appropriate authorization to execute a particular activity.
    This Authorization concept is somewhat linked with BASIS people.
    As a developer you may not have access to access to SU21 Transaction where you have to define, authorizations, Objects and for nthat object you assign fields and values. Another Tcode is PFCG where you can assign these authrization objects and TCodes for a  profile and that profile in turn attached to a particular user.
    Take the help of the basis Guy and create and use.
    Reward points if useful
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • Plz give answers to my questions.

    hi,
    im new in this abap programming and i have few doubts. i will be glad if any body clears my doubts.
    1) what is a element ?
    2) wats r the advantages we can get by using object orientated approach for ALV programming
    compared to classical ALV using function modules.
    3)What is the Exact meaning of 'Business scenarios ' and 'business process'.
    eagerly waiting for ur replies.
    regards,
    maqsood

    1) Do you mean a <a href="http://help.sap.com/saphelp_46c/helpdata/EN/90/8d72feb1af11d194f600a0c929b3c3/frameset.htm">data element</a>?
    2)  You get all of the advantages of OO programming concepts,  plus I've heard that the FM ALV Grid will be obselete in coming releases.
    3)  Each company has a set of business processes, things that you must do to run your business.  This are business processes.  And example, would be that a customer service rep, takes a fax from a customer and enters the order into SAP.  This is a very simple example.  They are usually more complex.
    Regards,
    Rich Heilman

  • Plz  send answer for this.

    Can u explain  BAPI  Function module & API  Method  both are Same ?or What? give example.

    BAPI (Business Application Programming Interface) is a set of interfaces to object-oriented programming methods that enable a programmer to integrate third-party software into the proprietary R/3 product from SAP. For specific business tasks such as uploading transactional data, BAPIs are implemented and stored in the R/3 system as remote function call (RFC) modules.
    An application programming interface (API) is a source code interface that a computer system or program library provides to support requests for services to be made of it by a computer program. An API differs from an application binary interface in that it is specified in terms of a programming language that can be compiled when an application is built, rather than an explicit low level description of how data is laid out in memory.
    Regards,
    Pavan

  • Hello dear repersented. i have a iphone 3g seriel no.85945sy43nr using at saudi arbia bcz this phone is coming from Uk thats y the sim is not working at here . so plz give me sulution of this problum.

    hello dear repersented. i have a iphone 3g seriel no.85945sy43nr using at saudi arbia bcz this phone is coming from Uk thats y the sim is not working at here . so plz give me sulution of this problum.

    um..pretty simple solution. when you bought this iphone its obviously still linked to the old sim which is probably a UK carrier. you need to contact whoever you bought it from and get them to pay the fee to use this phone on a saudi arabian sim.

  • I m a new user plz give me icloud account bt previous owner she dead and i dont know about this information this phone. plz Help me icloud account as early as possible

    i m a new user plz give me icloud account bt previous owner she dead and i dont know about this information this phone. plz Help me icloud account as early as possible

    Apple is not here and will NOT give you the information. Contact the relatives of the "dead" owner.

  • I have iPhone 4 and I have purchased this from Dubai and now I am in India but now my phone didnot working here .so plz give me solution for this so I will use this in India.can I factory unlocked my iPhone by apple store at jaipur india

    I have iPhone 4 and I have purchased this from Dubai and now I am in India but now my phone didnot working here .so plz give me solution for this so I will use this in India.can I factory unlocked my iPhone by apple store at jaipur india

    ONLY the carrier it is locked to can authorize unlocking it. Most have restrictions in that you must be a current customer and have maintained service for a minimum period of time. Do yourself a favor, sell it and purchase a phone in India instead.

  • HT204003 if i open passbook on iphone 5, it always say cannot connect to itunes, any fix from apple tech support? and whats the reason for this problem? why do we have to figure it out and not even apple can give answer??

    if i open passbook on iphone 5, it always say cannot connect to itunes, any fix from apple tech support? and whats the reason for this problem? why do we have to figure it out and not even apple can give answer??

    actually i found out how to fix it
    1 sign out of apple account
    2 close down passbook app
    3 change year to 2013
    4 reopen passbook and sign in at the button with your apple ID
    5 change the time to auto update and it should work from now on.
    this worked for me let me know if it work for you:)

  • Plz give me the sugg. in this scenarion

    hi ,
    i m explaining my scenario
    my company is maintaining car details based on carno(kfznr), kostentraeger (costcenter), kmstand( kilometers)
    someof the cars which belongs to my company , somebody r using these cars with in the organisation i need to update the information. this is the scenario.
    i have two ztables one is
    zfm_kfz(fields r kfznr, geraet,kostentraeger, bezeichnung(carname), tuvdatum,asudatum, kmstand, histo, reifen, username
    othe table is zfm_kmvrg fields r kfznr, kostentraeger, kmstand
    first table is maintained by using table maintenance genarator(sm30)
    for second table i m creating tablecontrol(se51)and assigning this ine to transaction bacause users r entering this trasaction in se93 they r directly going to that screen.in that screen u the user enter the data and press update button the data is updated in the screen and last kmstand is updated in the first table maintenance(zfm_kfz)
    the kmstand is updated like this
    kfznr(carno)            kostentreger         kmstand
    nd-gr_456                p2309029033         15000
                             p8734292112         16000
                             s9329843840         16500
    this 16500(lastkmstand is updated in the first table zfm_kfz)if u have only one cost center
    nd-de_6784                rj12352677         12000
    this 12000 is updated in the first first table (zfm_kfz)
    this is the scenario plz help me in this problem

    kfznr          kostentraeger          kmstand
    ND-AB_123      <b>P928392132</b>      <u>10000</u>
                    <b>P9239189111</b>        <u>12000</u>
    HERE I M SENDING KFZNR WITH CAPS, KOSTENTRAEGER WITH BOLD AND KMSTAND WITH UNDELINE

  • Any one can plz give me the Solution for this problem

    select country ----text field
    select states ---------text field
    select country is one text field and select states is another text field .
    By using ajax if i select country like india states belonging to the india should be displayed in select states text field -----
    like if i select any country , belonging states should be displayed in selected states text field.
    can any one plz suggest me for this problem by using ajax with step by step solution.
    thanks in advance.....

    nareshannam wrote:
    can any one plz suggest me for this problem by using ajax with step by step solution.
    thanks in advance.....Well my Idea is to look for another Forum ,This is not a Ajax Forum
    maybe try [http://www.dynamicdrive.com/] or [http://www.webdeveloper.com/]

  • Apple -clueless about its own software !! can anybody give me a straight answer to this ?

    APPLE - clueless about its own software !!! Can anybody please give me a straight answer to this question - how do I zero out my Apple SSD ??
    I have spoken to Apple engineers in-store and via phone support and nobody seems to know how to do it, in fact the guys at the retail store were not even aware that the option for secure erase has been disabled for macs with SSD running Lion. Now im aware that some people will say this is to protect the lifetime of the SSD, but this is irrelevant as Apple SSD's running Lion has TRIM utility. Furthermore to save people's time you cannot do it by externalling booting or by holding down C or CMD+R !
    So, has anyone got a simple method for this, it cant be impossible !
    Please help

    mj25 wrote:
    APPLE - clueless about its own software !!! Can anybody please give me a straight answer to this question - how do I zero out my Apple SSD ??
    I have spoken to Apple engineers in-store and via phone support and nobody seems to know how to do it, in fact the guys at the retail store were not even aware that the option for secure erase has been disabled for macs with SSD running Lion. Now im aware that some people will say this is to protect the lifetime of the SSD, but this is irrelevant as Apple SSD's running Lion has TRIM utility. Furthermore to save people's time you cannot do it by externalling booting or by holding down C or CMD+R !
    So, has anyone got a simple method for this, it cant be impossible !
    Please help
    then if not coming up on google, apple or asking here, then is maybe impossible to do genius. you politeness get you lot of help here.

  • HT1476 How often the charging cycle to be done before the replacement of the battey. Likewise, is it ok to use the iphone while charging such as playing and watching movies. Please give me a reliable answer because this is my first time to use iphone.

    Is it ok to use iphone while charging? Such as playing and wathing videos, or performing internet? How often the charging cycle to be done before the replacement of the battery? Can u please give me reliable answer because this is my first time to use iphone. I've wondering about the battery, since its built-in i wanted to care about the battery.

    Roelt wrote:
    Is it ok to use iphone while charging? Such as playing and wathing videos, or performing internet? ...
    Yes.
    How often the charging cycle to be done before the replacement of the battery?
    Read this:
    http://www.apple.com/batteries/iphone.html

  • I am using photoshop cc 2014.2 And when I use save for Web it gives me a dialog box that says it is using Latin characters I've never seen this before. Does anyone have an answer for this problem or do I need to go back to the older version of Photoshop.

    I'm using Photoshop cc 2014.21 I you save for Web and dialog box comes up that says that Photoshop is using Latin characters and that servers cannot recognize Latin characters in webpages and you may have trouble viewing these pages does anyone have an answer for this problem?

    What Firefox version is currently installed on the computer?
    You can find the full version of the current current Firefox release (37.0.2) in all languages and all operating systems here:
    *https://www.mozilla.org/en-US/firefox/all/
    If you have a very old Firefox version then you could consider to uninstall that version to clean up existing registry keys (especial the uninstall key).
    Make sure NOT to remove "personal data" when you uninstall Firefox, because that will remove all profile folders and you lose personal data like bookmarks and passwords including data in profiles created by other Firefox versions.
    Check the Firefox program folder and remove the Firefox program folder if there are still files left in it.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure NOT to remove personal data when you uninstall Firefox as that will remove all Firefox profile folders and you lose your personal data.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Hey guyz my ipod touch 4g is not green battery symbol while charging or syncing on home screen nor it get charge?? plz give me some suggestion

    hey guyz my ipod touch 4g is not green battery symbol while charging or syncing on home screen nor it get charge?? plz give me some suggestion

    no buddy,  when my i pod touch 4 is off  i press its power button then it display a black screen in which there is an empty battery with red marking in side   an,,
    when i connect it with usb cable which i got with i pod touch....then itlike this in picture.. but after some time it get start to home screen with 20 % battery ..and no charging take place and no syncing take ....nor i tunes find it

  • Hello Apple, Plz give us the classic look option like iOS 6. We miss that appearance which shew all icons as a gems but now in ios 7 all icons look like a cheap stickers and worst than android look. Plz think about it, heartily request to You dear Apple.

    Hello Apple, Plz give us the classic look option like iOS 6. We miss that appearance which shew all icons as a gems but now in ios 7 all icons look like a cheap stickers and worst than android look. Plz think about it, heartily request to You dear Apple.

    There is no Apple in this forum this is a user to user forum.
    send your feedback here http://www.apple.com/feedback/

Maybe you are looking for

  • View Options Still Broken

    View options was broken in Lion (some carried over, others became a white background with greyed out options). I was hoping against hope that this would get fixed in mountain Lion, but my User folder's View Options, for example, is still broken. What

  • IPlanet plugin for WebLogic not working - cannot find function named wl_init

    Hi, I have been having this issue for the last two days. It relates to IPlanet plugin for WbLogic. Following is the error I get: [17/Apr/2003:11:41:26] config ( 2069): func_exec reports: cannot find function named wl_init [17/Apr/2003:11:41:26] failu

  • Purchase requsition

    Hi experts we have n number of purchase requisitions and now we want to convert those requisitions into purchase order at a time throug pls tell me the process

  • Classes not working

    ok so i have this class i made:      public class George {           public void talk(){      System.out.println("meow"); and then i call it with this:           George Speech = new George;                Speech.talk(); That is done in the trivialapp

  • Gnome 3.6 "Clock" has quit unexpectedly

    Just like in this thread I wasn't able to log in after sys upgrade. To read the wiki article I started X and gnome-session manually. This was the first time when the clock-applet failed to load. Then following the article I did 3 things: In grub.cfg