NI-RFSA Soft panel with 5600 and 5124

We bought a PXI system, with the following HW:
RF:
NI 5600 downconverter
NI 5124 Oscilloscope card
With this I want to use the softpanel of the RFSA (spectrum analyser), but it seems this cannot work because i cannot choose the scope card.
This because i can only choose a number for the digitizer device and not a name. I tried giving the NI-5124 a number and not a name, but this doesn't seem to work.
Is there an other way to still be able to use the Soft Front RFSA with this digitizer card?
Regards
Joost van Heijenoort

Hi Joost,
The RFSA Demo Panel will not be supporting any new devices in the forseeable future. If new analyzers are released in teh future, they will surely ship with tools to enhance ease of use, but the Demo Panel will continue to support the PXI-5660 exclusively (5600+5620).
Can you provide more detail on the functionality you are interested in? I will help you achieve this via other software if possible, and in any case will work with you to ensure you are successful.
Regards,
Andy Hinde
National Instruments

Similar Messages

  • Accordian panel with plus and minus signs to indicate state of panel

    I want the text to show [+] next to the title of the panel when it is collapsed and [-] when it is expanded
    just like http://www.reddit.com/r/indesign/comments/1jewqq/custom_kerning_applied_to_a_single_charac ter/
    the comments on this page can be expanded or collapsed by clicking the plus or minus sign
    how do i do this?

    I've started filling the accordion with my content and the
    cookie works fine. But I see some things I'd like to have changed
    if possible?
    a) When I load the page all accordion panels flips open at
    the same time and they stay open until the page has loaded. It's
    probably not visible in the demo because it's only a few bytes to
    load there. After the page has loaded the cookied panel stays open
    and the rest of the panels close. Is it possible to hide the
    loading of the panels somehow? This is kinda messy right now.
    b) I'd like to use the cookie to control the panels but only
    during the current session. When a new session occurs I'd like to
    start with all panels closed a) (or use the script that states
    default panel). The standard accordion use a small script to set
    the default open panel. I tried modifying this script but it looks
    like the accordion is following the laws of the cookie and is now
    ignoring this script.
    Panel 4 set to be default (0, 1, 2, 3):
    <script type="text/javascript">
    var Accordion1 = new
    Spry.Widget.Accordion.prototype("Accordion3");
    </script>

  • Problems updating panel with remove() and add()

    Hi,
    I have a class which extends JPanel, and everytime I call repaint on it I am trying to add the contents of a Hashtable to the screen. If I do not include the this.removeAll() then it will add those components to the Container...problem is that it will add them everytime so I will have multiple copies of the same thing. If I try and remove them first (notice how I put a boolean in so that I dont remove them before they are added) before adding them (so clear the screen), then they will never appear, no matter where I put the removeAll() or where i put the add(). Same applies for a remove() statement on each individual component.
    I have spent hours on this stupid thing !
    Any ideas would be much appreciated
    Cheers
    Ray
    public void paintComponent(Graphics g) {
         super.paintComponent(g);
         if (painted) {
         this.removeAll();
         globalClock.setRate((int)nodeRef.getAverageRate());
         painted = true;
         //Iterate over the keys in the map
        Iterator keyIt = nodeRef.returnKeyIterator();
        Iterator valIt = nodeRef.returnValueIterator();
       while (keyIt.hasNext()) {
             String key = (String)keyIt.next();
            NodeObject node = (NodeObject)valIt.next();
            nameLabel = new JLabel("Client Name");
            nameField = new JTextField(key);
            currentTimeLabel = new JLabel("CurrentTime");
             currentTimeField = new JTextField(Double.toString(node.getCurrentTime()));
             updateLabel = new JLabel("Update Interval");
             updateField = new JTextField(Integer.toString(node.getInterval())); //default
             speedLabel = new JLabel("Clock Rate");
             speedField = new JTextField(Double.toString(node.getRate()));
             add(currentTimeLabel);
             add(currentTimeField);
             add(updateLabel);
             add(updateField);
             add(speedLabel);
             add(speedField);
            add(nameLabel);
             add(nameField);
        globalRateLabel = new JLabel("Global Speed");
        globalRateField = new JTextField(globalClock.getRate() + " %");
        globalRateField.setEditable(false);
        add(globalRateLabel);
        add(globalRateField);
    }

    Sometimes I will have two things in the hashTable, sometimes I will have one hundred !
    Each time repaint() is called I want this to represent the current status of the Hashtable, so If on one repaint there are 100 pairs in the Hashtable it will add all the details of these pairs to the Container, however on the next repaint if there are only two pairs I dont want the other 98 entries on the page at all. You cant do this with just a component modifier, you have to remove the component completely. I figured that the easiest way to do this would be just to remove all the components completely, and then add what was needed by going through the Hashtable again. (note:effiecency is not a concern)
    And yes I realise repaint() is called on resizes etc etc, but this wont adversely affect the program
    Ray

  • NI Max automatic update of PXI soft panels?

    I have got four soft panels installed. NI Max is set to ge updtes. But it seems I'm not getting updates for the PXI Soft panels.
    Now and then I click the Update Service, including "Updates and Service Packs" but it seems Soft panels are not included? Right now I have NI-scope 4.1 installed while there is up to 4.1.3 available. Im manually downloading it now.
    My question; can I somehow automatically get updates for my installed PXI Soft panels (with drivers etc)?
    Solved!
    Go to Solution.

    Kind of solved. It the soft panels have been updated but NI MAX and soft panel both display version 14.1 but not minor revision (14.1.3)

  • Trouble with CardLayout and actionPerformed; null exception thrown

    Hello. I'm writing my first GUI, and I am using the CardLayout class to do so. I have two panels, and a button on each that "should" navigate to the other. However, when the button is pushed on the first card, I get this exception:
    Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
         at emerensi_BMI.actionPerformed(emerensi_BMI.java:149)
    There are many lines after that, but I figured I would start with the first??
    Here is the code associated with that line:
    public void actionPerformed(ActionEvent e){
         if (e.getSource() == btnReCalculate){
              ((CardLayout)cardPanel.getLayout()).show(cardPanel, "one");
         } else if (e.getSource() == btnCalculate){
              ((CardLayout)cardPanel.getLayout()).show(cardPanel, "two");The last line is the actual line referenced. I am wondering if the "two" is what is null? Here is the code that it's associated with:
    String one = new String();
    String two = new String();
    JPanel cardPanel = new JPanel();
    cardPanel.setLayout(new CardLayout());
    cardPanel.add(one, Page1);
    cardPanel.add(two, Page2);
    contentPane.add(cardPanel, BorderLayout.CENTER);If I understand it correctly, the string in the (string, container) is supposed to reference its container, right?
    I'm not sure if this will make a difference, but also when the "calculate" button is pressed, I have it so that there will be calculations done with text that is entered on the first page, and the second page will display these calculations. Here is the code for that:
    } else if (e.getSource() == btnCalculate){
              ((CardLayout)cardPanel.getLayout()).show(cardPanel, "two");
         String feet = txtFeet.getText();
         String inches =     txtInches.getText();
         String pounds =     txtPounds.getText();
         float f = Float.valueOf(feet);
         float i = Float.valueOf(inches);
         float p = Float.valueOf(pounds);
         float height = (f * 12 + i);
         float math = (p * 703) / (height * height);
         String BMI = String.valueOf(math);
         lblBMI.setText(BMI);
         if (math <= 18.5){
              lblHealthEval.setText("Underweight");
         } else if (math <= 24.9){
              lblHealthEval.setText("Normal");
         } else if (math <= 29.9){
              lblHealthEval.setText("Overweight");
         } else if (30 <= math){
              lblHealthEval.setText("Obese");
         } // end else ifI have labels defined for the second panel that should get the set strings. But since the null exception is thrown right before it regarding the card layout stuff, this probably isn't an issue (yet).
    Sorry if this is verbose; just wanted to be thorough. Thanks for any and all help...

    Well... I took out as much code as I could. Here's my simplified program:
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    @SuppressWarnings("serial")
    public class emerensi_BMI extends JFrame implements ActionListener{
         JLabel lblHeading1;
         JLabel lblHeading2;
         JButton btnCalculate;
         JButton btnReCalculate;
         JPanel Page1;
         JPanel Page2;
         String one;
         String two;
         JPanel cardPanel;
    public static void main(String args[]){
              new emerensi_BMI();
         public emerensi_BMI(){
              super("Body Mass Index Calculator");
              setupGUI();
              registerListeners();
         } // end constructor
         public void setupGUI(){
              Container contentPane = getContentPane();
              JPanel pnlHeading1 = new JPanel();
              lblHeading1 = new JLabel("Page 1");
              pnlHeading1.setLayout(new FlowLayout());
              pnlHeading1.add(lblHeading1);
              // north panel for page1
              JPanel pnlCalculate = new JPanel();
              btnCalculate = new JButton("Calculate");
              pnlCalculate.setLayout(new FlowLayout());
              pnlCalculate.add(btnCalculate);
              // south panel for page1
              JPanel Page1 = new JPanel();
              Page1.setLayout(new BorderLayout());
              Page1.add(pnlHeading1, BorderLayout.NORTH);
              Page1.add(pnlCalculate, BorderLayout.SOUTH);
              // page1 panel
              JPanel pnlHeading2 = new JPanel();
              lblHeading2 = new JLabel("Page 2");
              pnlHeading2.setLayout(new FlowLayout());
              pnlHeading2.add(lblHeading2);
              // north panel for page2
              JPanel pnlReCalculate = new JPanel();
              btnReCalculate = new JButton("<-- Recalculate with different data");
              pnlReCalculate.setLayout(new FlowLayout());
              pnlReCalculate.add(btnReCalculate);
              // south panel for page2
              JPanel Page2 = new JPanel();
              Page2.setLayout(new BorderLayout());
              Page2.add(pnlHeading2, BorderLayout.NORTH);
              Page2.add(pnlReCalculate, BorderLayout.SOUTH);
              // page2 panel
              String one = new String();
              String two = new String();
              JPanel cardPanel = new JPanel();
              cardPanel.setLayout(new CardLayout());
              cardPanel.add(Page1, one);
              cardPanel.add(Page2, two);
              contentPane.add(cardPanel, BorderLayout.CENTER);
              // card panel with page1 and page2
              this.setSize(500, 350);
              this.setVisible(true);
              this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public void itemStateChanged(ItemEvent evt) {
                 CardLayout cl = (CardLayout)(cardPanel.getLayout());
                 cl.show(cardPanel, (String)evt.getItem());
         public void registerListeners() {
              btnCalculate.addActionListener(this);
              btnReCalculate.addActionListener(this);
              // registered actions
         public void actionPerformed(ActionEvent e){
              if (e.getSource() == btnReCalculate){
                   ((CardLayout)cardPanel.getLayout()).show(Page1, one);
              } else if (e.getSource() == btnCalculate){
                   ((CardLayout)cardPanel.getLayout()).show(Page2, two);
              } // end else if else if
              // handling action events
         public void textValueChanged(TextEvent e) {
              // TODO Auto-generated method stub
    }// end main

  • Problem with Drag and drop in panel dashboard

    Hi
    I am having problem with drag and drop in panel dashboard.
    I will explain what i am doing.
    I am using Oracle three column template in First region i am having a table that showing all customer.
    I drag one record from my table and drop it on customer info (CIF) page on second region it is working fine.
    my CIF page has a dashboard with 6 panel box. i am showing 6 different jsff in 6 panel box.
    I put drop target in each jsff
    <af:dropTarget dropListener="#{backingBeanScope.backing_customerinformation.handleItemDrop}"
    actions="COPY">
    <af:dataFlavor flavorClass="org.apache.myfaces.trinidad.model.RowKeySet"
    discriminant="CustomerSearchDnD"/>
    </af:dropTarget>
    when i put drop target my panel boxes moves only when i drag it to another panel box header not entire part of panel box.
    if i remove the drop target then panel box move normally as the example given on: [http://adfui.us.oracle.com:7778/faces-trunk/faces/visualDesigns/dashboard.jspx?_afrLoop=2021391022520156&_afrWindowMode=0&_afrWindowId=null] but in taht case i am not able to drag and drop my data

    You must be an Oracle employee as you're referring to a component in the upcoming JDeveloper version which has yet been released to the general public. Oracle employee's are, I believe, directed to post on internal Oracle forums.
    CM.

  • Problem with menu and panel

    hi,
    i m new to java still learning new concepts. When i was working with menu and panel i got this problem and i tried a lot but still i havn't got any success. the problem is i m creating a menu with two menuitem - one for "add item" and another for "modify item". What i want to do that on the same frame i want to create two panel of these two item. when i click "add item" option it should show add window and so with modify option. but the problem is if i click add item it shows the addpanel but when i click modify option (add item panel goes- ok ..) but it doesn't show the modify panel, it shows only the main frame on which menu is there.
    i cannot understant what is happing here plz guide me.
    thanx

    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import javax.swing.*;
    public class ajitAutomobile extends JFrame implements ActionListener
         JMenuBar mb;
         JMenu jobmenu;
         JMenuItem newJobCard,modifyJobCard;
         Font ft;
         JPanel pnlnewJobCard,pnlmodifyJobCard;
         Container con;
         ajitAutomobile()
         ft=new Font("Arial",0,12);
         mb=new JMenuBar();
         setJMenuBar(mb);
         jobmenu=new JMenu(" Job Card Form");
         mb.add(jobmenu).setFont(ft);
         newJobCard=new JMenuItem("New Job Card Detail");
         modifyJobCard=new JMenuItem("Modify Job Card Detail");
         jobmenu.add(newJobCard).setFont(ft);     
         jobmenu.add(modifyJobCard).setFont(ft);     
         mb.add(requisition).setFont(ft);
         con=getContentPane();
         // setting panel for new JOb Card Entry
         pnlnewJobCard=new JPanel();
         pnlmodifyJobCard=new JPanel();
         con.add(pnlmodifyJobCard);
         con.add(pnlnewJobCard);
         pnlnewJobCard.setBackground(Color.RED);     
         pnlnewJobCard.setVisible(false);
         pnlmodifyJobCard.setBackground(Color.YELLOW);
         pnlmodifyJobCard.setVisible(false);
         //setting JFrame resources
         setVisible(true);
         setTitle("Ajit Automobile Service Center");
         setSize(750,300);
         setResizable(false);
         newJobCard.addActionListener(this);
         modifyJobCard.addActionListener(this);
         public void actionPerformed(ActionEvent ae)
              if (ae.getSource()==newJobCard)
                   pnlnewJobCard.setVisible(true);
                                                                    pnlmodifyJobCard.setVisible(false);
              if(ae.getSource()==modifyJobCard)
                                                                             pnlnewJobCard.setVisible(false);
                                                                    pnlmodifyJobCard.setVisible(true);
         public static void main(String args[])
         ajitAutomobile objajit=new ajitAutomobile();
         objajit.show();
    }so, this is the code and as i m expecting that when i click on "New Job Card Detail" then it should display pnlnewJobCard and when i will click "Modify Job Card Detail" it should display pnlmodifyJobCard panel but it is not working.It shows only that panel which is clicked first.
    plz help
    thnx, any answer will be appriciated.

  • I have tried to view videos created in premiere elements 10 and I get the following message: "this file type is not supported, or the required codec is  not installed.  When it opens there is a red screen in the monitor panel with Korean writing which als

    I have tried to view videos created in premiere elements 10 and I get the following message: "this file type is not supported, or the required codec is  not installed.  When it opens there is a red screen in the monitor panel with Korean writing which also appears in the place of each clip in the video.  I tried uninstalling and reinstalling premiere elements 10, but that did not have any effect on the video.  Do you have any suggestions?  I researched codec, but do not understand them at all.

    gloucester
    In case you did not find it, the following is a copy/paste of the Announcement on Premiere Elements 19/NVIDIA GeForce
    that appears at the top of this forum.
    Premiere Elements 10 NVIDIA Video Card Driver Roll Back
    If you are a Premiere Elements 10 user whose Windows computer uses a NVIDIA GeForce video card and you are experiencing
    Premiere Elements 10 display and/or unexplained program behavior, then your first line of troubleshooting needs to be rolling
    back the video card driver version instead of assuring that it is up to date.
    Since October 2013 to the present, there have been a growing number of reports about display and unexplained workflow
    glitches specific to the Premiere Elements 10 user whose Windows computer has a NVIDIA GeForce video card. If this applies
    to you, then the “user to user” remedy is to roll back the NVIDIA GeForce video card driver as far as is necessary to get rid of
    the problems. The typical driver roll back has gone back as far as March – July 2013 in order to get a working Premiere
    Elements 10. Neither NVIDIA nor Adobe has taken any corrective action in this regard to date, and none is expected moving forward.
    Since October 2013, the following thread has tried to keep up with the Premiere Elements 10 NVIDIA reports
    http://forums.adobe.com/thread/1317675
    Older NVIDIA GeForce drivers can be found
    http://www.nvidia.com/Download/Find.aspx?lang=en-us
    A February 2014 overview of the situation as well as how to use the older NVIDIA GeForce drivers for the driver roll back can be found
    http://atr935.blogspot.com/2014/02/pe10-nvidia-video-card-roll-back.html
    ATR

  • Can I hide the Adobe Reader panel with "Export, Create and Edit PDF and Send and Store Files"? I don't use it and it takes up space

    Can I hide the Adobe Reader panel with "Export, Create and Edit PDF and Send and Store Files"? I don't use it and it takes up space

    If you just mean, can I close it, sure. In Reader XI click the Tools button to close or reopen it.

  • HT3226 My iphone 4s fell down on the floor and a very very small bit on the edge of my iphone were broken. Can I insert a new iphone body panel with replace the old one

    My iphone 4s fell down on the floor and a very very small bit on the edge of my iphone were broken. Can I insert a new iphone body panel with replace the old one.. ???

    I think I had it on the iCloud, I just changed computers and had part of my old computer backed up, where are the default iTunes info saved like the pictures and I know my contacts were backed up cuz I kept getting updated stuff that I wasn't sure about, but it was contacts where some belonged to my wife's contacts....but anyway, if the cloud backed up contacts, it should have grabbed pictures too? Like I asked before, if they were backed up to the computer, is there a default iTunes folder they are saved to? I had a crap load of pictures on there that I usually could really access if I was connected to wi-fi. I turned off my data stuff as I only have 4GB and between me and my 2 kids, we seemed to use up a lot of it. My son would play music from Pandora during work, and use up all our data til I limited him to only 3GB, my daughter and I barely used 1GB. Anyway, thanks to everybody that is answering. I thought I might have done good finding the dang sim card, but pointless I guess.
    Ralph - F.Y.I. I would be happy to back up the iPhone if I could turn it on LOL......I am pretty positive I did, but what about Text messages? ANY of those saved too or not? Sorry guys, I don't know a **** of a lot about cell phones, but I do know about memory cards, but not sim cards that act like memory cards or look like them anyway. What is the purpose of a sim card if I may ask a stupid question since they don't hold any data from my phone stuff. I just hope my stuff comes back on the new replacement phone once I get it up and running. Again, thanks to everybody for the edumucation.

  • I have downloaded the latest version of icloud control panel to a PC with Windows 7. My "master" data is always on my PC. With other synch software I always select "One Way Outlook to Device". I synched icloud with Outlook and it has trashed my Outlook

    I have downloaded the latest version of icloud control panel to a PC with Windows 7. My "master" data is always on my PC. With other synch software I always select "One Way Outlook to Device". I synched icloud with Outlook and it has trashed my Outlook with duplicate contacts. Is there a solution. Is there selective synchronisation available?

    Make sure you don't have any notes that have no content or subject or this can prevent syncing with Outlook.  If you do, delete them.
    If you don't, try unchecking "Mail,Contacts,Calendars & Tasks with Outlook" on the iCloud control panel for Windows, choose Delete at the prompt (the data will still be in iCloud), restart your PC, then go back and check this setting again.  (Your iCloud data will reappear in Outlook after a brief delay as it redownloads.)
    Then create a new note on one of your iOS devices and see if it appears in the Notes folder in Outlook mail after a few minutes.

  • How to build FM radio receiver on PXI 5600 and PXI 5142 with help of labview

    How to build FM radio receiver on PXI 5600 and PXI 5142 with help of labview?
    PLZ TELL ME!
    Solved!
    Go to Solution.

    Dude,
    Your way of asking questions sucks!
    - Do not use such fonts!
    - Try to find things out yourself first (apparently GovBob was able to find info, so could you)
    - Have you asked GovBob if he likes it that you mail him for more questions?
    You ask for a complete solution on a project YOU have to do. (you dont learn of it if you dont try it yourself first)
    Hopefully you will ask questions in a less DEMANDING way next time.
    Good luck with your project

  • A gap between screen and right soft key with softw...

    I have many problems.
    First one is : When I press open button to open  pool game on my Asha 201 then I have
    to press Open Button many times to open games.I have tried factory
    restore settings but I don't think factory restore setting caused this
    problem. Your officer "  'Prashun Dey'
    E-mail Specialist - Nokia Care Bangladesh  " told me to update this phone using nokia suite. So far i know this nokia asha 210 doesn't support nokia suite.Why did he advise me this ???? I have bought this phone only five days ago and now I need a soft update. Not even a week passed and I need for a update of the software. Is it believable ?
    Another problem is :
    I have purchased my phone on 17 September.but
    I am being irritated by a gap between right soft key and Screen of my
    phone.This gap is larger than normal asha 210 model's phone. This gap
    making my left soft key button hard and it irritates me a lot when I
    type. How can I fix it ? Can I change or replace it from Nokia care ?
    I want it to be replaced.I have never faced such product setting problem on samsung. I must say samsung's 5000 taka's phone is thousand time better than this phone Asha 210. I have only one day in my hand to repare it otherwise I will go to head office of nokia with this complain. You should know that we have earned money by working hard in job field and don;t want to waste 6000 taka buying a defected phone.I don't understand why nokia packages defected and physically immature phone to be sold in store. If we can't solve this problem then i gotta take steps.
    I have uploaded an image which illustrating my actual problem with a drawn model of NOKIA ASHA 210. Hope that you will be kind enough providing me helps replacing or fixing this problem so that I never stop using NOKIA's phones.
    Not even a week passed and facing too many problems with one default problem of nokia which done by nokia while attaching parts of the device before packing the device to be sold.
    I have mailed my problem 2 days ago but nokia did not reply me yet!!! They are really nonsense !!!
    Attachments:
    nokia asha problem.JPG ‏54 KB

    I have used my 5c for one week and I can notice a gap too. I is really small, but when I look close to it I see small dust in there. I baby my phone a lot and I am sure it was not there 7 days ago when I got it. I am also afraid this to get larger... It may be a dilatation because of the weather or something, because I did not drop my phone.
    Can anybody help us?

  • Downloaded LR5 yesterday then installed LRCC today, get to 29 days left on trial panel, press "continue with trial" and get nothing ?

    Downloaded LR5 yesterday via installed Creative Cloud Ap. worked fine edited a few photos.
    Today I installed PSCC today and it worked fine.  Then installed LRCC , get to 29 days left on trial panel, press "continue with trial" and get nothing ?   Uninstalled then reinstalled no change, rebooted PC  still nothing. 
    Only a small (11.6" screen 4gb pentium)  netbook for backup and some editing while travelling but PSCC works fine.
    Not willing to purchase LRCC until I can get trial working.

    Hi Everyone,
    I found this on another forum. I tried it and it worked for me. Hope it works for you too:
    Same problem but solved :
    Go to MacHD/Library/Application support/Adobe/SLStore
    Delete the last licence file (will have a .lic extension with probably one ziffer). Be sure to delete the last one !
    Launch Lightroom again and connect with your Adobe ID

  • How can I use the tabbed panel with the accordion panel options of close all panels and over/not overlap the items below?

    Ideas for features in Adobe Muse

    I assume this is what you want to achieve in the footer....
    Make sure in Muse before you export that the panel is closed, and also as Brad suggested, make sure Overlap Items Below is unchecked. I would also check the "Can Close All" button.

Maybe you are looking for

  • Multiple iTunes Accounts on the Same Computer

    iTunes states that you can have multiple iTunes accounts on the same computer. But when I attempt to put in a new user account (for my wife so she can have her own music library) my own iTunes account pops up when I go to load iTunes while in her use

  • Display anomaly when waking from sleep

    Ever since the SL Upgrade when my MacBook Pro wakes from sleep the very bottom right one third section of my screen does not look as it should, this thin strip of incorrect graphics ( usually mostly white ) only appears for about one second then the

  • Some help required with Clipping Masks

    Hi, I'm quite new to illustrator - I've made designs before but really just playing at it. Now, though, I have a design which I had "grunged" up by applying a texture and knocking out the sections of the design with it in Photoshop. However, I want t

  • BI Best Practices for Customization

    Dear Experts, When I am developing BI reports by using mix of Standard BI Content and customized datasources at R/3 side. In Standard BI Content also I am adding additional columns whereever required. Now at BI side since I am changing structure/Upda

  • Section Wise Authorization for automatic payment (F110)

    Hi SAP Gurus, Our client wants Section Wise authorization on Automatic Payment (F110). That is User A is authorized to make payments for the vendors which have open line items which has section XX. While User B is authorized to make payments for that