How to track SIM id and celphone id

Dear folks,
I need to send the SIM id and celphone id along with the other parameters to my servlet. How can i gets these ids. Is there any build in function to track it.
I appreciate the replies in advance

Since m doing a banking project, I need to allow client only with that cellphone and sim card along with the password. If he wants to change his cellphone or sim he must inform. This helps in keeping the security tight. So i need to track his mobile id and sim id. HOpu u undrstd my requiremnts.

Similar Messages

  • How to track returnable drums and Isotainers?

    I need to track drums that are shipped out with our liquid product then returned on future deliveries.  We do not charge for the drums and retain ownership.  Also, we ship out large Isotainers (containers pulled by truck) and would like to track which Isotainer was used for which lot # of product.
    How do I accomplish this in SAP Business One.  Do I include the part number for the drum or Isotainer in the BOM or will this cause the system to consume the drum or Isotainer?  Any suggestions?
    Regards,
    Fred

    Hi Fred,
    Like Gordon said, you should maintain a warehouse to keep track of your drum and isotainer. However, as for your question regarding BoM, if you're using this, you'll issue the drum or isotainer. BoM is not a solution here.
    Best Regards,
    Hendry Wijaya

  • How to track DDL Changes and source code changes

    How can I track the DDL Changes and the Source code (Functions,Procedures,Packages & views) changes made for selective schemas?.
    I mean I want to maintain the history of DDL changes and the sourcecode change history. How to do that? Please provide your guideline with some example...

    Hi,
    you could use a DDL trigger (before create)
    to maybe capture the code and do the audit as well?
    Try this:
    SQL>create table old_code
    2 as
    3 select user username, 0 version, sysdate date_changed, user_source.*
    4 from user_source
    5 where 1=0
    6 /
    Table created.
    SQL>create sequence version_seq;
    Sequence created.
    SQL> create or replace trigger create_trigger
    2 before create on schema
    3 declare
    4 l_date date := sysdate;
    5 l_ver number;
    6 begin
    7 if (ora_dict_obj_type in ( 'PACKAGE', 'PACKAGE BODY', 'PROCEDURE',
    'FUNCTION' ) )
    8 then
    9 select version_seq.nextval into l_ver from dual;
    10
    11 insert into old_code
    12 select user, l_ver, l_date, user_source.*
    13 from user_source
    14 where name = ora_dict_obj_name
    15 and type = ora_dict_obj_type;
    16 end if;
    17 end;
    18 /
    Trigger created.
    SQL> create or replace function f return number
    2 as
    3 begin
    4 return 0;
    5 end;
    6 /
    Function created.
    SQL> select * from old_code;
    no rows selected
    SQL> create or replace function f return date
    2 as
    3 begin
    4 return sysdate;
    5 end;
    6 /
    Function created.
    ops$[email protected]> select * from old_code;
    USERNAME VERSION DATE_CHAN NAME TYPE LINE TEXT
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 1 function f return number
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 2 as
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 3 begin
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 4 return 0;
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 5 end;

  • How to track the Back and Forword functiona on a JFrame

    We are Developing an Application with Java swings.In this we 've used some of the components and are JFrame,JPanel,SplitPane,JButtons and etc.
    In this we've used JButton for the Back and forword function as we have with the I.E.
    So the Problem is that
    when I click Back Button I need to get the Previous JFrame Contents and for Forword I need to get next JFrame Contents the Function are same as back and Forword Functions of Internet Explorer.
    I'tried with Undo() Package but I did not get the Required Output
    Thanks in Adv,

    How about the following:
    1. Creat a top level container (ie window) with menus,
    back/forward buttons etc. using whichever layout
    manager is appropriate.
    2. Create a panel, and add it to this window. Set the
    panel to use card layout manager.
    3. Display all output from your app in the panel, and
    let the window's back/forward buttons call the
    appropriate methods on the card layout manager.
    Thanks for reply,
    But i had done the same thing i.e icreated a top level(using JFrame) for the buttons menus and etc.
    then using the layouts manager.
    created a panel andused cardlayout manager but my problem is taht when i add those conetents(called panel contents of the frame) as component and add it this panel then i am geeting thaierror stating
    java.lang.IllegalArgumentException: adding a window to a container
    so that is the problem i.t it is not get added to the newpanel.

  • How to track before image and after image of changes in retro changelog?

    Hi all,
    I've enabled plug-in retro change log and accessed with JNDI successfully. However, the changes column keeps after change only. Is it possible to track before image through retro changelog plug-in?
    Cheers.

    The retro-changelog contains the changes as received by the server.
    There is no way to dump the content (or part of it) of the entry before the change was applied.
    Regards,
    Ludovic.

  • How can track my phone and another non-iPhone with one app?

    I installed "Find My Phone" a little while ago on my iPhone 3s, and on my wife's Pantech Burst...because I thought that since they both have the same logo, and background picture, then they must be synced...Well, that didn't work...
    So, I need an app that I can use on my phone and hers, where she can see where I am and I can see where she is...without using up a phone call to ask.
    Is there one app to do this?

    Don't think there is one.  The only apps with this functionality are Find My iPhone and Find My Friends, both of which only locate devices with iCloud accounts.

  • How to track scenes viewed and display image A or image B based on scenes viewed

    I have an interactive story divided into scenes. At the end of each scene a button appears. This occurs on a frame on the timeline.
    There are two different buttons that might appear based on whether a prior scene has been viewed or not.
    For example, there are Scene_1 and Scene_2. At the end of Scene_2 one of two buttons will appear. The buttons will be either "Go see Scene_1" or "Return to Main Menu".
    If the user has already seen Scene_1, Flash will know that and automatically go to the frame in Scene_2 that contains the button "Return to Main Menu".
    Conversely, if the user has not seen Scene_1, Flash will know and automatically go to the frame in Scene_2 that contains the button "Go see Scene_1".
    I imagine there would be an action frame at the end of Scene_2 that will contain the as2 code to enable this action.
    Perhaps something like, but probably not at all like the following:
    if ("Scene_1", last frame == true){gotoAndPlay("frame#");}else{gotoAndPlay("frame#");}
    Any help is greatly appreciated.
    Thanks!
    Jerry T

    create an array.  at the end of each scene push the data you need to judge that scene's been viewed.  use that array at the end of each scene to determine what buttons to present.

  • How can I set up two iPhones with the same contact, photos, music etc... but a different sim card and phone number. They will both be my phones, but one will be for use in other countries.

    How can I set up two iPhones with the same contact, photos, music etc... but a different sim card and phone number. They will both be my phones, but one will be for use in other countries.

    Phone A = phone with information you want duplicated
    Phone B = phone that you want to copy from A
    Backup Phone A.
    Wipe Phone B using these instructions. What to do before selling or giving away your iPhone, iPad, or iPod touch - Apple Support
    Phone B should be on the 'Hello' screen. Do not swipe it. Launch iTunes. Plug in Phone B.
    When iTunes asks if you want to set up as new phone or restore from backup, choose restore from backup of Phone A.
    After this setup, any changes to one phone (i.e. adding a contact, downloading an app) will have to be manually duplicated on the second phone, if that is your desire). Making changes to one phone will not affect the other after setup.

  • HT204023 What is 'sim pin' under Cellular data on my iPad mini?  How do I use that and change cards from one country to another?

    I have a new ipad mini with retina display, and cellular capability.
    I've learned how to set up an account and use it in the US.  I'm now traveling internationally and need to learn about changing the sim card.
    My first question is about the notation under 'settings', Cellular Data, SIM PIN.  Under SIM PIN, there is an option of turning on 'sim pin' and then entering a PIN to lock the SIM.
    What does SIM PIN mean in the first place?
    Where does the PIN number come from?
    Thankx.
    SusanFrances

    A SIM PIN, also referred to sometimes as a PUK Code is like a PIN number for your SIM card (just like your ATM Card).  Since your SIM card has your cellular account on it and can be typically removed from one device and put into another, you can lock the SIM Card with a SIM PIN if you choose.  If you activate the SIM PIN feature and forget your SIM PIN when you try to re-activate your device or a new device in the future using the same SIM Card, you may have to contact you carrier to get a new SIM Card. http://support.apple.com/kb/ht1316
    As far as changing the SIM Cards out because you want to use a new carrier, you can remove the SIM card fomr the old carrier and put in the SIM  card form the new carrier. http://support.apple.com/kb/ht5163
    I hope this helps clear things up.

  • My iphone 5 broke so had to get a sim card and put it in my husbands old iphone 4. i can not figure out how to get my imformation on this his old phone; contacts, apps ect. i have switched my icloud account and apple id on the phone but nothing. HELP!

    My iphone 5 broke so had to get a sim card and put it in my husbands old iphone 4. i can not figure out how to get my imformation on this his old phone; contacts, apps ect. i have switched my icloud account and apple id on the phone but nothing has changed. please HELP!

    You do a restore as new to wipe the iPhone then at the end of restore you will be asked to restore from backup. Choose your iPhone backup.
    Note you cannot restore an IOS newer than the IOS on iPhone, you need to update iPhone first.

  • How to make a commentary track in iDVD and iMovie 6

    Could someone please explain how to make a commentary track using iMovie6 and iDVD? I think I will be able to import the commentary track onto the second sound track in iMovie 6 with no problem. I just can't figure out how to make it an optional track in the final DVD.

    Yes, you can put the commentary track on the second sound track in 06. You can also attach a mic and make the commentary as a recording. I will caution that you will need to depress any original sounds associated with the film so that it does not sound like a garbled mess with both tracks competing. I imagine you know how to grab the volume level line in the audio track and nudge it lower or higher?
    I also don't see any other option than including two versions of the film on the DVD. Pretty simple fix if it will fit... I would export the plain film first before adding the other audio (or you can simply uncheck one of the audio tracks while exporting to mute it).
    Terri

  • BizTalk Tracking Profile Editor not tracking the data and how to implement the Orchestration as wcf service over SSL

    Hi Ashwinprabhu,
    thank you very much for your answer.
    i have one more query, I have orchestration published as wcf service in IIS and internally orchestration calling one more service , it means orchestration sending a request and getting response back from the service.
    actually we are implementing the copy of that called service through biztalk orchestration for system automatic and tracking failed messages and n/w failures.
    But tracking profiler not tracking the Data.
    And we need to develop the http service as https(Over SSL), we implemented in iis using self 
    signed certificate, it is working just browser for wsdl(in browser), we are not able to test the service in wcf test client, it is giving wsdl error, in wsdl schema reference showing with HTTP only,
    please help me how to resolve the issue.
    Teegala

    First things first, I think it's best to publish only schemas as WCF service for dependency management reasons. That said - WSDL availability is covered in the WCF adapter under the behaviors. If you're using HTTPBasic this may be hard to modify, but using
    WCFCustom allows you to add the WSDL behavior and specify that it should be available via HTTPS.
    As to the BAM, are you using TPE within the orchestration or at the port level?  I'd imagine your TPE tracks the start and end events of your orchestration using the Orchestration Schedule.  If you're fairly confident that the TPE is correct and
    yet don't see BAM data 1) make sure your SQL Agent is running healthy and all jobs look OK and 2) check the TDDS tables in both the message box and the BAMPrimaryImport databases.  These will show you if there has been some sort of sync issue. There's
    even a TDDS errors tables - so check that out.
    Kind Regards,
    -Dan
    If this answers your question, please Mark as Answer

  • My daughter put my sim card in and loged into my itunes acount but now she has put her own sim in and deleted my contacts that showed up on her phone and it has deleted all the contacts of my phone too, how can i get them back and stop it happening again.

    My daughter but in my sim card and loged into my iunes account to get apps untill she got her own sim but my contacts appeared on her phone so when she got her own sim she deleted the contacts of her phone it deleted them of mine too. how do i get them back?

    The SIM has nothing to do with that. She used your Apple ID to buy apps/music, thus your contacts that were synched with iCloud got replicated on her phone. Any changes she made got reeplicated on her phone. There is no way to recover the deleted contacts unless you backed up your phone.
    Your daughter needs to get her own Apple ID.

  • How to Track changes of Detail and header at purchase document

    Hi
    I have one problem while issueing the output type i created new output type created new output routine and i have to track the header changes and issue proper output and prevent to issue wrong output type
    example : zne1 for header changes and zneu for detail level but i cannot track the header level changes becoz cdhdr and cdpos tables are updated after output routines (800 and 801 newly created and assigned)
    can u please tell me how to track the po level changes so i can solve this problem ASAP
    it is urgent !!! please help me in this !!
    thanks in Advance !!!

    Hi Mr. Modi,
                       Can you clarify your scenario properly that I can analyse it to give you proper solution....I am confuse with your requirement and  example which you have given...
    Cheers,
    Sagun Desai....

  • After updating my Macbook Pro retina display to os x yosemite 10.10.2, the mause and track pad locks, and do not respond especially when using the Mac for a long period, please help, how can I solve this, I do not like feel like in windows, so I paid

    after updating my Macbook Pro retina display to os x yosemite 10.10.2, the mause and track pad locks, and do not respond especially when using the Mac for a long period, please help, how can I solve this, I do not like feel like in windows, so I paid good money for this mack, I feel calm

    Hi Buterem,
    I'm sorry to hear you are having issues with your MacBook Pro since your recent Yosemite update. I also apologize, I'm a bit unclear on the exact nature of the issue you are describing. If you are having intermittent but persistent responsiveness issues with your mouse or trackpad, you may want to try using Activity Monitor to see if these incidents correspond to occupied system resources, especially system memory or CPU. You may find the following article helpful:
    How to use Activity Monitor - Apple Support
    If the entire system hangs or locks up (for example, if the system clock freezes and stops counting up), you may also be experiencing some variety of Kernel Panic. If that is the case, you may also find this article useful:
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem." - Apple Support
    Regards,
    - Brenden

Maybe you are looking for

  • Report with XLS as a data provider

    Hi I have a report which has a XLS spreadsheet as a data provider. Whenever I open the report or refresh the data, the data is displayed very slowly, line by line. I have to wait a few minutes while this happens, until all the data has completed bein

  • Safari 5.0.6 keeps crashing upon launch

    I no longer can launch Safari anymore.  It opens, hangs, goes to my home page (Google.com) and then promptly shuts down. Here is the problem report.  Any suggestions?  Thanks, Process:         Safari [141] Path:            /Applications/Safari.app/Co

  • Message Mapping outside BPM

    I often see a point from XI-Legends that a Message Mapping should be executed out side the BPM and that will make the XI performance good. How to do a Message Mapping outside BPM? What does it mean? Any Blog that narrates the above situation? Thanks.

  • How often do i need to Rebuild Mail to get search to work

    i seem to be not getting correct results on some searches and when i click on an email from someone i /don't/ see the other emails highlighted from this person listed but if i click on /another/ email with this person's same address i /do/ see a /thi

  • CS4 eye dropper values disappear after grouping mask layer with next layer

    Have an adjustment/curve with a mask (layer1).  Under layer 1 is a second layer with just an image needing color correction(layer2). When I group the top layer1 with  image layer2,  the colour values disappear in the info pallette. Never did this in