Where is provider's name stored?

If EFspn is absent, where can I find provider's name?
My actions:
SLECT DFgsm --> SW: 9F 22
SELECT EFspn --> SW: 94 04

The file is obviously missing, so you can't find the provider's name from sim card.
The operator name that your phone is displaying in this case, is based on its MNC, MCC codes.
If you have this file on sim card AND if SPN service is activated from SST table, then you are able to override the provider's name mentioned above or show additional information on screen with the provider's name mentioned above.
Unfortunately SST table is something that normal user can't change, at least I hope so :)

Similar Messages

  • Where are Hierarchy node names stored in BW?

    When I enter hierarchy view of an infoobjects master data, I can see a field called node name. If I want to use that as filter criteria, where do I go to find that? Where is it stored?

    Thanks! How do you see the cost element assignments to these nodes? Where is the relationship? How does BW know which cost elements fall under a specific node?

  • Where is the page name stored

    We have a desktop definition in production, but wants to change the name on a couple of Pages while being in production. I've tried to snoop around in the Portal database tables to find the name of the pages, but could only find the Page Label (stored in PF_PAGE_DEFINITION), but not the actual name.
    The portal admin wouldn't allow me to change the page name when the page already is created from a .portal file. Since we're in production, we really don't want to recreate the desktop definition.
    Anyone got a suggestion?
    Trond Andersen, Invenia AS, +4798290811

    All titles are internationalized
    L10N_RESOURCE
    you can find the correct record by tracing through the INTERSECTION_ID

  • Where is an ipad name stored in apple configurator

    Hi
    I am trying to configure multiple IPAD mini's using Apple Configurator version 1.5. Not fully understanding how this works I ended up with multiple devices with the same name somehow, as I was using a Macbook to update them. Now when I connect a device that I have manually updated, it gets renamed to a different number, and always the same one. Can anyone tell me where it is getting this name from as I cannot seem to find a location for it. Thanks

    thank you the locat saudiarabia http://www.apple.com/ipad

  • Where does portal details gets stored in the backend

    Hi Gurus,
    Where does portal contents gets stored in the portal related backend ?
    Example:  We have Content Administration under which we create iviews, pages, worksets and roles. Where does this gets stored ? do they get stored in some table as shown below ?
    Table:
    Parameters:
    iview   'Report a Problem' iView Path      Add Padding Inside Tray   Allow Client-Side Caching   Application Name
    Values:
    Test       com.sap.portal.epsolman.EPSolman     Yes                                     Yes                                Testapp
    How can we fetch the details ?
    Regards,
    Rashmi

    Hi Rashmi
    To get the data from the portal database you need to use a datasource lookup.
    Context ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("jdbc/SAP/BC_JMS");
    Connection con = ds.getConnection();
    The following datasources are provided by default for reading data from portal database
    SAP/BC_JMS,SAP/BC_UME, SAP/BC_WDRR.
    You can read more about JDBC Connector Service in the link [http://help.sap.com/saphelp_nw04/helpdata/en/31/4cc81b275a419c8c72dca94366318a/frameset.htm|http://help.sap.com/saphelp_nw04/helpdata/en/31/4cc81b275a419c8c72dca94366318a/frameset.htm]
    You can also refer to this wiki for more details
    [http://wiki.sdn.sap.com/wiki/display/Snippets/DirectAccesstoDatabaseTables|http://wiki.sdn.sap.com/wiki/display/Snippets/DirectAccesstoDatabaseTables]
    Hope this helps.
    Best Regards,
    Ritesh Chopra
    P.S: Please grant points if the answer was helpful

  • Table where the Delivery date is stored in Confirmation tab on Me23n

    Hello ABAB Gurus,
                               Can anyone give me the table name where the Delivery date is stored in Confirmation tab in Item in ME23n.
                                  If anyone is aware of it then please let me know .
    Sagar

    Hi,
    Check the table EKES and field name is EINDT..
    Thanks,
    Naren

  • Using field names stored in the database in a query

    Hi,
    I'm working on a database that has field names stored in tables. In order to construct a query using the field names stored in the table, normally I'd use dynamic SQL. 
    For example in table1 I have
    Field_Name Value
    Field1
    'Name'
    Field 2
           'Address'
    I want to build a select statement  "SELECT Name, Address, FROM tblCustTable" - if possible not using dynamic SQL.
    Is there a neat way to do this?
    Thanks very much.
    Sad old developer

    No, it is not possible to dynamically include ANY object names (Columns, Tables, Functions, Procedures, etc) in SQL without using Dynamic SQL.
    The closest you can get, if you are choosing from a known set of names, is to use CASE statements:
    SELECT CASE
    WHEN t1.Field1='Name' THEN ct.[Name]
    WHEN t1.Field1='Address' THEN ct.[Address]
    END AS Field1
    FROM tblCustTable ct
    CROSSJOIN table1 t1
    WHERE ...
    However there are several disadvantages to this approach, and the SQL will quickly get very convoluted and difficult to maintain.   Dynamic SQL is much cleaner.
    -Tab Alleman

  • How to call a function name stored in a a variable

    I am trying to call a function in a stored procedure based on the contents of a variable returned from a select statement. I have tried using:
    funcCall := 'SELECT ' || BRName || ' INTO bOut FROM DUAL';
    EXECUTE immediate funcCall;
    where BRName is the name of the function in the package I want to call and bOut is the boolean reutn from the function. Am I way off base in doing this like this?
    I am getting an invalid identifier error. Any help would be appreciated.

      1  declare
      2  sql_string varchar2(2000);
      3  begin
      4  sql_string := 'select ' || func_name || ' into a from dual ';
      5  execute immediate sql_string;
      6* end;
    SQL> /
    sql_string := 'select ' || func_name || ' into a from dual ';
    ERROR at line 4:
    ORA-06550: line 4, column 28:
    PLS-00201: identifier 'FUNC_NAME' must be declared
    ORA-06550: line 4, column 1:
    PL/SQL: Statement ignored
      1  declare
      2  sql_string varchar2(2000);
      3  func_name varchar2(30);
      4  begin
      5  func_name := 'some_func';
      6  sql_string := 'select ' || func_name || ' into a from dual ';
      7  execute immediate sql_string;
      8* end;
    SQL> /
    declare
    ERROR at line 1:
    ORA-00904: "SOME_FUNC": invalid identifier
    ORA-06512: at line 7
    SQL> desc some_func;
    ERROR:
    ORA-04043: object some_func does not exist
      1  create or replace function test_func
      2       return number
      3       is
      4       begin
      5          return 0;
      6*      end;
    SQL> /
    Function created.
      1  declare
      2  sql_string varchar2(2000);
      3  func_name varchar2(30);
      4  begin
      5  func_name := 'test_func';
      6  sql_string := 'select ' || func_name || ' into a from dual ';
      7  execute immediate sql_string;
      8* end;
    SQL> /
    declare
    ERROR at line 1:
    ORA-00905: missing keyword
    ORA-06512: at line 7
    SQL> Set serveroutput on
      1   declare
      2   sql_string varchar2(2000);
      3   func_name varchar2(30);
      4   return_value number;
      5   begin
      6   func_name := 'test_func';
      7   sql_string := 'select ' || func_name || ' from dual ';
      8   execute immediate sql_string into return_value;
      9   dbms_output.put_line(return_value);
    10* end;
    SQL> /
    0
    PL/SQL procedure successfully completed.Hope that helps.
    Regards
    Raj

  • Using an array name stored in a String in a Statement

    In my sequence, I build an array in one section and store it in a variable called Locals.Test_Array.
    I build the name of the permanent place I would like to store this array and store it in a string called Locals.SG_Test_Array_Name.
    I would like to move the values from Locals.Test_Array to the Station Globals Array name stored in Locals.SG_Test_Array_Name.
    For example:
    the string stored in Locals.SG_Test_Array_Name is "StationGlobals.Coolant_Temperature_Test_Array" (already created in Station Globals)
    What I am trying to do is this:
    Statement                        StationGlobals.Coolant_Temperature_Test_Array=Loca​ls.Test_Array  (this works)
    The Station Global Array name needs to change as the sequence executes and the data in Locals.Test_Array changes.
    What I need is something like this.
    Statement                         Locals.SG_Test_A​rray_Name=Locals.Test_Array  (where SG_Test_Array_Name is a string that holds the name of the array)
    Thanks, Big_Will

    Evaluate(Locals.SG_Test_Array_Name + " = Locals.Test_Array " )

  • How to find where the screen field is stored in table

    Hi all,
    How to find where the screen field  is stored in the table .
    for some transactions if i press F1 on the field and after checking for the technical help.
    I can only find the struture for the screen field, but whereas i need table name for it.
    Can anybody help me how to find the table name where the field is stored.
    Regards,
    Madhavi

    Hi,
    Just hitting a F1 on screen field and getting structure name will not help in getting table name.
    First you need to know the flow of data in the reqd module, which will help you know all the tables in that module with there most of the fields with the data flow, now you need to work on your own to figure out that in which actual tables that value is stored.
    Hope this helps you.
    Regards,
    Tarun

  • Where does LDAP credentials get stored?

    Post Author: v_jange
    CA Forum: Authentication
    Hi Guys, I have configured CRS to use an existing database(SQL). After installation of CRS, i manually configured LDAP for authentication. I looked at these LDAP credentials in the database tables. In all there are only 5 tables that get created & i can see only 2 entries of data (in CMS.Aliases table) related to LDAP.I didn't find other info like LDAP server name, password, etc... Please can anyone let me know where these LDAP credentials get stored?Its really urgent... Thanks & Regards,Vishal

    Post Author: Sunnystone
    CA Forum: Authentication
    I got the same problem.  I use enterprise authentication and oracle database. I have 8 tables created and only these tables have entries, CMS_INFOOBJECTS4 and  CMS_ALIASES4. One field in CMS_INFOOBJECTS4 called PROPERTIES has BLOB type. I am wondering if this is the field to save the password. Now I need to retrieve user password and use the same password for other purpose. How can I get the password and convert it from binary to encrypted text? Any idea? Thanks.

  • Where are Answers and Dashboards stored?

    If we deliver answers and dashboards to customers and they customize it further, how can they upgrade to next release's dashboard and answers?
    I want to know where are dashboards and answers stored so that we can provide an upgrade script.
    Edited by: user732932 on Nov 17, 2009 10:58 AM

    Hi User,
    If a user creates queries and dashboards they are stored in the Catalog, this is in the OracleBIData>Web>Catalog folder. If you drill down into thsi folder you eventually come to the individual xml files.
    The repository, (.rpd) is in the OraceBI>Server>Repository folder, the two can be maintained independantly. If your customer wants new data sources or tables adding to their RPD, you can merge these changes using the Admin tool, any changes here will not affect existing content in the dashboards, as long as the existing presentation layer is not altered. Assuming they do not maintain the rpd themselves, they could just send you an existing one for you to edit then replace theirs?
    What it sounds liek you are saying though, is that they will have added queries and dashboards to the web catalog, and that you will then add more queries and dashboard pages to a development catalog, in this case it's very easy to copy and paste new files from one catalog to the other using the catalog manager. Ther is no need to touch the actual xml. NEVER copy a new catalog over an existing catalog, if you are replacing the whole catalog, back it up then delete it from the Catalog folder and paste in the new one.
    If you are upgrading the version of OBIEE, none of these items should be affected, make sure you back-up first.
    I hope this clears it up.
    Regards
    Ed

  • Tables where the XI Data is stored

    Dear all,
    Can you let me know all the tables in XI in which the data is stored.
    Like where the asyncronous messages are stored(which table and what is the abap program name which gets executed to store the message id's etc in the table).
    Pl list out all the tables,programs related to XI.
    Also pls let me know where IDOC,Proxy,RFC related tables programs.
    my mailid is srinivas5780@gmailcom

    Hi,
    Please go through the below weblog:
    /people/gourav.khare2/blog/2007/12/12/interesting-abap-tables-in-xi-150-part-i
    Look at the below thread for SXMB_MONI tables and Function module:
    In Which Database Table the Messages are Stored in XI
    Message Monitoring  --> corresponding tables?
    For IDOC:
    tables are EDIDC control record table and EDIDD-data record table.
    Thnx
    Chirag

  • How to know database name and schema name by providing package name?

    Hi,
    Could someonw will help me to get database name and schema name by providing package name ?
    I have used the query : select * from all_objects where object_name='Package_name'; but it simply returns schema name where as i need DB name and username.
    --Prajakta

    but it simply returns schema name where as i need DB name and username.
    i want to retrive the DB name for package name
    Based on your questions, I wonder if you are used to working in SQL Server? (The server, database, and schema are part of the 4-part  name of an object, independent of any user.)
    In SQL Server, schema and username are two separate physical concepts.  "Schema" is purely logical in Oracle: a user which owns objects is often called a "schema".
    In Oracle, "database" is roughly equivalent to the SQL Server concept  "server" (what you log in to).  It is not part of the naming path to a specific object  (unless there is a database link involved, but there is no indication that's what you have here).  In Oracle you connect to an Instance (or Service) and people often call this the "database", but there is a fine semantic distinction there (separate topic). 
    Once connected in Oracle, you fully-qualify an object by only a 2-part owner and object name (possibly 3-part if a database link is involved user.object@link).
    12c added another wrinkle to all of this, but I'll assume this question was more basic than that, because you likely would have mentioned if this was a 12c question.

  • Where are emails in mailboxes stored?

    I am running Mavericks 10.9.3 on my iMac and recently had to have the Genius Bar completely reset my system due to issues with performance since the upgrade. I was primarily using Backblaze to back up my entire operating system. I am now trying to restore "Mailboxes on My Mac"in Mail. I was able to get the actual names of mailboxes back via going to my library in the back up and moving all folders to my current library, however it only restored the mailboxes themselves. There are no emails that were but should have been included.
    Any ideas of where this missing data is stored and how to get it back to it's appropriate place?
    Thank you.

    I tried what you suggested. Clicking open simply takes it to  a .noindex folder, which using Open for that goes to Data, continuing this process takes me to several numbered folders, with numbered subfolders, then a folder called Messages which then takes me to a saved email or two. It never imports to iMail, but at least I eventually can access the messages and move them manually back to where they need to go I guess. Seems quite tedious though. :/

Maybe you are looking for

  • Signatures disappearing!

    I have a few documents I need to merge into a single PDF file through acrobat 9.0. One of them is a pdf form with electronic signatures. When I combine into a single PDF file (using the Combine > Merge Files Into a Single PDF File), the signature dis

  • Cicso 877 work as a Network-attached storage (NAS)

    Hi all  i own cisco 877 and was wondering if i can attach an external hard disk to the router and acess that external hard disk remotely from home is that possible ? thank you 

  • Flash donwload issue

    cannot donwload flash as it freezes as soon as i click download on windows xp  modzilla. anyone have a hammer ?

  • Frieght should appear in both header and item levels

    Hi SAP gurus, while doing the Sales Order transaction(va01),  frieght should appear in both header and item levels,  how can we configure in SAP. Thanks in advance. Sathya........

  • FCP: export 3min trailer for email purposes?

    How should I do this? I have tried a Quick time mivie, .avi and using Compressor. It comes out to big of a file, 30 to 40mb and I can't send it. Thanks for your help, Sean