To skip the first two Digits of the Char in Query

Iam using County code which is the attribute of Vendor in free-chars of my query. In back-end iam doing some enhancements for this county code and populating the county codes values with region. (For example if the country code value is 021 in back end iam populating by concatenating with region value. so the value in the back-end is 05021.)
When i run the query the key of county code value i see is 05021. But i need to skip the first two digits in county code and should display in the result. Is there any way to skip the first two digits for the county code values.
Thanks in Advance
Sudhakar

Hi Sudhakar,
Pls go through the link:
Remove the last two charecters from right
Thanks and Regards,
Ramki

Similar Messages

  • TS1424 iTunes skip the first two songs of the album I just purchased from the iTunes Store?

    Why does iTunes skip the first two songs of the album I just purchased from the iTunes Store?
    I previously checked that the download was complete.  (Had plenty of time, but checked nonetheless it was done.)  I have closed and reopened iTunes several times.  Frustrated.

    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copies of the dodgy tracks and try redownloading fresh copies. For instructions, see the following document:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the items that are not playing properly. If you can't see "Report a Problem" next to the items, click the "Report a problem" button. Now click the "Report a Problem" links next to the items.

  • List files in numeric order past the first two digits

    I scanned docs onto a usb stick & saved as pdf files using an 8 digit date.  When I go to open the files they are only in order for the first 2 digits.  How can I get adobe to put them in order using all 8 digits so that they are listed in date order including day & year?

    The OS won't sort by date like that. If you look, it IS sorting "numerically" as the "dates" are in order numerically from smallest to largest.
    What I do to sort by date is use this format "YYYYMMDD"

  • BULK IMPORT ONLY LOADS THE FIRST FOUR DIGITS FOR THE SIC CODE

    Hi,
    The issue is: DNB enrichment file has 8 digits SIC codes, but oracle bulk import only loads the first 4 digits and ignore the last 4. Just would like to whether it will be possible to import all the 8 digits of SIC code.
    Thanks and regards,
    Hareesh

    I solved the problem by using destroy() method instead of finally block. Thanks,anyway,Jimmy.

  • My location bar has stopped auto completing and I have not changed anything on my machine. It works for perhaps the first two tries of the day and then stops auto-completing

    Recently my location bar stopped autocompleting. I cleared my cache but it did not help. it seems to work the first few times when i start Firefox , but then stops. If I quit and restart Firefox, the same thing happens. I have tired checking it after my computer has been shutdown for the night (which I do about once a week), and also after it goes to sleep (which I do frequently).

    Don't worry I've sorted it! I just had to turn off Reminders as well in iCloud. Calendar then worked fine, even when I turned Calendar and Reminders back on.

  • How to get the first 6 digits and the last 4 digits in a string ?

    Greetings folks.
    A quick question and probably quite simple for a lot of guys out there.
    I have a string that could be anywhere between 15 to 20 characters ( Not a fixed length )
    I want it to be split into 3 segments.
    Segment 1 : 123456 ( 6 digits )
    Segment 2 : Everything else in the string from where Segment 1 ends (+1) and Segment 3 begins (-1).
    Segment 3 : 1234 ( 4 digits )Any help is appreciated !
    Thanks

    Hi,
    Try:
    SQL> with t as (
      2  select 2357248357953456217244 col from dual union all
      3  select 3490872049578204934532 col from dual
      4  )
      5  select substr(col, 1, 6) part1
      6  ,      substr(col, 7, length(col)-10 ) part2
      7  ,      substr(col, -4, length(col)) part3
      8  from  t;
    PART1  PART2                              PART
    235724 835795345621                       7244
    349087 204957820493                       4532
    2 rows selected.
    edit
    Hmz, I type way to slow in comparison to Alex and Blu ;)
    edit2
    Besides typing to slow, I also type too much:
      7  ,      substr(col, -4, length(col)) part3This is indeed enough:
      7  ,      substr(col, -4) part3Thanks for the reminder ;)
    Edited by: hoek on Jul 16, 2009 4:54 PM
    Edited by: hoek on Jul 16, 2009 4:57 PM

  • A majority of the time, I go to watch videos on youtube the first two seconds of the video load and then the video freezes. I am not able to watch anything after that point. Can this be fixed at the genius bar?

    Youtube will not load videos beyond 2 seconds. How can this be fixed?

    Try contacting YouTube's tech support and/or post in their forums. 
    Make sure you are using the latest version of Adobe Flash Player. 
    Is your RAM maxed out?  Care to share which OS you are using? 

  • I appear to have three different versions of photoshop Cc on my computer. They are Photoshop CC, Photoshop CC (64 bit) and Photoshop 2014. Am I able to remove the first two without affecting the preformance of the last version?

    Help as this is all taking up so much space on my computer.

    It is okay to remove the ones you do not need as they are not dependent on one another.  If any problems arise afterwards you can post here again to get help.

  • Iphone support won't accept my serial number. I am putting in the first 14 digits of the IMEI.

    Why won't support recognize my serial number (IMEI number)?

    Find the serial number and other information for your iPhone, iPad, and iPod touch - Apple Support

  • How can I pull info into a report using just the first two characters of that field?

    I am trying to pull a total cost based upon locations in a particular area(s). Can I get the formula to just do this based on the first two characters of that field?
    Here is what I have so far:
    if {PACKED.LOCATIONS.NEXT OPERATION} = ["xx"] THEN {Job.Total_Price}
    Packed locations is a table I'm pulling from and the column I want just the first two digits is the the Next operation. Once this meets the "xx" (whatever location) then give me the total price from the Job table.
    This works for one or two orders, but then blows up when I do 10 or so.

    Hi Steve, assuming that Next Operation is a string field...
    Create a new formula and place it in the field where you see the {Job.Total_Price} field (Detail or Group depending on your report) with the formula:
    whileprintingrecords;
    global numbervar TotalValue;
    if len({? Replace me}) <= len({PACKED.LOCATIONS.NEXT OPERATION}) then(
    if left(ucase({PACKED.LOCATIONS.NEXT OPERATION}),len({? Replace me})) = ucase({? Replace me}) then
    TotalValue := TotalValue + {Job.Total_Price}
    TotalValue;
    You can go ahead and suppress that field.
    Create a new formula to place where you want to view the summary using the formula:
    whileprintingrecords;
    global numbervar TotalValue;
    This method allows for a higher degree of flexibility and you can search for the first x characters of that field instead of only the first 2 characters

  • Print in PDF only Prints the first two pages

    I am have been ahving problems with my creat PDF account, only printing the first two pages, when i print something to PDF from a webpage.  I.E. Pinterest.  It will only print the first two pages and the rest will be blank or incomplete.  I am at the end of my rope and dont know how to fix it.  I recently got Acrobat 9 standard thinking this may help, but the problem still exists, which irritates me more.  Please help!

    Try here: http://forums.adobe.com/community/createpdf
    There people who use CreatePDF on a daily basis there, who know much more about it .

  • TS3274 Email display problem: My email only display the list of emails and a preview (first two lines of the body of the mail). If one click on the message it only shows the heading on the right hand side of the screen, but not the content.

    My email only display the list of mails in my in box with a preview of the first two lines of the body of the message. When one clicks on the message to open it, only the header is displayed in the right hand side of the screen - the actual message is missing. This happens on older mail previously downloaded that use to work properly as well. Any idea how to fix this?

    Try closing the Mail app completely and see if it works properly when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Validating the first two columns of a excel file when importing?

    Hi everyone,
    I have an excel file in the presentation server which has to be uploaded into prog.First the user adds a additonal column in the excel file.
    For example the excel file is intially in this way,
    col1 col2 col3 col4 col5
    Now the user adds one more column 'colx' in the excel sheet and he will upload it into the prog.Before uploading programatically we have to validate that the first two columns of the excel file should be col1 colx(the newly added one).How can I do it?
    Any suggestions please?
    Thank you.

    Hi gopi,
    Thanks for the reply.
    I have one more problem.Now in the excel file I may have only 5 columns in the future it may have more than that.So the internal table which will hold the uploaded values from excel file should be dynamic.I can't declare the internal table with 5 or 6 columns like that.If the user adds some columns in the excel file and upload it,the internal table should hold these columns also.
    i hope u understood my requirement.Can u give me any ideas.If u have any sample code for this kind of requirement.
    Thank you.

  • Making first two digits of all cells increment one unit

    hi friends
    i am not expert in MS Excel & i need an urgent help.
    i had created a long excel sheet in Excel 2013 which i paste a part of that sheet here:
    the list is very long.
    now for some reasons, i have to edit this sheet so that in all cells, the first two digits from left increment one unit, as i have manually done that in the following figure. ( note: i don't want the color get read. i changed the color only to better view)
    the problem is that i don't do that manually because there are hundreds of cells & that takes long time.
    please introduce me all the methods which i can do that at once. (the format of all cells is text).
    really thanks in advanced

    Use this formula, starting in row 1 and copy down. Copy the result, use paste special to paste as Values over column A. Delete the formula.
    =TEXT(LEFT(A1,2)+1,"00")&MID(A1,3,99)
    cheers, teylyn
    Hi teylyn
    sorry for being late
    that's Great.thank you very very much, really helped me.
    best wishes for you
    regards

  • Dial tone after first two digits are dialed

    I was just made aware that one of our sites when dialing out (local, LD, TF, etc) receives dial tone after dialing the first two digits of any number.  They can continue to dial the number and will call out.  I am trying to understand where the dial tone is coming from after the 2nd digit is dialed.  Any idea's?
    CUCM 8.5
    2821 Gateway - MGCP - T1PRI

    I absolutely agree with Aaron's statement that ALL route patterns need to have the 'provide outside dial tone' checked on all applicable route patterns.  I would also like to note that any dial plan overlap with those route patterns would also cause delay in secondary dial tone.
    For example if you dial 9 to get out and a dial-able extension gets added accidentally to a phone that also starts with a 9, that could cause similar issues.
    So after checking route patterns first and if all that looks correct, I recommend Call Routing -> Route Plan Report, to search for ALL numbers that start with your outside access code.

Maybe you are looking for

  • [SOLVED] Strange character issue...

    I'm using Openbox, and sometimes (often) the text will mess up and start showing random characters in place of the characters that's supposed to be there.  I kill X and start it up again, and it's fixed until it happens again.  It usually happens aft

  • Porting *.war files and *.ear files to Weblogic 10.3

    If we can figure this issue out, I'll see if I can't publish/post a maven-based solution in the Maven and Oracle forums so that others will not have to go through our pain. We are having all the usual problems regarding where Weblogic expects to find

  • IPod Touch cannot connect to local Wi-Fi

    So, iPod Tuch 4g with OS 5.1.1 finds my local router, but it just says "connection to network [...] failed". MAC-filter is activated, but the iPod is authorized to connect. It doesn't work even if the filter is deactivated. It worked with no problems

  • SOAP receiver starting the integration scenario

    Hello experts, I am searching for a way to start an integration scenario with a SOAP receiver in the same way it is possible with JDBC sender (with a pool interval). The scenario is: I need to execute a webservice, getting information from it, and se

  • Problem with printing report document issue

    hi i want to implement "Print all" button functionality in my simple school management software where the report printing of whole students of same class can be done with a single "print all" button function. how can i implement this? i am lacking lo