Importing from AppleWorks-6

Have tried to import AppleWorks-6 letter paper Template with photo and text address as headed note paper (.cws) into Pages-2, and it will not open no matter which way I try. Blurb says you can open AppleWorks documents in PAGES -2, Advice would be most welcome as to HOW with a <.cws> document.
Aluminium 15" G4 PowerBook - G4 Tower - dual core G5 Tower   Mac OS X (10.3.9)   dual core G5 Tower on OSX 10.4.3

For some reason I don't understand, unchecking "stationery pad" in Get Info is not really changing the document. It still says it is an com.apple.appleworks.template under General in the Get Info window. The same thing happens if I use this method to change an AppleWorks document to a template. In this case the icon changes to a stationery pad, but it is still a document.
I've worked out a method to make the change without having to open each document in AppleWorks & save it as an AppleWorks document. If your AppleWorks templates all have the .cws extension, you may skip the first step. Create a new folder to put the files to be changed in. If you don't have the AppleScript menu in the Menu Bar, see my user tip, AppleWorks 6 won't open my AW 5 files, that explains how to activate it. It also gives some information on the process below.
1. Select all of the files you have put in the change folder & then click on the AppleScript icon > Finder Scripts > Add to File Names > type .cws in the text box & click Suffix.
2. Now select all of the files in the change folder (they should now all have the .cws file extension). Again, go to Finder Scripts but this time choose Replace Text in File Names > File Names > type cws > OK > type cwk > OK > OK. Now, Pages will recognize the AppleWorks 6 word processing documents as those it can open. Remember, Pages can only open AppleWorks 6 word processing documents.

Similar Messages

  • How do I move a graphic-box in a document I imported from AppleWorks?

    I imported a book which I wrote in AppleWorks without problems into Pages '08. On one page of this book I had created a box, using the graphics tool, and moved it to the back so I could read the text inside it. It is now in the Pages '08 version of my book, but because of editing and additional writing which I've done, it appears on page 295, not 297 where it belongs. In AppleWorks I could simply select it and drag it into place. In Pages '08 I can't figure out how to select it. It's just there.
    Help desperately needed.

    Here is an AppleScript which, in a single call will
    • extract the embedded picture files
    • strip the annoying description of the 'background' pictures from the Index.xml file.
    So, we may open the Pages document, it will be free of the oddity and the picture files are available in the folder "importés_sétropmi" on the desktop.
    --(SCRIPT recupPictures]
    Save the script as an Application (Bundle Application if you want to use it on a MacIntel)
    Store it on the Desktop.
    Drag and drop the icon of a Pages document imported from AppleWorks on the script's icon.
    The script will move the embedded picture files in a folder named "importés_sétropmi" on the desktop.
    Then it will strip the Index.xml file from the block of datas describing the embedded pictures.
    Yvan KOENIG (FRANCE 7 juillet 2008)
    property typePages : "com.apple.iwork.pages.pages"
    property baliseDebut : "<sl:drawables>"
    property baliseFin : "</sl:drawables>"
    property return2 : return & return
    property line_Feed : ASCII character 10
    property line_Feed2 : line_Feed & line_Feed
    property monDossier : "importés_sétropmi"
    property withSeconds : true
    --=========
    on run (*
    lignes exécutées si on double clique sur l'icône du script application
    • lines executed if one double click the application script's icon *)
    tell application "System Events" to set docIwork to (choose file of type typePages)
    my commun(docIwork) (* un alias *)
    end run
    --=========
    on open (sel) (*
    sel contient une liste d'alias des élémentsqu'on a déposés sur l'icône du script (la sélection)
    • sel contains a list of aliases of the items dropped on the script's icon (the selection) *)
    set item1 to item 1 of sel
    tell application "System Events" to set typeID to (type identifier of item1) as Unicode text
    if typeID is not typePages then return
    my commun(item1) (* un alias *)
    end open
    --=========
    on commun(thePack)
    local typeID, p2d, p2dd, liste, path2Index, texteXML, lafin
    set p2d to path to desktop as Unicode text
    set p2dd to p2d & monDossier & ":"
    tell application "Finder"
    set liste to files of thePack whose name starts with "file"
    if liste is {} then return (* no picture file so nothing to do *)
    if exists folder p2dd then set name of folder p2dd to (monDossier & my horoDateur(modification date of (item p2dd)))
    make new folder at folder p2d with properties {name:monDossier}
    repeat with f in liste
    move f as alias to folder p2dd
    end repeat
    end tell -- to Finder
    try
    set path2Index to (thePack as Unicode text) & "Index.xml"
    set texteXML to my lis_Index(path2Index)
    if texteXML contains baliseDebut then
    set liste to my decoupe(texteXML, baliseDebut)
    set lafin to my decoupe(item 2 of liste, baliseFin)
    set texteXML to item 1 of liste & lafin
    if texteXML contains return2 then
    set texteXML to my recolle(my decoupe(texteXML, return2), return)
    end if
    if texteXML contains line_Feed2 then
    set texteXML to my recolle(my decoupe(texteXML, line_Feed2), line_Feed)
    end if
    my enregistre(texteXML, path2Index)
    end if
    on error error_message number error_number
    if the error_number is not -128 then my affiche(error_message)
    end try
    end commun
    --=========
    on affiche(msg)
    tell application "Finder"
    activate
    display dialog msg buttons {"Cancel"} default button 1 ¬
    giving up after 120
    end tell
    end affiche
    --=========
    on lis_Index(cheminXML0)
    local cheminXML0, cheminXMLgz, txtXML
    set cheminXMLgz to cheminXML0 & ".gz"
    tell application "System Events"
    if exists file cheminXMLgz then
    if exists file cheminXML0 then delete file cheminXML0 (*
    un curieux à pu dé-gzipper le fichier
    • someone may have gunzipped the file *)
    my expand(cheminXMLgz)
    set txtXML to my lisIndex_xml(cheminXML0)
    else if exists file cheminXML0 then
    set txtXML to my lisIndex_xml(cheminXML0)
    else
    error "Index.xml missing"
    end if
    end tell -- to System Events
    return txtXML
    end lis_Index
    --=========
    on expand(f)
    do shell script "gunzip " & quoted form of (POSIX path of (f))
    end expand
    --=========
    on lisIndex_xml(f)
    local t
    try
    set t to ""
    set t to (read file f)
    end try
    return t
    end lisIndex_xml
    --=========
    on enregistre(leTexte, nDoc)
    local aliasNDoc
    set aliasNDoc to nDoc as alias
    write leTexte to aliasNDoc starting at 0
    do shell script "gzip " & quoted form of POSIX path of aliasNDoc
    end enregistre
    --=========
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=========
    on recolle(l, d)
    local t
    set AppleScript's text item delimiters to d
    set t to l as text
    set AppleScript's text item delimiters to ""
    return t
    end recolle
    (* =============
    • Build a stamp from the modification date_time
    on horoDateur(dt)
    local annee, mois, jour, lHeure, lesSecondes, lesMinutes
    set annee to year of dt
    set mois to month of dt as number (* existe depuis 10.4 *)
    set jour to day of dt
    set lHeure to time of dt
    set lesSecondes to (lHeure mod 60)
    set lHeure to round (lHeure div 60)
    set lesMinutes to (lHeure mod 60)
    set lHeure to round (lHeure div 60)
    if withSeconds is true then
    return "_" & annee & text -2 thru -1 of ("00" & mois) & text -2 thru -1 of ("00" & jour) & "-" & text -2 thru -1 of ("00" & lHeure) & text -2 thru -1 of ("00" & lesMinutes) & text -2 thru -1 of ("00" & lesSecondes)
    else
    return "_" & annee & text -2 thru -1 of ("00" & mois) & text -2 thru -1 of ("00" & jour) & "-" & text -2 thru -1 of ("00" & lHeure) & text -2 thru -1 of ("00" & lesMinutes)
    end if (*
    • Here, the stamp is "_YYYYMMDD-hhmm" or "_YYYYMMDD-hhmmss" *)
    end horoDateur
    --=========
    -- [/SCRIPT]
    Yvan KOENIG (from FRANCE lundi 7 juillet 2008 20:27:47)

  • Importing From Appleworks 6 Files

    My old Mac running Appleworks 6 died. I bought a new iMac but I see they no longer come with Appleworks. So, I loaded the old version onto the new iMac. Now, some Appleworks spreadsheets won't open; I get a message that says, "An I/O error occurred.
    So is iWork the replacement for Appleworks? Will iWork open my Appleworks 6 spreadsheets properly? How about my Appleworks 6 word processing documents? Most of my Appleworks 6 documents seem to open okay with the old software running in the new OS, but I'm willing to upgrade if it will solve my problem.
    I can't download the trial version of iWork 08-even with a high speed connection so that doesn't seem to be an option. I drop the download process after a few minutes.

    There is much more to deleting the AppleWorks preferences than just the .plist.
    The iWork applications - Keynote, Pages & Numbers - can only open AppleWorks 6 presentation, word processing & spreadsheet documents, respectively. They will not open any other type of AppleWorks 6 files or any AppleWorks 5 or any version of ClarisWorks files.
    If you would ever have the need to open ClarisWorks 4 or earlier files, you need to be aware that AppleWorks 6.2.9 (the current version) can't open all of these files. It gives an I/O error. There doesn't appear to be a way to predict which files will cause problems. I've had it happen & not happen with all AppleWorks file types. These files can be opened by any other version of AppleWorks 6, so a good choice would be AppleWorks 6.2.4. AppleWorks 6.2.4 is the earliest version stable in OS X. Avoid 6.2.7 - very, very, very buggy!

  • When I try to print a drawing imported from my ipad iphoto crops it. Is there any way to stop this?

    When I try to print a drawing imported from my ipad iphoto crops it. Is there any way to stop this?

    Usual cause: printing at the wrong aspect ratio for the image - trying to print 5 x 3 in the shape of a 6 x 4 for instance.
    Regards
    TD

  • I want to remove all of my photos out of iPhoto there are approximately 35000 some imported from an old hard drive and a SD Card from my Nikon D500 how do I do this

    I want to remove all of my photos out of iPhoto there are approximately 35000 some imported from an old hard drive and a SD Card from my Nikon D500 how do I do this?
    I have iPhoto version 9.1.5 (615)
    Mac OS X version 10.6.8
    I want to do this because when I imported from my old hard drive there was an error message stating that 12 photos were not imported as the programm did not recognise the format even though they were jpegs like the other photos in that particular album. The dates of the photo folders are wrong I have multiple copies of photos and every time I start iPhoto I get the following message 12 photos have been found in the iPhoto library that were not imported would you like to import them No or Yes
    if you press Yes the same message comes back again and if you press Yes again the program flicks to last import for 2 seconds and then opens events.
    if you press No the message The photos have been placed in the folder/user/judith/pictures/iphoto Library recovered photos then if you press OK the original message 12 photos have been found.............
    if you press No at this point the message The photos have been placed in the folder/user /judith/pictures/iphoto Library recovered photos_11 the end number goes up by 1 every time you go through this process
    Any help would be greatly appreciated

    Did you import an iPhoto Library from the old Hard Drive? Do you still have that old Library?
    The way to clear out a Library is to Export the photos - Apps like iPhoto2Disk or PhotoShare will help you export to a Folder tree matching your Events.
    For the annoying start-up message:
    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for a Folder called 'Import' or 'Importing'.
    Drag it to the Desktop. *Make no other changes*.
    Start iPhoto. Does that help?
    If it does then look inside that folder on your desktop. Does it contain anything you want? If not you can trash the folder.

  • Comments not imported from Data Dictionary of SQL Server. SDDM 3.3.0.747

    Hi,
    SDDM 3.3.0.747 32-bit on Windows 7 64-bit.
    Comments are not imported from Data Dictionary of SQL Server 2008. Connection through Microsoft JDBC Driver 4.0 for SQL Server or jTDS 1.2.7
    What I have tried? In SDDM DDL generation, Comments in DBRMS for SQL Server are generated with "EXEC sp_addextendedproperty 'MS_Description' , 'Test Comment' ..." so I added extended property named "MS_Description" into SQL Server database, both on table and column. None of them were imported from Data Dictionary into SSDM. I have tried both drivers stated above. Is it a bug or am I missing something?
    I've found similar question thread Re: Data dictionary import doesn't import column comments for SDDM 3.0.0.665, so I guess it is a bug when importing with JDBC drivers.
    MiGli
    Edited by: MiGli_1006342 on May 25, 2013 8:32 AM
    Edited by: MiGli_1006342 on May 25, 2013 9:02 AM

    Extended properties were not imported correctly from SQLServer databases at DM 3.3.0.747.
    Calls to sp_addextendedproperty and fn_listextendedproperty have been modified.
    I don't think it is a problem with JDBC drivers.
    A bug fix should be available in the next release of DM.

  • SQL modeler can not import from data dictionary

    It was very frustruted to see that the SQL Modeler hang in import from data dictionary of a database as part of revise engineering. I have to question myself if sql modeler is a serious tool and should I give up.

    I am not sure if Data Modeller is still in Beta./Production. First couple off initial versions of a new product are normally buggy.
    Regards
    Alternatively, If this product is still in Beta, then you can contact the development team or report the issue so that they can take care of this issue in next beta release.
    Edited by: skvaish1 on Mar 30, 2010 3:18 PM
    Edited by: skvaish1 on Mar 30, 2010 3:26 PM

  • Unable to Import from my Canon DC220 camcorder...

    I had begun a project with I-movie 6 of which my camcorder was not compatible with...my solution was to upgrade to I-Movie 08 of which the Canon DC220 is compatible with and I-Movie should import from (http://docs.info.apple.com/article.html?artnum=306171). Unfortunately, when I plug my Camcorder into the USB and switch it to PC/Computer mode, I get a pop up on the screen stating that I "inserted a Blank DVD" and gives me a few options on how to proceed. I did try to use other USB ports on the Mac...nothing. I did try a couple different DVDs of which I recorded on...nothing. So I was able to eliminate the problem being with the DVD or the USB port I was using. Please advise as I am at a loss. Thanks so much.

    Unplug your USB cable and then press func. to enter the menu on your camera.
    plug in your cameras power supply. Then select Finalize. This will close the disc and prepare it for importing.
    I'm still having trouble, but this is a step you must follow.

  • Data import from EBS failed via FDMEE in fdm . Getting error message as "Error connecting to AIF URL.

    FDM Data import from EBS failed via FDMEE after roll back the 11.1.2.3.500 patch . Getting below error message in ERPI Adapter log.
    *** clsGetFinData.fExecuteDataRule @ 2/18/2015 5:36:17 AM ***
    PeriodKey = 5/31/2013 12:00:00 AM
    PriorPeriodKey = 4/30/2013 12:00:00 AM
    Rule Name = 6001
    Execution Mode = FULLREFRESH
    System.Runtime.InteropServices.COMException (0x80040209): Error connecting to AIF URL.
    at Oracle.Erpi.ErpiFdmCommon.ExecuteRule(String userName, String ssoToken, String ruleName, String executionMode, String priorPeriodKey, String periodKey, String& loadId)
    at fdmERPIfinE1.clsGetFinData.fExecuteDataRule(String strERPIUserID, String strDataRuleName, String strExecutionMode, String strPeriodKey, String strPriorPeriodKey)
    Any help Please?
    Thanks

    Hi
    Getting this error in ErpiIntergrator0.log . ODI session ID were not generated in ODI / FDMEE. If I import from FDMEE its importing data from EBS.
    <[ServletContext@809342788[app:AIF module:aif path:/aif spec-version:2.5 version:11.1.2.0]] Servlet failed with Exception
    java.lang.RuntimeException
    at com.hyperion.aif.servlet.FDMRuleServlet.doPost(FDMRuleServlet.java:76)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • IPhone won't play music imported from CDs or mp3s not downloaded from itunes

    When I first downloaded iOS 7, all of the music I had in my iTunes synched to my iPhone, but now new CDs I just imported and previous songs I imported from CDs won't synch (I've tried over wifi and usb).  When I click on songs on my phone that were from CDs, they look as if they are going to play and then skip immediately.  Mp3s I downloaded do the same thing.  Mind you, everything was working fine until updating to iOS 7.0.4.  I've been looking around the forums and have found that problems like this are relatively common and it's a shame Apple hasn't done anything to fix it.
    When my phone is hooked up and I click on "on this iPhone", it says the music from CDs and mp3s is on, but the titles come up gray with these litte circle things next to them
    Just checking now, I noticed some songs I bought from iTunes are doing the same thing.
    I tried manually synching, but when I click to drag the songs into my phone, the section that has music, movies, etc. just flashes and nothing happens.  I know something is wrong because I just put a ringtone onto my phone the same way.
    Oh, I also noticed that when my iPhone is synching and the steps go through at the top it skips steps 3, 4, and sometimes 5 (The Apple symbol pops up instead then goes straight to 6 and 7) so I know it's not recognizing the fact I put a bunch of new music in iTunes. Also, when I look at the bar at the bottom that shows how much memory is on my phone, this shows up:
    and that Documents and Data thing was not there before.
    Can someone please give me ideas on how I can stop this rediculousness without buying a new phone?

    Did you already try the suggestions mentioned in this article?
    iTunes repeatedly prompts to authorize computer to play iTunes Store purchases

  • This Question is at least 2.5 years old.  But still an issue.  I have an early 2008 and mid 2010 13 inch macbook pro running iTunes 10.7.  Itunes on both machines doesn't recognize blank cds or allow me to import from a music cd when I insert it.

    I have an early 2008 and mid 2010 13 inch macbook pro running iTunes 10.7.  Itunes on both machines doesn't recognize blank cds or allow me to import from a music cd when I insert it.

    iTunes does not use the .xml it uses the .itl
    If you are sure your old library file migrated across (does the file size and modification dates suggest it has?) start iTunes while holding down the option/alt key and guide it to the .itl file to get it to use that one.

  • Importing from iMovie 09

    I have iMovie 09 and I just bought Final Cut Express. I created a simple movie in iMovie 09. I exported it as Final Cut XML. I imported the file in Final Cut Express. All as described in the Final Cut Express video tutorial.
    However, I just get a "Media Offline" message... the import doesn't seem to work. I have tried this multiple times.
    I have tried reconnecting the files, but it doesn't seem to let me select the right file...
    Very confused... Is there anything I can do to get this working? (Preferably without having to attempt to reconnect the files)
    Thanks!

    Thanks Tom.
    In the video tutorial it appears as if you do not need to reconnect the files. I assumed that this would only be necessary if the files had been moved, but I didn't move them. I thought that the XML files would include directions to where the video clips are stored. Do you have to manually point to the files every time that you import from iMovie?
    My iMovie project is a screen recording. It consists of several .mov files. I have tried removing all the titles / fades / transitions but it still cannot see the video clips when I import them to FCE.
    The movie's about 8 minutes long. It's in widescreen. I haven't changed any settings.

  • Importing from iMovie to FC Express

    I have attepted to import AVCHD files from my Canon XA20 Camcorder to FC Express with no success. I then attepted to import the same files into iMovie with success.
    I have 2 questions.
    1. How can I import AVCHD files direct int FC Express.
    2. To import from iMovie to FC Express I cannot find where iMovie video file are on the system. In FCE you can nominate a drive for the files to be put.

    That is PAL 25 fps?
    The data rate should be fine.
    AVCHD is possible to ingest directly to FCE.
    Make sure you set the comatching Easy Setup BEFORE trying to capture.
    Use Log and transfer over USB cable.
    Al

  • Importing from iMovie 06, lose capture dates

    When I import old iMovie 06 movies, the capture dates gets lost. Here is one of the original clips in iMovie 06:
    However, after importing in iMovie 11, the capture dates are lost.  I tried many variations, like import the iMovie 06 project, or cd to the *.iMovieProject directory and import the actual clips, etc.
    Now, good iMovie11 clips have the capture date imbedded in the file name (as in clip-2010-03-14 hh;mm;ss.dv).  However, the ones imported from iMovie 06 end up in iMovie 11 with simple names such as clip55.dv.  So it's not surprising I cannot see the capture dates in iMovie 11.
    So I looked inside the *.iMovieProject directory hoping to find the capture dates either in the file name or in a plist, but I couldn't (nothing in the plists below)
    ... Jan 23  2010 Cache/Thumbnails.plist
    ... Jan 23  2010 Cache/Timeline Movie Data.plist
    ... Jan 23  2010 Cache/Timeline Movie.mov
    ... Nov  8  2009 Media/Clip55.dv
    etc
    Finally, I opened Clip55.dv in QuickTime and looked at MovieInspector, but I could not see any capture date (similar to exif in jpegs).
    So obviously I missed them. My question is where in the iMovie 06 project can I find them?   If accessible, I can write a script to fix the clips imported in iMovie11 by changing their names. I tried it manually, and it worked.
    Thanks in advance

    Hi - Couple of things.
    Click on the offending clip that you imported from iMovie in your FCP Bin and type Command + 9 to see the item properties. Either report those item properties, or if easier, take a screen shot of the item properties and post that.
    Then click any where on the timeline you are having trouble with and type Command + 0 (Zero) to see the sequence settings. Either report those settings or take a screen shot of the Sequence Settings window and post that.
    In order for FCP to use the video without rendering, both the items properties of the source clip, and the sequence settings must match - and both must be within standard production parameters.
    Also, you can click on the source clip in the FCP Bin, then control-click on the clip and select Reveal in Finder from the drop down menu. Once that file is revealed, open it in Quicktime 7 and see if if plays correctly there.
    Hope this helps.
    MtD

  • How to prevent users from running PRC: Transaction Import from WebADI form?

    Hi,
    We are 12.1.3 and trying to create a workflow to approve Project transactions coming through web ADI before they become effective. To this end, we want to prevent users from running the PRC: Transaction Import from the Web ADI.
    I know that if the checkbox Automatically run transaction import is not checked, the program does not run. But we want to hide this checkbox and not allow the possibility that the program could get triggered.
    To this end, we updated the BNE_INTEGRATORS_B with source='C'. This allows you to edit the integrator from Desktop Integration Manager.
    UPDATE BNE_INTEGRATORS_B SET SOURCE ='C' WHERE  INTEGRATOR_CODE ='PAXTTRXB'
    In the 4th step, where the value for Uploader Parameters is set, we have set boolean value to No. These are the fields on the page:
    Parameter Name: bne:import
    Display Name: Start Transaction Upload
    Data Type: Boolean
    Category: Field
    Default Value: Boolean Flag: No
    Description: start Transaction Import Concurrent Request
    Display Options: Displayed: Unchecked
    Display Options: Enabled: Checked
    Display Options: Required: Checked
    Prompt Left: Automatically submit Transaction import
    Display Type: Check Box
    Maximun Size: 100
    Display Size:100
    Now the checkbox is not appearing for the user to check it, But the program is automatically running when you hit Upload in the WebADI. 

    Hi ,
    Try removing the PRC: Transaction Import Program from the request group for the responsibility used by customers to submit the WebADI and then check if the program launches.
    Regards,
    Raghavan

Maybe you are looking for