How to remove extra data

Hi there.
I recently added some data to my capped plan mobile phone and want to remove the added data. So it was 2GB usage and I made it 2.2GB but I want to go back to 2GB. Anyone know where/how to do this please :/

Thanks Jeff
It says:
Removing a data pack
To remove a data pack from your service, please:
Call us on 1800 303 302
Visit your nearest Telstra Store
So there is no self service to this. So easy to add the extra data pack but have to get Telstra to do it I don't that but thank you so much for your reply (y)

Similar Messages

  • How to remove blank data from a byte array

    Hi All,
    How to remove blank data from a byte array. Suppose I created a byte array as byte[] b = new byte[8192] and i read the data as inputstream.read(b). If the data that has been received is only 1000 bytes length, how to find out how much data has been read or how to delete that blank 7192 bytes of data?
    Thanking you,
    Regards,
    Shankar.

    1) Always try to sidestep this by allocating only the necessary amount of space required...
    2) If 1 is not possible, you will have to index byte for byte how much data was read into the array which
    denotes reading byte for byte... not ideal as this is relatively slow...
    Are you reading from a file?

  • How to remove extra spaces from Data Matrix Label?

    Hi All,
    Kindly let me know how we can remove extra spaces from Data Matrix Label.
    Suppose we have this following code in SO10.
    ^FO1380,1879^COY,78^BY4^BXR,6,200^FH^FD[)>_1E06_1DF01001T_1D6JUN&v_huf&&v_hul&_1DV&v_supnum1&_1D16K&v_del&_1D6D&v_flddat1&095_1D2L&v_unload&_1D
    P&v_article&_1D4L&v_madein&_1D_1E_04^FS.
    Variable have there own value. and the desired result will be shown like the attachment.
    But in my code it splits into new line when CMIR value has 3 spaces.
    If CMIR value is 1S0 820 355 A . then it creats a new line.
    Kindly suggest me any possible solution.
    Thanks,
    Partha

    Hi Gaurav,
    In print preview we can't see any space or new line. But when it scanned by TSB (barcode scanner) it will generate a new line when there is 3 space CMIR value.
    So where should I write SHIFT CMIR LEFT DELETING LEADING space this code?
    Because there is no space coming at the time of debugging or print preview.
    And in SO10 the code written as
    ^FO1380,1879^BY4^BXR,6,200^FH^FD[)>
    Here CMIR value is 1SO 820 303 A
    and generated output is like this.
    And desired output should be like this.

  • How to remove header data from JMS Queue while sending by jms adapter

    Hi.
    I have a problem regarding the MQ-series JMS adapter.
    When writing the file the JMS adaptor putting  some additional tags.
    Actually we are converting idoc-xml to flat file by using ABAP mapping which is available in SAP document. We are using JMS Receiver adapter, whiel sending flat file to JMS QUEUE,  it is displaying some extra xml tags. I think this is the header data available in IDoc XML. Can any body help me in removing header data.
    There must be some way for XI's JMS adaptor to not include these information.
    My example looks like this:
    RFH Ø  
    ¸MQSTR
    ¸ " is junk that I really dont need in the file.
    How can you setup the JMS adaptor not to put in these information?
    Thanks & Regards,
    Madhusudhan

    not related

  • How to remove extra html markups from adf generated code in webcenter porta

    hi!
    I am trying to develop navigation in oracle webcenter portal.
    My code is generating extra div's for li and a tags. how to remove the extra div's.
    code in my template for generating navigation is:
    <div id="JS-MainNav " class="menu9 clearfix">
    <ul class="jd-menu">
    <!-- Root UL-->
    <c:forEach var="node" varStatus="vs"
    items="#{navigationContext.currentModel.listModel['startNode=/, includeStartNode=false']}">
    <li class="single">
    <!-- first li-->
    <af:goLink id="gLink" styleClass="menu9two accessible"
    destination="#{node.goLinkPrettyUrl}">
    <af:outputText value="#{node.title}"/>
    </af:goLink>
    </li>
    <c:if test="${node.selected}">
    <c:set value="${node.children}" var="childNodes"
    scope="session" />
    <ul>
    <!-- 2nd level ul inside li-->
    <c:if test="${childNodes ne null}">
    <c:set var="childNodes"
    value="${navigationContext.currentModel.currentSelection.parent.children}"/>
    <c:forEach items="#{childNodes}" var="node">
    <li class="fixMenuEN ${node.selected ? 'active' : ''}">
    <!-- 2nd level li-->
    <af:goLink inlineStyle="#{node.selected ? 'font-weight:bold;' : ''}"
    id="sub" text="#{node.title}"
    destination="#{node.goLinkPrettyUrl}"/>
    </li>
    </c:forEach>
    </c:if>
    </ul>
    <!--</c:set>-->
    </c:if>
    </c:forEach>
    </ul>
    </div>
    <!-- xMain Site Tabs -->

    What's the HTML result in your browser form this code?

  • How to remove extra spaces in a xml formatted string

    Hi,
    I am trying to remove extra spaces between the xml tags. For
    example, if a string is something like
    ' <header 1> <header 2> test </header 2> </header1>'
    I want to get rid of the spaces only between the closing tag of header 1 and opening tag of header 2 and closing tag of header 2 and opening tag of header 1, in short ,I want to remove the extra spaces between the tags if there are no other characters between them. I do not want the remove the spaces between closing tag header 2 and opening tag of header ,as there is occurence of other characters.
    I am aware that this can be done by looping through the string and using instr to identify the characters '<' and '>', but I would like to use it as a last resort only.
    Can anyone suggest me a better way of doing it in a single go by manipulating the data?
    Any help is really appreciated.
    Regards,
    Anil.

    You can use the replace function. If you only expect one extra space, then:
    scott@ORA92> select replace ('<header 1> <header 2> test </header 2> </header1>',
    2      '><', '><')
    3 from dual
    4 /
    REPLACE('<HEADER1><HEADER2>TEST</HEADER2></HEADER
    <header 1> <header 2> test </header 2> </header1>
    If you expect more extra spaces, then you will need to wrap another replace function around it for each space, for example the following will eliminate up to three spaces:
    scott@ORA92> select replace (replace (replace ('<header 1> <header 2> test </header 2> </header1>',
    2      '>     <', '><'), '>     <', '><'), '> <', '><')
    3 from dual
    4 /
    REPLACE(REPLACE(REPLACE('<HEADER1><HEADER2>TEST
    <header 1><header 2> test </header 2></header1>

  • How to remove related data by cmp

    I want to remove the data from database use cmp ejb.
    But the exception occured:
    ORA-02292: integrity constraint (YFZHU.SYS_C005711) violated - child record found
    How can I remove all the data by cmp EJB?
    Thanks in advance!

    The way it looks, you will have to remove the child first. Whether this can be done by cmp I don t know. If the child is another bean, just call the it's remove method first. Otherwise you might have to use a bean managed persistence
    With regards
    rh

  • How to remove messages data

    My iPhone 4s is running low on starage space.
    When I go to usage in the settings it says my messages is using 5gb of data storage.
    My emails are empty as are my text messages.
    How can I remove the data that the messages service is stroring?
    Thanks.

    Barbara222 wrote:
    "What do you need a plug-in to do?"
    To strip exif data and tags.
    Sorry, I thought you were asking a follow-on question.  It didn't make any sense that you would ask about a plug-in if you were already told how to do it in Photoshop.
    Frankly, it doesn't make all that much sense to use Photoshop at all for the task.
    Have a look at the freeware viewer called IrfanView.  I believe it can be set to batch process a group of images, and save them back out without metadata.
    -Noel

  • How To Remove Exif Data

    Hi,
    Can you tell me how to remove all exif data, tags, etc from a photo?  And, how to batch remove?  Do you have to add a plug in?
    Thanks,
    Barb

    Barbara222 wrote:
    "What do you need a plug-in to do?"
    To strip exif data and tags.
    Sorry, I thought you were asking a follow-on question.  It didn't make any sense that you would ask about a plug-in if you were already told how to do it in Photoshop.
    Frankly, it doesn't make all that much sense to use Photoshop at all for the task.
    Have a look at the freeware viewer called IrfanView.  I believe it can be set to batch process a group of images, and save them back out without metadata.
    -Noel

  • How to remove the date format validation done by the UI

    Hi All,
    I am having a date field which is an input field for Dateof Birth. User can either select from the calendar or enter his own date. If the user enters invalid date format'(032342525') something like this, when we move to the next tab the column turns to Red and it displays a message saying that date is not a valid date. I wanted to validate that on Save instead of tab click.
    Can anyone of you tell me how can we remove this date format validation in Java Webdynpro.
    Thankyou for your time and consideration!
    Madhavi

    Thankyou for your reply. I cannot the change the date type to string bcas the users need date picker to select the date. The problem I am having is once the format is wrong and the UI validates, though the other fields are entered by the user the application returns error saying that the required field are not entered.
    And also I am having multiple containers in my view set and for all other error messages I am using a popup to display the messages and this only error is shown at the bottom of the page which the users does'nt like.
    Is there any way I can identify that format error occured before it throws on the UI screen??
    Regards,
    Madhavi

  • Does anyone know how to remove the date stamp from photos?

    I don't remember how I added the date ON the photos to begin with, and now I don't know how to remove them!

    Try the Retouch tool in iPhoto. Otherwise you would need to use a 3rd party image editor, like Photoshop Elements that has a clone or healing tool to remove the date from the image.
    This is what PSE can do but it might be a bit overkill for just doing dates.
    OT

  • How to remove all data.

    We're donating an iPad and want to remove all data.  What is the simplest, effective way to do this?  Remote wipe using FindMyiPhone?  Reset to factory conditions?  Something else? 
    Original iPad, no 3G, iOS 4.3.3.

    I think the best way to do this is to download the latest iPad firmware from here:
    http://www.felixbruns.de/iPod/firmware/
    Plug the ipad into your computer and go into iTunes.
    When in iTunes goto the iPad screen.
    From the iPad screen hold down the "option" key (shift key in windows) and click "Restore". iTunes will then ask you where the restore file is. Here you will choose the one you downloaded from http://www.felixbruns.de/iPod/firmware/
    Once restoration is complete do not restore from a backup and unplug it from the mac so that it is no longer registered to a computer.
    After this is done the iPad will just display the "Plug into iTunes" picture and is ready for the iPad to be sold or whatever.
    This may not be the easiest way but is the the best way to ensure all of the data is removed from the iPad.

  • How to remove Exif data using terminal

    I want to remove Exif data from images using Terminal
    I've googled and cant find anything
    There's a Linux command, but nothing fro Terminal - or at least I cant find
    Thanks
    Omar

    @Frank Caggiano, thanks. i only want to remove and not do anything else. exiftool allows u to write as well
    my ideal solution: not to install anything
    that's something that comes from windows: fearing that installing things will clog up ur system. lol
    i need imagemagik for other image editing anyway
    thanks for the replies

  • How to remove the date extensions from a filename in SSIS Flat File Connection Manager dynamically at run time

    Hello,
    I have to load data from a csv file to SQL Database. The file is placed into a directory by another program but the file name being same, has different extensions based on time of the day that it is placed in the directory. Since I know the file name
    ahead of time, so, I want to strip off the date/time extension from the file name so that I can load the file using Flat File Connection Manager. I am trying to use 'variable' and 'expression editor' so that I can specify the file name dynamically. But I
    don't know how to write it correctly. I have a variable 'FileLocation' that holds the folder location where the file will be placed. The file for example:  MyFileName201410231230  (MyFileName always the same, but the date/time will be different)
    Thanks,
    jkrish

    I don't want to use ForEach Loop because the files are placed by a FTP process 3 times a day at a specific time, for ex. at 10 AM, 12 PM and 3 PM. These times are pretty much fixed. The file name is same but the extension will have this day time stamp. I
    have to load each file only once for a particular reason, meaning I don't want to load the ones I already loaded. I am planning on setting up the SSIS process to load at 10:05, 12:05 and 3:05 daily. The files will be piling up in the folder. As it comes,
    I load them. At some point in time, I can remove the old ones so that they won't take up space in the server.  In fact, I don't have to keep the old ones at all since they are saved in a different folder anyways. I can ask the FTP process to
    remove the previous one when the new one arrives. So, at any point in time, there will be one file, but that file will have different extensions every time.
    I am thinking of removing the extensions before I load every time. If the file name is 'MyFileNamexxxxxxx.csv', then I want to change it to 'MyFileName.csv' and load it.
    Thanks,
    jkrish
    You WILL need to use it eventually because you need to iterate over each file.
    Renaming is unnecessary as one way or another you will need to put a processed file away.
    And having the file with the original extension intact will also help you troubleshoot.
    Arthur
    MyBlog
    Twitter

  • Want to move an Apple Extreme. How to remove the data?

    I am updating my Airport Extreme from an older unit to a newer one.
    Want to give the older one to a friend. How do I remove all current data, or reset the older unit first?
    Thanks

    Connect an Ethernet cable from one of the LAN <--> Ethernet ports on the modem/router to the WAN (circle of dots) port on the AirPort Extreme.
    Click the WiFi icon at the top of the iMac's screen and look for the setting of New AirPort Base Station
    Click on AirPort Extreme just below that heading to get the setup wizard running
    The setup wizard will take a minute to analyze the network and then present a screen that looks similar to this, except that you will see an AirPort Extreme icon
    Name the wireless network, Name the AirPort Extreme and enter a password that will be used. Verify the password and click Next.  The utility will setup everything for you.

Maybe you are looking for

  • Is there a way to find Jdev version from command line.

    Hi All, Good Day. We have an application that launches jdeveloper xslt mapper. We set up classpaths and launch it. However we need to support all versions of jdev - 10.1.2, 10.1.3, 10.1.4. Is there a way to determine the jdev version I am using at ru

  • Unable to view PDF forms

    I use adobe live cycle to create forms for use in our company, these forms must be editable by our mobile employees by way of free text field and drop down boxes. The form work fine on  a PC running Adobe Reader X but I am unable to edit them when us

  • Broadband problems since April 2012

    Hi Is there ANY way of getting someone to sort out the line problems we have had since April this year? We have called pretty much every week since then, got the Indian call centre evdery time and complained about the 'noise' on the line and the freq

  • Prerequisites for split valuation?

    Dear Gurus, what are the Prerequisites for split valuation? thanks in advance..

  • Using subprocess in python3 to get output of a command

    Hi Friends. I am writing a python3 script for audacious to check the internet for album cover of the current playing song and then display it in conky. I am trying to call a command from python and get it's output: audtool current-song-tuple-data alb