How to create midlet license copy

Hi,
I want to give jar file to one of our client. But I am giving him permission for installing it on only one phone.
How can I check that, he can't install it on other phone.

If you are downloading Midlet from OTA then there is easy way and each time web connection also not needed follow the following steps
insert a property, key value pair in jad
and in startApp() first of all get that property
compare it with your value directly like
String s=getProperty("key");
if(!s.equals("value")
destroyApp(true);
@rjun

Similar Messages

  • How to create block by copying parent value to all of its children

    Hi All,
    I need to create blocks by copying the parent value into it's children, however, the following does not work:
    DATACOPY "Profit"->"Actuals"->"2012"->"Period Total"->@PARENT(@CURRMBR("Business")) TO "Profit_2"->"Budget"->"2013"->"Input Mth"->@CURRMBR("Business")
    Does anyone know how to go about achieving this?
    Cheers,

    from source to target
    copy data
    FIX ( "Profit","2012","Period Total",@Idescendants("Business",-1))
    "Actuals"(
    Account_NA=0;
    ENDFIX
    FIX ( "Profit","2012","Period Total",@RELATIVE("Business",0))
    "Actuals"(
    IF(Account_NA->@PARENT(@CURRMBR("Business")+0 == 0)
    "Profit_2"->"Budget"->"2013"->"Input Mth"->@CURRMBR("Business"))= "Profit"->"Actuals"->"2012"->"Period Total"->@PARENT(@CURRMBR("Business"));
    Account_NA->@PARENT(@CURRMBR("Business"))=1;
    ENDIF;
    ENDFIX
    copy block
    FIX ( "Profit","2012","Period Total",@RELATIVE("Business",0))
    "Actuals"(
    "Profit_2"->"Budget"->"2013"->"Input Mth" = "Profit"->"Actuals"->"2012"->"Period Total"->@PARENT(@CURRMBR("Business"));
    ENDFIX

  • How to Create a database copy and specify the source database.

    Hello,
    In my dag environment I would like to create a new database copy and specify the source. My company has database copies in 2 locations. Instead of transferring the data from one location to the other, I would like to specify the source be the copy that is
    in the same location.
    Thank you,
    ~Mark

    Hi,
    We can create a mailbox database, then run EMC and EMS to create a database copy.
    More details about Add a Mailbox Database Copy, for your reference:
    https://technet.microsoft.com/en-us/library/dd298080(v=exchg.141).aspx
    Note: please pay attention to Prerequisites section, for example: 
    1. The specified Mailbox server must not already host a copy of the specified mailbox database.
    2. The server hosting the specified database and the server that will host the database copy must both be in the same database availability group (DAG). The DAG must also have quorum and be healthy.
    Thanks
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

  • How to create midlet file in j2se project ?

    Hi All,
    I am new in j2me. My main aim is Send the data mobile to Pc and Vice versa.
    I am using windows xp, Nokia E50 , netbeans 6.1 IDE.
    My requirement is , I want set Pc as server and Mobile is client,
    now i want to create 2 project or I can manage single class,
    In Netbeans Pc server program developed by j2se and Mobile client is Mobility application.
    It is possible to both are created at a same project ? .
    I want to created the midlet class is created on j2se project and while run my midlet from j2se project midlet was run
    on WTK Emulator.
    Please any one tell me, my requirements are possible, if yes then how to implement both are same project,
    Thanks is advance,
    With Regards,
    Ganesh kumar

    Hi Martin,
    > you can add a data-source-aliases.xml file to your
    > META-INF folder
    > so what is the name of the Default datasource?
    See http://help.sap.com/saphelp_nw04/helpdata/en/c3/4f7770b21b9f459cb13424296726b1/frameset.htm - you can generically use a variable.
    > is this applicable to EP projects?
    I won't expect this (as a portal project isn't a J2EE application itself but part of another).
    Anyhow, the datasources (and with them their alias within the J2EE engine) are managed via VisualAdmin, see http://help.sap.com/saphelp_nw04/helpdata/en/11/4963a6cf52ad429b3b3b65e003f2d1/frameset.htm
    Hope it helps
    Detlev
    PS: Please consider to reward points if answers are helpful. Thanks in advance!

  • How to Create new database (copy all table with data excluding 2 table )with existing database.

    Please follow the scenario:
    using C#
    1) current database file name is DB20122013.
    when user click on new year button
    2)Create backup copy of current database
    3)New database should create with all table(excluding table "Dailytemp" and "DailyMain") with data and database name as DB20132014.
    Musakkhir Sayyed.

    Hi,
    I hope, below stored procedure is useful for your scenario.
    CREATE PROC Create_New_Database
    ( @DBNAME VARCHAR(550)
    )AS
    Test : Exec [Create_New_Database] @DBNAME='DB20122013'        
    BEGIN TRY               
    SET NOCOUNT ON   
    DECLARE @sql VARCHAR(MAX), @DBNAME_NEW VARCHAR(550),@num int
    IF EXISTS(SELECT 1 FROM sys.databases WHERE name=@DBNAME) AND ISNUMERIC(RIGHT(@DBNAME,4))=1
    BEGIN
    SELECT @num= RIGHT(@DBNAME,4) 
    SELECT @DBNAME_NEW='DB'+CAST(@num AS VARCHAR(10))+''+CAST(@num+1 AS VARCHAR(10)) 
    IF EXISTS(SELECT 1 FROM sys.databases WHERE name=@DBNAME_NEW)
    BEGIN
    SELECT @DBNAME_NEW+' database already exists'
    END
    ELSE
    BEGIN
    SET @sql='USE '+@DBNAME+'  '+' backup database '+@DBNAME+' to disk = ''C:\'+@DBNAME+'.bak''  '
    +' restore database '+@DBNAME_NEW+' from disk = ''C:\'+@DBNAME+'.bak'''
    +' with move '''+@DBNAME+''' to ''C:\'+@DBNAME+'_data.mdf'' ,
    move '''+@DBNAME+'_log'' to ''C:\'+@DBNAME+'_log.log'''
    EXEC (@sql)
    SET @sql=''
    SET @sql=' USE '+@DBNAME_NEW+' IF EXISTS(SELECT 1 FROM SYS.TABLES WHERE NAME=''Dailytemp'') 
    BEGIN DROP TABLE Dailytemp END IF EXISTS(SELECT 1 FROM SYS.TABLES WHERE NAME=''DailyMain'') 
    BEGIN DROP TABLE DailyMain END '
    EXEC (@sql)
    END  
    END
    ELSE 
    BEGIN
    SELECT 'Database is now found or Database name does not mach the scenario'
    END
    SET NOCOUNT OFF   
    END TRY   
    BEGIN CATCH                
     DECLARE @ErrorMessage NVARCHAR(4000)                
        DECLARE @ErrorSeverity INT                
        DECLARE @ErrorState INT                           
        SELECT @ErrorMessage = ERROR_MESSAGE(), @ErrorSeverity = ERROR_SEVERITY(),@ErrorState = ERROR_STATE()                
        RAISERROR (@ErrorMessage,@ErrorSeverity,@ErrorState )                
    END CATCH;   
    GO
    Regards,
    RAMBHARATH

  • How to create a bootable copy of MacOs 10.5.8 as a start up disk

    I have leopard  installed on my main powermac G5 plus my two Powerbook laptops.
    The install disk works fine in the slot loading laptops but when I put it in the disk drive of the G5 then it isn't being read. I can hear the drive  trying to read it but it eventually spits it out.
    I was therefore looking to make a bootbale version from the disc while it is in the laptop so that I can use this version to do a restart and permissions repair.
    Firstly is there any reason why this disk is not able to be read by the drive in the G5? It reads almost every other disk I insert and this behaviour is unique to the one disk I want to work more than most.
    I reckon if I can repair the permissions on the start up disk then the chances are that the drive may accept the Os disk. Maybe.
    Secondly how do I go about creating a bootable start up device on a usb stick or such like from the existing disk?
    Any help would be most welcome.

    Trouble is, most PPC Macs will not boot from USB, but if you wish to try... clone the Install Disc to a Flash drive or such, or if big enough Install OSX to the flash drive, then he hard part...
    You need a USB2 drive with an OS X system installed (I am using 10.4.3, though any I think will work as far as what the machine can boot). As you know, there are many different ways of getting a system on a USB drive; contact me if you have any questions on how to do that, or search macosxhints.com for that information.
    Connect the drive to your machine, and find out which partition the OS X system is installed on. I usually find this by going to Disk Utility and looking at the info for the partition on the USB disk with OS X. That is, disk2s3 is usually for a USB disk with no OS 9 drivers installed that is the second disk disk. disk3s9 might be a USB disk with OS 9 drivers that is considered the third disk. There are other ways of finding this out, but in my case, my disk is disk2s3 (the 3 on the end will come into play soon).
    Start up the machine in Open Firmware (this is the fun part). Hold Command-Option-F-F right after the machine is turned on.
    Here is the moment of truth. If this step does not work, I have had very limited success getting a machine to boot off USB2. In Open Firmware, type devalias, and you should get a list as output. In this list, look for ud, usually below where you see hd (ud is "USB Disk," I presume). If found, it will usually have beside it /pci@f2000000/usb@1/disk1, or something similar. Again, if you see this, I have not had this fail yet.
    Now type printenv boot-device, which will usually get you output of boot-device hd:,\\:tbxi. (See where this is going yet?)
    Type setenv boot-device ud:3,\\:tbxi where the number after the colon corresponds to that partition number we found in step two. You should get an ok back.
    Type printenv boot-device, and you should see the change displayed already. Something like:
    boot-device        ud:3,\\:tbxi        hd:,\\:tbxi"
    http://hints.macworld.com/article.php?story=20060301112336384
    You can also try the Install Disc in a PB, boot the PB in t mode, boot the G5 holding the Option/alt key down & see if the Install Disc in the PB shows up as a boot choice.

  • How to create a copy of customized panel?

    Hi
    On a Button click am creating a panel at runtime using
    actionscript with some controls in there. Now i got requirement
    like at the same time.. i need to create a copy of that panel and
    need to add it as a child of another panel.
    Can any one help me how to create a duplicate copy of Panel??
    Thanks
    Pratap

    Hi,
    Thanks for reply...
    The clone() method returns a cloned copy of the event object
    by setting the type property and any new properties in the clone.
    I need to create a clone of a control(Panel).
    Any idea how to do that?

  • How to Create a Copy of the Datasource

    Hi Experts,
    Can some body suggest me how to copy and reuse the existing the Datasource
    I have a Datasource(Standard Datasource to Info object(Master Data Attr) )
    So I need same datasource to update to DSO
    But I donot need the existing Datasource I want a copy of this Datasource how to create
    Thanks

    Hi,
    Try copying using txn RSDS.
    Hope this helps.
    Thanks
    Mani Suresh

  • I am working in windows 7 and I am trying to enable the copy/paste and I can not find user.j file in the profile and I am not real sure how to create a file, I can create a folder .

    I am trying to copy text from a word document and paste it into my web builder and it says that firefox does not support copy/paste from clipboard. Went to your site and it tells me to open the user.j file in my profile. This file does not exist and I am not real sure how to create that file so I can paste the fix from your site into it.

    I went to that link and added to firefox add on but it still does not work. I went to the add on option button for this but it told me that my MYSIWG widget was disabled. Does this have something to do with it not working and if so how do you enable it.

  • How to create a new view by copying from standard view in IC webclient?

    Hello, expert,
    I need to enhance a sap standard component (BP_Factsheet), inside it I need to create a new view by copying from an existing standard view (Acitivities). However when I try to make a copy, I was asked for destination BSP application, I entered the Z-Application which I used when defining enhancement for the component. After the copy, I don't see the new view.
    Then I tried the destination BP_factsheet, instead of the z-application, then after the copy, I can see the new view. However since it's in SAP application, it seems like it's a MOD, not enhancemnet, and inside the new view, the classes (for context, context nodes, etc.) are not in custom namespace (not starting with Z).
    So please let me know how can I make a copy of sap standar view in custom namespace.
    Thanks in advance.
    Jayson

    When copying you can put any BSP name..normally the practice is to prefix the standard name with a Z.
    Secondly when you want to make changes to the individual classes and methods you need to right click and say enhance. Then the AZ class names etc would be generated. The view should appear in the component wherein you copied the original view from.
    I hope this helps.
    The cookbook should have details on this. Otherwise also its quite intuitive.
    Award points if it helps.
    Thanks.

  • How to create a new account and copy all settings?

    I think my main user account is corrupted. So I want to create a new account and copy all of my settings, files etc..and more than likely piecemeal just incase my settings are what is corrupted. That way I can isolate the problem.
    I don't plan to delete the main account until satisfied and I also have my Time Machine backup plus my SuperDuper backup.
    I can/should be able to figure out how to create the new account, but I am very unclear on the best/easiest approach to copy in my iTunes files and settings, applications(is this even an issue), address book, email, etc? I should be able to find most everything underneath my home account folders but what else am I missing here? I don't want to find out the hard way.
    Please share some advice or perhaps a link/FAQ on how to approach.
    Thanks in advance.
    --Mickey

    use this [link|http://discussions.apple.com/message.jspa?messageID=6185507].

  • How to create a basic pay wage type without copying from another wagetype

    Hi Gurus,
    How to create a "New Wage Type" without copying from another wagetype?
    & i want this wage type "Non Taxable" as per my organisation requirment.
    pls send me config docs on my email id. Pls it is very urgent 
    Email: [email protected]
    Pls Help me
    Regards
    MHPO

    Hi Ram,
    Thanks
    One more thing should i create "Non taxable payment wage type" in Basic Pay.
    in Basic pay there is no any wage type copy Non taxable Wage type but Additional Payments there is one Copy Wage type name is "M400 Non taxable payment"
    i check the all config related setting related to M400 non taxable payment
    can i copy in Basic Pay  any wage type & create new wage type (xyz)
    & i change all setting eg processing class & all is similar in (XYZ) =M400
    its is ok or not

  • How to create an identical local copy of a mail without attachments?

    Hi,
    I would like to save a copy of an IMAP-Message to my db without the attachments.
    As I cannot modify the original message, I tried to create a new MimeMessage with the constructor MimeMessage(MimeMessage source) and then remove the attachments - this works fine so far, but using this constructor only the body seems to get copied without subject, recipients or from-address.
    Can anybody give me a hint how to create an identical local copy of a Message-Object? I would rather like to do this without installing any local third party providers.
    Regards
    Karsten

    Sorry, found the problem - I did some things with the InputStream before I should not have - now the message gets saved without attachments and can be reopened.

  • SMARTFORM: how to create 3 copy (each copy can print more than one page)

    SMARTFORM: how to create 3 copy (each copy can print more than one page)
    Hello everyone.
    my user want to have form that print 3 copy.
    such as 1 copy description = master,  2 copy description = copy 1 ,3 copy description = copy 2.
    so i create 3 page . I copy from page 1.
    and in each page there is main window which can have data more than 1 page.(such as have a lot of sale data ,it's take 2 page for show output .so it's take 2 page in each copy)
    please help me.
    how to set page and window in each page for print 3 copy and each page can have main window that print more than 1 page

    Hello Vinit.
    thank you very much for your help.
    could you help me more please.
    in below code
      DO NAST_ANZAL TIMES.
    l_counter = l_counter + 1.  " << pass this to FM and use for the TEXT to print
    CALL FUNCTION LF_FM_NAME
               EXPORTING
                         COUNTER = l_COUNTER   " USE this to derive the text into PRINTOUT
    enddo.
    Now i out of office .so i cannot test.
    where do i set NAST_ANZAL for 3 ?
    can i input ?
    NAST_ANZAL = 3.
      DO NAST_ANZAL TIMES.
    l_counter = l_counter + 1.  " << pass this to FM and use for the TEXT to print
    CALL FUNCTION LF_FM_NAME
               EXPORTING
                         COUNTER = l_COUNTER   " USE this to derive the text into PRINTOUT
    enddo.
    Edited by: dittaporn nanasilp on Mar 12, 2011 3:33 PM

  • Reporting database - copy of production. How to create?

    Hi!
    To offload our production environment from heavy queries caused by reporting needs, we need to set up a reporting database. This database must be a copy of our production database. However, the reporting database can be lagging behind the production environment by some time (let's say an hour or so).
    The reporting database may be read-only if that makes it more easy to set up and administer.
    We would like the reporting database to have minimum impact on our current production environment. Preferably the coupling should be non-existent, meaning that the production environment should not know about the reporting database.
    The reporting database can initially be created by a copy of production.
    We can also accept downtime on the reporting database in case creation of new datafiles, or any other reason, in the production database requires a recreation of the reporting database.
    We are currently running Oracle 9iR2, but are planning to upgrade to Oracle 10gR2 later this year. We are running in an enterprise environment.
    Could you please suggest to me how to set up a reporting database as described here? A solution for either Oracle 9iR2 or 10gR2 is welcome.
    Thanks in advance for you help!

    In addition to what previous poster said, you may use Archiver Transmission with maximum performance mode for your standby DB.
    If you choose logical standby, then it can be queried while it is actualizing (constantly), but may not support all data types and DDL operations from your primary DB.
    If you choose physical standby, then these limitations are gone, but you can use it for reports only after interrupting the actualization (versions before 11g, that is) for the time of your query, opening the DB read only.

Maybe you are looking for

  • Cannot connect to wi-fi

    My I Pad 2 has happily connected to wifi for the last year. Now it has suddenly failed to connect. The router is fine - the PC, printer and laptop all connect. Any ideas? I'm not into technology - I need a simpleton's guide.

  • ITunes movie disappeared and no URL.  HELP

    I have recently bought a movie from the iTunes store and later synced the iPad to my laptop. Now the movie is still shown on the 'movies' button but it won't play, saying 'The requested URL was not found on this server'. Now it's disappeared from 'pu

  • 300 dpi images turn fuzzy when export as interactive or screen res pdf

    Hi, my print brochure is fine, sharp, linked etc. But when I try to export as interactive pdf or screen res pdf, for online purposes, my clean logos and pix turn nasty. Do I need to change them individually to 72dpi and change them to rgb (i thought

  • How to unlock material and batch at MIGO

    hi all, My requirement is to post another transaction using BAPI_GOODSMVT_CREATE at MIGO in the background. let say after posting movement type 101..i have to post another transaction of same material in same plant and in same Batch Using BADI, The p

  • RFC invoke = error after 250 lines recovered...

    Hello everybody, I use SAP .Net connector 3 to create an application that makes a remote function call (RFC). This function takes a table in parameter and I expect another table in return which should as many or less lines as the one in parameter. Th