Table or report needed

HI all;
I am looking for a way to find out the list of users that were logged in in a particular time frame. Let's say I want to see the list of users logged in yesterday between 9 pm to 12 am. ; I prefer to have this in a report to execute daily automatically if not...a table would be fine...Anyone know this?
thank you.

Use T-Code: ST03N in Administrator mode, under load distribution tree, you will find 'Users Per instance'. This will show you the history of number of users logged on to the system by day / week / month.
Hope this helps.
Gopal
Message was edited by: Gopalakrishna Baddela

Similar Messages

  • Need custom column widths in Append Text Table to Report

    I need to print reports with tables of different column widths specified for each column, as the contained fields vary in width from just 3 characters in one column to 40 characters in another.  Also we are trying to match the reports generated by a non-labview routine.  In the past I have been able to achieve this by editing the Append Table to Report vi, working my way through the inner hierarchy to replace the DBL numeric COLUMN WIDTH control with a DBL numeric array.  The innermost vi, Set Table Column Width, assigns the numeric to a property node in a for loop, so the change is simple: replace the scalor with an array and enable indexing on the for loop.  Of course, after each Labview upgrade, I've had to go back in and repeat these edits on the overwritten upgraded vi's.  This time there is a problem.  The new version of this toolkit is object oriented, and disturbing these vi's wrecks the class methods in a way I don't understand (mostly because I've had no dealings with object oriented programming) and which cannot be undone.  I recently tried this and after not being able to fix the problem even with phone support, I had to spend the next two days unistalling and reinstalling Labview!  I desperately need a way to achieve this functionality without killing the toolkit, which is used (in its original functionality) by another absolutely critical program.  PLEASE HELP!
    The hierarchy is as follows:
    NI report.lvclass:Append Table to Report (wrap)
    NI report.lvclass:Append Table to Report 
    NI Standard report.lvclass:Append Text Table to Report
    NI Standard report.lvclass:tables
    NI Report Generation Core.lvlibet Table Column Width

    There is a highly relevant thread under discussion here:
    http://forums.ni.com/ni/board/message?board.id=fea​tures&thread.id=429
    You may wish to read it and chime in as it is a discussion of LabVIEW's policy (and possible change in policy for the future) concerning the handling of non-palette VIs between LV versions.
    Rob Hingle wrote:
    > Is that to say NI will not be helping me with this?  Pretty disappointing lack of support, seems
    > like a terrible idea to go to object oriented if even your own application engineers can't figure
    > out such a simple fix.  Gotta give NI a huge thumbs down on this one, thanks for nothing.
    I doubt that it is a simple fix -- our AEs are generally top notch at figuring out solutions for customers -- if it were simple, my bet is they'd have solved it. Asking an AE to work around a bug is different from asking them to rearchitect the toolkit. You are asking them to add a feature that the new version of the toolkit is not
    designed to support. The difficulty in doing this is completely independent of the decision to use LabVIEW classes to implement the toolkit. If any piece of software is not designed with a particular use case in mind, what may be a simple tweak under one design may become a very hard problem under another design.
    In your case, the solution is very straightforward: Use the older version of the toolkit. Any time you create a custom modification of the VIs that ship with LV or one of its toolkits, you should make your own copy and have your VIs link against the copy. LabVIEW promises to maintain all the public functionality version over version. Usually we succeed at that. What we do not promise is to maintain our private implementation of that functionality. It is impossible for LabVIEW (or any other software library) to maintain all of its private internal operations while still continuing any development. Using a copy of the original VIs shields you from having to recode your changes every version (something you've already mentioned is a chore) and it guarantees that functionality that you relie upon does not disappear.
    I hope you are willing to be understanding of this situation and not hold it against the AEs working on this. They try hard to provide excellent customer service, and spend lots of time inventing custom solutions for our users.  This happens to be a situation where the correct fix is not to modify the new toolkit version to do something it wasn't designed to do but to modify your development process so that the problem is solved now and into the future. 

  • Need to call user defined table in Report

    Hi there,
    In my report, need to call user defined database table. This table contains 2 columns one for checkbox. After calling this table, user has to check required rows and save changes. can we create transaction code for this table and call from within report? anybody pls suggest how to implement this requirement.
    Regards,
    Zakir.

    Zakir,
    U can do it in both the ways (TXN or rept).
    If rept, use an itab to check and insert rows to the DB tab.
    If mod pol, use a table control and update db tab...
    Reward if helpful,
    Karthik

  • Need tables and reports on IS-M/AM

    need tables and reports on IS-M/AM

    Hello Susan,
    Please check this link:
    http://help.sap.com/erp2005_ehp_02/helpdata/en/49/e98c371e558216e10000009b38f889/frameset.htm
    Reg
    assign points if useful

  • Need to create form on a table with report with a table has NO primary key

    Hi, I tried to created some insert/update/delete form+report in an application, it works fine only if the table has primary key. Does anyone know how to create the same functionality with a table with no primary key? I saw an application is built on older version of htmldb that is using tables with no primary keys at all.
    Here are the specific issues that I am facing:
    - I am building some Form on a table with Report, it requires the table with primary key for form to update. Is there a workaround that I can use tables that has no primary keys at all?
    - Say if primary key is necessary in the previous report+form, but the maximum number of columns that I can use to composed a primary is only 2 for that Form-Report, I cannot find anything handling > 2 primary key. Do you know if there are some ways to composite a primary key from many columns together?
    Your help is really appreciated.
    Thanks,
    Angela

    Sorry to ask response so late. I had no time to get back to that issue before.
    Regarding the triggers, I can make it work for the update, but not the insert.
    Here is my trigger:
    create or replace trigger STATUS_T1
    instead of insert on STATUS
    begin
    insert into STATUS ("LABEL", "AREA", "OWNER", "TEST_NAME", "STATUS", "REMARKS", "BUGS", "DEV_MGR", "TEST_BY_DATE")
    values(:new.LABEL, :new.AREA, :new.OWNER, :new.TEST_NAME, :new.STATUS, :new.REMARKS, :new.BUGS, :new.DEV_MGR, :new.TEST_BY_DATE);
    end;
    by any chance, you can notify what is wrong?
    I already skip the ROWID when inserting to the view STATUS, but I cannot figure out what is wrong when inserting a new record to that view.
    It gave me the following errors:
    ORA-06550: line 1, column 38: PL/SQL: ORA-00904: "ID": invalid identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
    Error Unable to process row of table STATUS
    Then, I turned to debug mode, I am thinking that maybe because I use a HIDDEN item to hold the value of ROW_ID as I use the rowid (called ID in the view) to retrieve the record as a column link from previous page. What do you think?
    Thanks again,
    Angela

  • Table in report based on metric data

    Hi!
    I want to add a simple table to report, showing the data from the metric I have in my plug-in. The metric has near 50 columns.
    As far as I understand, I need to write SQL statement that selects from mgmt$metric_current view.
    The problem is that the data is presented 'vertically' in this view, meaning that I have one column with metric column name and another with metric column value, so if I want to get a table that represent my metric I need to write 50 inner joins in my SQL statement, which is extremely unefficient.
    Is there any other way to select metric current data in an efficient way?
    Thanks in advance,
    Alex.

    Alex,
    You do have to write a query to join across MGMT$METRIC_CURRENT to get multiple metric columns into a table.
    But for a reasonably sized table (column-wise), the performance should be fine. Why would you want to have
    a table with 50 columns? You'd have your end user doing quite a bit of horizontal scrolling all of the time; that
    wouldn't be very usable. Perhaps the better approach would be to have a number of tables with selected columns
    in each that are closely related. It seems that even regardless of this, that 50 columns is a lot in a single metric.
    Would it also make sense to break this metric up for usability as well? If so and you had originally put all 50 columns
    in a single metric for performance reasons (i.e. perhaps the overhead to connect to the source is big), you could
    keep that big metric as is, and have sifferent aggregate metrics that just consist of particular subsets of the
    columns. These aggregate metrics aren't "collected" like the base one.
    Dave

  • Joining the tables in report painter/writer

    Friends,
    Can we join tables in report painter / writer?
    Regards
    HK

    Hello
    table joining required if you want a report wherein you need field from more than one table with interlinked field. Then create infoset in SQ02 and use that infoset and create Query in SQ01 and design as per requirement. Abap coding also possible here
    Report writer/pointer you can refer table for any feld requirement, no need to join thats only viewing
    hope I answer u properly
    Regards
    Dinabandhu

  • Creating A Report need PHP MYSQl HElP

    I have a table "officers" table two with 4 fields all with
    variable char which will end up just being names. However, I need
    to create a report that counts each the occurance of each name and
    ouputs the name with the count next to it. The names in table
    "officers" are concatinated from a first name field and last name
    field in a separate table "persons";
    I need some help figuring out how to write this using
    PHP.

    Hi Shashank,
    SQL Server Reporting Services provides a full range of ready-to-use tools and services to help us create, deploy, and manage reports for our organization, as well as programming features that enable us to extend and customize our reporting functionality.
    With Reporting Services, we can create interactive, tabular, graphical, or free-form reports from relational, multidimensional, or XML-based data sources. To create a basic table report, we can refer to the tutorial as below:
    http://msdn.microsoft.com/en-IN/library/ms167305(v=sql.110).aspx
    For more information and tutorials about Reporting Services, please refer to the following documents:
    Reporting Services (SSRS)
    Reporting Services Tutorials (SSRS)
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Form on a Table with Report, 2 Pages

    I have a view and i am using this to create a page as follows for insert/update/delete .
    (1) create application from scratch
    (2) on page 1 using wizard choice "Form on a Table with Report, 2 Pages"
    (3) Follows the screens and create the 2 page where first page is a report and when i click on edit(in my case) it goes to next page for insert/update/delete.Everything like insert/update/delete works fine .
    Now this view has say three columns
    (1) element_type_id
    (2) element_name
    (3) yesnoflag
    changing element_name and yesnoflag column is ok but then i need to have element_type_id corresponding to the element_name from some other table.
    Question1
    How should i get the element_type_id corresponding to the element_name .so when i create a new record it goes to page 2 and i can provide LOV for element_name and enter into yesnoflag, how can i get the element_type_id populated corresponding to the element_name entered.
    Question2
    Also in my application i have name element_type_id as primary key .I am not sure if thats a good idea or should i make element_name as primary key ?
    please help.
    Thanks,
    Sachin

    hey rui--
    by "adjust your html", i simply meant that you should look at your page, think about the html that's being used, and adjust it as necessary to make your data wrap as desired. now that i'm pretty sure i understand your issue, i can tell you the adjustment. you're saying that your form shows your long column "correctly" with data broken up onto separate lines by carriage returns or linefeeds. when you display that same data in your report, those carriage returns ( chr(13) ) and/or linefeeds ( chr(10) ) aren't observed. that's because they don't mean much in regular html. two ways to approach this would be:
    a) replace your carriage returns with explicit <br> tags to get the breaks that you want...
    select test_id, replace(test_description,chr(13)) test_desc from my_table;
    b) wrap your column with <pre> tags to preserve all the original formatting of your data...
    select test_id, '<pre>'||test_description||'</pre>' test_desc from my_table;
    ...and you could, of course, do option B in your report row template if you'd like.
    hope this helps,
    raj

  • Combination of Data from Two Tables in Report

    Hi,
    I am currently building a financial report that pulls data from the activity table. Currently, it displays each activity record, i.e. a date field, a transaction source field, transaction source description and transaction amount. I have another file that pulls saved transactions not part of the activity table. I need to somehow list records from both of these tables together, sorted by date order in the detail section of my report.
    I am still relatively new to this, perhaps this is something obvious?  Is there some way of merging the records from the activity table and the saved transaction table via a formula field?
    Thanks,
    Dave

    ok...if i'm understanding this correctly, you have a date field in both tables and you want to sort by both these fields as if they were one?
    if thats the case, your best bet is probably to create a SQL select statement using the UNION command. In effect creating one table from the two. see http://www.w3schools.com/sql/sql_union.asp
    then, in database expert add a Command using your SQL statement.
    hope that's of use!
    regards,
    dom
    haha....i was beaten to it!
    Edited by: Dom Horton on Oct 29, 2009 2:21 PM

  • Printing Infinite # of Columns in Append Table to Report

    I am in need of a bit of help here in regards to dealing with the Append Table to Report.vi
    With this VI I can print up to a certain # of columns before the VI starts to wrap columns (& subsequent data under each column) downward in vertical manner.
    I am looking for a way to do the following:
    1) center the text in all columns
    2) set a pre-set # of columns per page, and then print the remaining columns to a separate page thereafter
    3) avoid column header & data from being folded beneath to the subsequent row
    See the attached code and print-outs.
    Thanks!
    Solved!
    Go to Solution.
    Attachments:
    Example Test Report.vi ‏36 KB
    Too many columns!.pdf ‏12 KB

    Using the "Append Table to Report" VI, you can't specify center alignment, through if you enable gridlines, it makes the tables more readable.  If you were to generate an Excel report, you would have more control and be able to specify cell alignment.
    In the Report Generation Toolkit, using Standard Report, there is no way to get or automatically print the page number.  You can do it manually by keeping track of how many pages have been printed if your using the "New Report Page" VI.  
    Using the VI script you posted, I modified it to illustrate how to selectively add columns to the report.  Its usually not standard practice for us to write code for customers, but this example seemed good for the Community Example Page (http://www.ni.com/code/), and with your permission I'd like to post it there as well.
    Product Support Engineer
    National Instruments
    Attachments:
    Example_Test_Report_Done.vi ‏43 KB

  • T-code or SAP Table Sales report based on Document Pricing Procedure

    Hi Experts,
    Please suggest me some SAP Standard T-code or Sales Report based on Document Pricing Procedure and Sales Area.
    Or suggest me SAP Table for the above mentioned combination. Thanks in advance.
    With Best Regards,
    Bharat B

    Hi
    There is no standard t code available. You have to go for Zee using the below tables
    first you need to get the VBAK-KALSM(Pricing procedure)or VBRK-KALSM  next you have to pass the VBAK-KALSM to table T683V-KALSM(field) now you will get all the Document Pricing Procedures (KALVG) assigned to these pricing procedures along with sales area.
    So using these tables you can get the required data.
    regards
    Prashanth
    Edited by: Prashanth@SD on Jan 18, 2011 7:58 AM

  • 2 tables - 1 Report

    Hello,
    I tried to search this subject but didn't find anything.
    This is what I'm trying to do:
    I have two tables inside my application. I am creating a report that generates information mostly from table 1 but needs to pull one column from table 2.
    I tried adding the column to the sql source in the report but was receiving an error that reads: column ambiguously defined.
    Here is my SQL:
    SELECT
    "ASSIST_PO"."TOOLING_PO" "TOOLING_PO",
    "ASSIST_PO"."DATE_ENTERED" "DATE_ENTERED",
    "ASSIST_PO"."SUPPLIER" "SUPPLIER",
    "ASSIST_PO"."SHIP_TO_LOCATION" "SHIP_TO_LOCATION",
    "APD"."PART_NUMBER" "PART_NUMBER",
    "ASSIST_PO"."PRODUCTION_PO" "PRODUCTION_PO",
    "ASSIST_PO"."ETD_PRODUCTION_PO" "ETD_PRODUCTION_PO",
    "ASSIST_PO"."HOUSEBILL" "HOUSEBILL",
    "ASSIST_PO"."ENTRY_NUMBER" "ENTRY_NUMBER",
    "ASSIST_PO"."FOLLOW_UP_DATE" "FOLLOW_UP_DATE",
    "ASSIST_PO"."OPEN_CLOSED" "OPEN_CLOSED",
    "ASSIST_PO"."BROKER" "BROKER",
    "ASSIST_PO"."COMMENTS" "COMMENTS"
    FROM
    "#OWNER#"."ASSIST_PO" "ASSIST_PO"
    , ASSIST_PO_DETAIL APD
    Does anyone know if I'm going about this the wrong way?
    Thanks,
    Jess

    I'm trying to Qualify Ambiguous Column Names. I went back and redid what the previous guy said to do because it was giving me a no data in table. Everything works until I put in the column "PART_NUMBER" supplied my code below and I'm receiving a new error:
    1 error has occurred
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00905: missing keyword
    SELECT
    "ASSIST_PO"."TOOLING_PO" "TOOLING_PO",
    "ASSIST_PO"."DATE_ENTERED" "DATE_ENTERED",
    lu1.description"SUPPLIER",
    lu2.description"SHIP_TO_LOCATION",
    apd.part_number"PART_NUMBER",
    "ASSIST_PO"."PRODUCTION_PO" "PRODUCTION_PO",
    "ASSIST_PO"."ETD_PRODUCTION_PO" "ETD_PRODUCTION_PO",
    "ASSIST_PO"."HOUSEBILL" "HOUSEBILL",
    "ASSIST_PO"."ENTRY_NUMBER" "ENTRY_NUMBER",
    "ASSIST_PO"."FOLLOW_UP_DATE" "FOLLOW_UP_DATE",
    "ASSIST_PO"."OPEN_CLOSED" "OPEN_CLOSED",
    "ASSIST_PO"."BROKER" "BROKER",
    "ASSIST_PO"."COMMENTS" "COMMENTS"
    FROM
    "#OWNER#"."ASSIST_PO" "ASSIST_PO" JOIN "ASSIST_PO_DETAIL" apd
    , lookup_codes lu1
    , lookup_codes lu2
    ON ASSIST_PO.PART_NUMBER = apd.PART_NUMBER
    WHERE lu1.lookup_type = 'SUPPLIER'
    and ASSIST_PO.SUPPLIER=lu1.lookup_code
    and lu2.lookup_type = 'SHIP_TO_LOCATION'
    and ASSIST_PO.SHIP_TO_LOCATION=lu2.lookup_code
    and tooling_po = nvl(:p3_TOOLING_PO,tooling_po)
    and (:P3_SUPPLIER is null
    or :P3_SUPPLIER= '%null%'
    or :P3_SUPPLIER = SUPPLIER)
    and (:P3_PRODUCTION_PO is null
    or :P3_PRODUCTION_PO= '%null%'
    or :P3_PRODUCTION_PO= PRODUCTION_PO)
    and (:P3_ENTRY_NUM is null
    or :P3_ENTRY_NUM= '%null%'
    or :P3_ENTRY_NUM= ENTRY_NUMBER)
    As I said before I have two tables each having the same PART_NUMBER Column. I want the PART_NUMBER from the apd table to match the PART_NUMBER in assist_po table.
    Or if I can take the PART_NUMBER column out of the assist_po table and just pull it from the other table to display in the report that would work too.
    Every time I try and join the tables I get errors.
    Thanks,
    Jess

  • Form on a table with report

    HI all
    I have a page type : form on a table with report .
    the table is :
    CREATE TABLE  "SLIKA_USERS"
       (     "ID" NUMBER,
         "USER_NAME" VARCHAR2(20) NOT NULL ENABLE,
         "USER_PASSWD" VARCHAR2(4000),
         "COMPANY" NUMBER(10,0),
         "FORM_TYPE" NUMBER(2,0),
         "USER_NAME_DB" VARCHAR2(20),
         "USER_LOCK" NUMBER(1,0),
         "DATE_PASSWD_CHNG" DATE,
         "LOGIN_DIR" VARCHAR2(30),
          CONSTRAINT "SLIKA_USERS_PK" PRIMARY KEY ("ID") ENABLE,
          CONSTRAINT "USER_NAME_UNQ" UNIQUE ("USER_NAME") ENABLEthe table contain 500 rows.
    in addition , when new user entered there are few processes that give him the USER_NAME_DB automatically by executing a functions etc.
    in a few weeks , new table need to be active instead SLIKA_USERS table
    the new table will look like this :
    CREATE TABLE  "SLIKA_USERS_NEW"
       (     "ID" NUMBER CONSTRAINT "ID_NN" NOT NULL ENABLE,
         "USER_NAME" VARCHAR2(20),
         "USER_PASSWD" VARCHAR2(4000),
         "COMPANY" NUMBER(10,0) CONSTRAINT "COMP_NN" NOT NULL ENABLE,
         "FORM_TYPE" NUMBER(2,0),
         "USER_NAME_DB" VARCHAR2(20),
         "USER_LOCK" NUMBER(1,0),
         "DATE_OPENED" DATE,
         "DATE_PASSWD_CHNG" DATE,
         "LOGIN_DIR" VARCHAR2(30),
         "USER_ID_NUM" NUMBER(9,0) CONSTRAINT "USER_ID_NUM_NN" NOT NULL ENABLE,
         "USER_F_NAME" VARCHAR2(10) CONSTRAINT "USER_F_NAME_NN" NOT NULL ENABLE,
         "USER_L_NAME" VARCHAR2(15) CONSTRAINT "USER_L_NAME_NN" NOT NULL ENABLE,
         "USER_MNG_NAME" VARCHAR2(30) CONSTRAINT "USER_MNG_NAME_NN" NOT NULL ENABLE,
         "LAST_LOGIN_DATE" DATE,
         "DATE_CLOSED" DATE,
          CONSTRAINT "USER_NAME_PK" PRIMARY KEY ("USER_NAME") ENABLE,
          CONSTRAINT "ID_UNQ" UNIQUE ("ID") ENABLE,
          CONSTRAINT "USER_ID_NUM_UNQ" UNIQUE ("USER_ID_NUM") ENABLE,
          CONSTRAINT "USER_NAME_DB_UNQ" UNIQUE ("USER_NAME_DB") ENABLEproblem :
    before inserting new user to table SLIKA_USERS_NEW i need to check if the user_name alreay exists in SLIKA_USERS table .
    i need to take all his details and move them to the new table , in addition as you can see , i need to complete some details like the USER_ID_NUM,USER_F_NAME,USER_L_NAME.
    of curse if this user doesn't exist in the slika_users i need to create him as new user.
    i thought about trigger , unfortunately it won't be a good idea since i don't have in table slika_users
    the USER_ID_NUM" ,     "USER_F_NAME" , "USER_L_NAME"
    another problem is : even if i will manage to overcome the problem of moving data from table slika_users .
    to slika_users_new ,
    to manage it after the tables will switch won't be easy though.
    in a few weeks , the slika_users need to rename to slika_users_old .
    and slika_users_new will rename to slika_users,
    that is a necessary step because lots of pages in the application , relate to the table slika_users ,
    in addition if new user need to create i still need to look if it's exists in the SLIKA_USERS_OLD (after i'll switch between the tables )
    please give idea how to overcome those problems
    Thanks In Advanced
    Naama

    Hello,
    Basically it can be done, but you'll need to do it manually. You can create your basic report, and define two link columns, each to the proper form, which will include the desired columns.
    The problem I see in this kind of solution is a great risk for data integrity, especially in a multi-user environment. It will take time to update both forms, and in between, the table record will contains inconsistent data – the first columns can contains data updated by the first form, but the rest of the columns will still contains an old data.
    Regards,
    Arie.

  • Several CRUDLs again: App from existing table Form on table with report?

    Hi,
    I posted a message a couple of days ago, asking if it was possible to automatically generate several CRUDL gui patterns per application. Later I answer myself discovering that the "Form on table with report" option for creating a page, make just that.
    However, I can see that the option for application level CRUDL (app from existing table) has more functionality (search, export to excel, data analysis, even charts, cool ;-). It creates about 10 pages per table, contrasting with the two created by the "Form on table with report" option. I thought that "Report with form" could be the answer, but it seems just another link to the same option.
    So, once again: is possible to call the functionality of "App from existing table", several times within the same application? (of course each time is likely to refer a distinct table). How do I insistently ask for this? Well, cause I can see in my horizon many applications what will entirely consist of table-maintenance services ... so, with htmldb I could generate them very fast!. In fact, once I have toasted my crudl pattern I would even like to save it and generate the applications on a non interactive basis (maybe calling something in pl/sql?, command line?) ... is that possible?
    Thanks in advance,
    salu2
    dario estepario ..

    Hi Scott,
    Dario - The "create application from existing table"
    functionality was available in 1.6. In 2.0, the
    Create Application wizard has changed. But you can
    create as many sets of pages in the same application
    as you need, all on different tables, using the
    patterns available in that wizard. You can also
    supplement those generated pages later by creating
    chart pages or whatever else you need.Mmm?, ups ... them am I running the 1.6 version? I installed it from the companion cd. Ok, I'll try the separately distributed htmldb version. Thanks.
    >
    At present there is no exposed API to let you do any
    of this programmatically.;-(
    >
    ScottRegards,
    dario estepario ...

Maybe you are looking for

  • Multiple Devices on the same plan?

    I always manage to leave my MiFi Mobile Hot Spot at home for use with equipment there and forget to bring it along when I leave home, travel etc.  Is it possible to add another device such as a USB modem to the same account/plan so I always have acce

  • Same SID for QA & Prd systems - pros and cons?

    We have the foll systems: 1. Enterprise Portal 7.0 2. NWDI 7.0 3. NW 7.0 (with XECO - Ecommerce) 4. TREX 7.1 5. Content Server 6.40 6. ECC 6.0 Currently the QA and Prd systems have the same SID and system/instance no, although they are on different h

  • Ios 8.1.2 music playback

    I plug in my 5s into my car stereo now it won't read it with iOS 8.1.2 worked fine with 8.1.1 just want to control the music with my de kit won't work have to use mu old iPhone 4 with 7.1.2 with iCloud for music

  • Best approach for a cross language application

    I am working on a project where we are planning to write the data acquisition code in LabVIEW, but the rest of the application is being written in C# by some developers that are unfamiliar with LabVIEW. I am looking for suggestions for the best archi

  • Set xsi:nill="true" attribute in XML

    Hi, I'm trying to set the xsi:nill attribute in an XML element by scripting. (Javascript) The setAttribute method doesn't work. And manually adding a new and empty element doesn't work either. When I leave a field which has binding empty, the nill at