Creation of initial DB for new application

Hello,
I have to develop an application in a not connected environment, having synchronization with a master repository, so I'm using Oracle Lite.
As far as I understood the process of creation :
1- Create local DB
2- Create the application
3- Publish application
a. define authorizations
b. define tables to synchronize
4- Get new application on client
I'm facing difficulties to create the DB : the tables I need already exist in the master repository, so I made a local copy of them.
But I need to use Views existing in the master repository : how can I define them since they refer tables that are not present in the local database ?
The process is not really clear for me.

if you need to create a win ce application my way to do it is the following in a bit more detail:1)have your cab file ready. the cab file is the installation file for your application. there can be more than one
2)Create your database through your sql developer (if your using oracle as your repository database)
3)use your workbench to create a new project, create your publication items based on your tables. add some sequences if you need to.
remember that if you need to do some data subsetting then you need to put a variable, for instance
select * from customer where salemanid=:myvariable
4)create a new publication and add your pub items and sequences, save it
5)run your packaging wizard, create a new application , select the application folder that you have your cab files and select you
publication (if you dont know your repository url, you can see it through the mobile manager->data synchronization->repository
6)select the cab files from the corresponding tab. then select publish the application. enter the administrator's credentials and click ok
. by the way if you have a new cab file in the future and you want to update your app, then use packaging wizard to edit the app
7)go in the mobile manager, create a new group of users . go in the application and give access to the group. then create new users and
add them to your group.
8)go in the application->data subsetting and enter the myvariable value (remember that if it is string we put it in '...' if it is number i think you dont need that)
9)then go to your client,pda in my case . open your internet explore and go to your server/webtogo. select setup from the top corner,choose your client and run it
10)enter your user's credentials and whoops dmagent is registered.
11)go in start->programs->oracle msync and sync. your database is now created, click ok and exit. oracle update pops up saying you have a software update.
its your cab files, install them too!
>
Ok this worked on the mobile PC!
>
12)client is ready to be used. there might be the case that you need to enter some specific language or other parameters but thats
out of the scope of this thread i guess.
hope i didnt forget anything:P
good luck>
I tried to launch the msql command line but it answered me: 'Access violation' X-(

Similar Messages

  • Need advice on whether to build a traditional database layout or a property bag lookup format for new application?

    Hi,
    This may be a little of an open ended question, but Id like to ask the crowd as I have a delema to whether or not to use a standard database design or a propertybag/flatfile format and transform the information within my application?
    THE SITUATION (EXAMPLE)
    We have a table called "people". And these persons can either be a basic contact or be associated to several other "types" such as a member, a representative, a staff member with login details etc.  These types are expected to expand
    and may need additional fields adding to them.
    A: The old fashioned poor approach is to create a table with all the unused columns and simply ignore what we don't need.
    B: After normalisation, the traditional approach would be to have link table and each "type" would have its own table with the separate columns needed.
    C: Lasty, we have recently done some projects using matrix and property type lookup tables (e.g. a reference table to hold the persons ID, then the columns held in a single properties table of "propertyname and proteryvalue".  When the application
    "gets" the record it can return a completely dynamic length column list based on how many properties it finds.  I.e. Person 1 have only their email address and name in the property bag so the datatable returned in code would be 2-3 columns (inc
    id).  Person 2 has lots of properties and so their datatable would be returned in code with many more columns.
    I hope that makes sense?
    THE DILEMA
    If I was only using our application to access the data then I could setup a function library to control the access, but I asl want to use report editors (maybe SQL report Services?).  And the customer would get completely confused to know which field
    is what and how to get the data out?  I also want to avoid situations where the application expects someone to have a property (column) and its not there?  It may make a difference if I tell you that they will aslo have tables holding heiracrchical
    groupings too, which will already make it hard for the customer to use in SQL Report Services.   Should I use the traditional approach and the metastable (property bag) approach?
    PROS AND CONS of B:
    +Traditional approach and most tools that need to access SQL directly will work, assuming the customer understands the column names properly
    -A single field change would likely involve all levels of MVC (model, Controller, View) so 3 times the work (maybe 3 people if using specialist SQL Admin, C# Dev and Interface Designer)
    -New person types require a whole new table to be linked in
    -Global searches need to constantly be updated to include other tables columns
    +Our development suite (Visual Studio) allows more visual designing in the IDE when the table is fixed
    PROS AND CONS of C:
    -Cant see the record easily in SQL directly
    -Would have to make any report editor use datasets within an the app rather than direct to SQL directly, making the whole system dependant on a proprietary APP control system (although we would control this anyway)
    +Global searches are very good, as all properties are held in a column
    -The property table would grow quote big, so needs good indexing
    +Any new fields or field groups (types) would simply be a configuration setting in the app (not any manual admin)
    +If any presentation of data changes where needed this is likely to only require the controller (developer) on MVC to input changes (assuming the interface expects dynamic fields)
    -The tables to show to the user through the app would need to handle dynamic columns and so would need to have generic auto formatting in code (which we could not see in the designer (Visual Studio) and set exactly as required). Slight guess work, but we
    could hold setting in the property bag to indicate how to show that property.
    A little bit war and peace, but your thoughts?
    Kindest
    Martin
    PS: Some of you may raise the option of stored procedures, in order to do the transform without SQL still.  Would this be viable and still work with SQL Report Services?

    You ARE using a RDBMS and you appear to intend to use standard development tools.  Therefore you will probably regret any attempt to move away from a properly normalized relational database.  And that does not begin to address any performance
    aspects. 
    Option A really should not be considered an option.  That is not proper normalization for a relational database.
    As best I can tell option C is simply an EAV (Entity Attribute Value) model - and you can search on that term for discussions about the pros and cons. 
    Lastly, AFAIK reports / SSRS can use stored procedures as information sources - that really isn't a design issue.  However, if you choose option C then you most likely will be forced to use procedures for reporting purposes.

  • Need your suggestion / Input about choosing Apex for new application

    Guys,
    I came across oracle apex this week and started digging through the documentation and presentations. Read some forums as well. Now I believe, our application can be helpful by utilizing Apex but I would like to share high level application functionality which I am trying to implement through Apex
    Following are the functionality of the application:
    1) there will be 40 different entity in the application (create/edit/read/delete)
    2) Each entity and CRUD processing will be roles based
    3) On various events, send email and generate XML files for interfacing with external system
    4) Scheduling report generation and normal report generation
    5) Detail audit trail of the application (doesn't depend of Ajax, but still want to point out)
    6) Various search capabilities for each entity
    7) On various event and user selection: generate PDF file which user can download / print.
    8) Many client side and server side validations.
    Based on my reading, I believe this can be easily achieved with certainly some learning curve in AJAX. (which I have to do as I lost my entire project team due to budget issues.). I have a web devleopment background using Java, JSP and Servlet for 5 years. (Nothing in last 3 years though)
    Please let me know your thoughts based on my current situation and functionality.
    Also, Do i need to buy anything to get started with apex and implementing apex full blown application (they say it's free, but just want to understand your perspective as well).
    Thank you for reading the post and your support.
    -Raj

    Guys,
    I came across oracle apex this week and started digging through the documentation and presentations. Read some forums as well. Now I believe, our application can be helpful by utilizing Apex but I would like to share high level application functionality which I am trying to implement through Apex
    Following are the functionality of the application:
    1) there will be 40 different entity in the application (create/edit/read/delete)
    2) Each entity and CRUD processing will be roles based
    3) On various events, send email and generate XML files for interfacing with external system
    4) Scheduling report generation and normal report generation
    5) Detail audit trail of the application (doesn't depend of Ajax, but still want to point out)
    6) Various search capabilities for each entity
    7) On various event and user selection: generate PDF file which user can download / print.
    8) Many client side and server side validations.
    Based on my reading, I believe this can be easily achieved with certainly some learning curve in AJAX. (which I have to do as I lost my entire project team due to budget issues.). I have a web devleopment background using Java, JSP and Servlet for 5 years. (Nothing in last 3 years though)
    Please let me know your thoughts based on my current situation and functionality.
    Also, Do i need to buy anything to get started with apex and implementing apex full blown application (they say it's free, but just want to understand your perspective as well).
    Thank you for reading the post and your support.
    -Raj

  • FR reports not working for new planning application

    Situation:
    Hyperion 9.2.0
    New planning application created and also registered to share services. One existing group have role assigned as 'Interactive User' and not able to perform operations on workspace (FR), FR Studio and Smart view. (Note: Admin can perform such activities and there is no error.)
    Key user receiving mention below messages while accessing FR report from workspace and using FR studio for particular report related to only new application. The existing FR reports on different planning application working fine working fine from workspace and FR studio. Here are the errors:
    *Workspace Error [Only for new application report]*
    [Wed Aug 24 15:04:35 2011]Local////Error(1051440) Analytical Services user [abcd] Authentication Fails against the Shared Services Server with Error [Failed to authenticate user abcd against provider Native Directory]
    *FR Studio [Only for new application report]*
    Error connecting to database connection XYZ: [Wed Aug 24 15:08:50 2011]<Server Name///abcd/Error(1051025) User abcd is not permitted to access application XYZ
    Smart View Error (Only for new application connection)
    Cannot open cube view. OLAP Error (1051025): User abcd is not permitted to access application XYZ.
    Analysis
    While looking Essbase, I identified that under security (User/Groups), group that have access as interactive user is not listed. Only I can see the groups that have admin roles. However I can see all other planning application successfully displayed groups associated to particular question.
    Please help to resolve the issue. I am new to this concept, so the detailed level description will help me lot
    Thanks
    Edited by: user10070515 on Aug 25, 2011 4:25 AM

    Hi
    Thanks For the replies.
    After the data is copied into the layout. User is changing the values of few key figures and saving. A new line item is created in the cube with the new values.
    Ex
    Cust ....qty.....Value....Revenue
    c100....10........100.....1000
    Changing the value in layout
    Cust ....qty.....Value....Revenue
    c100....10........150.....1000
    After saving in the cube
    Cust ....qty.....Value....Revenue
    c100....10........100.....1000
    c100....0........50..........0
    When the user execute the report revenue is not populating correctly. And i was expecing 150 *10 = 1500. I understood the issue. Can anyone tell me how can i achieve without updating the quantity how can i get this?
    Thanks
    Annie

  • BPC: New application is not available.

    Hallo!
    I have created a set of applications for planning. I have created  a new application based on standart application PLANNING.
    Problem is the following. When I connect to my set of applications and want to choose my new application, in the dropping out list there are only standard applications:
    Application not set
    PLANNING
    Rate
    Where is my application?
    What I have to do?
    Thanks.

    Hi Olga,
    After you created the new application You have to setup the security accessfor that application.
    You have to open the admin console and you have to set the access to new application into Member Access profile of your user.
    You will see there that for new application you don't have any access (regarding the secure dimensions) and because of that you are not able to see the new application into client.
    Attention you have to do the connection wizard after you set the right access to application because just in this way the combox will be refresh with new application.
    Regards
    Sorin Radulescu

  • Unable to delete EPMA Planning app & re-use datasource for new app

    We have EPMA Planning application (v11.1.1.3)
    I am trying to delete a deployed planning application and try to use the same datasource for creating new application.
    I have deleted the application from EPMA application library and deleted it from Planning directory in Shared Services. But, still that datasource is not showing up as available datasource for new application.
    Any ideas to how I can re-use the datasource. Please advise.
    Thanks,
    DV

    You may need to update the planning system tables.
    Go into the planning system relational tables
    Table HSPSYS_APPLICATION, delete row relating to planning app, note the app_id.
    Table HSPSYS_PROPERTIES, delete records with id that you have just stored.
    Table HSPSYS_DATASOURCES, update app_id to -1 for the datasource you use for the planning app.
    Restart Planning.
    Try again.
    Ok?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Requirements to go for new TableSpace Creation ?

    Hi All,
    It is a more databse question than SAP,
    What are requirements to go for new Tablespace creation ?
    OR
    Why do we need to create new Tablespace evethough, we have around 7 default tspaces there.
    Eg : In my case TSpace PSAPVERTEX  created; vertex is US tax tool.
    I dont think database stores the application specific data in particular TSpace  like  vertex application -
    PSAPVETEX
    Please reply to me soon
    RK

    Hello Ramakrishna,
    >> Why do we need to create new Tablespace evethough, we have around 7 default tspaces there.
    That is not correct. You have one default tablespace on database level or one default tablespace for different users (user settings)... but you can never have more than one default tablespace.
    SAP creates more tablespaces to seperate the data and to structure it... but the definition, which object is stored in which tablespace is specified in the create statement of the object.
    So if objects are for the vertex application.. the create statement includes the vertex tablespace PSAPVERTEX.. if not the objects are created in the default tablespace for the user.
    Regards
    Stefan

  • Add new company (subscriber) for partner application

    Hi
    I want to add new company (subscriber) for partner application that is accessible from portal.
    and I want to get username , password , company in login page and change the login page to accept 3 parameter but I don't know what is the next step . and where can I define my company and define user for the company .
    Thanks
    Roshanak

    Hi,
    1. Get info regarding the chart of accounts.  It forms the basis  for FI\
    2. Though automatic postings are not regular, check the required details for configuration for APP.  If you are going for APP, u need to check house bank also
    3. Check the tax procedures (Varies between countries) - Sales Tax and Withholding tax config
    4. Payment terms
    5. Discount received / paid configurations
    6. Dunning details - Check if existing standard SAPscripts will suffice ur needs.  Else u may need the help of ABAPers
    Regards,
    Sridevi
    <i><b>Award points, if useful</b></i>

  • TS2446 Hi! I tried to update a few apps from AppStore and to install new applications, but i got a message : " your Apple ID HAS BEEN disabled" !!! Please help me!!! What can i do now? How can i use my Apple ID? Please, i need help, i have this ID for 2de

    Hi everyone!
    I tried to update a few apps from my iPhone, and to install  new applications from APPSTORE. But i got a message :" Your Apple ID has been disabled"!!!!!!
    What can i do now? Can you help me please?
    The same thing happend with my IPAD....
    How can i do to function all this in the same way which was working till this problem appears.
    I want to mention that i have 2 email adresses asociated with the same Apple ID.
    wait for an feedback!
    Thanks a lot!

    Depending on why it's been disabled you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page
    If it then works on your computer's iTunes but not your phone/iPad then try logging out of your account on the phone/iPad by tapping on your id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in and see if that 'refreshes' the account on it

  • Problems at creation of a new application in desingner6

    installation of DESIGNER6 has succeed, but when i want create a new application, i have these ERRORS messages :
    RME-00011: Operation 'INS' on ci_application_systems has failed
    RME-02124: Failed to execute SQL statement: begin
    :errcnt := rmmes.getsize;
    rmmes.getall(:errutil,:errcode,
    :errp0,:errp1,:errp2,:errp3,
    :errp4,:errp5,:errp6,:errp7); end;
    RME-02105: Oracle error occurred...
    ORA-01403: Aucune donnie trouvie
    ORA-06512: ` "REPSYS.RMMES", ligne 157
    ORA-06512: ` ligne 3
    ORA-01403: Aucune donnie trouvie
    help me to find a solution for this problem
    THANKS
    null

    Hi All,
    We suddenly started getting this error:
    Access denied.
    You may not have access to perform this task on the chosen person
    or your session has timed out. (Try to log into the system again.)
    As told above we already have extension=php_mcrypt.dll enabled in php.ini file like this.
    ; Local Variables:
    ; tab-width: 4
    ; End:
    [PHP_LDAP]
    extension=php_ldap.dll
    [PHP_MCRYPT]
    extension=php_mcrypt.dll
    [PHP_MSSQL]
    extension=php_mssql.dll
    [PHP_XSL]
    extension=php_xsl.dll
    We are also having file libmcrypt.dll in the php.ini folder.
    This error is only coming for one queue when we try open a transaction and not any other queue. we are having same access to all the queues. this is only happening from today and till yesterday we never had this issue.

  • Business requirement Questioneer/checklist for New Company Code Creation

    Experts,
    Can anyone provide Business requirement Questioneer/ Checklist or  say all the factors to be considered for New Company Code Creation from user's point of view.
    this questioneer we will send to User department to specify all the requirements and add if required.
    Eg; Fiscal year definition, Posting period, Doc. types, etc. 
    Please provide full list to be considered before we go ahead.
    - Nilesh

    Dear Vivek,
    Actually I need the factors to be considered while defining Co. Code settings.
    All such factors which will guide us (SAP Team) how to design parameters in the Co. Code.
    We will send this questioneer to User Department to fill up and on that basis we will conclude our design Parameters.
    Please help.
    - Nilesh

  • I need someone local who can write the software for a new application.

    Hello:
    I need someone to write the program for a new application.
    This person should be local to the Pittsburgh area.
    I'm not really sure if this is the right forum for this as I am not computer literate.
    Any help is appreciated and I live in SW Pennsylvania.
    Thanks

    This isn't really the right place.  But you can try elance.com or others like it.
    Good luck.

  • TS1702 i cant download new application on my Iphone everytime i open app store then searching for the application i want to download when i Tap the FREE sign it become half square and never downloaded.

    i cant download new application on my Iphone everytime i open app store then searching for the application i want to download when i Tap the FREE sign it become half square and never downloaded.

    Sometimes this happens because the app won't run on the iOS version of the device you are trying to install it to.  Go to the app store and make sure it will run on iOS 3.1.3 (many only run on iOS 4 or higher).

  • GRC 10: Initial password for multiple users creation in a ARQ request???

    Hi All,
    I was trying to create a request in ARQ for multiple users. I noticed that, I could add all the necessary required information for multiple users using the template. I added the roles as well. However, I could not set the initial password for multiple users as the tab "User System Details" (where the initial password is provided for a single user) is disabled!!!
    The users were successfully created in the R/3 system. However, due to non-availability of initial password, these users could not log into the R/3 system.
    May I know how to set the initial password for multiple users?
    Regards,
    faisal

    Vit,
    I was trying to test this multiple user creation scenario. But I am surprise to get a template where in I have only below mentioned fields:
    1. User Name
    2. User Id
    3. Email
    I filled these details and uploaded. Then filled the "User Access" details. While submitting the request, I got the error:
    "Last name is not mentioned for user id XXX"
    But there is not such column in provided template by GRC!
    I added 2 columns: First Name and Last Name and saved it and uploaded again. These details are not picked up!
    Following are the only columns shown:
    1. User Name
    2. User Id
    3. Email
    4. Manager
    Out of above, only "Manager" field is editable and others are disabled.
    Last time I remember, I has got complete template with all the columns. Unfortunately, I have deleted it and not available with me now.
    Any idea you have why am I getting such incomplete template?
    Regards,
    faisal

  • Custom fields for ROS initial page in BSP application

    Hi,
    We want to add some more customer fields in ROS initial page, for example TIN number. We have added a field to ZZTIN in the include CI_CUF_REQ_FIELDS of structure ROS_CUF_REQ_FIELDS and also implemented BAdI ROS_REQ_CUF. After adding custom codes in BSP application ROS_SELF_REG under page u201Caddress.htmu201D we are able to see this field in the initial registration page.
    Now the question is WE ARE UNABLE TO KNOW HOW TO STORE THE VALUE ENTERED HERE. We are facing below issues.
    (1)     If we try to input  ZZTIN to structure u201Cgs_address u201C it is asking us to add custom fields here also.
    (2)      But when we tried to append ZZTIN to structure BAPIBUS1006_ADDRESS,  it is not allowing to activate it.
    (3)     We have also appended ZZTIN to ADRC table. How can we input to ADRC table from here?
    Ganapathi

    Dear VASILIEVA Irina,
    Thanks for the reponse. Could not get what do you menat by "core mod", did you meant you created a separate table with key field business partner id... Can you just elaborate?
    However we would prefer to add a custom filed in the standard strcucure itself.. both type suggetions are welcome....
    Ganapathi

Maybe you are looking for

  • DashBoards not loading // Cant create new dashboards

    Odd one here guys On my win7 machine, I Cannot load or create any dashboards on my production system. Any attempt to creates an app crash and event ID 0 in my windows log. The description for Event ID 0 from source Application cannot be found. Either

  • EJB3 problem in inserting the data to the database, editing

    the code below i have written to view the data but unable to insert the data and edit the data plz help me out how to write and wat is the logic package com.fms.fins.ref.ejb; import java.util.Collection; import java.util.List; import javax.ejb.Statel

  • TABLESPACE cleanup not happening after table data delete

    Hi all I have a partitioned table with 4 partitions all residing in a single tablespace. I populated the table with sample data and then deleted all with a simple delete statement followed by a commit. But the tablespace is still showing data from th

  • WLST and configToScript

    Some problems with configToScript (WLST). I have a config.xml which I run configToScript on. It works fine and the message I get at the end is that I should replace "ChangeME" to proper values. For my JDBC Connection-pool, I replace it with a clearte

  • ITunes 8.1 launching on its own repeatedly

    I have yet to see anything recent on this, so I'm asking here. Since upgrading to iTunes 8.1, I have noticed it will launch without provocation. I have set Podcasts to update Manually. I do not appear to have any iTunes clients running in the backgro