How to check-in the files checked out by another user

Hi All,
We are using NWDI for checking out and checking in the code.one of the developers checked out some files and left the company.so when I am trying to change the same files it says files are already checked out by another user and we dont have any idea of his  password or his system where he has done the changes .
how do we check in his files and start working on the same files without any problem
Thanks
Bala Duvvuri

Thanks. Solved the problem.
Check out this Article:
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70ee5ab2-8d7a-2c10-d88b-dbe2fdf666e7?quicklink=index&overridelayout=true
Check NWDI/JDI System Copy Prerequisites
Step 3 tells you how to handle the activities.
Regards,
Vijay.

Similar Messages

  • Can you notify a user that the file is opened by another user?

    Apologies if this is a repeat or redundant question....
    Is there a built-in (non-3rd party) way to have a user notified/alerted that the pdf is open by another user when they open the file.  I know the lock message pops up when you go to save a file thats opened elsewhere....but the problem is that the users un-aware of this until after they've done a bunch of work. 
    I perfer not to get into having to password protect the files, etc....just an initial alert is desirable.  Any inputs are greatly appreciated.

    There isn't such a mechanism in Acrobat/Reader.
    On Thu, Jan 29, 2015 at 10:03 PM, stevep40215774 <[email protected]>

  • How to check if the file is out of synchronization

    I would like to check every time my main application frame gets focus if the file has been changed while the frame was out of focus, like what eclipse has, how can I achieve this? (except by saving the file data on loosing focus, is there a better way to accomplish this)
    Thanks in advance,
    Adam Zehavi.

    yes well thanks for pointing this out, my application is based on multiple frames that might or might not be working on the same Stream object or file, and since every modification should be noticeable for the other frame, I've made sure each frame saves and closes the file on 'save' and do not keep the stream open.
    Thanks for the heads up,
    Adam.

  • How can I use the Messages app to "text" another user's iPad?

    Both iPads are iPad II and are 3G enabled. I know I read something about an iPad having a phone number if it's 3G, but that most users dont know what it is or how to find it. I don't want to use an outside app if it's avoidable.... They're buggy, slow, and largely unreliable from my experience.

    It may or may not be the other users apple id, but it will be usable with whatever 'receive at' E mail address the other person used when they set up I message settings on their pad.    But if they have i message turned on, and you know their receive at address, I message will work fine.

  • How to do CHECK IN the files for the document?

    Hi ,
    By using BAPI_DOCUMENT_CHECKIN2 Function module I am uploading the Files for the Document number.
    My problem is - After uploading the files to the document number the files are not in check in status.
    I want the files to be checked in after uploading the from the FM.
    Can anyone tell me what I am missing ? How to do check in the files.
    I am passing the following values to FM.
          ls_files-SOURCEDATACARRIER = ls_file-DATA_CARRIER.
          ls_files-WSAPPLICATION     = ls_file-application.
          ls_files-DESCRIPTION       = ls_file-file_desc.
          ls_files-STORAGECATEGORY   = ls_file-category.
          ls_files-DOCFILE           = ls_file-doc_path.
          ls_files-CHECKEDIN         = 'X'.
        CALL FUNCTION 'BAPI_DOCUMENT_CHECKIN2'
          EXPORTING
            DOCUMENTTYPE            = ls_file_data-dokar
            DOCUMENTNUMBER          = ls_file_data-doknr
            DOCUMENTPART            = ls_file_data-doktl
            DOCUMENTVERSION         = ls_file_data-dokvr
          IMPORTING
            RETURN                  =  ls_return
          TABLES
            DOCUMENTFILES           =  lt_files
        COMPONENTS              =
        DOCUMENTSTRUCTURE       =
    I appriciate you response on this.
    Thanks in advance.

    Hi,
    Check the values you are passing into ls_files .
    you dont need to pass checkedin = 'X'.
    and check the storagecategory field - this should not be blnak.
    files-SOURCEDATACARRIER = lsfile-DATA_CARRIER.
    ls_files-WSAPPLICATION = ls_file-application.
    ls_files-DESCRIPTION = ls_file-file_desc.
    ls_files-STORAGECATEGORY = ls_file-category.
    ls_files-DOCFILE = ls_file-doc_path.
    ls_files-CHECKEDIN = 'X'.
    This FM will work. No issues just check the values you are psssing into this LS_FILES structure.
    Rest of the fields are corect.
    Thanks,
    Murali.

  • How to do Check in the files for the document number?

    Hi ,
    By using BAPI_DOCUMENT_CHECKIN2 Function module I am uploading the Files for the Document number.
    My problem is - After uploading the files to the document number the files are not in check in status.
    I want the files to be checked in after uploading the from the FM.
    Can anyone tell me what I am missing ? How to do check in the files.
    I am passing the following values to FM.
          ls_files-SOURCEDATACARRIER = ls_file-DATA_CARRIER.
          ls_files-WSAPPLICATION     = ls_file-application.
          ls_files-DESCRIPTION       = ls_file-file_desc.
          ls_files-STORAGECATEGORY   = ls_file-category.
          ls_files-DOCFILE           = ls_file-doc_path.
          ls_files-CHECKEDIN         = 'X'.
        CALL FUNCTION 'BAPI_DOCUMENT_CHECKIN2'
          EXPORTING
            DOCUMENTTYPE            = ls_file_data-dokar
            DOCUMENTNUMBER          = ls_file_data-doknr
            DOCUMENTPART            = ls_file_data-doktl
            DOCUMENTVERSION         = ls_file_data-dokvr
          IMPORTING
            RETURN                  =  ls_return
          TABLES
            DOCUMENTFILES           =  lt_files
        COMPONENTS              =
        DOCUMENTSTRUCTURE       =
    I appriciate you response on this.
    Thanks in advance.

    Any answers for this?
    Thanks.

  • How to check if the file already exists in the client directory

    Hi all.
    I'm on devsuite 10g. I'm using webutil to download files from DB using webutil function db_to_client.
    What I need is to check if the file already exists in the client directory and if yes to display a message to ask the user if he wants to overwrite or no. How can I make this???
    Here is the code that I'm using to download the file.
    Thanks all for the collaboration.
    Fabrizio
    declare
    file_path varchar2(2000) := null;
    BEGIN
    /** I ask where saving the file on the client machine **/
    file_path:= webutil_file.file_selection_dialog
    (directory_name => null,
    file_name => :bin_docs.name,
    file_filter => '',
    title => 'Saving file',
    dialog_type => save_file, --save_file
    select_file => TRUE);
    /** I download the file from DB to client **/
    if webutil_file_transfer.DB_To_Client_With_Progress
    ( file_path ,
    'BIN_DOCS',
    'DOC' ,
    'doc_id = '||:bin_docs.doc_id,
    'Downloading file',
    ' '||:bin_docs.name) then
    msg_alert('Download del file avvenuto con successo','I',false);
    else
    msg_alert('Si è verificato il seguente errore in fase di download '||SQLERRM,'I',false);
    end if;
    end;

    How about something like the below:
    Note: I have a yes/no alert to asking if they want to over-write the existing file.
    DECLARE
    file_path VARCHAR2(2000) := null;
    over_write BOOLEAN := TRUE;
    BEGIN
    /** I ask where saving the file on the client machine **/
    file_path:= webutil_file.file_selection_dialog
    (directory_name => null,
    file_name => :bin_docs.name,
    file_filter => '',
    title => 'Saving file',
    dialog_type => save_file, --save_file
    select_file => TRUE);
    IF webutil.file_exists(file_path) THEN
    /** check a file by the same name exists in the selected directory **/
    IF show_alert('Ask_overright') != alert_button1 THEN
    /** If we say no then set over_write value to false **/
    over_write := FALSE;
    END IF;
    END IF;
    IF over_write THEN
    /** I download the file from DB to client **/
    IF webutil_file_transfer.DB_To_Client_With_Progress
    ( file_path ,
    'BIN_DOCS',
    'DOC' ,
    'doc_id = '||:bin_docs.doc_id,
    'Downloading file',
    ' '||:bin_docs.name) then
    msg_alert('Download del file avvenuto con successo','I',false);
    ELSE
    msg_alert('Si è verificato il seguente errore in fase di'
    ||' download '||SQLERRM,'I',false);
    END IF
    END IF;
    END;
    cheers
    Q

  • How to check Whether the File is in Progress or used by some other resource

    Hi All,
    I am retrieving a file from the FTP server using Apache commons FTP.
    I need to check whether the file is fully retrieved or in progress.
    for now i can able to use the file which is partially retrieved. it is not throwing any file sharing exception or i am unable to find whether it is in progress.
    How to check whether the file is in progress ? or The file is accessed by some other resource ?
    Pls Help me.
    Thanks,
    J.Kathir

    Hi Vamsi,
    Explicitly such kind of requirement has not been catered and i dont think you would face a problem because any application that is writing to a file will open the file in the read only mode to any other simultaneous applications so i think your concerns although valid are already taken care off .
    In the remote case you still face a problem then as a work around. Tell the FTP administrator to set the property to maximum connections that can be made to ftp as one. I wonder if you have heard of the concept of FTP handle , basically the above workaround is based on that concept itself. This way only one application will be able to write.
    The file adapter will wait for its turn and then write the files.
    Regards
    joel
    Edited by: joel trinidade on Jun 26, 2009 11:06 AM

  • How to check if the file already exists in the application server directory

    Hi all. I'm on devsuite 10g.
    I transfer file from local machine to application server using webutil function webutil_file_transfer.client_to_as and I want to check if the file I'm transfering already exists on the server directory.
    How can I make this?
    Thanks all,
    Fabrizio

    use the text_io package and open the file in read-mode.
    like this
    declare
    xFileType text_io.file_type;
    begin
    xFileType := text_io.fopen('c:\temp\test.txt','R'); --file on the middle tier
    -- file exists;
    text_io.fclose(xFileType);
    exception
    when others then
    --file doesn't exist
    end;
    regards
    Christian

  • How do I disable the plugin check at Firefox Version 18 or higher startup?

    This thread carries on from a discussion about How do I disable the plugin check at Firefox startup? As clearly Tylerdowner did not like my previous message and so would like me to obviously start a whole new thread to find out what’s going on.
    https://support.mozilla.org/en-US/questions/938821
    Tyler: I am still looking for support and so are the other 83 people who have this problem. Hence why I am here, not to have to start another thread, not to have a go at you or just to run around further to get a clear, straight forward answer. I am now back to running Version 12 (which, has not solved the problem), with up-to-date plugins which are all supported.
    Don’t fob us off, PLEASE HELP. Unless I am very much mistaken, this is the place we are meant to find help, right? Not to be completely blown off because somebody says something you don’t like. Perhaps someone better suited to this will help. I’ll follow on from then with MY problem from Tyler’s final comment as it is highly relevant:
    Tylerdowner: Rumor Control, if you are running Firefox 18 with up to date plugins, then you are having a different problem than this thread is about. This is for Firefox 3.6 users who have old plugins, not those with updated software.

    I should also add this info for all to see clear as part of my question (can be seen in More system details too):
    I liked that version, was the first ever FireFox browser I tried and because of it made it my number 1 browser. There have been a heck of a lot from 3.6 to 18 though I think we’d all agree. Progress can and often is messy, but worth it.
    Which is fine except mine, a different version, up-to-date plugins – and I’ve still same problem as these guys. It’s exactly the same even for me who has updated: How do we get rid of the Plugin Check Screen every time we start FireFox? I know I am up-to-date – as it tells me every single time!
    I agree everyone should be up-to-date with the software and this may very well be the case that solves a lot of people with lower versions – yet I can say I updated from version 12 to the latest 18, spent the time getting half a dozen different updates as it wanted (all of which are supported according to the link you provided) plugins and yet I am still having the same problem as users with 3.6 and older plugins! Went back to version 12.0 and I am getting the problem since installing version 18.
    Therefore from the fact I’m still getting the popup every time telling me everything is updated and safe, which is lovely to know, still doesn’t change the fact it won’t go away! Not a major problem but it is getting tedious now every single time.
    Like I say I am willing to wait and see if this gets fixed anyway which to be fair, FireFox seem to do a lot better than the competition. If it doesn’t though I’d still rather go back to an older version just to be rid of it! But not even that is now working to be gone of it! It’s gotten that ridiculous for me now too!
    :)

  • Text_io checking for the file exists?

    When using TEXT_IO package procedures within a form, How can I check whether the file with the same name exits in the same file path?. I mean what is the text_io procedure? Is there any thing specific?

    something like
    EXCEPTION
    when OTHERS then
       if SQLCODE = -302000 then -- file problems
          MSGBOX('Error: File could not be opened.');
          raise FORM_TRIGGER_FAILURE;
       else
          MSGBOX('Error: ' || SQLERRM);
          raise FORM_TRIGGER_FAILURE;
       end if;

  • How can i remove the spell check from my iMac, i tried system pref but it still autocorrects

    how can i remove the spell check from my iMac, i tried system pref but it still autocorrects

    Look at the Spelling settings in the Edit menu of the app that is doing the correcting.

  • While check- in the file in document i am getting an error

    Hi..
    I am getting below error..While check- in the file in document
    "DATA carrier pc &application wrd application type 2 not defined"
    File is .wrd
    Using content server
    Help me ASAP

    Hi,
    You can follow configuration of digital signatures as mentioned in the link below
    http://wiki.sdn.sap.com/wiki/display/PLM/Digitalsignaturein+DMS
    Additionally you need to perform following configuration as well.
    The required settings are made under Document Management  >> Approval >> Define Signature Strategy
    Assign a signature strategy to the document status.
    Also the required settings are made under Document Management >> Control data >> Define document type >> Define  document status. (You can select any status for which you want digital signature for approval)
    Assign a signature strategy to the document status.
    Save the changes. 
    Create DIR
    Once the Document is reached to that particular status it will ask for digital signature.
    Choose Digital signature (Double click on Enter key).
    The Digital Signature dialog box appears. Enter your comment in the text field. Select the individual  signature strategy is assigned to you DIR. Put the login id and password.Thus the Digital signature process has been completed. 
    If you want to see the digital signature for your Document. Goto DIR and use menu 'Environment' >> 'Digital Signature'.
    Hope this helps.
    Regards,
    Deepak Kori

  • How to specify when the authorization check is to be performed

    How to specify when the authorization check is to be performed declratiely for
    any webapplication.
    There is Direction object argument as part isAccessAllowed method of AccessDecesion
    class which can have either of the three values i.e. POST, PRE, & ONCE. Ijust
    wana know how can we declaratively set this direction value for any Web Resource
    in weblogic server 8.1 security
    -Subhash

    "Subhash Chopra" <[email protected]> wrote in message
    news:3e9c5805$[email protected]..
    >
    How to specify when the authorization check is to be performed declratielyfor
    any webapplication.
    There is Direction object argument as part isAccessAllowed method ofAccessDecesion
    class which can have either of the three values i.e. POST, PRE, & ONCE.Ijust
    wana know how can we declaratively set this direction value for any WebResource
    in weblogic server 8.1 security
    The containers always call the isAccessAllowed method with no direction so
    Once is passed
    to the providers. There is no way to set the direction that the containers
    use.
    -Subhash

  • Cannot launch vivado simulator 2015.1: behav/compile.bat' script "Please check that the file has the correct 'read/write/execute' permissions"

    Hi,
    I'm trying to run a verilog simulation using the vivado simulator 2015.1 on Windows 7.
    I get the following error when I attempt to launch simulation:    
    ERROR: [USF-XSim-62] 'compile' step failed with error(s) while executing 'D:/projects/axi/axi_test_system/axi_test_system.sim/sim_1/behav/compile.bat' script. Please check that the file has the correct 'read/write/execute' permissions and the Tcl console output for any other possible errors or warnings.
    The tcl console repeats the same message, "Please check that the file has the correct 'read/write/execute' permissions"
    I cannot find any problem with the permissions.  I believe that windows will always execute a .bat file.   Within the same project, I can run elaboration, synthesis and implementation without problems. 
    Any idea why the simulation compile script won't run?
    Thanks,
    Ed

    Hi,
    Thanks very much for your detailed reply. These were the right questions based upon what I told you.   
    However, I took the code home last night and ran it on my webpack 2014.2 release.   It still failed, but I got completely different error messages.   These messages correctly pointed me to an undeclared signal in my testbench. Once fixed, the compile worked and the simulator launched. 
    This morning, I fixed the signal name in my 2015.1 setup, and it also compiled and launched correctly. 
    So, the problem wasn't actually related to file permissions.  It seems like the 2015.1 error message may be broken compared to 2014.2.  
    I was running the Vivado GUI, clicking on "Simulate > Run Behavioral Simulation"
    Thanks again for your help. 
    Regards,
    Ed  
      

Maybe you are looking for

  • Ip address format

    Hi Everyone, One of methods in my COM object is public void setIP(Variant ip) with Variant data type supposes to be 4 byte int. I don't know how to convert a string like "192.167.1.108" to an int so I can pass in the above function. Would anybody ple

  • Lenovo G550 Recovery Problem

    Hi , I have Lenovo G550 and it crashed. When i used recovery discs .. i got some problem saying" Cant read from the device". So I turned it off and tried with another set of receovery discs i have made. But Now it is saying " Insuffient space and not

  • What is B2B setup for grouping transaction sets based on criteria.

    Hi, Oracle B2B offers a time bound Batching feature . However to handle following case such as Batching based on Order Number it is required to define the criterion. Could you please provide the information on B2B Setup for grouping transactionsets b

  • Is there any way to delete an ichat account?

    I would like to change my Apple ID and am told I can't because it is also my iChat account.

  • Lightroom en photoshop registreren

    Valt Lightroom onder je photoshop product...? Ik vind namelijk maar 1 serienummer terug en enkel photoshop staat geregistreerd. Ik betaal het pakket van deze beide / per maand!