Service to checkin file if it does not exist, else version the file

Hi All,
From java layer I use WEBDAV and use PUT command and this command creates a new file if it does not exist, and if the file exists it versions the existing file.
I have developed a java component to unzip a folder and checkin all individual files and folders into UCM whenever a zip file is checked in.I would like similar feature in my UCM component.i.e whenever files are unzipped they should always be versioned if they exist.I use the below code,but it always creates a new file(even if file with same name exists in the same folder)
m_binder.setEnvironment(SharedObjects.getEnvironment());
m_binder.putLocal("dDocName","");
m_binder.putLocal("IsAutoNumber", "true");
m_binder.putLocal("AutoNumberPrefix", "olm_");
m_binder.putLocal("IdcService","CHECKIN_NEW");
m_binder.putLocal("dDocTitle",entityName);
m_binder.putLocal("xCollectionID",parentId);
m_binder.putLocal("dDocType", "Document");
m_binder.putLocal("dSecurityGroup","Public");
m_binder.putLocal("dDocAuthor","sysadmin");
m_binder.putLocal("dCreateDate","");
m_binder.putLocal("primaryFile", entryName);
executeService(ws, m_binder,"sysadmin",true);
So, I would like to know, if there is a service to achieve the same or is there a parameter I can add in m_binder.putLocal to achieve the same? OR am I suppose to query the UCM Database to check for existence of the file and if it exists I need to manually check out and check it in?
Thanks,
Shwetha

Thanks Fabian and Ryan for your feedback.
So I queried db to retrieve the ddocName and if no rows are returned my code checks in new file. But if rows are returned I checkout the file using CHECKOUT_BY_NAME and then checkin using CHECKIN_UNIVERSAL using same ddocName.
Creating/checking in new file is successful.
For existing files the checkout is successful.I also confirmed the file is checked out by querying documenthistory and ensuring a new row is created with dction = 'Check out'
But post checkout when i try to re-check using CHECKIN_UNIVERSAL command, I receive the below exception
intradoc.common.ServiceException: !csUnableToCheckIn,OLM_002103!csCheckinItemExists
at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
at intradoc.server.Service.buildServiceException(Service.java:2326)
at intradoc.server.Service.createServiceExceptionEx(Service.java:2320)
at intradoc.server.Service.createServiceException(Service.java:2315)
What am I missing here?
Code snippet:
m_binder.setEnvironment(SharedObjects.getEnvironment());
m_binder.putLocal("IsAutoNumber", "true");
m_binder.putLocal("AutoNumberPrefix", "olm_");
String docName = getDocname(ws, parentId, entityName);
if(docName != null && docName.equals("FILENOTFOUND")) {
System.out.println("Creating new file");
System.out.println("parentId is "+ parentId);
m_binder.putLocal("IdcService","CHECKIN_UNIVERSAL");
m_binder.putLocal("dDocName","");
m_binder.putLocal("dDocTitle",entityName);
m_binder.putLocal("xCollectionID",parentId);
m_binder.putLocal("dDocType", "Document");
m_binder.putLocal("dSecurityGroup","Public");
m_binder.putLocal("dDocAuthor","sysadmin");
m_binder.putLocal ("doFileCopy", "1");
m_binder.putLocal("dCreateDate","");
m_binder.putLocal("primaryFile", entryName);
executeService(ws, m_binder,"sysadmin",true);
System.out.println("Created file successfully");
}else{
System.out.println("Check out file");
System.out.println("parentId is "+ parentId);
m_binder.putLocal("IdcService","CHECKOUT_BY_NAME");
m_binder.putLocal("dDocName",docName);
executeService(ws, m_binder,"sysadmin",true);
System.out.println("File checked out successfully");
System.out.println("Check in file");
m_binder.putLocal("IdcService","CHECKIN_UNIVERSAL");
m_binder.putLocal("dDocName",docName);
m_binder.putLocal("dDocTitle",entityName);
m_binder.putLocal("xCollectionID",parentId);
m_binder.putLocal("dDocType", "Document");
m_binder.putLocal("dSecurityGroup","Public");
m_binder.putLocal("dDocAuthor","sysadmin");
m_binder.putLocal ("doFileCopy", "1");
m_binder.putLocal("dCreateDate","");
m_binder.putLocal("primaryFile", entryName);
executeService(ws, m_binder,"sysadmin",true);
System.out.println("Checked in file successfully");
public String getDocname(Workspace ws, String folderId, String originalName)
throws DataException,ServiceException
System.out.println("Entered getDocname");
String val = new String("FILENOTFOUND");
String sql = "select a.ddocname from documenthistory a, docmeta b, documents d " +
"where a.did = b.did and a.did = d.did and d.DORIGINALNAME = '" + originalName +
"' and b.xcollectionid = '" + folderId + "'";
System.out.println("sql query is : " + sql);
ResultSet rs = ws.createResultSetSQL(sql);
if(rs == null) {
System.out.println("Resultset for getDocname is empty");
throw new ServiceException("Resultset for getDocname is empty");
DataResultSet result = new DataResultSet();
result.copy(rs);
if(result.getNumRows() >= 1) {
result.first();
val = result.getStringValue(0);
System.out.println("ddocname is :" + val);
return val;
else {
System.out.println("FILENOTFOUND");
return val;
Thanks,
Shwetha

Similar Messages

  • Ressource file LM00    99 does not exist

    Hi all,
    I am getting an error while running LM00 in internet service in tcode se80.
    The error is : "Ressource file LM00      99 does not exist"
    I have done all the settings in SICF, as given in Raja's blog:
    Running your first  ITS WebGUI application in SAP NetWeaver 04 ABAP Edition - NSP
    and activated all services but still getting an error and not able to execute the code. However other standard tcodes are executing successfully. Only this Tcode Lm00 is not running.
    I'd greatful to all of u to solve this issue.
    Thanks
    Puneet

    Hi,
    Basically my error while running standard internet service for LM00 is:-
    The URL http://server2.XXXXX.local:8000/sap/bc/gui/sap/its/lm00/ was not called due to an error.
    Note
    The following error text was processed in the system PRO : Internal Error
    The error occurred on the application server server2_PRO_00 and in the work process 0 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Module: %_CTL_OUTPUT_FLUSH of program SAPMSSYD
    Function: CALL_MESSAGE_SCREEN of program SAPLLMOB
    Form: ERROR_MESSAGE of program RLMENU
    Module: DYNAMIC_MENU_BUTTONS_TEXT of program RLMENU
    Form: CALL_SCREEN_MENU of program RLMENU
    START-OF-SELECTION of program RLMENU
    What can I do?
    If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system PRO in transaction ST22.
    If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server server2_PRO_00 in transaction SM21.
    If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server server2_PRO_00 . In some situations, you may also need to analyze the trace files of other work processes.
    If you do not yet have a user ID, contact your system administrator.
    Error code: ICF-IE-http -c: 100 -u: ABHATTA -l: E -s: PRO -i: server2_PRO_00 -w: 0 -d: 20081204 -t: 103603 -v: TH_RES_FREE -e: Internal Error
    HTTP 500 - Internal Server Error
    Your SAP Internet Communication Framework Team

  • Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of g

    Hi i am getting an error like this while installing Live Cycle Server " The file merge_modules\lc11_common_iam_zip does not exist This file is required sucessfullly run the  Live Cycle Installer.Can any one help me on resolving this issue it would be of great help..thanks .

    I think in your situation it would be worth trying the things listed under the event. It does have to do with FRS and it's easy to do. I've used it to fix journal errors after a server unexpectedly restarts and sysvol stops replicating.  I
    could see where it could fix your issue, and if it doesn't, you're out 5 minutes. :)
    The listed registry key does not exist
    Expand HKEY_LOCAL_MACHINE. 
    Click down the key path: 
       "System\CurrentControlSet\Services\NtFrs\Parameters" 
    Double click on the value name 
       "Enable Journal Wrap Automatic Restore" 
     

  • [SOLVED] ABS - nasm - install file (nasm.install) does not exist

    I was attempting to build the nasm package and I encountered the following error:
    ==> ERROR: install file (nasm.install) does not exist.
    When reviewing the PKGBUILD file there was a line in the header:
    install=nasm.install
    ArchWiki (PKGBUILD) explains the install directive
    The name of the .install script to be included in the package. pacman has the ability to store and execute a package-specific script when it installs, removes or upgrades a package. The script contains the following functions which run at different times
    I removed the install= line and everything appeared to work.  My question is... does anyone know if the install script it was expecting to find did anything special that is going to cause me grief going forward?
    Thx
    Last edited by dwardca (2013-07-06 04:43:41)

    I figured out what I did wrong.   I copied only the PKGBUILD file out of /var/abs/extra/nasm folder ..  the nasm.install was still in the folder.
    Explains why I couldn't find the answer on Google. 
    Last edited by dwardca (2013-07-06 04:44:13)

  • [SOLVED] database file for multilib does not exist

    Hey guys I ran into a problem today when I tried to install the proper packages I needed to use my wifi card. However when I tried to install it it gives me the error "database file for multilib does not exist" I can t seem to find out why I even tried chrooting into it and installing it that way with no luck. The package I tried to install was "pacman -S wireless_tools netcfg" thanks for the help guys you've been great.
    Last edited by bdawg (2012-09-18 22:57:17)

    bdawg wrote:
    Ok so the whole output is as follows:
    Warning: database file for 'multilib' does not exist
    Error: failed to prepare transaction (could not find database)
    And my Pacman.conf is blank
    pacman.conf and Pacman.conf (with capital 'P') are two different files. Double-check this.
    Are you running a 64-bit system?
    Your /etc/pacman.conf should look like this: https://projects.archlinux.org/pacman.g … an.conf.in but with some repositories configured: https://wiki.archlinux.org/index.php/Pa … positories
    Last edited by karol (2012-09-18 22:13:59)

  • File or Folder does not exist

    I'm having a wierd problem with a png image which generates an error in my script.
    I'm building a UI using the group constructor, here is the line code I'm using to load the image:
    myImg:Image{text:'',image:'(image_folder)/image.png', alignment:['left','top']}
    The script runs with one image but not another one which is also a png of the same dimensions, bit depth etc. For some reason I get the 'file or folder does not exist' error message. If I replace the image with a known good one the script works.
    I've re-generated the image a dozen times. Still no joy.
    I'm not a total noob, though I infrequently write scripts and am completely prepared to learn I've made totally maverick error.
    Any thoughts?

    myImg:Image{text:'',image:'(image_folder)/image.png', alignment:['left','top']}
    I'm assuming that "(image_folder)" is a placeholder or variable and you are concatinating for the file path to the image? When checking file paths for images or what not, I usually try...
    alert(File.decode(File.openDialog()));
    ...to verify that my path is correct. Sometimes there's a extra slash or something I am missing.

  • Part of Photoshop isn't functioning.  Under adjustments, when HDR toning is clicked on I get a code:  Error 48: File or folder does not exist.  Line:11  - $.evalFile(g_StackScriptFolderPath   "StackSupport.jsx");  How can it be fixed?

    The phone company was here working on something while I was gone.  They sat down at my computer (iMac) and since then HDR toning doesn't work.  Get the code:   Error 48: File or folder does not exist.    Line: 11     ->  $.evalFile(g_StacScriptFolderPatch + "StackSupport.jsx");   How can this be fixed?   

    Go to //Applications/Adobe Photoshop [Version]/Presets/ Scripts/Stack Scripts Only/ and see if StackSupport.jsx is there. If it is not, uninstall and reinstall Photoshop to have it added back in. If it is there, first try recreating the Photoshop Preferences (hold down Command+Option+Shift while launching Photoshop).

  • HDR Toning Error 48: File or Folder Does Not Exist

    After migrating to a new computer HDR Toning is no longer available.
    I get a pop-up: Error 48: File or Folder Does Not Exist
                             Line 11  -> $. evalFile(g_StackScriptFolderPath + "StackSupport.jsx");
    What's the fix for this, if anyone knows?
    Thanks.

    Go to //Applications/Adobe Photoshop [Version]/Presets/ Scripts/Stack Scripts Only/ and see if StackSupport.jsx is there. If it is not, uninstall and reinstall Photoshop to have it added back in. If it is there, first try recreating the Photoshop Preferences (hold down Command+Option+Shift while launching Photoshop).

  • Ruler Tool- Error 48: File or folder does not exist

    I am trying to use the new RULER TOOL in CS5 (64-bit mode) running 10.6.4 and I get the following error:
    Error 48: File or folder does not exist.
    Line: 31
    ->  $.evalFile( g_StackScriptFolderPath + "Geometry.jsx");
    Any ideas?

    i'm getting the exact error using Windows XP with CS5.5
    error 48: file or folder does not exist
    line: 31
    -> $.evalFile(g_StackScriptFolderPath + "Geometry.jsx");
    HELP!!!
    someone
    hello ... anyone out there?
    how do we get support for this error?
    e

  • SMC - "The management domain file...does not exist"

    Hi All,
    Just a quickie to see if anyone has seen this and has any pointers to getting out of it...
    Solaris 10 u5 x86. Machine has got SRSS4.0 running on it, the only other modification is CUPS is running in favour of the Solaris lp stuff (got instructions for this off a BigAdmin article).
    Anyways, I use SMC to manipulate user/group stuff on the local machine. SMC launches just fine, and I can gather System Information, view logs, disk configuration, processes etc. However, when attempting to do any user/group/role stuff management, I authentication with root role, click on the relevant panel, and get this:
    "The management server cannot perform the operation requested.
    If this problem persists, refer to the Log Viewer for additional information and contact your Sun Microsystems support provider.
    The actual error reported was:
    The management domain file:/shadowfire/127 does not exist or cannot be managed on server shadowfire."
    The behaviour is consistent. Gee, it was running fine before, AFAIK...
    Any pointers to what may have come unstuck gratefully appreciated, as always :)
    Dave

    I came across the same problem late July almost same day - on a brand new M4000 server with Solaris 10. I use an X-windows client to connect in and open Common Desktop Environment as "root". Then when I invoke SMC it works for everything except trying to open User Maintenance - then I get the error above.
    I came across something quite by accident whilst I was being advised to make edits to /etc/hosts (which I dont think made a difference anyway so I wont mention them)
    If I use my X-Windows client and open Common Desktop Environment as an ordinary user (say "joe") - then invoke SMC from the menu - when asked by the SMC utility to provide a logon then (as you would) enter the root username and password, guess what ! - I could open the User Maintenance icon without the error appearing and make changes and save them.
    Funny how a less privileged user than root invoking CDE seems to provide a basis to get the option to work! I still get the error by using CDE as root
    Wanna Try it?

  • When I tried to run php file I am getting the following error message, "/home/karthick/Desktop/PHP files/third.php could not be opened, because the associated helper application does not exist. Change the association in your preferences." How to fix this?

    When I tried to run php file I am getting the following error message, "/home/karthick/Desktop/PHP files/third.php could not be opened, because the associated helper application does not exist. Change the association in your preferences." How to fix this?

    first, you just asked me to use MS file Explorer to see what the properties were.,..and to ask what happened. Yes - that's on my hard drive. The problem I have is opening word files in a DB that is web enabled.....I've used Firefox browser for that, and everything else , for years...... When I look at the Tools, and options on FireFox., as your support page noted.....NOTHING is listed in the Applications tab....hence my note asking for help. The file I need to open is a Word file out on a web enabled DB. It's not on my hard drive - I have to problems opening docs there - but for that, I don't use Firefox

  • Rep-52005 specified key PSREP does not exist in key map file

    Hi there,
    i am trying to reduce the length of my URL when calling a report (9iDS) from a parameter form
    in 9i using web.show_document(url,'target'). I have defined a key "psrep" at the end of my cgicmd file at reports\conf . The error i get is
    rep-52005 specified key PSREP does not exist in key map file.Stuck here.
    Any help gr8ly appreciated.
    Regards.

    uncomment #KEYPMAPFILE=CGICMD.DAT. remove the #
    then for development set
    reloadkeymap=yes (same file - rwservlet.properties).
    Now it should reload everytime. (otherwise for every change u need to restart oc4j_bi_forms)
    (For * production* may be you want to set reloadkeymap=no once all testing is done)
    see cgicmd.dat for many examples of using keymap file
    [ All Docs for all versions ]
    http://otn.oracle.com/documentation/reports.html
    [ Publishing reports to web - 10G ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [ Building reports - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [ Forms Reports Integration whitepaper 9i/10g ]
    9i - http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    10g - http://www.oracle.com/technology/products/forms/pdf/10g/frm10gsrw10g.pdf
    http://www.oracle.com/technology/products/forms/techlisting10g.html
    ---------------------------------------------------------------------------------

  • Unexpected error;Primary key does not exist:CmscdomPK version=2,name=J2E

    Hi I am getting the following error when i try to access the CMS related WebDynpro application.
    First time i am able to access the CMS.I created the domain and track.after that i edited the Domain tab with new domain name J2E.During that time i tried to save the domain,its throughing the Primary key does n't exist error.I closed the application.Again when i tried to access the CMS.Its throughing the following error.
    <b>Error stacktrace:
    com.sap.tc.webdynpro.progmodel.controller.MessageManager$AbortMessageManagerException: Unexpected error; inform your system administrator - Primary key does not exist: CmscdomPK version=2,name=J2E
         at com.sap.tc.webdynpro.progmodel.controller.MessageManager.raiseMessageInternal(MessageManager.java:254)
         at com.sap.tc.webdynpro.progmodel.controller.MessageManager.raiseMessage(MessageManager.java:964)
         at com.sap.cms.ui.wl.Custom1.hasTracks(Custom1.java:860)
         at com.sap.cms.ui.wl.Custom1.wdDoInit(Custom1.java:277)
         at com.sap.cms.ui.wl.wdp.InternalCustom1.wdDoInit(InternalCustom1.java:990)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingCustomController.doInit(DelegatingCustomController.java:73)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getCustomControllerInternal(Component.java:436)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:374)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:403)
         at com.sap.tc.webdynpro.progmodel.context.AttributeInfo.initAttributeMapping(AttributeInfo.java:596)
         at com.sap.tc.webdynpro.progmodel.context.AttributeInfo.init(AttributeInfo.java:456)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.initAttributes(NodeInfo.java:771)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:756)
         at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:398)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:41)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.displayToplevelComponent(ClientComponent.java:134)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:373)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:608)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:252)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:392)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:345)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:323)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:865)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:240)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:159)</b>
    What causing the problem.I am not finding the way,where can i rectifything problem
    Regards
    Usman

    Hi Usman,
    Domain ID and CMS Server ID are also stored in the SLD when you create these for the first time. As of now you can just create one Domain and One CMS Server id.
    If you have to edit it you may have to do the following.
    1. Delete all the tracks under the domain id and the CMS server id.
    2. Then in SLD. go to HOME -> CONTENT BROWSER -> SUBSET = LANDSCAPE DESCRIPTION
    In the CLASS dropdown please select Change Management Domain. Select the domain that you had created and delete it.
    Again in the CLASS dropdown select Change management Server. Select it and delete.
    Note: Please ensure that all the tracks have been deleted before you delete SLD entries.
    Now login to CMS again and create the Domain and CMS server again.
    If possible please try this some where on a test machine if possible and then try in actual scenario.
    Hope this helps.
    Regards
    Sidharth

  • What action dom i take for this error message "C:\DOCUME~1\user\LOCALS~1\Temp\physics.pdf could not be opened, because the associated helper application does not exist. Change the association in your preferences"?

    I get this message when I try to download a pdf file from a website.
    "C:\DOCUME~1\user\LOCALS~1\Temp\physics.pdf could not be opened, because the associated helper application does not exist. Change the association in your preferences."
    This is a new error. There used to be no problem.

    Do you have any setting for MP3 in Tools > Options > Applications ?
    You usually need the QuickTime plugin to play MP3 files on Windows because that is the only plugin that supports that file extension if there is no MIME type specified to play the file with another plugin like Windows Media Player or RealPlayer.

  • Process Variant does not exist in version A:

    Good day
    I have changed an existing process chain by removing an InfoPackage that had no link to any other process but the 'start'. When I 'test' the chain the message: "Process Variant AND .... does not exist in version A" is displayed. I have not even touched the 'AND' process.
    As a result the chain does not want to activate.
    What am I missing here?
    Thanks
    Cornelius Faurie

    Thanks for your quick response. Sorry, I did not give you all the information. The 'AND' process was still connected between two Ioad processes (One IP loads Mdata from a flat file, then the AND process, then the second IP load from CRM (0BPARTNER)) BUT there were two AND's with the same name. I think I removed the process of the one AND at one stage, but the second remained (Copy of the same AND).
    I have removed the AND process in totality and created a new one and it is activating now.
    Sorry, my stupidity.
    Thanks anyway
    C

Maybe you are looking for

  • HP laserjet 1020 Win7 X64

    Tried both of the drivers off HP.com and I cannot get the printer to print a test page.  I tried the printer on the old PC which is a Windows 7 32bit machine and tested fine. 

  • Portal 902. Uploaded document differs from downloaded document.

    We are currently trying to set-up a portlet, which would include items (documents, images etc.). The problem we faced in that process is related to portal's storing process. We uploaded a pdf-file (Java API Guide from otn.oracle.com) as a simple file

  • 1 iPod, 2 iTunes.....

    I have iTunes at home and at work. I pluged my iPod into my 2nd computer and my iPod was 'wiped clean'. Why? Is it possible to USE 2 iTunes with 1 iPod?

  • I cant buy apps any more

    I put a temporary credit card on my account to buy more music, now that i have ran out of money, it will not cancel the credit card or download any apps, how can i fix this so I don't have a credit card on my account any more and download apps?

  • Anti-virus software for HP Strem 8 model 5901

    I recently purchased an HP Stream 8 tablet 5901.  It has Windows 8.1 on it.  I would like to install free anti-virus software on it, but there are so many "out there" that I'm not sure which one is best for this model of HP tablet.  Accordingly, I'm