The ussd request is being made on how to disable it. USSD - what is it? MTS USSD requests


Each mobile operator tries to provide its customers with profitable services that are convenient to use. One of the practical options for managing your number is MTS ussd codes. With their help, you can check your account status, the availability of certain services, the volume of accrued minutes and SMS, remaining traffic and much more. There are a lot of such codes.

What are the ussd codes for Ukraine?

List of MTS ussd codes for Ukraine. Knowing simple combinations, you can perform various operations with your mobile number. The main ones include:

Each query has several additional subqueries that differ from each other by the last digits in the combination. Each of them corresponds to one or another action.

Requests for Russia and Belarus

Basic ussd codes MTS for Belarus is slightly different. The list includes:

  1. Account status is *100#.
  2. Requests to find out the phone number and tariff - *111*10#, *111*12#. By changing the last digits in the combination, you can completely manage your account, connect services, check their availability, number of minutes, GB and much more.
  3. Unlimited Internet connection - *510#. The list of combinations contains many queries that allow you to use the Internet under different conditions.
  4. International communications - *111*20#. The combination makes it possible to connect international access by changing the numbers to 21 at the end - SMS roaming, 22 - roaming.
  5. Connecting SMS messages from the site - *111*233#, changing the last digits to 251, you can connect 50 SMS messages.
  6. Voicemail management - *111*231#. At the end, codes 231 to 240 are used.

In order to use additional services, use the codes *106*operation code #, also the codes *160#, *170# and others.

As for MTS ussd codes for Russia, they are almost the same. You can check your account using the combination *100#, remaining minutes and SMS - *100*1#, set an urgent unlimited limit - *160#, view the list active services- *111*11#, connect to the Internet - *111*40#. The list of requests is very large. You can find out more about it in your personal account or by calling the MTS customer service center.

USSD is an abbreviation for Unstructured Supplementary Service Data. This is one of the services in GSM networks that allows subscribers to quickly interact with service applications operator. The technology involved in transmitting data via USSD requests has certain technical and functional similarities with SMS technology, but has a number of differences.

Features of USSD technology

USSD is a session-oriented technology in which data transfer occurs within an established session. In this part of the construction, USSD is very similar to the service of interactive systems based on IVR - Interactive Voice Response. The main difference between USSD technology and IVR is the absence of a voice connection between the subscriber and the service.

The original purpose of USSD communication was to provide the subscriber with the ability to independently manage the service profile in HLR - a database with information about subscribers, as well as interact with services built into HLR. Over time, a connection function was added to the technology external applications, after which USSD communication became ideal for working with information services that have an interactive structure - information service, banking services, customer service services and others.

How the USSD service works

An explanation of how the USSD service works can be found at specific example. For example, a subscriber needs to find out the status of mutual settlements with his operators. The USSD system assigned the “Balance Check” service short number 100. In order to use this service, the client must dial *100# on his mobile phone and press the call key.

The characters * and # at the beginning and end of the number are used to ensure that the operator mobile communications I understood that this was not an ordinary call, but a request for USSD service. When processed, the request is transferred to the appropriate USSD application. Next, the USSD application interacts with the billing system database and receives necessary information and sends it in the form of a USSD package to the subscriber’s mobile phone. The contents of this package are displayed as text on the device screen.

The USSD request system allows you to obtain the minimum possible delay between the subscriber's request and the operator's response to it, which cannot be achieved when using SMS-based applications. However, USSD technology is not a competitor to SMS. These two services are complementary. They allow mobile operators to combine both methods, giving subscribers the opportunity to choose the most convenient one.

USSD request and response (flash).

This is a specific function, unlike, for example, sending SMS, but it can also be useful. So, we have a computer and a cell phone connected to it.

What benefits can we get from this function? Do you often check your cell phone balance? This is what is usually used for USSD request. For example, balance request for a number from MTS it looks like this *100# , i.e. This is the combination you type on the keys of your cell phone and press the call button. In response, the current balance of your account is displayed on the screen.

This function was added to the program at the request of one of the users. I will be very grateful if you send me why you use this function. For now, I only see it for controlling the account balance, although different operators may have quite interesting USSD commands. In essence, the algorithm is simple - your program transmits a USSD request via SimpleSMS, receives a response in text file and further analyzes the contents of this file.

In the process of receiving SMS, the program generates log file(not to be confused with a technical log file!). The default name of this file is ussd_SimpleSMS.log (the prefix “ussd_” is added to the name specified in the INI file - see).

COMMAND LINE OPTIONS.

1 . INI=SETTINGS_FILE_NAME- if you use a different name for the program settings file, different from the default file name. For example, INI=test1.ini ;

2 a. USSD1=COMMAND- indicates to the program that it is required to execute a USSD request with the COMMAND string, for example USSD1=*100#1- this is getting a balance

2 b. USSD2=FULL USSD STRING- indicates to the program that it is required to execute a USSD request with the string FULL USSD STRING. Different from option 2a in that it allows you to work directly with the AT command AT+CUSD. And to request, for example, the same balance from MTS, you need to write USSD2=0,$ *100#$ ,15, which corresponds to the AT command AT+CUSD=0,“ *100#“ ,15. Attention, special feature - given that the command is transmitted through the command line symbol (quote marks) should be replaced with a dollar sign $ .

3 . UssdPduR=FULL USSD STRING- indicates to the program that it is required to execute a USSD request with the string FULL USSD STRING. Similar to USSD2 parameter . Appeared due to the fact that, for example, Huawei modem e1550 this command must be transmitted in encoded form. The parameter can be written either UssdPduR, or UssdPduL- depending on the language ( R Russian or L atinitsa) operator response. Or use universal UssdPduA- then the program itself will determine the encoding of the response. For example, to view the balance of MTS you need to run this:
Simplesms UssdPduR=1,*100#,15
And for Megafon like this: Simplesms UssdPduA=1, $ *100#$ ,15

4 . RMSG=FILE_NAME_TO_SAVE_RESPONSE- if you want to set your own file name to save the answer, for example, RMSG=ussd1.txt. Otherwise, the program itself will assign a file name in the format: COM port_ussd.txt

START!

All that remains is to write a command line to launch the program. In my example it looked like this (the line to run the program is underlined in red):

Given this command line, the program created the file “ussd1.txt”. In the picture below you can see the contents of this file:

File format uniquely simple - the response received from the operator is recorded cellular communications.

Please pay attention to some subtleties. Various models Cell phones interpret and perceive (or do not perceive) AT commands slightly differently. Therefore, not everything can work smoothly and chocolatey. If your problem really deserves to be solved, then anything is possible. Send comments, a description of a specific area of ​​application - if this is really necessary, we will agree.

This reception function has been tested on the phone Sony Ericsson Z310i, sent to me by one of the users of the program specifically for these purposes.

In contact with

Every cellular client at least once encounters a problem imposed by an operator and tariff plan. additional services. They are not always free and reasonable. Let's look at ways to disable paid services on Megafon that have long been undesirable for the user.

How to check paid services on Megafon

Megafon subscriptions can be managed in several ways:

  • Independently (using a sequence of commands on a mobile phone or other device via the Internet).
  • Through an operator (directly in a mobile phone store or by calling a hotline).

In the first case, you need to know what options in this moment connected to a tariff plan. There are several ways to do this:

  1. Using your phone's keypad, dial *505#. In response, you will receive a message with a list of subscriptions linked to the phone number from which the request was sent.
  2. Use your personal account in the Service Guide system. This requires an Internet connection and registration on the Megafon website. The list of connected options is located in the tab of the same name.
  3. Using a short call 0505, following the instructions of the answering machine (navigator).

How to disable services on Megafon

The most appropriate way is to contact the company's office for help. There may be several branches in large cities; information about them can be obtained on the official Megafon website. To register a refusal, you must have a passport and a service agreement. The phone number must belong to the person who came with the request to disable the options. An employee, having found a client card in the database, will look through all connected options, explain which of them are paid, and, if necessary, disable unnecessary ones.

Through the service technical support. Call 0500 or 0500559 (for individuals), 8-800-550-0555 (for legal entities) free. The operator will answer how to quickly disable paid services on Megafon or will disable it himself after a series of clarifying questions. Basic information needed for this:

  1. FULL NAME. subscriber
  2. Phone no.
  3. Passport data.
  4. A codeword.

How to remove subscriptions on Megafon using an SMS message to a short number? All paid options can be deactivated by sending the word “STOP” (“NO”) to 5051. After processing the message, instructions will be sent to further actions. If the code is known exactly, it is indicated in the SMS along with the word in this order: code, then word. Be sure to wait for the outage notification.

How to disable subscriptions on Megafon via Personal Area"Service Guide" on the official website:

  1. Open the official Megafon website.
  2. Register by sending a request with the command *105#.
  3. You will receive an SMS response with a password to your personal account.
  4. Enter the phone number in the login line.
  5. Enter the password and log in.
  6. Home page contains the “Services and Options” tab, select it.
  7. You must view the list of all services with an indication of the tariff in a separate tab “Connected services”.
  8. Uncheck the box opposite unnecessary option.
  9. Confirm your action with the “Disable” button.

How to disable paid services on Megafon using a USSD request? If, when requesting subscriptions, the response came in a message with a list of all connected options, then an individual code and a combination of numbers will be indicated that disables each individual option. Disabling procedure:

  1. Determine the service to be disabled.
  2. Dial from the phone keypad the desired combination numbers
  3. Wait for confirmation of disconnection.

List of USSD commands for disabling paid services and subscriptions

On the Megafon website you can always find USSD commands that can cancel paid options. List of popular ones:

  1. *105*1300#call – answering machine;
  2. *105*2500#call – always in touch;
  3. *105*1600#call – conference;
  4. *105*2400#call – who called;
  5. *111*211#call – weather;
  6. *134*0#call – live balance;
  7. *105*2100#call – SMS check;
  8. *105*2310#call – video mail;
  9. *105*501*0#call – Anti-Caller ID works even if the subscriber has an automatic caller ID (Caller ID) connected.

Concerned about its clients, it offers a wide range of services, useful options, favorable tariffs, and, not unimportantly, managing your own number using your personal account tools. To achieve this goal, numbers are used service telephones, and USSD commands Megafon. Armed with such technologies, management personal number can be done directly from your phone, even without Internet access. Where can I get a list of useful MegaFon numbers, and also get brief information about their purpose? Our short article can tell you about all this.

So, let's look at the necessary and useful numbers from MegaFon: All kinds of reference and informational numbers; Numbers for managing a current account and resolving financial issues; Numbers that control the tariff model and a number of related services. IN this review Emergency numbers will also be provided.

Helpful reference numbers

One of the most significant and authoritative numbers of Megafon is rightfully considered the help service - 0500 . Many problems are solved thanks to this number. MegaFon help desk will help you get an answer to important questions, as well as connect the necessary service, or disable one that is no longer relevant. This service will help you understand any setup using voice prompts, operating in automatic mode.

What is noteworthy is that this service provides access to its service around the clock. You can call MegaFon's helpline not only from a mobile phone, but also from a landline phone. For this purpose, the number 8-800-550-05-00 is registered on the network, which is a complete copy of the above-mentioned service. It contains in its database the same information as the short number and is an indispensable assistant in managing various functions.

Love to travel and visit different countries? In this case, the number +7-926-111-05-00 is just for you. A number dialed in this format will allow you to call the MegaFon helpline from any country globe. By the way, connection to the help desk from international roaming will be free.

Next number help desk– this is a number with a voice automatic assistant. By calling mobile number 0505, which is free, you can get detailed information on all your questions. The automatic intelligent informer works around the clock, without interruptions, failures and a string of queues.

List of emergency numbers

  • 101 – call fire departments;
  • 102 – police call number;
  • 103 – ambulance;
  • 104 – gas emergency service;
  • 112 – operational and emergency rescue service (Unified Service).

By dialing the emergency number using the voice menu, you can easily contact representatives of the fire, gas, medical and police departments.

Certain mobile phone models can also accept regular emergency dialing numbers – 01, 02, 03 and 04.

USSD balance management commands

The most necessary and important numbers MegaFon help desk we already know. Now let's get acquainted with the teams that are responsible for balance. The main USSD command is *100# , which determines the current account of its owner. This simple number can be learned easily or entered into your contact book.

If when using the command *100# If you have problems (the information is not visible or it is difficult to discern), then you can always find out your balance by calling 0501. The autoinformer will tell you this.

Next USSD request *550# informs about the detailed balance. Comes to your mobile text message, which displays the following data:

  • Available funds;
  • Granted limit;
  • Current balance.

Available funds are the sum of the current balance and the cash limit provided by the operator. In order to receive information about available minutes, SMS and Internet traffic, there is a command on the MegaFon network *558# . By sending such a request to the operator, in a few seconds you will receive a comprehensive answer to your question.

Mentioning all the useful operator numbers for managing a cash account, one cannot fail to mention the bonus program. To find out the remaining bonus points you need to send a request *105*5# . This request will also help you exchange your points for a variety of rewards.

Team *512# will allow you to see information about five latest write-offs from your cash account. In a few minutes, an SMS will be sent to your number with a transcript of the latest charges. The command is very useful for identifying leaks Money from your phone balance.

USSD commands Megafon with zero balance

Let's look at some Megafon USSD commands that are directly related to the balance, from the “Possibilities at zero” category:

  • *144*subscriber number# - USSD command for the “Call me back” service. Having sent such a request with the number of the called subscriber, he will receive a short notification asking him to call back;
  • *143*subscriber number# - USSD command, which implies topping up the account of the subscriber who sent such a request. And the request itself indicates the telephone number of the subscriber you are contacting with the request;
  • *550*1# - USSD command that makes it possible to activate useful service- Credit of trust. What does this mean? The Megafon company allows its clients to obtain a credit limit, with the help of these funds they can use all the services provided;
  • *106# - USSD command, which makes it possible to activate the Promised Payment service. This command allows you to borrow money from the operator if there is no replenishment available at the moment. By sending such a request to the operator, you receive a certain amount of money into your current account.

You can learn more about the services from the “Opportunities at Zero” section on the MegaFon website, on our website, or ask the operator about the question you are interested in.

Megafon USSD commands for managing services and tariffs

The most necessary Megafon USSD commands are those that make it possible to manage your tariff plan, balance and services. This includes the most simple command, which allows you to control the connected this number paid services. Having dialed the combination *105*503# , You'll get detailed information about the amount spent from your account.

WITH using USSD teams *105# You can manage services and tariffs on your number. And it is not necessary to do this only through the “Personal Account”. This request gives the subscriber a solid opportunity. Namely: disabling or connecting certain services, managing tariffs, working with bonus program, getting a variety reference information. Using this tool, you will solve a lot of questions that interest you.

Useful USSD commands Megafon

  • *105*37# - a request that allows you to find out the tariff plan you are using;
  • *205# - to avoid searching for your number for a long time, dial this combination;
  • *105*503# - a request that makes it possible to obtain a list paid services, assigned to your number.

All modern people They use mobile communication services from different operators, and each mobile operator has a list of combinations with which you can connect certain services - this is a USSD request. In short, such requests contain numbers and symbols, after entering and sending which some action will be taken. Each is responsible for a separate function, and this article will present all about such combinations.

What are commands for?

USSD request is a kind of option for mobile clients, which is installed along with SMS and is basic service any operator. In translation this abbreviation means " additional option, which has no structure."

For clear example It’s worth understanding how this combination works:

  1. A mobile customer, for example, wishes to check the balance of a mobile phone using a service code.
  2. On the phone keyboard, first press “*”, and then enter the desired number, the code of which is responsible for checking the balance.
  3. After the numbers, “#” is entered and a call is made to send data to the network.
  4. After a few seconds, balance information is sent to your phone in the form of SMS or something else. interactive menu on the gadget screen.

In addition, a USSD request can not only allow you to check your account status. With its help, you can enable or disable services, switch to another tariff, open the operator’s menu to obtain information on mobile communications, and also carry out a lot of other operations.

The benefits of combinations

The USSD request is very convenient to use, because by entering short commands you can quickly receive information, without the need to call the operator or send an SMS. In addition, using combinations, you can obtain the data of interest at any convenient time, 24 hours a day.

Using such codes you can control your mobile phone, number. Network clients can send requests to other people to send money or simply call back.

For a more detailed consideration of combinations, you should indicate data on to different operators Russia.

Popular MTS combinations

The very first and most popular command from MTS is *111#. This command is used to open a portal in which each user can manage the tariff and options. If it is difficult to remember other commands, then you only need to remember this one. With its help you can find out everything you need, and even mobile balance. Request replaces personal account on the website and can be used in any region and even country. MTS USSD requests are not charged, which is very convenient.

If there are characters on your phone in messages and other parts of documents that cannot be read, then you need to enter *111*6*1#. Below are the most popular codes from the MTS Russian operator:

  1. Account verification is carried out by dialing the combination *100#.
  2. See what the funds were withdrawn for over 5 years recent actions, you can use the command *145#.
  3. You can quickly find out your mobile number using the code *111*10#.
  4. To check active paid options*111*11# is used.
  5. For check current tariff*111*12# applies.
  6. You can find out about the remaining package offers by entering *217#.
  7. You can top up your balance using a bank card by requesting *115#.

This is only a small number of requests that the operator has. All details can be found on the website, and this article describes only the most common and necessary ones. Information on requests for tariff plans will be provided in the description of the tariff itself selected by the subscriber.

Velcom teams

Through a USSD request from Velcom, subscribers can manage mobile communications independently. Thus, to check your balance information, you need to dial *100# on your phone keypad. If the user needs to change the payment system, the code *145# is used. These are the basic codes for managing your money.

You can also manage tariffs. To activate one or another tariff plan his own team serves. Now we suggest you familiarize yourself with other methods of plan management. To check the active tariff you need to dial *141*2*1#, and to find out the mobile number, dial *147#. In some cases, an SMS will be sent in response to the request, and in some cases the data will be displayed directly on the screen.

For information about mobile internet and other options use the combination *135#. After entering, a menu will open in which you can select different services and familiarize yourself with them, as well as, if necessary, activate them. There is another menu that allows you to open help and commands for other queries; for this, users need to dial *141#. As you can see, Velcom USSD requests are very similar to MTS commands and work similarly.

MegaFon teams

The MegaFon operator also has a large list of combinations that subscribers should familiarize themselves with. See everything possible codes possible at official page, and only the most popular among users will be described below:

  1. To call a menu, which in functionality can replace a personal account, enter *105#.
  2. You can find out account information using the code *100#.
  3. You can view your number by requesting *205#.
  4. Remaining package offers are found out through the combination *558#.
  5. To detail information about the tariff used, enter *105*3#.
  6. Information about the bonus balance is provided using the code *115#.
  7. It is very convenient to use the “Call me back” service if you enter *144*client’s mobile phone number# on the keypad.
  8. To top up the balance of another MegaFon user, use the combination *143*number#.
  9. You can use the “Promised Payment” service by entering *106#.

These are the most common MegaFon USSD requests that are used most often.

Sooner or later, combinations will be useful to every mobile subscriber, so it’s better to study the most important ones in order to right moment they could be applied. All commands from MegaFon are completely free, and clients can use them in their work at any time convenient for themselves.

Conclusion

As you can see, there are a lot of requests, and they are all responsible for individual services. It is important, after entering one or another combination, not to forget to make a call to send the command, otherwise necessary information will not be provided.

USSD is an abbreviation for Unstructured Supplementary Service Data. This is one of the services in GSM networks that allows subscribers to quickly interact with operator service applications. The technology involved in transmitting data via USSD requests has certain technical and functional similarities with SMS technology, but has a number of differences.

Features of USSD technology

USSD is a session-oriented technology in which data transfer occurs within an established session. In this part of the construction, USSD is very similar to the service of interactive systems based on IVR - Interactive Voice Response. The main difference between USSD technology and IVR is the absence of a voice connection between the subscriber and the service.

The original purpose of USSD communication was to provide the subscriber with the ability to independently manage the service profile in HLR - a database with information about subscribers, as well as interact with services built into HLR. Over time, the technology was added to the function of connecting external applications, after which USSD communication became ideal for working with information services that have a dialog structure - information services, banking services, customer service services and others.

How the USSD service works

The operation of the USSD service can be explained using a specific example. For example, a subscriber needs to find out the status of mutual settlements with his operators. The USSD system has assigned the short number 100 to the “Balance Check” service. In order to use this service, the client must dial mobile combination*100# and press the call key.

The symbols * and # at the beginning and end of the number are used to ensure that the mobile operator understands that this is not a regular call, but a request for USSD service. When processed, the request is transferred to the appropriate USSD application. Next, the USSD application interacts with the billing system database, receives the necessary information and sends it in the form of a USSD package to the subscriber’s mobile phone. The contents of this package are displayed as text on the device screen.

The USSD request system allows you to obtain the minimum possible delay between the subscriber's request and the operator's response to it, which cannot be achieved when using SMS-based applications. However, USSD technology is not a competitor to SMS. These two services are complementary. They allow mobile operators to combine both methods, giving subscribers the opportunity to choose the most convenient one.







2024 gtavrl.ru.