Can anyone send the Single Signon implementation guide document?

We need implement the single signon between the PeopleSoft Portal 9.0 and PeopleSoft HCM 9.0, please help post the related implementation and configuration document.

Have a look to that thread :
Re: How to implement Single Sign On
Nicolas.

Similar Messages

  • I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    again image capture is not involved with deleting photos from iPhoto in any way ever
    the paid version of iPhoto Library Manager is very good for finding duplicates as is Duplicate Annihilator
    And I have no idea who told you this - or what it means - but re-read both of my opening statements
    I was told I could delete multpiles thru image capture by transferring my iPhoto library etc
    LN

  • Can anyone explain the array-binary implementation?

    Hi,
    i have a final exam tomorrow, and I got stuck on the array implementation of a binary tree, can anyone please provide me a code that implements the tree non recursively into an array, the book has a recursive code, which i tried to trace, but it got so deep and confusing. Can anyone please help?
    thanks :)
    Edited by: haraminoI on Apr 8, 2009 11:36 PM

    Melanie_Green wrote:
    haraminoI wrote:
    Hi,
    i have a final exam tomorrow, and I got stuck on the array implementation of a binary tree, can anyone please provide me a code that implements the tree non recursively into an array, the book has a recursive code, which i tried to trace, but it got so deep and confusing. Can anyone please help? Ehhh you could find an implementation online.
    Just remember given an array indexed from 0.
    Each indexes left child is (index*2+1), right child is (index*2+2).
    Each indexes parent is ((index-1)/2)
    Melthanks, i tried searching online, but i kept getting the recursive implementation.
    And now i see where to place the binary node and children values in the array, but how do I get the binary tree values from a sorted list in the frist place, thanks! :)

  • Can anyone send me the link related COPA Cubes and Reports

    I guess if you want links on help.sap.com you can search and find the same too!!
    Hi,
    can anyone send me the COPA Standard cubes and Reprots list and
    can anyone send the link where we get the above objects ...
    Regards,
    Suman
    Edited by: Arun Varadarajan on Feb 11, 2009 12:58 PM

    Hi.......
    Go to RSA1 >> Business content >> Click on Object Types >> There click on Infocube >> Expand the node >> Click on Select Objects.............there search for the Term COPA...........u will get all the standard COPA infocubes.......
    Check this.......
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/910aa7a7-0b01-0010-97a5-f28be23697d3
    http://help.sap.com/saphelp_nw70/helpdata/EN/a4/1be541f321c717e10000000a155106/frameset.htm
    Regards,
    Debjani....

  • Can anyone send sample Makefile

    Can anyone send the sample makefile to compile multilple files under different folders. archive/create .so file and link in main folder.

    Here is an example. This source tree contains 2 libraries (lib1 and lib2) and "cmd"
    directory under "src" directory.
    volga% ls -lR
    total 4
    -rw-rw-rw-   1 nikm     staff        844 Jan  2 18:44 Makefile
    drwxrwxrwx   5 nikm     staff        512 Jan  2 17:52 src
    ./src:
    total 6
    drwxrwxrwx   2 nikm     staff        512 Jan  2 17:57 cmd
    drwxrwxrwx   2 nikm     staff        512 Jan  2 18:45 lib1
    drwxrwxrwx   2 nikm     staff        512 Jan  2 18:45 lib2
    ./src/cmd:
    total 2
    -rw-rw-rw-   1 nikm     staff        232 Jan  2 17:57 cmd1.c
    ./src/lib1:
    total 4
    -rw-rw-rw-   1 nikm     staff         33 Jan  2 17:53 lib1f1.c
    -rw-rw-rw-   1 nikm     staff         33 Jan  2 17:54 lib1f2.c
    ./src/lib2:
    total 4
    -rw-rw-rw-   1 nikm     staff         33 Jan  2 17:55 lib2f1.c
    -rw-rw-rw-   1 nikm     staff         33 Jan  2 17:54 lib2f2.cThere is only one makefile, which builds both shared libraries, and then links the binary.
    volga% cat Makefile
    # Makefile
    # Builds lib1.a, lib2.a libraries, and cmd1 binary
    all: cmd1
    # Libraries
    LIBS=$(LIB1) $(LIB2)
    LIB1=lib1.so
    LIB2=lib2.so
    # C Flags
    CFLAGS=-KPIC
    # Target to build binary cmd1
    cmd1: src/cmd/cmd1.c $(LIBS)
            $(LINK.c)  -o  $@  src/cmd/cmd1.c  $(LIBS)
    # Targets to build library lib1.so
    LIB1SRCDIR=src/lib1
    LIB1OBJ=$(LIB1SRCDIR)/lib1f1.o $(LIB1SRCDIR)/lib1f2.o
    $(LIB1SRCDIR)/%.o: $(LIB1SRCDIR)/%.c
            $(COMPILE.c)  -o  $@  $<
    $(LIB1): $(LIB1OBJ)
            $(LINK.c)  -o  $@  -G  $(LIB1OBJ)
    # Targets to build library lib2.so
    LIB2SRCDIR=src/lib2
    LIB2OBJ=$(LIB2SRCDIR)/lib2f1.o $(LIB2SRCDIR)/lib2f2.o
    $(LIB2SRCDIR)/%.o: $(LIB2SRCDIR)/%.c
            $(COMPILE.c)  -o  $@  $<
    $(LIB2): $(LIB2OBJ)
            $(LINK.c)  -o  $@  -G  $(LIB2OBJ)
    # Targets clean and clobber
    clean:
            rm -f  $(LIB1OBJ)  $(LIB2OBJ)
    clobber: clean
            rm -f  cmd1  $(LIB1)  $(LIB2)
    .KEEP_STATE:Target ".KEEP_STATE:" is used to rebuild the binary if any source file is updated.
    Here is an output of "make" command:
    volga% make
    cc -KPIC  -c  -o  src/lib1/lib1f1.o  src/lib1/lib1f1.c
    cc -KPIC  -c  -o  src/lib1/lib1f2.o  src/lib1/lib1f2.c
    cc -KPIC    -o  lib1.so  -G  src/lib1/lib1f1.o src/lib1/lib1f2.o
    cc -KPIC  -c  -o  src/lib2/lib2f1.o  src/lib2/lib2f1.c
    cc -KPIC  -c  -o  src/lib2/lib2f2.o  src/lib2/lib2f2.c
    cc -KPIC    -o  lib2.so  -G  src/lib2/lib2f1.o src/lib2/lib2f2.o
    cc -KPIC    -o  cmd1  src/cmd/cmd1.c  lib1.so lib2.soThis makefile allows to build independent targets in parallel, so we can use "dmake" in
    parallel mode:
    volga% dmake -m parallel -j 4
    volga --> 1 job
    cc -KPIC  -c  -o  src/lib1/lib1f1.o  src/lib1/lib1f1.c
    volga --> 2 jobs
    cc -KPIC  -c  -o  src/lib1/lib1f2.o  src/lib1/lib1f2.c
    volga --> 3 jobs
    cc -KPIC  -c  -o  src/lib2/lib2f1.o  src/lib2/lib2f1.c
    volga --> 4 jobs
    cc -KPIC  -c  -o  src/lib2/lib2f2.o  src/lib2/lib2f2.c
    volga --> 3 jobs
    cc -KPIC    -o  lib1.so  -G  src/lib1/lib1f1.o src/lib1/lib1f2.o
    volga --> 2 jobs
    cc -KPIC    -o  lib2.so  -G  src/lib2/lib2f1.o src/lib2/lib2f2.o
    volga --> 1 job
    cc -KPIC    -o  cmd1  src/cmd/cmd1.c  lib1.so lib2.soThis makefile works for GNU make as well:
    volga% gmake -j 4   
    cc -KPIC   -c  -o  src/lib1/lib1f1.o  src/lib1/lib1f1.c
    cc -KPIC   -c  -o  src/lib1/lib1f2.o  src/lib1/lib1f2.c
    cc -KPIC   -c  -o  src/lib2/lib2f1.o  src/lib2/lib2f1.c
    cc -KPIC   -c  -o  src/lib2/lib2f2.o  src/lib2/lib2f2.c
    cc -KPIC     -o  lib1.so  -G  src/lib1/lib1f1.o src/lib1/lib1f2.o
    cc -KPIC     -o  lib2.so  -G  src/lib2/lib2f1.o src/lib2/lib2f2.o
    cc -KPIC     -o  cmd1  src/cmd/cmd1.c  lib1.so lib2.soThanks,
    Nik

  • Can anyone send/post me the code for RTP server which reads soundcard

    hi all,
    can anyone send me the code for RTP server which reads soundcard and RTP client to tranmit the sound.

    How much are you going to pay?

  • Can anyone send me the CRM OD ER diagram.

    Hi
    Can anyone send me the crm od ER diagram to [email protected]? thanks a lot

    There are some older documents that are out there on the web, but I don't believe you will be able to get an update version. I've asked every person from Oracle that I can get a hold of and got nothing recent. I actually asked one of the analytics presenter at OpenWorld at the beginning of October and the answer they gave me was "I know it would be helpful, but we can't distribute it".
    Look at the JoinField() documentation in the Help File and you get a good idea for how the objects can be joined since it has the key relationships. Also, spending some time in the Advanced Custom Objects reporting area helps.

  • Can anyone send me the 1easyIO.llb library file ?

    I need the library file "1easyIO.llb".  Can anyone send it to me/post it/ send me a link to download the same.
    I have labview 8.2 and did install DAQ-mx drivers. But 1easyIO.llb was not a part of this installation.

    I know that. If you do have traditional DAQ installed and hence the 1easyIO.llb under the directory <National Instruments\Labview\DAQ>, can you post that here? I will really appreciate it !!!!!
    Message Edited by Support on 12-14-2007 04:51 PM

  • Can anyone send me the Responsibilities of a SAP-BW Consultant ?

    hi SAP-BW Gurus,
           Can anyone send me the Responsibilities of a SAP-BW Consultant ?
    I am sending this question because i am fresher and i don't know the responsibilities of a BW Consultant ?
    Pls send me the Ans to My EmailId : [email protected]
    thanks inadvance,
    Regards,
    Raju

    hi,
    Check below link
    http://sap-img.com/business/difference-between-bw-technical-and-functional.htm
    If you work on a specific Application area in BW like say FI, MM, PP , etc. you are a BW functional. They rather look for the functionality and not for the underlying code.
    But if you are working across application areas then you are BW technical. They are the ones who do all the development like creating BW objects and activating them, developing BW objects according to the design specs(FS and TS),data modeling skills,ABAP coding skills for routines and exits.Sort of skills required by person working in development phase of work
    Generally BW Technical people are expected to have some basic functional knowledge. But if they really have very good functional knowledge in atleast one application area then they are generally called "Techno-functional Consultants".
    Their work includes to look into Functioanlity and also desing and development of the BW objects.
    Hope it helps...

  • Can we send the data into different data target from single datasource how

    Hai
    can we send the data into different data target from single datasource how ?

    Hi,
    Create the transformation for each target and connect through DTP if you are in BI 7.0
    If it is BW 3.5 create transfer rules and load it Info source and then different update rules for different targets then load it using IP.
    If you are speaking about loading data from R3 data source to multiple data sources in BI
    Then follow the below step.
    1)create init IP's and run the IP's with different selection to different DSO(With same selection it is not possible).
    2)Then you will have different delta queues for the same data source in RSA7
    3)Your delta loads will run fine to different data sources from same DS in R3.
    Hope this helps
    Regards,
    Venkatesh

  • HT3775 can anyone send me the download link so i can play MPEG movie on my iMAC

    Can anyone send me the download link so i can play Quick time MPEG movie on my iMAC.
    THANKS

    If it is a QuickTime movie it should play as is. No need to download anything.
    If it doesn't play in QuickTime, try VLC.

  • Can anyone send tutor for performance tuning?

    can anyone send tutor for performance tuning?I like to chk my coding.

    1.      Unused/Dead code
    Avoid leaving unused code in the program. Either comment out or delete the unused situation. Use program --> check --> extended program to check for the variables, which are not used statically. 
    2.      Subroutine Usage
    For good modularization, the decision of whether or not to execute a subroutine should be made before the subroutine is called. For example:  
    This is better:
    IF f1 NE 0.
      PERFORM sub1.
    ENDIF. 
    FORM sub1.
    ENDFORM.  
    Than this:
    PERFORM sub1.
    FORM sub1.
      IF f1 NE 0.
      ENDIF.
    ENDFORM. 
    3.      Usage of IF statements
    When coding IF tests, nest the testing conditions so that the outer conditions are those which are most likely to fail. For logical expressions with AND , place the mostly likely false first and for the OR, place the mostly likely true first. 
    Example - nested IF's:
      IF (least likely to be true).
        IF (less likely to be true).
         IF (most likely to be true).
         ENDIF.
        ENDIF.
       ENDIF. 
    Example - IF...ELSEIF...ENDIF :
      IF (most likely to be true).
      ELSEIF (less likely to be true).
      ELSEIF (least likely to be true).
      ENDIF. 
    Example - AND:
       IF (least likely to be true) AND
          (most likely to be true).
       ENDIF.
    Example - OR:
            IF (most likely to be true) OR
          (least likely to be true). 
    4.      CASE vs. nested Ifs
    When testing fields "equal to" something, one can use either the nested IF or the CASE statement. The CASE is better for two reasons. It is easier to read and after about five nested IFs the performance of the CASE is more efficient. 
    5.      MOVE statements
    When records a and b have the exact same structure, it is more efficient to MOVE a TO b than to  MOVE-CORRESPONDING a TO b.
    MOVE BSEG TO *BSEG.
    is better than
    MOVE-CORRESPONDING BSEG TO *BSEG. 
    6.      SELECT and SELECT SINGLE
    When using the SELECT statement, study the key and always provide as much of the left-most part of the key as possible. If the entire key can be qualified, code a SELECT SINGLE not just a SELECT.   If you are only interested in the first row or there is only one row to be returned, using SELECT SINGLE can increase performance by up to three times. 
    7.      Small internal tables vs. complete internal tables
    In general it is better to minimize the number of fields declared in an internal table.  While it may be convenient to declare an internal table using the LIKE command, in most cases, programs will not use all fields in the SAP standard table.
    For example:
    Instead of this:
    data:  t_mara like mara occurs 0 with header line.
    Use this:
    data: begin of t_mara occurs 0,
            matnr like mara-matnr,
            end of t_mara. 
    8.      Row-level processing and SELECT SINGLE
    Similar to the processing of a SELECT-ENDSELECT loop, when calling multiple SELECT-SINGLE commands on a non-buffered table (check Data Dictionary -> Technical Info), you should do the following to improve performance:
    o       Use the SELECT into <itab> to buffer the necessary rows in an internal table, then
    o       sort the rows by the key fields, then
    o       use a READ TABLE WITH KEY ... BINARY SEARCH in place of the SELECT SINGLE command. Note that this only make sense when the table you are buffering is not too large (this decision must be made on a case by case basis).
    9.      READing single records of internal tables
    When reading a single record in an internal table, the READ TABLE WITH KEY is not a direct READ.  This means that if the data is not sorted according to the key, the system must sequentially read the table.   Therefore, you should:
    o       SORT the table
    o       use READ TABLE WITH KEY BINARY SEARCH for better performance. 
    10.  SORTing internal tables
    When SORTing internal tables, specify the fields to SORTed.
    SORT ITAB BY FLD1 FLD2.
    is more efficient than
    SORT ITAB.  
    11.  Number of entries in an internal table
    To find out how many entries are in an internal table use DESCRIBE.
    DESCRIBE TABLE ITAB LINES CNTLNS.
    is more efficient than
    LOOP AT ITAB.
      CNTLNS = CNTLNS + 1.
    ENDLOOP. 
    12.  Performance diagnosis
    To diagnose performance problems, it is recommended to use the SAP transaction SE30, ABAP/4 Runtime Analysis. The utility allows statistical analysis of transactions and programs. 
    13.  Nested SELECTs versus table views
    Since releASE 4.0, OPEN SQL allows both inner and outer table joins.  A nested SELECT loop may be used to accomplish the same concept.  However, the performance of nested SELECT loops is very poor in comparison to a join.  Hence, to improve performance by a factor of 25x and reduce network load, you should either create a view in the data dictionary then use this view to select data, or code the select using a join. 
    14.  If nested SELECTs must be used
    As mentioned previously, performance can be dramatically improved by using views instead of nested SELECTs, however, if this is not possible, then the following example of using an internal table in a nested SELECT can also improve performance by a factor of 5x:
    Use this:
    form select_good.
      data: t_vbak like vbak occurs 0 with header line.
      data: t_vbap like vbap occurs 0 with header line.
      select * from vbak into table t_vbak up to 200 rows.
      select * from vbap
              for all entries in t_vbak
              where vbeln = t_vbak-vbeln.
      endselect.
    endform.
    Instead of this:
    form select_bad.
    select * from vbak up to 200 rows.
      select * from vbap where vbeln = vbak-vbeln.
      endselect.
    endselect.
    endform.
    Although using "SELECT...FOR ALL ENTRIES IN..." is generally very fast, you should be aware of the three pitfalls of using it:
    Firstly, SAP automatically removes any duplicates from the rest of the retrieved records.  Therefore, if you wish to ensure that no qualifying records are discarded, the field list of the inner SELECT must be designed to ensure the retrieved records will contain no duplicates (normally, this would mean including in the list of retrieved fields all of those fields that comprise that table's primary key).
    Secondly,  if you were able to code "SELECT ... FROM <database table> FOR ALL ENTRIES IN TABLE <itab>" and the internal table <itab> is empty, then all rows from <database table> will be retrieved.
    Thirdly, if the internal table supplying the selection criteria (i.e. internal table <itab> in the example "...FOR ALL ENTRIES IN TABLE <itab> ") contains a large number of entries, performance degradation may occur.
    15.  SELECT * versus SELECTing individual fields
    In general, use a SELECT statement specifying a list of fields instead of a SELECT * to reduce network traffic and improve performance.  For tables with only a few fields the improvements may be minor, but many SAP tables contain more than 50 fields when the program needs only a few.  In the latter case, the performace gains can be substantial.  For example:
    Use:
    select vbeln auart vbtyp from table vbak
      into (vbak-vbeln, vbak-auart, vbak-vbtyp)
      where ...
    Instead of using:
    select * from vbak where ... 
    16.  Avoid unnecessary statements
    There are a few cases where one command is better than two.  For example:
    Use:
    append <tab_wa> to <tab>.
    Instead of:
    <tab> = <tab_wa>.
    append <tab> (modify <tab>).
    And also, use:
    if not <tab>[] is initial.
    Instead of:
    describe table <tab> lines <line_counter>.
    if <line_counter> > 0. 
    17.  Copying or appending internal tables
    Use this:
    <tab2>[] = <tab1>[].  (if <tab2> is empty)
    Instead of this:
    loop at <tab1>.
      append <tab1> to <tab2>.
    endloop.
    However, if <tab2> is not empty and should not be overwritten, then use:
    append lines of <tab1> [from index1] [to index2] to <tab2>.
    P.S : Please reward if you find this useful..

  • Can anyone give the details of SAP note 325525 .

    Hai
    Can anyone give the details of SAP note 325525 .
    Thanks
    Kumar

    What exactly do you want. Is that just the explanation in the note: If so, here it is.
    Summary
    Symptom
    WARNING: THIS NOTE HAS BEEN REPLACED.  FOR MORE CURRENT AND MORE COMPREHENSIVE INFORMATION SEE NEW NOTE 886102.
    You want to copy and or rename one or more systems (database or client copy). One or more of the systems is a BW system or is connected to a BW system.
    Caution: This note only deals with problems that occur in the BW source system connections. Other problems that occur in the BW environment (indexes) are NOT dealt with. See URL http://www.service.sap.com/bw --> Services & Implementation --> System copy & Migration.
    Other terms
    BW, source system, OLTP, database copy, client copy, system infrastructure, transport system, connections, RFC connection, trfc, transfer structure, IDoc, ALE customizing, logical system name, system changeability, renaming systems, system copy
    Solution
    Several scenarios are possible in this environment. Find the scenario relevant to your situation below and execute the steps listed or read the note(s) specified:
    Scenario 1) You do not want to copy a system but only want to rename one (changing a logical system name).
               Solution scenario 1): Execute Transaction BDLS both in the client to be renamed and in the connected BWs or BW source systems. To do this, see Notes 121163 and 369758.
               Check the RFC destinations in all connected BWs/BW source systems as described in Note 524554.
               Reactivate all partner agreements that carry the new logical system name after renaming.
    Scenario 2) You want to copy the entire system infrastructure connected by the BW source system connections (that means the entire system group) by a database copy. SAP recommends this procedure for copying systems.
               Solution scenario 2):
    If you want to rename one or more of the copied systems, then execute Transaction BDLS both in the client you wish to rename and in all the connected BW and BW source systems. See Note 121163.
                        Make sure that an RFC destination exists with the new logical name in every connected BW or BW source system.
                        Reactivate all partner agreements that carry the new logical system name after renaming.
    Change the hosts in the appropriate RFC destinations so that they refer to the correct computer. For this, see Note 524554.
    Scenario 3) You want to copy a single BW system of the group by database copy.
    Scenario 3)a) You only want to exchange the hardware of your system but do not want to rename the system.
                         Solution scenario 3)a): You do not need to execute follow-up work regarding the system connections, except for adjusting the IP address in the RFC destinations of the connected system.
    Scenario 3)b) You want to keep the original system of the copy so that you have two systems after copying.
                         Solution scenario 3)b): See Note 184754.
    Scenario 4) You want to copy a single source system of the group by database copy.
    Scenario 4)a) You only want to exchange the hardware of your system but do not want to rename the system.
                         Solution scenario 4)a): You do not need to execute follow-up work regarding the system connections, except for adjusting the IP address in the RFC destinations of the connected system.
    Scenario 4)b) You want to keep the original system of the copy so that you have two systems after copying.
               Solution scenario 4)b): See Note 184322.
    Scenario 5) You want to import a client copy in a source system.
               Solution scenario 5): See Note 325470.

  • Hi all can anyone send docs for Report Designer bi7.0

    hi all,
    Can anyone send me the documents for report designer bi 7.0.
    regds
    hari

    hi hari,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/910aa7a7-0b01-0010-97a5-f28be23697d3
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4487dd91-0b01-0010-eba1-bcd6419
    /people/michael.eacrett/blog/2006/06/07/whats-new-in-sap-netweaver-702004s--an-introduction-to-the-functionality-deltas-and-major-changes
    http://searchsap.techtarget.com/cgi-bin/rd.pl/ftID-1121728-ctID-1064004?//expert/KnowledgebaseAnswer/0,289625,sid21_gci1064004,00.html
    http://help.sap.com/saphelp_nw04s/helpdata/en/9d/24ff4009b8f223e10000000a155106/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10564d5c-cf00-2a10-7b87-c94e38267742
    http://wiki.ittoolbox.com/index.php/Upgrade_BW_to_Netweaver_2004s_from_v3.0B
    http://help.sap.com/saphelp_nw70/helpdata/en/88/4d354277dcb26be10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5c46376d-0601-0010-83bf-c4f5f140e3d6
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a4/1be541f321c717e10000000a155106/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b3/05154219fce12ce10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b3/05154219fce12ce10000000a1550b0/frameset.htm
    hope this helps..

  • Can I send the zoomed portion of a signal from data view to the next step

    I get a zoom window on Data View when I select it.  Can I send the zoomed portion to the next step or use it in any way?  If I Create VI with this,  will the zoomed portion show up in the VI?   Will a graph of any kind show up in the VI?

    Hi,
    Thankyou for posting to the National Instruments Forums.
    The feature you are looking for is the Subset and Resample step which may not be the exact thing you are looking for. If indeed this does not fulfil your needs we would love to hear about what features you would like implemented at the Product Suggestion Center.
    Hope this helps!
    Abhinav T.
    Applications Engineering
    National Instruments India
    LabVIEW Introduction Course - Six Hours
    Getting Started with NI-DAQmx
    Measurement Fundamentals

Maybe you are looking for

  • Dsc opc shared variables yields Server Failure

    I've been struggling with the transition from DSC 7.1 to 8+ ever since the release of version 8. I use the Allen Bradley OPC server supplied with the DSC module (Industrial Automation OPC Servers v 5.1) to communicate with a PLC 5/30 via Ethernet, or

  • How do increase the file system size

    Hi friends, My newly installed solaris 10 system shows Filesysem full error. By mistake space allocated for Root is very less and 98% of the space in Root is consumed. Do i need to restructure entire filesystem or increase space in Root would be suff

  • Error in BWOM2_TIMEST while loading

    Hi experts, I tried loading delta for  0CO_OM_OPA_6 and got the following message in R3: Short text of error message:                                            System could not find time stamp in BWOM2_TIMEST table for DataSource 0C O_OM_OPA_6      

  • Stored precedure

    Hi My client has approval procedures associated with profit centres so when a user selects a certain profit centre it triggers an approval template. In some instances the purchase order triggers more than one approval template like when certain GL ac

  • Large blue pixelated spots on my image

    I just opened a low resolution .jpg in ACR CS5 and  it is showing up in the main window with large blue pixelated spots over it. What is this? Thanks.