Charting Function for V2.0?

Total Newb here,
I'm looking for some sort of "Charting" function in SignalExpress 2.0.
I'm using an SCXI-1000 with a 1520 bridge board. I'd like to display real-time historical data over say, 60 seconds. I was told by our field rep months ago that a charting feature was being built in natively in V_2.0. Before that I had a seperate VI written for charting that worked okay but lacked any configuration controls.
Thanks
SCXI- 1000 Chassis w/ 1346 adapter
PCI 6281 DAQ card
SCXI- 1520 Bridge Board w/ 1314 Terminal Block (x2)
SCXI- 1180 Feedthrough Panel w/ 1302 Block
Signal Express 2014.
Win7 Enterprise

Hi CabShake,
It sounds like you would like SignalExpress to show data as it is acquired to the main data view. SignalExpress functions by displaying data by groups of samples, the Samples to Read in fact. What this means is if I configure SignalExpress to Acquire 10 samples at a rate of 1 Sample/Second then it will take 10 seconds to acquire this data.
   Total Sampling Time = Number of Samples to Acquire / Sampling Rate
                                      =  10 samples / 1 samples / sec = 10 sec
So, try the following experiment and prove this to yourself:
  1. Create a new project.
  2. Add a step: Acquire Signals->DAQmx Acquire->Analog Input->Voltage
  3. Hold Ctrl and select several analog input channels for display
  4. Click Ok
  5. Configure the Acquisition Mode as Continous
  6. Configure the Samples to Read as 10, the Rate as 1 hz.
  7. Run the project
  8. Observe how the graph updates.
  9. Now increase the rate to 10 samples/sec, now the graph will update all 10 samples in 1 second.
If the total time to acquire the group of samples exceeds 10 seconds then you will need to change the default timeout, this is done in the
 advanced timing Tab.
Please post back if this isn't sufficient to answer your question of how to display data at a realtime rate on the graph in SignalExpress.
Scalars: real numbers. Whereas a waveform would have t0, dt and scalar values attached to it.
Best regards,
MatthewW
Applications Engineer
National Instruments

Similar Messages

  • Can I use "dvt" function for customizing the chart format in OBIEE 11g?

    Hi,
    ".pcxml" file cannot be found in OBIEE11g. However, can I use "dvt" function for customization? If yes, how?
    Reference for dvt function:
    http://docs.oracle.com/cd/E23943_01/apirefs.1111/e12418/tagdoc/dvt_pieGraph.html

    Hello,
    I know it's possible, because i already found some blogs about changing the chart colors and turning off the animated graphs.
    <Graph visualEffects="NONE" animationDuration="0">
    But we want to alter more chart options, like make a bar chart default stacked. In 10G this was possible. I think this is also
    possible in 11G through the dvt-graph-skin.xml, but what i want to know is, is there a document that explains which tags you could use in this file.
    It would be great to get some help on this.

  • What is the best way to create a SSRS 2005 Line Chart Report for a 12 month period?

    I'm looking for advice on how to create a SQL Server 2005 query and line chart report for SSRS 2005.
    I need to display the peak number of patients assigned to a medical practice each month for a 12 month period based on the end-user selecting a
    single month and year.
    I've previously created a report that displays all patients assigned to the practice for any single month but I’m looking for advice on how to
    how to produce a resultset that shows the peak number of patients each month for a 12 month period. I thought about creating a query that returns the peak count for each month (based on my previously created report which displays all patients assigned to the
    practice for any single month) and then use a UNION statement to join all 12 months but I'm sure that isn't the most efficient way to do this. The other challenge with this approach (twelve resultsets combined via a UNION) is that the end-user needs to be
    able to select any month and year for the parameter and the report needs to display the 12 month period based on the month selected (the month selected would be the last month of the 12 month period).
    For the report I’ve previously created that displays all patients assigned to the practice for any single month, the WHERE statement filters the
    resultset on two fields:
    Start Date - The date the patient was assigned to the practice. This field is never null or blank.
    End Date - The date the patient left the practice. This field can be null or blank as active patients assigned to the practice do not have an End Date. When the patient
    leaves the practice, the date the patient left is populated in this field.
    Using these two fields I can return all patients assigned to the practice during Nov 2012 by looking for patients that meet the following criteria:
    start date prior to 11/30/2012 (using the last day of the month selected ensures patients added mid-month would be included)
    AND
    end date is null or blank (indicates the patient is active) OR the end date is between 11/1/2012 -11/30/2012 (returns patients that leave during the month
    selected)
    Regarding the query I need to create for the report that displays the peak count each month for 12 months, I'm looking for advice on
    how to count patients for each month the patient is assigned to the practice if the patient has been assigned for several months (which applies to most patients). Examples are:
    John Doe has a start date of 6/01/2012 and an End Date of 10/07/2012
    Sally Doe has a start date of 8/4/2012 and no End Date (the patient is still active)
    Jimmy Doe has a  start of 7/3/2012 and an End Date of 9/2/2012
    Given these examples how would I include John Doe in the peak monthly count each month for May - October, Sally Doe in the peak monthly count for
    August - December and Jimmy Doe in the peak monthly count for July – Sept if the end-user running the report selected December 2012 as the parameter?
    Given the example above and the fact I'm creating a line chart I think the best way to create this report would be a resultset that looks like
    this:
    Patient Name              
    Months Assigned
    John Doe
    June 2012
    John Doe                     
    July012
    John Doe                     
    Aug 2012
    John Doe                     
    Sept 2012
    John Doe
    Oct 2012
    Sally Doe                     
    Aug 2012
    Sally Doe                     
    Sept 2012
    Sally Doe
    Oct 2012
    Sally Doe                     
    Nov 2012
    Sally Doe
    Dec 2012
    Jimmy Doe                  
    July 2012
    Jimmy Doe
    Aug 2012
    Jimmy Doe
    Sept 2012
    From the resultset above I could create another resultset that would count\group on month and year to return the peak count for each month:
    June 2012 - 1
    July 2012 – 2
    Aug 2012 - 3
    Sept 2012 - 3
    Oct 2012 - 2
    Nov 2012 - 1
    Dec 2012 - 1
    The resultset that displays the peak count for each month would be used to create the line chart (month would be the X axis and the count would
    be the y axis).
    Does this sound like the best approach?
    If so, any advice on how to create the resultset that lists each patient and each month they were assigned to the practice would be greatly appreciated.
    I do not have permissions to create SPs or Functions within the database but I can create temp tables.
    I know how to create the peak monthly count query (derived from the query that lists each patient and month assigned) as well as the line chart.
    Any advice or help is greatly appreciated.

    Thanks for the replies. I reviewed them shortly after they were submitted but I'm also working on other projects at the same time (hence the delayed reply).
    Building a time table and doing a cross join to my original resultset gave me the desired resultset of the months assigned between dates. What I can't figure out now is how to filter months I don't want. 
    Doing a cross  join between my original resultset that had two dates:
    08/27/2010
    10/24/2011
    and a calendar table that has 24 rows (each month for a two year period)
    my new resultset looks like this:
    I need to filter the rows in yellow as the months assigned for stage 3 that started on 8/27/2010 should stop when the patient was assigned to stage 4 on 10/24/2011.
    You'll notice that Jan - Sept 2011 isn't listed for Stage 4 assigned on 10/24/2011 as I included a filter in the WHERE clause that states
    the Months Assigned value must be greater than or equal to the date assigned value.
    Any advice would be appreciated.

  • Install error for Chart Server for Siebel 8.1.1.1

    Hello all,
    I have Siebel 8.1.1.0 installed, and the 8.1.1.1 patch applied. It's been stable for a while now, but I've decided to get the charts functionality working, and am having trouble with the installer.
    Basically, I get library errors, and the installer won't start. I've tried playing around with LD_LIBRARY_PATH (which helped in the Siebel install), but still nothing. I've tried running it through putty and VNC Viewer, with no luck.
    I suspect that I'm missing something in my Linux 5.1 environment, which is a virtual machine using Amazon Web Services. Unfortunately I'm not much of a Linux guy, and don't want to start playing around unless I have an idea what needs to be done. It's a bit frustrating since the other Siebel install programs run ok.
    Any thoughts/suggestions would be very much appreciated..
    Thanks,
    Jon
    PS - Here are the process/errors I am getting:
    Login as Oracle user and navigate to:
         /u05/Siebel_Install/Siebel_Install_Image_81/8.1.1.0/Linux/Server_Ancillary/Visual_Mining_Netcharts_Server/enu/unix
    Execute:
    ./NetChartsServer4.6SiebelEdition.linux.bin
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object
    file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared obj
    ect file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared ob
    ject file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared ob
    ject file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared obj
    ect file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared ob
    ject file: No such file or directory
    hostname: error while loading shared libraries: libc.so.6: cannot open shared ob
    ject file: No such file or directory
    Launching installer...
    grep: error while loading shared libraries: libc.so.6: cannot open shared object
    file: No such file or directory
    /tmp/install.dir.25010/Linux/resource/jre/bin/java: error while loading shared l
    ibraries: libpthread.so.0: cannot open shared object file: No such file or direc
    tory
    bash-3.1$
    bash-3.1$ ./NetChartsServer4.6SiebelEdition.linux.bin
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    Launching installer...
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /tmp/install.dir.25136/Linux/resource/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    PPS - I also did a find / -name 'libc.so.6' and got the following:
    /lib/i686/nosegneg/libc.so.6
    /lib/libc.so.6
    /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6
    /u02/Apache/lib/stubs/libc.so.6
    When I try putting the /u01/app/.. path into my LD_LIBRARY_PATH, I get similar errors to below, it tells me:
    hostname: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libsepol.so.1)
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    awk: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by awk)
    dirname: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by dirname)
    /bin/ls: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /bin/ls)
    /bin/ls: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libacl.so.1)
    /bin/ls: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libselinux.so.1)
    /bin/ls: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libattr.so.1)
    /bin/ls: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libsepol.so.1)
    basename: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by basename)
    dirname: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by dirname)
    basename: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by basename)
    hostname: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by hostname)
    hostname: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libselinux.so.1)
    hostname: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libsepol.so.1)
    Launching installer...
    grep: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by grep)
    grep: /u01/app/oracle/product/11.1.0/db_1/lib/stubs/libc.so.6: version `GLIBC_2.4' not found (required by /lib/libpcre.so.0)
    Segmentation fault

    We experienced similar issue on our installation. Worked with Oracle support, and seems like you need to change the environment variable settings on the linux and .bin file. Here is what we have changed and we were able to install charts in 8.1.1.1 Linux environment.
    With Oracle expert help, we figured out that the .bin file needed to be changed. we did the following on our second QA server to run the installer without setting any other environment variables:
    a. identified the above files by using find / -name <filename> to find the location.
    b. checked whether it is their in the env varialbles.
    c. more than one location was found . some of them were like /usr/lib and /lib etc. even there was a file by the name in siebsrvr/lib and gtwysrvr/lib etc
    d. when we add this in the LD_LIBRARY_PATH and PATH, then the error was different than what we saw first time.
    e. this clearly shows that there is something wrong with the environment variables.
    h. as per this, he has to comment out two places of LD_LIBRARY_PATH. he did this. saved the *.bin file to a new bin file
    i. uncomment LD_ASSUME_KERNEL variable.
    J.then set DISPLAY. The installer worked fine.
    k.. the issue was with the bin file provided and the solution is mentioned in the above linke.
    1. cd ${install_image}/8.1.1.1/Linux/Server_Ancillary/Visual_Mining_Netcharts_Server/enu/unix
    2. export DISPLAY=${my_ip}:0.0
    3. sh NetChartsServer4.6SiebelEdition.linux.bin
    Hope this helps.
    Edited by: user10243604 on Jul 23, 2010 10:18 AM

  • How can I make a spectrogra​m from a soundwavef​orm using the intensity chart function?

    I want to make a spectrogram for a sound waveform where the x-axis is time, the y-axis is frequency, and the intensity is amplitude. I performed a DFT on the sound waveform, then used it as an input to the intensity chart function. Every time I run my program the x-axis has a scale from 0 to 1 sec, when my sound is longer. The y-axis doesn't give me the same range of frequencies as the DFT. The intensity scale is correct. Can anyone suggest another approach? The labview example did not help since I'm not generating an array and creating the intensity chart at the same time.

    Hello -
    You could probably use a 3D surface graph.
    I am including an attachment to show you what I mean. This example program is available here. I just made a few modifications to make it look as an intensity graph:
    1. By right clicking on the graph and going to CWGraph3D >> Properties and selecting the Grid Planes tab in the Graph tab, I unchecked the grids, to show just the graph. Then, I went to the 3D tab in the Graph tab, and selected Towards X-Y Plane in the View Direction section. Click OK.
    2. Then, I right clicked on the graph again and went to Advanced >> Enabled State and selected Disabled, so
    that the user cannot change the orientation any more.
    You can build your own plot using time and frequency as X & Y, and the amplitude will give you the color. You only need to adjust the orientation so that you can see it from �the top� and it looks like an intensity plot.
    Hope this helps.
    Attachments:
    XYZ_Plot_Example.zip ‏57 KB

  • Chart function worked, then grayed out

    I have a spreadsheet with about 800 rows and analyzing text data using countifs.  I've already done a bunch of charts this way, just tried one and got a nice stacked column chart but it did not have the axes labeled. I looked at the way I had done previous charts and then included the axis titles in the range I selected to make the chart. Now ALL my chart functions are grayed out and I cannot make a chart!! I cannot even make a chart with a simple selection of table number values without the axis labels.  What is going on??

    Hi KG,
    The default behavioour is for the 'Blank' templates to produce a document with a single sheet, containing a single table. The table has one header row and one header column.
    The charts don't assume anything regarding the top row or left column of the selected range.
    If the left column is a Header column, then the chart is able to, and will use the entries in that column as labels.If it is not a Header column, the chart will not use those entries as labels. The case for the top row is similar. No assumption is involved in either case.
    Regards,
    Barry

  • BI IP --- Planning function for File Upload

    Hai All,
    In BI IP , When I am trying to load the data (text file) by using Planning function for File Upload. I am getting an error message When I am clicking on Update .
    Error Message : Inconsistent input parameter (parameter: <unknown>, value <unknown>).
    In Text file I am using Tab Separation for each value
    Anyone help me out.
    Thanks,
    Bhima

    Hi Bhima
    Try one of these; it should work:
    1. If you are on SP 14 you would need to upgrade to SP 15. It would work fine
    2. If not, then -
         a] apply note 1070655 - Termination msg CL_RSPLFR_CONTROLLER =>GET_READ_WRITE_PROVIDS
         b] Apply Correction Instruction 566059 [i.e: in Object - CL_RSPLFR_CONTROLLER GET_READ_WRITE_PROVIDS,
    delete the block: l_r_alvl = cl_rspls_alvl=>factory( i_aggrlevel = p_infoprov ).
    and insert block - l_r_alvl = cl_rspls_alvl=>factory( i_aggrlevel = i_infoprov ).
    Goodluck
    Srikanth

  • SharePoint Foundation 2013 - report / chart / Graph for Employee vacation.

    In SharePoint Foundation 2013 I want to create a report / chart / Graph for Employee (Employee Id,Employee Name & Department) which will show month wise from which date to which date Employee are on vacation in particular department.
    I'm thinking to create one List where where user will enter there vacation details and from that list report I will create chart / Graph Department wise to check the Employees availability.
    Please provide some good example or idea in detail for this.

    Hi,
    Chart Web Parts are useful for visually representing data in line charts, bar charts, and other views. Charts enable you and other users to view performance information at a glance.
    In SharePoint 2013, chart web part is one of the discontinued features. We usually use Excel Service to replace it, however, Excel Service is only available in Enterprise edition, so we need to figure out coding methods or third party tool if you are using
    Foundation edition.
    Here are some links for workaround in your situation, please check if they can be help:
    http://sivarajan.me/post/SharePoint-2013-Chart-WebPart-Using-HTML-5-RGraph-with-WCF-REST-Services
    http://charts4sharepoint.codeplex.com/
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Is there any functionality for AVERAGE in ALV, like do_sum, subtot?

    Hi Experts,
    In my_alv report, am doing sub/totals for prices, by using do_sum, subtot functions.........fine. But, I need to do/display the AVERAGE value for Discount % column?
    Is there any functionality for AVERAGE in ALV, like do_sum, subtot?
    thanq

    hi
    check these links out
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    regards
    vijay
    reward points if helpful

  • Crash on search function for HTML Help file (.chm) when connected to a Visual C++ application

    Crash on search function for HTML Help file (.chm) when
    connected to a Visual C++ application
    I use the RH_ShowHelp API command to connect a HTML Help file
    (.chm file generated by RoboHelp Word X 5) to my Visual C++
    application. My application is able to call up this HTML help file
    in context-sensitive mode and everything is working great in the
    Contents and Index panels EXCEPT when I click on List Topics (after
    I enter a KEYWORD for search) in the Search panel.
    I got an error that said “Unhandled exception in
    xxxx.exe.(HHCTRL.OCX):0xC00000FD: Stack overflow”
    I am able to execute this .chm file by itself and the search
    function works well in this case. I am using HHActiveX.dll that is
    created on 2/23/04. Is this the correct version?? Any advice what
    to do here??

    Hi agschin and welcome to the RH forums. The hhactivex.dll
    file is not used by the search function so you can rule that our.
    Have you tried recompiling and seeing if the problem still happens?
    You can also start the Bug Hunter feature in RH - View > Output
    View and then select the Bug Hunter button - and see if that throws
    up any clues.

  • How to Use the language function for assignment and validation

    Hi All,
    If anyone can explain me in details with example ,how to use the language function for assignments and validations?
    Thanks
    Arnab

    Hi Arnab,
    The expression is checked only for the current MDM session.
    If u login with the ABC language it will always show the ABC language no matter how many times u execute it.
    Try connecting to the DM with the XYZ language.
    It should go to the if part rather than else.
    Hope it helps.
    Thanks,
    Minaz

  • Error "You cannot enter a partner function for output NEU"

    Hi Experts,
    I'm having these error "You cannot enter a partner function for output NEU" (message VN041) when I tried to assign a partner function (e.g OA)  in the conditions records for application "EV" (Purchase outline agreement). The system do not allow me to do this for any doc type (LP, LPA, MK, OA, etc). I'm using t-code NACE or MN08.
    I want to assign partner for key combination "Document Type". The conditions is already there but with no value, so I want to assign partner function "OA" or "VR".
    I already check all the configuration and looks fine. For example, define possible partner functions for output type "NEU" for application "EV" (Purc outline agree).
    Hope you can help me to find the problem.
    Thanks,
    Mairo.

    I have the error in NACE or using tcode MN08.
    As soon I executed those transaction the system shows the condition records created for varios Doc Type (e.g LP, LPA, MK, etc) but with no partner function assigned. For example:
    Doc. Type /  Name                     /             Funct  /   Partner     /            Medium  /  Date/time  /   Language
    LP        /       Scheduling Agreement     /  blank  / blank  /                                          2      /          3   /              EN
    LPA      /      Scheduling Agreement                              / blank    / blank   /                1        /       3         /        EN
    For example, I try to assign function "OA" for Doc. Type "LP", choose value from quickpick. Then when I press enter, the system give me the error "You cannot enter a partner function for output NEU", message no. VN041. Do not allow me to continue, so I have to leave this field blank, with no change.
    Thanks,

  • Down payment functionality for PO with account assignment K Cost Center

    QUESTION: Is there a way to turn-on down payment functionality for cost centers?
    When a vendor down payment is posted via tcode F-47 against a PO line item with INTERNAL ORDER as the account assignment, SAP posted the following documents from the payment run (tcode F110):
    1. Accounting Document
    dr  vendor / GL= downpymt clearing / internal order = IO1234 / cost center = CC5678
         cr  bank           
    2. Controlling Document
    dr internal order IO1234
    However, when a vendor down payment is posted against a PO line item with COST CENTER as the account assignment, SAP does not post any Controlling document, just the accounting document:
    dr  vendor / GL= downpymt clrg / cost center = CC5678
            cr bank
    From my research, it appears that the down payment functionality applies to internal orders and projects only. Then settlement is run to move the values from internal order to AUC assets and/or cost centers. Perhaps I'm missing a configuration step for the cost center piece?
    Your prompt response will be much appreciated. Thanks in advance!

    system wont generate any controlling document for noted items  downpayment and normal payments.
    Because all are balance sheet accounts. Controlling documents will generated for only P&L accounts.
    Your analysis correct.

  • How do I delete documents from my iPad that were added when it ran regular Acrobat, now that it has switched to DC?  The docs are not on the cloud, and DC does not seem to have a delete function for non-cloud docs.

    I use an iPad.  It automatically switched me from old-fashioned Acrobat to DC.  How do I delete docs that were put on my iPad with the old Acrobat?  They are not in the cloud, and DC does not seem to have a delete function for them.

    Hi,
    By default, Acrobat DC for iOS displays recently viewed files.  You need to switch to other file location (such as Local, Document Cloud, Creative Cloud) to delete, rename, move, or duplicate files.
    You can switch to Local, if you would like to see the files and folders that are locally stored on your iPad.
    Would you take a look at the following document to see how you can switch to other file location and delete files?
    How to manage files in Acrobat DC for iOS
    Please let us know if you have additional questions.  Thank you.

  • Partner functions for a specific customer not seen in XD03 but appears in XD02

    Hello SAP Gurus,
    I have a situation where a partner functions for a specific customer not seen in XD03 but appears in XD02, In XD03 only one partner function (Ship to) appears but in XD02 (Sold to, Ship to, Bill to and payer appears), from the customer master I can see that account group for this customer has been changes to Sold to (Z001) from Ship to (Z002).
    I checked in settings for OB20 transaction for display customer centrally, it is in Display mode as required and not suprresed would like your inputs as to why this is happening and what can be done to fix this.
    Thanks and Regards
    Mohammed Roshan

    Hi ROshan,
      Open customer master in XD02  sales view and save it then check in XD03 it should display the partner functions.
    As you said the account group has been changed I think the records needs to be saved again.

Maybe you are looking for

  • Error in log file CallbackDispather

    We've been seeing a random occurance of the following error: Thu May 17 04:27:12 EDT 2001:<I> <Kernel> Address: '39942' in use by: 'weblogic.common.CallbackDispatcher@9c06', can not install 'weblogic.rmi.internal.BasicRemoteInvokable@9c06' Thu May 17

  • Loading an external .swf

    Before you begin reading, I know this is probably out of my realm of flash-knowledge, but at the time of reading this I'm probably reading Adobe's guide to ActionScript 2, and I'm just looking for some clarification, not code: http://livedocs.adobe.c

  • IPad turn on wifi and 3G at the same time

    If my iPad turn on the wifi and 3G at the same time, which data will my device use? The wifi or the 3G?

  • Trying to add email to FaceTime

    Trying to add email but says its already in use but when someone tries to call it doesn't work, and when I try to change my user I'd it doesn't take it.  I want to change my original apple I'd but can't. I change to a me.com account

  • Can we set future dates for forward emails for part time staff?

    We have a part time staff member who is off on wednesday each week. Can we pre-set a calendar function to always have their email forwarded to a support email address on all wednesday's so emails from customers do not get missed?