Need details (fsisys, fsiuser and afgjob) of the Configuration file for an XML in documaker 12 execution

Hello

I need details of the basic configuration for the execution of a simple xml in documaker 12. Details such as printer, configuration of the recipient, etc..

Hello Sen,

You can set below the sections of XML configuration related in addition to the configuration manager of DB and the General library which is necessary for Documaker version 12.x. The configuration of the printer may not require changes from the flat file extracted mode. Make sure the entrance of afgjob; BatchingByRecipINI; is in place too.

< extractkeyfield="">

Masque_recherche = 1,<>

[RECIP_NAMES]

ZERO = 000,

FC = 101, COPY FULL

< batchingbyrecip="">

DefaultBatch = BATCH1

Batch_Recip_def =! RecipientRecord [RecipientDescription = "Full copy"]; "' BATCH1 '; FC

< runmode="">

NAUNLOAD = Yes

XMLExtract = Yes

DownLoadFAP = Yes

ChkDstLenExceeded = No

LoadCordFAP = No

CheckNextRecip = No

CompiledFAP = No

< trn_fields="">

SystemInd =! TransactionRecord/TransactionKey/SystemIndicator

TransactionNum =! TransactionRecord/TransactionKey/TransactionNumber

LOB =! PolicyRecord/LOB

Iteration =! TransactionRecord/TransactionKey/Iteration

Tags: Oracle Applications

Similar Questions

  • Need help: UTL_FILE read and write in the text file

    Hello, I'm on version 11 GR 2 by using the UTL_FILE function to read a text file and then write the lines where it starts with the word "foo" and put an end to my writing in the text file where the line with the word "ZEN". Now I have several lines that begin with 'foo' and 'ZEN' allow a paragraph, and in this paragraph, there is a line that begins with "DE4.2". Therefore,.
    I need to write all of the paragraphs that include the "DE4.2" line in their beginning and end of lines 'foo' and 'ZEN '.

    FOR EXAMPLE:

    FOO/234E53LLID
    IT'S MY SECOND LINE
    IT'S MY THIRD LINE
    DE4.2 IT OF MY FOURTH LINE
    IT'S MY FIFTH LINE
    ZEN/DING3434343

    FOO/234E53LLID
    IT'S MY SECOND LINE
    IT'S MY THIRD LINE
    IT'S MY FIFTH LINE
    ZEN/DING3434343

    I'm only interested in writing the first paragraph tha includes line DE4.2 in one of the paragraph of lines not the second ther that does not include the "DE4.2".

    Here is my code so far:

    CREATE OR REPLACE PROCEDURE my_app2 IS
    Utl_file.file_type INFILE;
    outfile utl_file.file_type;
    buffer VARCHAR2 (30000);
    b_paragraph_started BOOLEAN: = FALSE; -flag to indicate which required paragraph is started

    BEGIN
    -Open a file to read
    INFILE: = utl_file.fopen ('TEST_DIR', 'mytst.txt', 'r');
    -Opens a file for writing
    outfile: = utl_file.fopen ('TEST_DIR', "Out.txt", "w");

    -Check the file is open
    IF utl_file.is_open (infile)
    THEN
    -lines in the file in loop
    LOOP
    BEGIN
    UTL_FILE.get_line (infile, buffer);
    APPLICATION STARTING POINT-
    Buffer IF LIKE 'foo %' THEN
    b_paragraph_started: = TRUE;
    END IF;
    -SEARCH FOR GRADS APPS
    IF b_paragraph_started AND buffering LIKE '% 4% ' THEN
    UTL_FILE.put_line (outfile, buffer, FALSE);
    END IF;
    -REQUEST FOR ENDPOINT
    Buffer IF LIKE '% ZEN' THEN
    b_paragraph_started: = FALSE;
    END IF;
    UTL_FILE.fflush (outfile);

    EXCEPTION
    WHEN no_data_found THEN
    EXIT;
    END;
    END LOOP;
    END IF;
    UTL_FILE.fclose (INFILE);
    UTL_FILE.fclose (outfile);
    EXCEPTION
    WHILE OTHERS THEN
    raise_application_error ("-20099, ' UTL_FILE unknown error");
    END my_app2;
    /

    When I run this code I get only one line: DE4.2 it ME LACK THE WHOLE PARAGRAPH

    PLEASE ADVISE...

    I agree with reservations of Justin on the length of a "paragraph" and the number of users that are running at the same time, so here is a version without the collections.

    CREATE or replace PROCEDURE my_app2 IS
       infile utl_file.file_type;
       outfile utl_file.file_type;
       buffer VARCHAR2(30000);
       b_paragraph_started BOOLEAN := FALSE; -- flag to indicate that required paragraph is started
       b_toprint BOOLEAN := FALSE;
       l_para_start pls_integer;  -- start of "paragraph"
    BEGIN
       infile := utl_file.fopen('TEST_DIR', 'mytst.txt', 'r');
       outfile := utl_file.fopen('TEST_DIR', 'out.txt', 'w');
       LOOP
          BEGIN
             utl_file.get_line(infile, buffer);
             IF buffer LIKE 'FOO%' THEN
                b_paragraph_started := TRUE;
                l_para_start := UTL_FILE.FGETPOS(infile) - (length(buffer) + 1);
             END IF;
             IF b_paragraph_started and buffer like '%DE4%' THEN
                b_toprint := TRUE;
             END IF;
             If buffer like 'ZEN%' THEN
                IF b_toprint THEN
                   UTL_FILE.FSEEK(infile, l_para_start);
                   utl_file.get_line(infile, buffer);
                   while buffer not like 'ZEN%' loop
                      utl_file.put_line(outfile,buffer, FALSE);
                      utl_file.get_line(infile, buffer);
                   end loop;
                   utl_file.put_line(outfile,buffer, FALSE);
                end if;
                b_paragraph_started := FALSE;
                b_toprint := false;
                utl_file.fflush(outfile);
             end if;
          EXCEPTION
             WHEN no_data_found THEN
                EXIT;
             END;
       END LOOP;
       utl_file.fclose(infile);
       utl_file.fclose(outfile);
    END my_app2;
    

    Test:

    SQL> !cat mytst.txt
    FOO/234E53LLID
    THIS IS MY SECOND LINE
    THIS IS MY THIRD LINE
    DE4.2 THIS IS MY FOURTH LINE
    THIS IS MY FIFTH LINE
    ZEN/DING3434343
    
    FOO/234E53LLID
    THIS IS MY SECOND LINE
    THIS IS MY THIRD LINE
    THIS IS MY FIFTH LINE
    ZEN/DING3434343
    
    FOO/234E53LLID again
    THIS IS MY second SECOND LINE
    THIS IS MY second THIRD LINE
    DE4.2 THIS IS MY second FOURTH LINE
    THIS IS MY second FIFTH LINE
    ZEN/DING3434343 again
    
    SQL> exec my_app2;
    
    PL/SQL procedure successfully completed.
    
    SQL> !cat out.txt
    FOO/234E53LLID
    THIS IS MY SECOND LINE
    THIS IS MY THIRD LINE
    DE4.2 THIS IS MY FOURTH LINE
    THIS IS MY FIFTH LINE
    ZEN/DING3434343
    FOO/234E53LLID again
    THIS IS MY second SECOND LINE
    THIS IS MY second THIRD LINE
    DE4.2 THIS IS MY second FOURTH LINE
    THIS IS MY second FIFTH LINE
    ZEN/DING3434343 again
    

    You may need to change the length (buffer) + 1 depending on your platform and if you want a blank line s NLE out paragraphs, add another call to put_line after that outside of the loop in the fi l_toprint block.

    John

  • get the location of the configuration file for each virtual in a cluster

    Is there way in the cli of power for a list of the location of each file in the configuration of the virtual machines in a cluster?  or even each file configuration on data warehouses?

    Thank you

    For all the virtual machines on the VIServer (s) connected

    Get - VM | Select Name, @{N = "VM Config file"; {E = {$_.extensiondata.config.files.vmpathname}}
    Or if you just want to a single data store
    Get-Datastore | Get - VM | Select Name, @{N = "VM Config file"; {E = {$_.extensiondata.config.files.vmpathname}}
    Replace with the data store you want to run it against, for example to run it against Datastore01
    Get-Datastore Datastore01 | Get - VM | Select Name, @{N = "VM Config file"; {E = {$_.extensiondata.config.files.vmpathname}}
  • Need of the configuration file for a program engine tuning?

    looking for a file? for a DOS program run on my computer vista laptop, the DOS program is to grant an engine computer, I have the program loaded back and it opens but it does not connect to the engine computer.

    I was told I needed a file of configuration of microsoft office for it to run, but I can't find something that works

    This is the Forum for Vista programs.

    http://social.answers.Microsoft.com/forums/en-us/vistahardware/threads

    They will help you with your question in Vista Hardware and drivers Forum above.

    See you soon.

    Mick Murphy - Microsoft partner

  • Cannot find the configuration file for the new computer and my old download Info

    Lost

    Hello

    If you have purchased the commercial version on adobe online:

    a. then connect on adobe.com and go to 'My Adobe' > 'my orders'. You can see the order dates. Click on the date to which you have placed the order and you will find the serial number and download link.

    b. If you have registered it under your Adobe account, then navigate to 'My Adobe' > 'my products'.

    If it's an order of Volume Licensing:

    Go to licensing.adobe.com, enter your credentials and click on "licenses" > retrieve serial number. Select the code to deploy or final user ID that is used to pass the command and click on search. You should now see the serial numbers.

    The following link also lets you learn how to retrieve series volume without https://helpx.adobe.com/x-productkb/policy-pricing/volume-licensing-site.html

    If you have purchased the order download from an Adobe reseller, you can contact the dealer where you bought it or contact customer service Adobe customer service

  • How can I get the configuration file for installed software to the other PC

    Hello

    My car is Zion & I'm managing the all COMPUTER software & hardware requirement, my request is that if I go to the option of payment, how can I get license information and the invoice of Adobe and can you install the software in different PC.

    I am not able to contact by phone if possible please contact me or send me email with the solutions.

    Thanks and greetings

    Executive Shaikh

    [personal information deleted - mod]

    Hi Rafiques27191756,

    Looks like you ask for assistance with a volume license. If this is the case, information about purchase of Adobe programs are available here: Adobe licensing, discounts | Adobe purchase programs. If you buy a volume license, you will be able to view and manage your account as well as learn how to deploy the software on different PC on the Site Web of Adobe License. In the meantime, you can get individual help in contacting customer service by using cat.

    In case you have any questions about the purchase and deployment of a volume license, I'm moving this discussion to the deployment to the Cloud, business, & CS creative team. If you are interested in individual licenses instead, please let me know and I will move the discussion in a more appropriate forum... For the record, every single license can be activated on up to two computers.

    Let us know if we can provide more information or assistance.

    Best,

    Del

  • Where can I find the configuration files for CS5?

    I've upgraded to Win10 requiring a complete operating system and wiped reinstallation on all my installed software. I reinstalled everything except my Adobe products. I'm a minimum user but like Photoshop and Bridge. On the page products registered, according to the Plans and the price, I can see my serial number and date of purchase, but when I click on history commands, it is said, "we didn't find any orders placed on your account.

    Where can I find the download package to be there?

    Thanks in advance.

    Hello

    You can download CS5 via the below link.

    Download Adobe Creative Suite 5 products

    Hope this will help.

    Let us know if any other help is required.

    Kind regards

    Sandrine

  • How to check the details of connection and disconnection of the team? I want to see the rate of use of the software.

    How to check the details of connection and disconnection of the team? I want to see the rate of use of the software.

    Hello

    I'm sorry but there is no option for monitoring the connection and disconnection of a user.

    You can see their activation of license through your admin console.

    Kind regards

    Sheena

  • Need help to open two images with the same file with different exposures on the screen at the same time in the Photoshop creative cloud (in previous versions we could open two images of the same nef (raw) file and then combine them on the screen with the

    Need help to open two images with the same file with different exposures on the screen at the same time in the Photoshop creative cloud (in previous versions we could open two images of the same nef (raw) file and then combine them on the screen with the move tool. They have become a composite of two layers which could be developed further with the mask tool.

    Hello

    Please go to the preferences > workspace and uncheck the option 'open the document in the tabs '.

    Now you can click on file and choose file > open and open the two images in two different windows which can be arranged side by side.

    Thank you

  • Hey, so I just bought first 13 items and I downloaded the installation file and spoke to install, but it is stuck at 2%

    I just bought first 13 items and I downloaded the installation file and spoke to install, but it is stuck at 2% on installation.

    It then comes up with the error screen but I click on details, and he said: there is no Web page, I have restarted my computer, removed other Adobe products, I don't know what to do d:

    I tried lot D:

    He's going to tell me what IS the error that I have for it either... so I can check to fix D: said that there is no Web page...

    alexas

    Thanks for the reply.

    You just solved your problem. If not all, basically everything. You need 64-bit installation files for your 64-bit computer.

    You need two installation files - for extracting .exe and .7z the program itself. These two files have 64 in the name of the file if each is to be used in a 64-bit system.

    If you have purchased serial number...

    a. you can go after the series of 64-bit installation files where you are

    or

    b. downloading 64-bit from the following location and insert your serial number purchased by them during the installation.

    http://prodesigntools.com/Photoshop-elements-13-direct-download-links-premiere.html

    Important... carefully perform the ' Note: very important "on this web site in order to avoid the access denied Message. Don't forget: you are using the trip to Adobe mentioned must be authenticated, you use the web site for the 1 (.exe) file links and file 2 (7z).

    or

    Try download from c.

    http://www.Adobe.com/downloads/other-downloads.html

    Please let us know if your observation was the key to the solution.

    Thank you.

    RTA

  • Inject an apple ID and PW using the Configurator 2?

    Hi all

    Wondering if a id apple & PW can be added to a profile and deployment using the Configurator 2. Sorry if this has been covered, am new to this and learning and discovery I.

    see you soon,

    Kristian.

    Hello, Kristian,.

    AC2 negates the need to have a configuration of account iTunes\AppleID on each device, can I ask why you wanted to do this, there may be a better way? ipads how are you trying to install? ipad users can add their own iTunes account to download other additional applications then deployed via the configurator.

    Kind regards

    Rick

  • I need to scan documents and put it in a file how to do this

    I need to scan documents and then also add a file how to do this

    Hello

    1. what operating system is installed on your computer?

    2. which file you want to add the scanned data?

    What version of the operating system Windows am I running? :

    http://Windows.Microsoft.com/en-us/Windows7/help/which-version-of-the-Windows-operating-system-am-i-running

    You must have a device Scanner to scan a document.

    If you have a scanner device, please read the manual carefully to have a clear idea of it.

    Please provide us with more information to solve the problem as soon as possible.

    For reference:

    Scan a document or a file:

    http://Windows.Microsoft.com/en-us/Windows-Vista/scan-a-document-or-file

     

    I hope this helps.

  • R12.2.5 Installation on OL 7.1 ERROR: RW-50010: error:-script returned an error: 1 RW-50004: error code when you run the external process.  Check the log file for more details

    I tried to install EBS 12.2.5 on OL 7.1 with rapidwiz and got this error when applying the unique patches in second File System

    "Second system logfile file - /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/logs/12021641.log.

    LOG FILE:

    _____________________________________________________________________________________________________________________________

    Step 0-8

    Command: /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/adrunfmw.sh

    Step 4 of 8: UNIX making pretreatment

    Running: chmod 777/db/oracle/OraInventory r

    chmod-r 777/db/oracle/OraInventory succeeded

    Step 4 of 8

    Performance: known appltest - c "/ app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/adrunfmw.sh".

    PHASE of INSTALLATION has BEGUN: APPS TECH STACK: Wed Dec 2 17:27:07 IST 2015

    runProcess_1

    StatusString installation of Applications Technology Stack

    Copy the temp area models

    Inventory name is: app_oracle_TEST_fs2_Oracle_EBS_app

    One-time fixes copy to temp area

    Remove JDK_TOP: / app/oracle/TEST/fs2/EBSapps/comn/util/jdk32 if there is

    / App/oracle/TEST/fs2/EBSapps/comn/util/jdk32 deleted directory

    Installation of WebLogic Server.

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWLS.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWLS.xml oracle.apps.fnd.txk.config.InstallService

    WebLogic Server successfully installed

    Web Tier utility installation.

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWeb.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWeb.xml oracle.apps.fnd.txk.config.InstallService

    Level successfully installed Web utilities

    Registration EBSUsing /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instEBS.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instEBS.xml oracle.apps.fnd.txk.config.InstallService

    EBS registered successfully

    Rename/home/appltest/bea/beahomelist in /home/appltest/bea/beahomelist.29266 to avoid problems during WLS

    patching

    / Home/appltest/Bea/beahomelist renamed successfully.

    Application of ad hoc patches

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instASpatches.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instASpatches.xml oracle.apps.fnd.txk.config.InstallService

    Fatal error: T2K install Service

    oracle.apps.fnd.txk.config.ProcessStateException: OPatch process failed: Output = 1 see log for more details. CMD = perl /app/oracle/TEST/fs2/FMW_Home/webtier/OPatch/opatch.pl apply - verbose - silent - ocmrf /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd/admin/template/txkForms_ocm.rsp jdk - / app/oracle/TEST/fs2/FMW_Home/webtier/jdk/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/patches/7695070/7695070

    at oracle.apps.fnd.txk.config.OPatchActionNode.processState(OPatchActionNode.java:312)

    at oracle.apps.fnd.txk.config.PatchActionNode.processState(PatchActionNode.java:187)

    at oracle.apps.fnd.txk.config.PatchNode.processState(PatchNode.java:338)

    at oracle.apps.fnd.txk.config.PatchesNode.processState(PatchesNode.java:79)

    at oracle.apps.fnd.txk.config.InstallNode.processState(InstallNode.java:68)

    at oracle.apps.fnd.txk.config.TXKTopology.traverse(TXKTopology.java:594)

    at oracle.apps.fnd.txk.config.InstallService.doInvoke(InstallService.java:224)

    at oracle.apps.fnd.txk.config.InstallService.invoke(InstallService.java:237)

    at oracle.apps.fnd.txk.config.InstallService.main(InstallService.java:291)

    Can not install the unique patches

    RW-50010: error:-script returned an error: 1

    RW-50004: Error Code when you run the external process.  Check the log file for more details.


    It was recorded in /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/logs/12021641.log and I don't know how to find another newspaper for such details as mentioned in this journal. Please help me with that.


    Concerning

    KasunA

    Found a workaround.  The problem is that, before the 7695070 patch is applied, the installation program backup directory/apps/fs2/FMW_Home/webtier/jdk in /apps/fs2/FMW_Home/webtier/jdk_backup_existing_version, but then it clears. / jdk - the patch fails because it can't find it.  I had to rename the directory of the jdk for jdk2, and as soon as it gets deleted quickly and rename jdk2 jdk.  Then he applies the patches without problem.  A symbolic link would do the same thing.

  • How to record the numbers and words in the same file

    Hello:

    I did a vi where I record the spectrum and its integration in different positions of a two-dimensional net. I save the information in two spreadsheet with the comand "write to file measure."

    Now, I am recording the parameters initial positions, end X X and space between measurement points. I want a file with two columns that looks like:

    Initial position X 1000

    final position X 2000

    space 100

    But idon't know how to save the words and numbers in the same file.

    As I have to perform several steps I want to automatically choose the name of the file (something like parameters_1, parameters_2...)

    Thank you for your attention

    Hi bitxor.

    You can use all the functions of the WriteTotext file to write strings to a file.

    Then you could set up WriteToMeasurementFile' to add new data to existing files (instead of overwrite or renaming)...

    BTW. It is not a good idea to mix lvm files containing arbitrary spreadsheet data!

  • Had two files the same titled and deleted somehow the wrong file - how can I restore it

    original title: deleted the wrong file

    Had two files the same titled and deleted somehow the wrong file - how can I restore it - tried everything

    Hello

    This forum is for comments on the forums for answers. This should arise in the answers-
    Forums for your version of Windows Windows.

    Answers - Windows Forums
    http://answers.Microsoft.com/en-us/Windows

    -------------------------------------------------------------------------------------------------------------

    Recuva - free - recovers files deleted from your Windows computer, Recycle Bin,
    map of the camera digital or MP3 player. And it's free!
    http://www.Piriform.com/Recuva

    Forums - help here
    http://Forum.Piriform.com/

    I hope this helps.

Maybe you are looking for

  • Stabilization repeat dominant analysis of movement several times

    I'm running 10.2.3 10.11.5 OS FCPX. I have a project of seven minutes and trying to do a clip that is a minute and a half of stabilization.  The "Dominant movement analysis" of this little clip repeats again and again and again.  It is 100% and seems

  • Satellite A300 - Cd/Dvd drive is not recognized by Windows

    My cd/dvd drive has stopped being recognized by windows (7). I don't know what has caused this because he previously worked and allowed me to install office 2010.There seems to be no restore point shown around where he was working.

  • generator with the audio load options

    Hello IM new kind of movement, I am trying to add a drop down loading audio file (as seen here https://vimeo.com/115676446 at 0:21) a test generator, but I can't find a way to achieve the same result. I can publish anything, but options for audio. An

  • Error-200279 during analog playback Wfm Nsample

    I called the VI attached at least 10 x in the main VI and works very well, but sometimes it gives me an error-200279. Can someone please tell me why? Thank you in advance.

  • Refresh the screen problem

    Thanks for the reply. In my screen is getting refreshed every 30 seconds, if I use for single Labelfield setext it works fine, but if there are many Labelfield (that are created dynamically via a loop), it seems that the process does not work. Could