Folder not checking out

Hi guys,
i created a new repository workspace and created a new project.
I then went to repository workspace and one of the folder under package i wanted to check out. Once checked out I cannot see anything happening on my workstation.
please advise what is the reason.
thanks.

hello Asif
this is very little information to go on...
As i understand the issue
Step 1: you created a repository workspace by right clicking on the 'Repositories' tab
Step 2: you created a new XS project
Step 3 : (my assumption) you shared the XS project
Step 4. you see the project folder in the repository workspace and try to check it out...
Also,
(my assumption) you are the only person working on the project
Is my understanding correct?
if correct, then there is nothing to check out!!!!
A check out downloads content on the HANA Repository (stuff you see in the System tab under the Content node) to your local repository (stuff you see under the 'Repositories' tab)
As you are the only person working the local and HANA Repository is always in sync hence nothing happens.
Try this
Go to Systems tab and expand the Contents node
Find the root folder of your XS project and *under it* create a new package
now check out
you will find your project shows the additional package as a folder
Warm regards
aadi

Similar Messages

  • The workflow could not check out the list item.

    Hi Guys,
    I have a workflow enabled on document library and it needs to started manually.
    Whenever user starts workflow manually, gets following error:
    "the workflow could not check out the list item. Make sure the list item is not checked out." list item is not checked out & this workflow was working smoothly earlier.
    OutCome: The workflow operation failed because the workflow lookup found no matching item.
    I have gone through below links:
    https://christopherclementen.wordpress.com/2014/05/23/oob-approval-workflow-error/
    https://social.msdn.microsoft.com/Forums/office/en-US/f673d0f6-92eb-4057-95ff-ed3cb7790360/the-workflow-operation-failed-because-the-workflow-lookup-found-no-matching-item?forum=sharepointcustomizationprevious
    Any clue on this?
    Thanks, Nilesh

    maybe check out for editing documents setting is turned on so wokrflow needs doc to ce cheked out before proceding and user might not have permission to do that.
    please refer below link:
    http://sharepoint.stackexchange.com/questions/32399/workflow-error-the-workflow-could-not-update-the-item-possibly-because-one-or
    http://community.office365.com/en-us/f/154/t/243062.aspx
    http://stackoverflow.com/questions/1272957/document-checked-out-in-sharepoint-when-workflow-starts
    Please mark as answer if you find it useful else vote for it if it is close to answer..happy sharepointing

  • Presentation Catalog not Checked Out with Multiuser Development

    I have 2 fact tables that belong to one Business Model that are then used to create 2 Presentation Catalogs. I created a project and added the fact tables, which shows the 2 Presentation Catalogs in the right pane to he project , and all looks well. But when I check the project out to my local machine, the Presentation Catalogs are not checked out. I do get the Business Model and Physical Layer, but no Presentation Catalog. Any ideas?
    I see in the Oracle docs that compound fact tables are not allowed in projects. I do not believe I have a compound table, but please tell me if I am wrong. In the Business Model and Mapping Layer, each fact table logical source lists only one physical fact table...but in the Presentation Layer, one of the catalogs does use 2 logical fact tables. Is this the problem?
    Thanks!

    I did not see such an option, I asked around, appears nobody knows, but I admit there could be a way.
    I still suggest opening an MS Connect so somebody from the development team would respond.
    Arthur My Blog

  • RSC says I have files checked out, but when I try to check them in it says they're not checked out

    We are using RSC 3 to control RH7 projects. At the moment RSC says I have hundres of files checked out, but when I try to check them in it says they're not checked out. And then it says "No files were found to CheckIn." What could be causing this?
    I tried refreshing and rebooting my (client) PC, and it didn't help.
    Thanks.

    I am no pro at this product but when you look in source control, who does it say has those files checked out.  Does that user match the credentials that you use to connect to source control.  The only reason I ask this is, when I first set this up for my Publishers, I used the default admin account to connect to RSC.  Then I created accounts for them and went to their workstations to change credentials.  I changed the credentials but they had checked out some docs before that and could not check them back in because they were still checked out as admin. Had to change it back, have them check projects back in and then switch credentials.  Hope this helps.

  • Project Not Checking out From Version Control

    All of our help projects are managed using version control
    (Team Foundation Server).
    I recently had an XPJ file that became corrupted. As per
    Adobe's instructions, I deleted the XPJ and CPD files and
    regenerated the project from the HHP file. That worked fine, but
    now launching the project from the XPJ file opens the project
    outside of version control. (I'm no longer being prompted to check
    the files out.) I think this is because the newly created XPJ file
    now disassociated with the source control. If this is true, how do
    I get the XPJ file back into source control?
    Hopefully this makes sense.
    Christina Stommel

    Hi Christina,
    My understanding of the entire "version control" process is
    limited but since no one else has thrown in, I will try to pass
    along what little I know. What I have learned is that version
    control works great until it doesn't.
    What I've had to do in the past, when I've had these sort of
    synchronization problems, is to remove the entire project from
    version control (I would be sure to back up your local project as
    well as your version-controlled project). Then, you should be able
    to add the repaired project back to your source control software
    (we use MS VSS but I think it shouldn't matter).
    I have tried, in the past, to add individual files to the
    database from the RH interface (you could try "check in all files")
    and I have gone into the database and manually added the necessary
    files, but I have had mixed results. In the end, it seems that
    removing the project from version control, then adding it back, is
    the only thing that is guaranteed to work.
    Good luck!

  • The file "file name" is not checked out.

    One of my user received the above error...
    The system says he's in although he's not....
    I tried to delete the file and upload again...Unfortunately, i can't delete....
    Please help....Tried to google unable to find any answer....:(

    Hi to all,
    In my personal case the solution explained in the previous post doesn't work. I don't know the reason. But I solved it, deeping into SharePoint Content Database.
    First of all, it is necessary to know which is the content database where the document library is hosted. Once done it, open MS-SQL Server Management Studio and try to locate the problematic document, for instance, using the name of the file:
    SELECT
    * FROM AllDocs
    WHERE LEAFNAME
    LIKE
    'BOM%'
    The first column of the result is the unique ID of the document. If you see more details of the document, you will find the following columns: CheckOutUserId, CheckOutDate and CheckOutExpires. You will see some values.
    The solution is to UPDATE this record and setting NULL values to these columns, using the following T-SQL command:
    UPDATE
    ALLDOCS SET CHECKOUTUSERID
    =
    NULL,
    CHECKOUTDATE =
    NULL,
    CHECKOUTEXPIRES =
    NULL
    WHERE
    ID =
    'UniqueIdObtainedInThePreviousSELECTCommand'
    This worked for me, but I think it is a bit dangerous to modify values in the SPS database, but I deleted the document, so, I suppose there is no problem.

  • Files show checked out in RSC but not in RH7

    I had originally posted to the RH for HTML category but after
    thinking about it a little further it may be more appropriate to
    this board.
    Hello, and thanks in advance for any help you can provide.
    I'm running RH7 on XP and we use RoboSource Control as well.
    I have been off this project for a while and another writer was
    working the project. I can't say if work flow has anything to do
    with this issue but FYI.
    I tried to edit a topic and it said it could not be checked
    out "multiply," even though it was not checked out in my project. I
    looked at RSC and it showed check out along with many other topics.
    I tried editing a topic and then clicking "Check In All" and
    nothing changed. I can check some of them in using RSC but some say
    "not checked out" even though the red check mark is in place.
    When I right click an entry in RSC and click CHECKIN, the
    dialog (CHECKIN) that opens says "nothing to check in." But if I
    click OK, a "Resolve Ambiguous Checkin" dialog opens with that
    topics file name listed. I click OK and the red check mark is
    cleared.
    There are a lot of topics and I'd like to figure out how to
    check them in as a group if possible, and also why this may be
    happening.
    Again, thanks for any info you can provide.
    Regards
    Joe

    Thanks Leon. I have been able to manually get all but a few
    files checked back in using the process I described in my first
    post. Most of the remaining appear to have been deleted from the
    "client side" and still resided in RSC as checked in, so I'm going
    to delete those in RSC. But three files are still in the project,
    and the Resolve Ambiguous Checkin has nothing listed if I try the
    right-click, CheckIn, OK, etc
    I was hoping there was a specific reason, or action, that
    explained how or why these ended up in the checked out state. I do
    think it's a work flow issue of some sort and wanted to be able to
    explain to the other user.
    After I reopen the projects and see whether all of this has
    caused any problems or not, I'll post the results good or
    bad.

  • Collab 4.1 on g6 windows 2003 check out not working

    I am currently unable to check out documents from collab. We can downolad and even check-in, but not check out. I receive an error popup from IE that the the site is not available or cannot be found and to try again later. The portal base portal.xxx.com is listed. There is nothing in spy which leads me to believe that it may be security issue. This is an SSL installation and I have already imported the portal cert. Anyone experienced this?
    Thanks!

    Hi,
    Can You set ORACLE_SID variable and then check emctl status.If staus is running then You will able to access em.
    Or can You restart dbconsole once again using emctl start dbconsole or service.
    Thanks.

  • Why does RCS prompt me to check out the .XPJ file when I open RoboHelp HTML?

    We just upgraded from X3 to X5 and began using RoboSource
    Control. We currently have a dedicated server machine and 1 client
    machine (we'll be adding 3 more client machines once I resolve all
    issues with this one). I have working folders set up on each
    machine so I can open the Help projects with RoboHelp HTML.
    The issue here is that I often receive the following prompt
    in a dialog box when I open a Help project in RH HTML:
    "To add version control information to this project, the
    files in the list below need to be checked out from version
    control. Do you want to check out these files?" (The only file
    listed is the .XPJ file.)
    I only seem to receive this message after I have opened that
    particular Help project on the other PC. E.g., I open Help project
    A on the Server. If I close it, I can re-open the Help project on
    that machine multiple times without receiving the message. However,
    if I then open Help project A on the client machine, I'll get the
    prompt to check out the XPJ file. If I check it out, I can then
    re-open the Help project on that machine multiple times without
    receiving the message. Of course, if check in the XPJ file from the
    client machine, I'll get the prompt on the Server machine to check
    it out the next time I go to open it up from there.
    Thoughts?

    Dirk,
    Thanks for the suggestions. I was prompted to check out the
    XPJ for one of our Help projects this morning. I clicked
    No (to NOT check out the XPJ file from the database), then
    selected the
    File Status tab, right-clicked on the XPJ file, selected
    Show Differences... and discovered that the XPJ file in the
    database had the following version control related text, whereas
    the XPJ file in the working folder on my SERVER machine did not
    (the working folder copy on my CLIENT machine matched the file in
    the database):
    Note: This code appears between a <miscproperties> line
    and a <CompileOptions> line (both XPJ files had these two
    lines).

  • User has deleted checked out files

    A user has deleted the local roboholp project folder with checked out files. (Robohelp HTML Version 9.0)
    The files are published as a webpage so the content is in HTML files - is there a  way to get the content back in Robohelp?
    And how can I check-in her files (there is not option in Source Control (Version 3.1.), although I have administrative rights)
    Thanks for any help.

    Hi there
    Not sure about RoboSource Control, but typically a source control application allows one to "Get latest version". The files should still be in the source control database, albeit with a status of "checked out". So you should be able to recover the project by simply getting the latest version. Not sure about how to go about forcing a check in from the user account that is no longer there.
    Cheers... Rick

  • Unable to Check-in and Check-out the documents

    Hi All,
    When I checkout files from share point, I am unable to locate them on my file system. I have T440S  Windows 7 (64 bit ).<u5:p></u5:p>
    I couldn’t locate the checked out files neither in Downloads nor in My-documents/SharePoint Drafts or My-documents.
    <u5:p>Thanks</u5:p>
    <u5:p>Samar</u5:p>
    <u5:p></u5:p>
    Samar

    And you did check the option Save in local draft folder during check-out?
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • InCopy Won't Let Me Check Out a Story

    Hi,
    I appear to be having a very unusual problem with InCopy. It won't let me check anything out. I don't get an error, or a message, it's just not checked out.
    I have tried checking stories out in every way i know how and every time i am left with a not checked out story.
    Has anyone experienced this before? Any solutions?
    Thanks

    A shortcut to perhaps the prolem is to go "around" the live-edit workflow and just focus on the .indd file.
    Take a look att this plug-in, http://www.ctrl-ps.com/products/ctrlcrosstalk

  • Record Check out/in - Data Mgr

    I have some records that have the gray (original) checkout icon in the column. There are only three of us who may have checked these records out and we've all tried the following:
    1. When we try to join the checkout, we get the message that these records are not checked out. 2. If we try to delete these records we get the message that the record is already checked out.
    We all have standard delivered Catalog Manager security. Version 5.5 SP5. Does anyone have any clue as to how we either delete these records or get them checked in. Is there any way to tell who might have checked a record out? This is our development system, but I figure if it happened here it could also happen in production.

    If you are in a desperate situation you can always run these SQL queries:
    The database name "MDMTEST_M000" should be replaced with the actual database name of your repository.
            DELETE from MDMTEST_M000.A2I_DATA_10_WFUSER;
            DELETE from MDMTEST_M000.A2I_DATA_10_WFSTEP;
            DELETE from MDMTEST_M000.A2I_DATA_10_WFLAUNCHEDDATA;
            DELETE from MDMTEST_M000.A2I_DATA_10_WFJOB;
    This is for 5.5 SP05, the table structure is a bit different in SP06, but you'll be able to tell the difference in table names when you look at the database.
    I haven't run these on SP06, you will experience some data loss.  I would do an archive of the repository first.
    Edited by: Harrison Holland on May 8, 2008 1:25 PM

  • VSS Check in/check out problems

    I just upgraded to DW8. It seems a step backward from DW MX
    2004. Especially with VSS. First of all, it takes forever to sync
    with the VSS server. Then, after waiting for mintutes to check out
    a file, it still doesn't know if the file is checked out or not.
    Both Check In and Check out menus (under site) remain enabled.
    Worst of all, I can't do a find an replace on a file that's checked
    out already. It keeps telling me the file is not checked out.
    Does anyone know how to fis it? I downloaded the latest
    patch... still no success. I'm about to uninstall it and revert
    back to MX 2004.
    Thanks in advance.

    Hi - Yes, I have an old version of Contribute on here.
    Probably part of the problem.
    Anyway, after some back-and-forthing with Murray and a
    conversation with an Adobe tech, I got things running again. Maybe
    the same strategy will work for you.... and hopefully it's a
    long-term fix for us both! See thread:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1303707&highlight_key=y
    Good luck!

  • Labview cannot check out a license from the VLM

    Hello,
    I have a user with Labview v7.1 Pro that was working and checking out a license from the VLM v2.0 server but for some reason now, he can not check out a license and he gets an error.  He indicates nothing has changed on his side.  Yet, when he attempts to run Labview, I do not see any activity within the lmgrd.log file.  I would think it would appear in here.
    Can someone please contact me to discuss this problem?  If activity logs or other information is needed, I can provide it at that time.
    Thank you,
    Rob Sevick
    (443) 778-7854

    More information...
    The user is connecting to the license server properly and this (below) is logged in the lmgrd.log file on the license server.  I tried adding the user to the VLM but this did not help.  I confirmed the case on both the user and computer name but still no luck.  The user indicates the message on his client when he tries to run it is (something like), "No licenses left and/or feature expired"  Any ideas?  Should he reinstall this version?  I can forward the activity log (encrypted) and/or the lmgrd.log file if you like.  Thanks,
    12:59:36 (nilm) DENIED: "LabVIEW_FDS_PKG" greendg1@VIA-Chassis2  (User/host not on INCLUDE list for feature. (-39,349:10054 ""))
    12:59:36 (nilm) DENIED: "LabVIEW_LabVIEW" greendg1@VIA-Chassis2  (User/host not on INCLUDE list for feature. (-39,349:10054 ""))
    12:59:36 (nilm) DENIED: "LabVIEW_PDS_PKG" greendg1@VIA-Chassis2  (All licenses are reserved for others. (-101,396:10054 ""))
    12:59:36 (nilm) DENIED: "LabVIEW_LabVIEW" greendg1@VIA-Chassis2  (All licenses are reserved for others. (-101,396:10054 ""))
    12:59:36 (nilm) UNSUPPORTED: "LabVIEW_LabVIEW_Debug" (PORT_AT_HOST_PLUS   ) greendg1@VIA-Chassis2  (License server system does not support this feature. (-18,327:10054 ""))

Maybe you are looking for

  • How can i get rid of condensation behind the screen?

    Hi, my iPod works fine, but after leaving it in my bag during footy training outside and it then raining, it has condesation marks all over the screen. The functionality of the iPod is fine but it is very irratating having these marks over the screen

  • I lost the capability of using Outlook 2011 Smart Folders after my Mountain Lion 10.8.2 install

    After my OS 10.8.2 upgrade from Lion 10.7.5, I noticed an immediate problem with Outlook 2011 attached to our Exchange Server. 1) I rebuild My Identity two times using the Microsoft Database Utility Program, 2) I re-Indexed my whole Hard Drive Volume

  • Function that returns N values, without using a string

    Hi, how can i make a function that returns several valures (that hasn't a exact number of returned values, it could return 3 values, or 7) without using a string? When i need to return several values from a function, i put the values inside a varchar

  • Transfer ERP HCM data per IDoc

    Hello, i want to distribute data from ERP HCM with report RHALEINI. The IDoc is a reduced IDoc of HRMD_A. It's working fine but i get almost 500 resulting IDocs and it would be better to have just one IDoc. Is this possible? If it's not possible ther

  • Up-grade

    does anyone know what is up-gradable or replace able for the tangerine?? like what logic board will fit in the case and if the screen can be replace with a screen for the 12" i-book?