How to use SMB trigger input on PXI-8187 in LabView

Hello!
I have PXI-8187 controller instaled in PXI-1031 and two PXI-4071 digital multimeters. I want to trigger mesurement with external trigger. One way is to used AUX port on DMM, another can be TRIG input on PXI 8187 CPU unit. Is possible to use this possibility in LabView 7? How?
Best regards!

There are multiple reasons why this is not a supported feature for triggering under Windows and why NI does not recommend using the controller's SMB connector for this purpose. National Instruments has hardware that was designed specifically for extremely accurate clock generation, synchronization, and triggering between PXI chassis (PXI-665x) and other recommended alternatives listed below.
Non-deterministic propagation delays
1. The controller's SMB input is not guaranteed to have a defined propagation delay to the backplane. This means the SMB trigger on the Windows PXI controller is useless for customers that want deterministic triggering. Unlike our PXI-665x boards which have a maintained API and precise triggering properties, the PXI controller's SMB connector and routing circuitry is intended for Watchdog use under LabVIEW RT and isn't designed for this use case. A trigger propagating through the SMB circuitry and going to the backplane, or vice-versa, could have a great deal of variance in the propagation delay which makes gathering useful triggers impossible. This propagation delay is not something National Instruments specs.
An excellent available workaround: Use the measurement hardware's trigger inputs
2. The triggering inputs on our measurement hardware (that customers likely have in their system) can route triggering signals to the PXI backplane (usually through PFI lines) with deterministic results. This functionality is fully supported in most of our APIs and will be maintained between generations of devices.
NOT backward or forward compatible
3. The SMB input is NOT guaranteed to be compatible between different versions of our PXI controllers under Windows. The hardware properties along with an excellent workaround are the reason we do not support doing routing of triggers through the SMB connector on our PXI family of embedded controllers under Windows. If you are still interested in the beta software despite the shortcomings, visit www.ni.com/support and submit an e-mail request.
Adam Ullrich
PXI/VXI Product Support Engineer
National Instruments

Similar Messages

  • How to use digital trigger with analog I/O

    How do I program analog input and/or analog output to start on a digital trigger (PFI pin) on PCI-4451/4551.
    I have tried out various configuration and succeeded in starting analog input, simultanuous input and output triggered by the the anlaog input signal. I have also succeded i triggering 4551 from the dedicated EXTTRIG pin.
    The problem is to trigger on a selectable PFI pin. I find the help for "AI Trigger Config" and "AO Trigger and Gat Config" misleading - some unsupported features seem to work while selecting PFI pin as source make the PC restart immediately.
    I have not been able to find any LabVIEW example that shows how to use PFI pin as trigger input.
    Using LabVIEW 7.1, NI-DAQ 7.3 on Windows 2000.
    Kind regards / Med venlig hilsen
    Torben

    Hello
    The PCI-4451 does not have any PFI lines. If you look at the user manual in the link beneath you will be able to confirm this by looking at the connector signal discriptions. The same is valid for the PCI-4451
    http://digital.ni.com/manuals.nsf/websearch/6A32358C53BB15F086256660007392DC?OpenDocument&node=132090_US
    The two ways of triggering that you have succeded are the analog triggering and digital triggering that you can peform with the PCI-4451.
    Regards
    Mohadjer

  • How to use standard Search Input Help (return 2 data code and desc) ?

    Hi,
    Please advise how to use standard Input Help provided by SAP and return 2 data (code and description) ? because the standard Input Help only return the code only ?
    Thank You and Best Regards
    Fernand

    >
    Saket  Abhyankar wrote:
    > Hi,
    >
    > I think you need to go for 'Search Help Exit' or OVS.
    >
    > Regards,
    >
    > Saket.
    That is not true that this is the only way.  The standard Data Dictory based search help can return more than one value as long as there are multiple exporting values defined in the search help, the search help is attached to a Data Dictionary Structure, and this same data dictionary structure is used as the source of the context node. You can read more about this in the online help:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/9f724642314aabe10000000a42189b/frameset.htm
    The Note section under Integration:
    If an input help structure is stored in a field in the ABAP Dictionary, and if you want to use the field mapping of search help parameters stored in the ABAP Dictionary as the field name for the structure for your Web Dynpro input help, then map your context nodes to this structure. This ensures that all components of the structure are available dynamically at runtime as attributes of the node.
    If the context node is not mapped to the structure, the data element's input help can be used if there is one.

  • How to use smb share for home directory with AD account

    I have extended the schema of our AD and bound a macbook pro running 10.6.8 to the domain. AD users are able to logon, and if I select the option to use their AD homedirectory attribute then this smb share is used as a network drive. My question is though, I need users to logon to MAC using a different smb share for their home drive than the path set in the home directory attribute. Does anyone know how I can achieve this?
    Cheers
    Paul.

    But this method cannot use Regular Expression because my searching target is more than one line.Yes it can!
    Like you said, first you list all the files in the folder.
    For each file, use a BufferedReader to read the first lines, then you may use a StringBuffer to append the lines into it (don't forget to append the '\n' to each line).
    Finally, compile your pattern ( "^November.*\nDecember" ) with the DOTALL flag,
    verify that the string (from StringBuffer) matches the pattern and there you have it!

  • How to use update trigger in sql server 2008 with specific column

    Hello friends currently my trigger updates on table update, and I need to change this to only fire when specific column changes.
    /****** Object: Table [dbo].[User_Detail] ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[User_Detail](
    [sno] [int] IDENTITY(1,1) NOT NULL,
    [userid] [nvarchar](50) NULL,
    [name] [nvarchar](max) NULL,
    [jointype] [nvarchar](50) NULL,
    [joinside] [nvarchar](50) NULL,
    [lleg] [nvarchar](50) NULL,
    [rleg] [nvarchar](50) NULL,
    [ljoining] [int] NULL,
    [rjoining] [int] NULL,
    [pair] [int] NULL
    ) ON [PRIMARY]
    GO
    /****** Object: Table [dbo].[User_Detail] table data ******/
    SET IDENTITY_INSERT [dbo].[User_Detail] ON
    INSERT [dbo].[User_Detail] values (1, N'LDS', N'LDS Rajput', N'free', N'Left', N'jyoti123', N'SUNIL', 6, 4, 4)
    INSERT [dbo].[User_Detail] VALUES (2, N'jyoti123', N'jyoti rajput', N'free', N'Left', N'mhesh123', N'priya123', 3, 2, 2)
    SET IDENTITY_INSERT [dbo].[User_Detail] OFF
    /****** Object: Table [dbo].[User_Detail] trigger ******/
    CREATE TRIGGER triggAfterUpdate ON User_Detail
    FOR UPDATE
    AS
    declare @userid nvarchar(50);
    declare @pair varchar(100);
    select @userid=i.userid from inserted i;
    select @pair=i.pair from inserted i;
    SET NOCOUNT ON
    if update(pair)
    begin
    insert into Complete_Pairs(userid,pair)
    values(@userid,1);
    end
    GO
    /****** Object: Table [dbo].[Complete_Pairs] Script Date: 05/22/2014 21:20:35 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE TABLE [dbo].[Complete_Pairs](
    [Sno] [int] IDENTITY(1,1) NOT NULL,
    [userid] [nvarchar](50) NULL,
    [pair] [int] NULL
    ) ON [PRIMARY]
    GO
    my query is TRIGGER triggAfterUpdate is fired only when pair column in User_Details table is update only and when we update other column like ljoin or rjoin then my trigger is not fired
    please any one can suggest us how it can done or provide solution
    Jitendra Kumar Sr. Software Developer at Ruvixo Technologies 7895253402

    >select @userid=i.userid
    frominserted i;
            select
    @pair=i.pair
    frominserted i;
    The code above assumes a single row UPDATE.
    You have to setup the trigger for set processing like when 100 rows are updated in a single statement.
    UPDATE trigger example: http://www.sqlusa.com/bestpractices2005/timestamptrigger/
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • How to use an Digital input as an Boolean?

    Dear all,
    I want to set up a digital input signal as a Boolean function. How can I do that?
    I also want to know how I can get Digital output lines which are all in DataAquisition box into different lines on my LabView screen? Is this possible with an array?
    Cheers

    We need more information before we can give you the info you need.
    What type of boolean function do you want (digital waveform, array of booleans)?  A boolean on the front panel can be programmed to do many things on the block diagram.  You will probably want more than one.  For example, one boolean to set a value, another to signal the program that you want to add a value.
    Getting data from a data acquisition device into LabVIEW can be either trivial or difficult depending on what the manufacturer of your data acquisition device provides in the way of drivers.  If the device is a National Instruments device and supports digital input, it should be pretty easy.  Look at the documentation and examples that came with the device.  If it from another manufacturer, look for a LabVIEW driver for it from the manufacturer.  If neither exist, you will need to write a driver yourself.  This is usually straightforward, but tedious.  It can get difficult if the manufacturer does not publish good interface specifications.  Once you have the data into your program as a digital waveform, displaying it on a digital graph is as simple as dropping the graph on the front panel and wiring the digital waveform to it on the block diagram.
    I would highly recommend you run through the LabVIEW tutorials on the main NI website.  There are several, depending upon how much time you have.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • How to use the user Input in a tool tip

    Lets say I have two text boxes (Tb1 and Tb2).  I want the input the user types in Tb1 to be part of the Tool Tip of TB2.   So if the user types "Party" in Tb1, when you hover over Tb2 it say "Number for Party".  Does this make sense?
    Thanks!

    Adobe includes the Acrobat JavaScript API Reference in their SDK and online at the Adobe Developers Network.

  • How to use Payload as input to a PDF document

    Hi,
    I am reading the payload using function module SXMB_GET_MESSAGE_PAYLOAD and I want to use the Payload to fill my ADOBE form.  I thought that it would be sufficient to pass to the pdf the payload but my PDF does not get populated and no error is returned.
    I created my form interface with a XSD file of the same format as the payload. I use this interface in my form and I set a data connection with a WSDL file of the same format as the Payload.
    Is there a step that I am missing? Can we pass in parameter the payload or we need to do an extra step?
    Here the code I am using to call my PDF
    Get XML output data for Message Id
            CALL FUNCTION 'SXMB_GET_MESSAGE_PAYLOAD'
              EXPORTING
                im_msgkey      = l_msgkey
              IMPORTING
                ex_msg_bytes   = l_xstring
              EXCEPTIONS
                not_authorized
                no_message
                internal_error
                no_payload.
    Create PDF
            CALL FUNCTION l_funcname
              EXPORTING
                /1bcdwb/docparams  = ls_docparams
                /1bcdwb/docxml     = l_xstring.
    Thank you

    Hi Steve,
    if your Adobe form used an xml based interface, and your xml data are into an xstring variable, then you only need the FP_JOB_OPEN and FP_JOB_CLOSE function modules - please have a look at this example; its working fine:
    DATA: gs_outputpara TYPE sfpoutputparams,
            gs_docpara    TYPE sfpdocparams,
            gs_return     TYPE fpformoutput,
            gs_result     TYPE sfpjoboutput,
            gv_form       TYPE fpwbformname VALUE 'Z_TRAVEL_REQUEST',
            gv_function   TYPE rs38l_fnam,
            gv_xml        TYPE xstring,
            gv_data_str   TYPE string.
    * create xml data
      CONCATENATE
        `<?xml version="1.0" encoding="utf-8" ?>`
        `<REQUEST>`
        `<CUSTNAME>` gs_request-custname `</CUSTNAME>`
        `<DEPARTMENT>` gs_request-department `</DEPARTMENT>`
        `<KOSTL>` gs_request-kostl `</KOSTL>`
        `<DEPDATE>` gs_request-depdate `</DEPDATE>`
        `<ARRDATE>` gs_request-arrdate `</ARRDATE>`
        `<COUNTRYTO>` gs_request-countryto `</COUNTRYTO>`
        `<CITYTO>` gs_request-cityto `</CITYTO>`
        `<CAUSE>` gs_request-cause `</CAUSE>`
        `<VEHICLE>` gs_request-vehicle `</VEHICLE>`
        `<HOTEL>` gs_request-hotel `</HOTEL>`
        `</REQUEST>`
        INTO gv_data_str.
      CALL TRANSFORMATION id SOURCE XML gv_data_str
                             RESULT XML gv_xml.
    * Get the name of the generated function module
      TRY.
          CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
            EXPORTING
              i_name           = gv_form
            IMPORTING
              e_funcname       = gv_function
    *         E_INTERFACE_TYPE =
        CATCH cx_root.
          RAISE no_active_form.
      ENDTRY.
    * Set parameters
      gs_outputpara-nodialog   = 'X'.
      gs_outputpara-preview    = 'X'.
      gs_outputpara-getpdf     = 'X'.
      gs_outputpara-connection = cl_fp=>get_ads_connection( ).
      gs_docpara-langu         = 'DE'.
      gs_docpara-country       = 'DE'.
      gs_docpara-fillable      = 'X'.
    * Open print job
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = gs_outputpara
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
      IF sy-subrc <> 0.
        RAISE job_open_error.
      ENDIF.
    * Call the generated function module
      CALL FUNCTION gv_function
        EXPORTING
          /1bcdwb/docparams  = gs_docpara
          /1bcdwb/docxml     = gv_xml
        IMPORTING
          /1bcdwb/formoutput = gs_return
        EXCEPTIONS
          usage_error        = 1
          system_error       = 2
          internal_error     = 3
          OTHERS             = 4.
      IF sy-subrc <> 0.
        RAISE form_process_error.
      ENDIF.
    * Close print job
      CALL FUNCTION 'FP_JOB_CLOSE'
        IMPORTING
          e_result       = gs_result
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        RAISE job_close_error.
      ENDIF.
    Edited by: Jens Haehnel on Sep 1, 2009 4:19 PM

  • How to use Fuzzy Logic Controller for transfer function in labview control and simulation loop?

    I am facing problem with fuzzy PD logic controller for transfer function in control and simulation loop.
    Plz Help me in this regard...................
    i have attache snapshot of my program
    Attachments:
    fuzzy in simulation loop.JPG ‏52 KB

    Hi Sankhadip,
    Sorry for the late response. I was looking at your code and
    I noticed that the graph scale does not start from zero. That might be the
    reason why you don't see the transient in the simulation. To change the scales
    simply double click on the lower limit and set it to zero. If this is not the
    expected results, can you please post the expected results, so we can see what are the
    differences between the results . Also, you might be using different
    solvers, and that gives different results as well.    
    Thanks and have a great day.
    Esmail Hamdan | Applications Engineering | National
    Instruments

  • How to use dynamic selection screen inputs in main program

    hi all,
      its a report where in it calls one dynamic selection screen( user need to enter the parameters here) after that i need to use those inputs for some check, can any buddy help how to use/ get that input parameters into main program.
    regards,
    vara..

    Hi,
    i think u have created that dynamic selection screen in seperate program and calling to ur main program.instead of that u just create that synamic selection screen program as include program and include it in ur main program.
    or u need to use set/get parameter id concept.
    rgds,
    bharat.

  • SMB triger input in LabView program

    Hello!
    I have PXI-8187 controller instaled in PXI-1031 and two PXI-4071 digital multimeters. I want to trigger mesurement with external trigger. One way is to used AUX port on DMM, another can be TRIG input on PXI 8187 CPU unit. Is possible to use this trigger input in LabView 7.1? How - example?
    Best regards!

    See the reply to this question here:
    http://forums.ni.com/ni/board/message?board.id=270​&message.id=1558#M1558
    Thanks!
    Molly K.
    Web Support & Operations Manager
    National Instruments

  • External trigger of ni pxi 5122

    hello,
    i want use external trigger of ni pxi 5122 to select video line (video HD).
    how it is the form of the trigger in this case?

    Hello,
    Based on the Specifications Manual (pages 18 and 19) this module will accept a voltage signal from -5V to +5V.
    http://www.ni.com/pdf/manuals/371172m.pdf
    Please refer to the links below for more information about Video Triggering.
    http://www.ni.com/white-paper/3735/en/
    http://zone.ni.com/reference/en-XX/help/370592E-01/digitizers/5122_video_triggering/
    Regards,
    MCOTO.

  • Uses for trigger on image acquisition board.

    I am new to the concept of external triggering of events. I am trying to figure out how to use the trigger on an image acquisition board (specifically - I have the pci-1411). I am wondering if I can use the trigger for things that have nothing to do with image aquisition. I don't necessarily want to acquire an image when the board receives a trigger signal. I would like to use the board to detect that trigger signal, and, when it does, execute a particular set of code. Can this be done?
    Also, I am wondering if the IMAQ image acquisition boards that are capable of generating a signal through this trigger (I understand that the pci-1411 cannot generate a signal?) could be used to control some external device like a s
    mall motor for example.
    Thank you for your help.

    Kindly refer,
    http://zone.ni.com/devzone/conceptd.nsf/webmain/BF9C43586430C32B86256BFB00528558?opendocument
    http://search.ni.com/query.html?col=alldocs&qp=%2Bcontentformat%3Asoftwarelib&layout=SoftLib&qt=%2Bimaq+trigger+pulse
    The pulse that the imaq board generates is not meant to drive motors. For that we have motion cards, refer, ni.com/motion
    http://zone.ni.com/devzone/conceptd.nsf/webmain/66E6F4EE7E0848D686256A550060C436?opendocument
    IMAQ Generate Pulse - This function allows you to generate a pulse from the TIO chips on the board. This functionality is only supported with the 1409 and the digital boards (1422, 1424, 1428). You can only drive at most two pulses at once. Driving pulses doesn't require events, unless you are triggering the pulse off o
    f the Frame Start or Frame Done.
    IMAQ Trigger Read - This function allows you to read the status of External Trigger lines or RTSI lines.

  • How to use PXI Star Trigger for PXIe-5663 in PXIe-1075 chassis

    HI all,
    I have this sytem configuration:
    PXIe-8135 controller. Windows 7 64-bit, RFSA 2.7.5. NI-SYNC 3.4.1
    PXIe-1075 chassis
    PXIe-5663 (2x)
    PXIe-6672 Timing & Sync Card (slot #10)
    I want to trigger the recording of my Digitizer with an external trigger.
    The External Trigger is connected to PFI0 of the PXIe-6672 Timing card.
    Then, the PXIE-6672 card routes the trigger to the backplane of the PXIe-1072 (Destination "NISYNC_VAL_PXITRIG0")
    The PXIe-5663 are triggered with “NIRFSA_VAL_PXI_TRIG0_STR” as the source.
    The trigger fires my PXIe-5663 correctly, but the timing is not tight (> 5ns).
    I would like to use the PXI Star trigger instead, I think that I should be able to acheive much better synchronization with this.
    But NI-RFSA won't let me do this:
    When I try to call
    "niRFSA_ConfigureDigitalEdgeStartTrigger(rfsa_sess​ion, NIRFSA_VAL_PXI_STAR_STR , NIRFSA_VAL_RISING_EDGE)", I get the error:
    "Specified Route Cannot Be Satisfied, Because the Hardware Does Not Support It"
    I don't understand why the PXIe-5663E would not be able to use that Route.
    Any idea?
    Regards,
    Serge
    Serge Malo, ing.
    Concepteur logiciel
    Software Developer
    T (514) 842-7577 x648 | [email protected]

    That explanation isn't quite right. Usually, even PXIe modules have a connection to PXI_Star. The PXIe standard added the PXIe_DStar trigger buses, and it also preserved the PXI_Star bus from the PXI standard.
    However, there is an additional twist in this situation. I'm assuming that your PXIe-5663 includes a PXIe-5622 as the digitizer. It turns out that a synchronization technique called NI-TClk has eliminated the need for our more recent digitizers to rely on triggering from PXI_Star. I was able to find some documentation that includes this information, here and here. Given that, I think you have two options that should result in better synchronization.
    The first option is to use TClk; I found an example program that demonstrates using TClk to acheive phase coherent signal acquisition across two 5663s. The second option is to use cables of matched length to connect two PFI front panel terminals of the timing board (6672) to the PFI1 front panel terminals of the digitizers (5622). The timing board would accept the external trigger on PFI0 and then issue triggers on PFI1 and PFI2 with around 500 ps of skew (manual, page A-4) . The digitizers would use NIRFSA_VAL_PFI1_STR as the trigger. I hope one of these solutions will meet the demands of your particular application.
    I will also follow up with the owners of the RFSA product documentation to see if we can include a note about why PXI_Star is not supported in some cases.
    James Blair
    NI R&D

  • How Do I Configure the PFI Lines as input in PXI 6713 module

    Hi,
    I have PXI 6713 module in my PXI 1044 chassis. I have configured PXI 6713 module to geneate certain analogue signals to my board.
    Board inturn process this analogue signal and responds back the status signals through a status register on the board. In my application,the status bits in status register of  the board are mapped to the PFI 0:3 bits on PXI 6713 module ( pins 11,10 , 42 and 43).
    My query is how do i configue the PFI lines as input in PXI 6713 module to read these status bits ??
    May be below explanation could give you little bit more information w.r.to my query.
    When i use NI USB - 6008    module to read the same bits , since this device has 12 digital I/O lines, i could able to read the status bits in to the last 4 digital lines by configuring the those digital lines as input.
    In PXI 6713  module i have only 8 digital lines. These 8 digital lines i have used to send the digital signals to the board. I am left with no digital I/O lines. Hence i couldn't use these digital lines. I am left with only one option to use. Theya re PFI lines. Moreover the status bits in the pin out of board are mapped such that the bits can be read through the PFI lines.
    I am wondering do we have any example code to use  inorder to read these status bits on the board using the PFI lines.
    Please let me know if you need additional information to help me out.
    Thanks.
    Solved!
    Go to Solution.

    Hello There,
    When using the PFI pin as an input, you can individually configure each PFI for edge or level detection and for polarity selection.  This PFI information can be referenced in the DAQ Analog Output Series Manual on page 6-1 (http://www.ni.com/pdf/manuals/370735e.pdf).  Unfortunately, the PXI-6713 PFI lines are only capable of timing input and output signal for AI, AO, or counter/timer functions.  The option of creating static DI from the PFI lines is not available for the PXI-6713. However, some cards have this capability.  Newer National Instruments products with PFI lines have the option of setting PFI lines as:
    Static Digital Input 
    Static Digital Output
    Timing Input Signal for AI, AO, DI, DO, or counter/timer functions 
    Timing Output Signal from AI, AO, DI, DO, or counter/timer functions
    (http://digital.ni.com/public.nsf/allkb/14F20D79C649F8CD86256FBE005C2BC4)
    When set as static DIO, the PFI lines are assigned to a different port (eg. PFI0-7 is Port1).  More details about this can be referenced at:
    http://digital.ni.com/public.nsf/allkb/DA2D3CD0B8E8EE2A8625752F007596E1
    http://digital.ni.com/public.nsf/allkb/862567530005F09E8625677800577C27
    Regards,
    Roman Sandoval | National Instruments | RF Systems Engineer

Maybe you are looking for

  • How to use iPod Shuffle Correctly in ur PC's?

    hi! Using the latest Versions: iPod Updater 2006-03-23 iTunes 6.0.4.2 * Be sure to meet the System Requirements b4 installing. Install, then reboot. Follow these steps correctly to make your iPod shuffle last long. To RECHARGE your iPod (not syncing/

  • Macbook pro late 2011 has built-in intel graphic card, am I safe?

    Just noticed that I don't have any discrete GPU installed or whatever. Just the Intel HD Graphics 30000 built-in. I am safe of the GPU failures?

  • Lync 2013 Client Not Display Numbers in Contact Card

    Hi I have a problem where Lync 2013 client connecting to Lync 2010 backend appears not download the contact list completely. Lync 2010 clients are all operating normally.  On Lync 2010 client, you can view all contact details including Enterprise Voi

  • FIELD BSEG_ZUONR NON EDITABLE

    Dear all, I'm facing the following problem. I need the field BSEG_ZUONR editable but it seems It is not possible. In fact, I tried to put the field in SPRO-->Document Change Rules, Line Item, but nothing happens. Any ideas? Thanks in advance

  • 1 person holds 2 positions at the same time?

    Hi, Is it possible for 1 employee to hold 2 positions at the same time ? If yes how we can assign this or set up it ? Thanks ,