Do i need to create table manually for disconnected analytics?

Hi, i wanna ask, when i create a disconnected analytics client, do i need to create the table manually for SQL Anywhere? Or it has another means?
Thanks.

Thanks John
I just find the answer
Yes, it's recomeded to add new group , for instnace If I have 10 group from 1 to 10 then the standby shoudl be from 11 to 20
Thanks I found the answer.

Similar Messages

  • Do I need to create a view for this?

    Hi Ihave got 2 tables emp and project
    In emp tabe:
    emp_no
    family name
    given name
    In porgect table:
    emp_no
    status(assigned,unassigned)
    start_date
    end_date
    emp_no Family_name given_name
    1 Smith John
    In project table same employee can have many assigement eg
    emp_no status start_date end_date
    1 assigned 01-may-08 01-july-08
    1 assigned 01-sep-08 01-july-09
    1 unassigned 01-july-09 01-oct-09
    In the form:
    there are 2 querable fields "project ends between field1(date) and field2(date)" which is used to
    retrive records which have end date between field1 and field2.
    The following fields are needed to get from database:
    emp.family_name emp.given_name project.start_date project.end_date No.of time assigned
    Requirements:
    1. project.start_date and project.end_date must be the latest project_end_date for the same emp
    so in the above sample date
    2. No. of time assigned is a count of total of number records which have status='assign'
    So for the given sample data the record expected after query would be(field1=01-jun-08 field2=02-july-09)
    emp.family_name emp.given_name project.start_date project.end_date No.of time assigned
    Smith John 01-sep-08 01-july-09 2
    What is the best approach to get:
    1 The lastest project(latest end_date) for the emp
    2. get No.of time assigned.
    Do I need to create a view for this? If yes, any sample sql code this this?
    Thanks for your help

    Hi W1zard,
    Thanks for your reply. Could you clarify the following points for me:
    1.) you could create a master block basing on your emp table and a detail block basing on your project table with the relation over emp_no. set the default_where clause of your detail block programmatically using
    set_block_property('project', default_where, 'status = ''assigned'' and <your_date_criteria>');
    Q1: where I pit this code? in pre-query trigger in detail block?
    2.) Of course you could create a view to join both of your tables if you don't want to use master detail blocks; Also do the join over emp_no
    create or replace force view v_emp as
    select emp.family_name, emp.given_name, project.start_date, project.end_date
    from emp, project
    where emp.emp_no = project.emp_no
    Q2 As I mentioned before, there are multipal entries for the same emp in project table and we only need the maching record from project table which has latest end_date. So I think I need something like
    max(project.end_date) somewhere in create view to make sure only one record for one employee.
    Also is there possible to include the no. of assigned field(select count(*) from project where status='assigned' and emp=emp_no) into the view as well?
    Q3 All the fields mentioned above are diaplay-only. So Can I create a control block which has all the fields from emp and project. Then populate them with my sql. The question is
    where I put this customerised sql so when user click excute query. My sql will run and display one the form?
    REally appreciated your help!
    Michael

  • Need to Create a Check for Plant in WBS & Plant in Network

    Dear Guru's,
    While creating Project (CJ01) my users are creating in a Plant, and while creating network for the same project/WBS, they are using different Plant Code.
    Since my Profit center is related to the plant in CJ01,
    and because of wrong Plant in network, all my PR/ PO is going in a different Profit center, which is creating a huge problem while auditing.
    I need to Create a Check for Plant in WBS & Plant in Network...!!
    Kindly suggest me the ways to do it and how to do it...

    Hi Deepa,
    The Check you are trying to create between Plant defined at Project def and network level that should be same can be achieved through validation at the network level by using a user exit at network level.
                    While creating the network you can change the plant value not equal to the value at proj def/network profile may be one of the reason is since the network type is defined for more than one plant (OPUV).
                    While creating validations at network level we do not have the option of setting the prerequisite/check  using WBS or Proj def fields (i.e. PROJ-, PRPS- fields)    so we need to create a user exit at the network level.
    I am not sure but logically u can have a user exit for both prerequisite and check steps of the validation.
    You need to create the user exit in program ZGGBR000.
    Please take help from your Abaper for the same.
    OPSI-Network header-Validation- Step - Prerequisite u2013 Check u2013 Message.
    Prerequisite
    If Proj Profile = u2018XXXu2019 and Network Profile = u2018XXu2019 (or as per your logic if need be use a exit)
    CHECK.
    PROJ-WERKS = CAUFVD-WERKS   (This logic needs to be defined in user exit and set the same user exit at the check.)
    Once you define the user exit in ZGGBR000, it will be available in the tab u2018exitsu2019 at the Prerequisite and Check levels.
    The name of the form pool (e.g., ZGGBR000) that contains your user exit must be stored in table T80D.
    It is important that you make declare the code generation program for your user exit; how many and what type of parameters you are using for the user exit. You do this by entering your newly defined user exits in the form routine GET_EXIT_TITLES. Found in program ZGGBR000.
    Check with your Abaper to check on all the aboveu2026
    Message:
    Plant at Network level should be same as at Project def level.
    Hope it helps you,All the best..
    Regards
    Vinayak.

  • Need to create Table Maintenance with more than 400 characters

    I need to create table maintenance in which one filed have more than 400 characters. CHAR type support between 1-255 & STRING type not supported by Table Maintenance. Is there any alternative type or solution for that?

    Hi,
    If  you assign TMG to the table, it will throw error as unable to display the field on screen. why because it can able to display upto 255 char length only.
    For this requirement you have 2 solutions :
    1) Create multiple fields and your Z table, split the data and store them as required.
    2) Create a TEXT ID and store it as a long text using FM CREATE_TEXT.
    or
    This type of text should be treated as Long Text.
    And the steps are:
    1. Create Text Object Using SE75.
    2. Create Text ID Using SE75.
    3. Now you have to Save the text with FM SAVE_TEXT.
    For example:
    The Most simple solution for it can be that Divide the field REMARKS of size 1000 in multiples of 200 characters like REMARK1, REMARK2....REMARKn.
    Now you can create two FMs :
    zset_data: To Store 1000 char long data in Table
    Here you will divide the data of Variable (type char1024) in multiples of 200 and will store in REMARK1, REMARK2.....
    zget_data: To Get 1000 char long data back from Table
    Here you will concatenate REMARK1, REMARK2..... and will store in Variable of Type char1024.
    This is the best solution if Table is not going to be maintained by Table Maintenance Generator.
    regards,
    ravi

  • Syntax equivalent of CREATE TABLE AS for Functions?

    Hello,
    I'm trying to refresh my functions with a copy of them from another database. Is there a syntax equivalent of CREATE TABLE AS for Functions? Basically I want to drop my old function in my dev environment and recreate it with the version on prod. I need to use this in a loop for all functions in prod, so just using the plsql statement itself won't solve my issue.
    Thanks,
    John

    >
    Is there a syntax equivalent of CREATE TABLE AS for Functions?
    >
    No.
    >
    Basically I want to drop my old function in my dev environment and recreate it with the version on prod. I need to use this in a loop for all functions in prod, so just using the plsql statement itself won't solve my issue.
    >
    The proper way to do that is:
    1. check the DDL out of the PROD version control system
    2. check the DDL into the DEV version control system
    3. execute the DDL for each function using sql*plus or another tool
    If you don't have your production DDL in a version control system you need to solve that problem first and now is a good time to do it.
    Functions typically make references to other database objects (e.g. tables, views, synonyms, procedures, packages, etc) and those objects need to be updated in your 'dev' environment also or the function may produce different results than expected.

  • After installing BI Content, do I need to create infopackage manually?

    Hi folks.
    I got a question as the title.
    After installing BI Content, do I need to create infopackage manually?
    Do I have to make every infopackage for every datasource manually?
    Thanks for your answers in advance.

    Hi..
    After installing BI Content, do I need to create infopackage manually?
    Ans: Yeah..u have to create infopackage manually.
    Do I have to make every infopackage for every datasource manually?
    Ans: Yes
    With the help of an InfoPackage, you determine the selection conditions in BW for the data request from a source system. In this section, you can select the contents of the InfoPackages so that it can be scheduled.
    1.Highlight a source system in the InfoSource tree in the Administrator Workbench.
    2.Choose Context menu (right mouse click) ® Create InfoPackage and enter any alphanumeric or numeric name for the InfoPackage.
    Dialog box that follows will show you which source system you want to load data and to which InfoSource. You will see the DataSources that are assigned to the InfoSource to which data is to be loaded.
    3.Select a DataSource for which you want to load data into BW.
    If the InfoPackage is scheduled, data is loaded into BW from the DataSource selected here.
    Hope this helps.
    Regards,
    SRIKANTH

  • HT5622 We are a family of 4, each with their own apple device. Is it best for us to set up individual apple ID's for things like ITunes? If we do can the same e-mail address be used for all of them or do we need to create e-mails for the kids? Thank-you

    We are a family of 4, each with their own apple device. Is it best for us to set up individual apple ID's for things like ITunes? If we do can the same e-mail address be used for all of them or do we need to create e-mails for the kids?
    Thank-you

    1. Yes, it is.
    2. You may be able to use the same address by adding a plussed suffix to it, such as [email protected] If that doesn't work, create separate emails.
    (103279)

  • What is the need of creating partner functions for sales document type.

    Hi SAP (SD-GURUS),
    Actually we create partner functions  before creating customer ex: sold to party, ship to party, bill to party, and payer.
    These partner functions are going to be copied into sales order while processing sales order.
    Again what is the need of creating partner functions for sales document type.
    Thanks&Regards
    sreenivas peruru

    There are some Partners you could enter at Sales ORder Level. E.g. Sales Person, Employee Responsible, Forwarding Agent, Broker, etc.
    Thus these partner Determination need to be carried out at Sales Order Level & not at Customer Master level.
    So we have to configure partner Determination for various levels e.g. Customer Master, Sales Order, Delivery level etc...
    Hope this helps...
    THanks,
    Jignesh Mehta

  • Do we need to create two zones for Two HBA for a host connected with SAN ?

    Hi,While creating Zone , Do we need to create two zones for Two HBA for a host connected with SAN ? Or a zone is enough for
    a host which having Two HBAs...We have two 9124s for our SAN fabric...
    As I found like one zone  below, I little bit confused that , if a host having two HBA connected with SAN, should I expect two zones for every Host?
    from the zone set, I gave the command show zoneset
    zone name SQLSVR-X-NNN_CX4 vsan 1
        pwwn 50:06:NN:NN:NN:NN:NN:NN
        pwwn 50:06:NN:NN:NN:NN:NN:NN
              pwwn 10:00:NN:NN:NN:NN:NN:NN
    But I found only one zone for the server's HBA2:by the same time in the fabric I found switches A & B showing the WWNs of those HBAs on its
    connected N port...Its not only for this server alone, but for all hosts..Can you help me to clarify on this please..that should we need to create one zone for
    one HBA?

    if u have two independent fabrics between hosts and storage, i think the below confs are recommended.
    Scenario 1:  2 HBAs single port each ( redundancy across HBA / Storage port )
    HBA1 - port 0 ---------> Fabric A ----------> Storage port ( FAx/CLx )
    HBA2 - port 0 ---------> Fabirc B ----------> Storage port ( FAy/CLy )
    Scenario 2: 2 HBAs of dual port each
    HBA1 - port 0 -------> Fabric A ---------> Storage port ( FAx/CLx )
    HBA2 - port0 ---------> Fabric A ---------> Storage port ( FAs/CLs )
    HBA1 - port 1 --------> Fabric A --------> Storage port ( FAy/CLy )
    HBA2 - port 1 ---------> Fabric B --------> Storage port ( FAt/CLt )
    the zone which is in your output is VSAN 1. if its a production VSAN, Cisco doesn't recomends to use VSAN 1 ( default vsan ) for production.

  • Do we need to create message interfaces for idocs and rfcs thatare imported

    do we need to create message interfaces for idocs and rfcs thatare imported
    from sap server
    in scenarios from sap system to file or vice versa
    i knew that we need not create message types
    do we also skip creating message interfaces

    hi,
    you create an abstract message interface for IDOC only if you want to use
    them in a BPM (integration process)
    for more about IDOCs have a look at my book:
    <a href="/people/michal.krawczyk2/blog/2006/10/11/xi-new-book-mastering-idoc-business-scenarios-with-sap-xi"><b>Mastering IDoc Business Scenarios with SAP XI</b></a>
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Do I need to create new group for standby redo log files?

    I have 10 group of redo log files with 2 members for each group for my primary database , Do I need to create new group for standby redo log files for the standby database
    Group#     Members
    ==============
    1              2
    2              2
    3             2
    4             2
    5             2
    6             2
    7             2
    8             2
    9             2
    10           2
    If So, The following statment is correct? or nto
    ALTER DATABASE ADD STANDBY LOGFILE GROUP 1 ('D:\Databases\epprod\StandbyRedoLog\REDO01.LOG',D:\Databases\epprod\StandbyRedoLog\REDO01_1.LOG');
    please correct me if am doin mistake
    becuase when I issue the statment I getting error message sayin the group is already created.

    Thanks John
    I just find the answer
    Yes, it's recomeded to add new group , for instnace If I have 10 group from 1 to 10 then the standby shoudl be from 11 to 20
    Thanks I found the answer.

  • Help!  Help!~I need to create a room for a Robot to move in!!

    I need to create a room for a robot to move around in. How do I go about doing this?
    Im not sure where to start.
    Thanxs

    Could you define a shape and just have the robot check its proximity to the wall?
    I did something similar a couple of years ago where my hunter bots had to chase the rabbit bots and the rabbit bots ate the grass... you get the picture
    The hunters were able to see the rabbits and they were attracted to the area with most of them. The rabbits were able to see the grass and the hunters and were attracted to grass but if a hunter was in sight, that was overridden and they moved away from the hunters.
    The controllers were simple neural nets which were set up through GAs.
    How will your robot detect the walls? I mean, will it be able to pinpoint its position in the room or will it only have visual info (it will "see" the wall to its right etc)?
    If the first, I would be inclined to use some shape and just check for the position of the robot compared to the boundaries.
    If the second, I would make the shape out of a whole load of Point objects and arrange them in the shape of the room. The benefit is that you will be able to specify some vision function based on how many Points are within his field of vision, and then get the net to learn that the optimum value is x... or something like that. It has been a few years since I did that stuff.

  • HT2534 i need to create apple ID for each of my girls   it keeps saying DO NOT MEET AGE REQUIREMENT   im very frustrated

    i need to create an ID for each of my daughters  it says DO NOT MEET MINIMUM AGE REQUIREMENT    very frustrated

    If u haven't resolved this issue yet, I just did.
    What I did:
    1. Toggle the hold switch (turn it on and off)
    2. Reset to 'Disk Mode'
    by pressing the 'Play' and center buttons
    simultaneously
    (it may take a couple of trials to get it right)
    3. Update iPod with latest iTunes in Disk mode.
    4. Incase the 'Can't find firmware' error msg is displayed,
    follow the instructions in the link given below:
    http://docs.info.apple.com/article.html?artnum=304309
    Toshiba SatelliteA30-203, Compaq Presario 3000   Windows XP Pro  

  • 10g - ODBC DSN for Disconnected Analytics

    hi, experts,
    how to configure the ODBC DSN for Disconnected Analytics
    http://download.oracle.com/docs/cd/E12096_01/books/AnyDisconnAdm/AnyDisconnAdm_Setup4.html
    the webpage above doesnt give enough information on how to configure.
    any samples?

    Hi Stephen,
    This link gives you the information needed for you http://www.skurabigroup.com/blog/?p=496
    http://oracle.ittoolbox.com/groups/technical-functional/oracle-bi-l/installation-of-disconnected-analytics-1544000
    Hope it helps you.Mark points for the threads helpfult o you.
    By,
    KK

  • Creating Check Manually for Vendor Invoice

    I want to create a Check in SAP from a Vendor invoice manually. What steps do I need to take to do so?
    I am creating vendor invoice in FB60
    I can create a outgoing Payment F-07
    How do I create a Payment document in reference to the vendor invoice?
    I can create a check using FCH5 once I have the payment document.
    Please suggest.

    Hi
    You following the correct steps.
    When you will make a payment for an invoice, the invoice will be cleared throught the payment doc. Thats how the payment doc is referenced to invoice.
    Since you are doing manual payment, you can manually enter the invoice number in the reference field of the payment document for future reference.
    Coming to Check creation when you create a check for a payment document through FCH5. The check number get link to the payment doc in SAP. you can view this in tcode FCH2, here give the payment doc.
    For future reference, you can populate any free field (reference, assignment, ref key3) in your payment doc with the check number assigned to it through tcode FCHU.
    To print the check you can use the std program RFFOUS_C. Make sure the form that you use to print the check meets your requirement if using the std forms.
    Regards
    Nikhil

Maybe you are looking for

  • 2 iphones in our household and the second one is receiving the first one's text messages

    My son and I both have the iphone 4.  We share the itunes file. We just ran the last update to 6.1.2.  The next morning I had a message on my phone that said my son's phone was using my number and all you could click was the ok button.  Throughout th

  • Mail in OS X Mavericks 10.9.1 won't launch

    In OS X 10.9.0 Mail launched flawlessly and I had no problems, but since the 10.9.1 update it hasn't launched ever since. Here is the activity in Console: 11/12/2013 7:43:44.561 pm com.apple.SecurityServer[15]: Killing auth hosts 11/12/2013 7:43:44.5

  • I need in Formula Node to assign to the variable value 4000000000!!! What kind of variable it should be???

    i've just tryed to write unsigned in32, but it does not understand 'unsogned'... But i need variable to be unsigned, because the max value = 4000000000... So, how can i solve this probleme???

  • Some questions related to BPM

    Hi All, Is there any document available which specifies the standard naming conventions to be used in BPM? Please respond, if there is any. Also need various documents which can explain the following: Performance aspects of BPM-->dependencies, limita

  • IDVD refuses to burn

    I was burning an iDVD presentation. The process went all the way through to the actual burn stage and then stopped and said that there was a problem (it did not specify what the problem was) and that it could not continue, that the DVD was unused and