How to make a new section visible in the server published version

I use UPK 12 Client.
When I click "Link a new section" in an existing Module, I can see it in the outline in the left pane in my UPK 12 Developer. When I then check-in all items, click Publish > select c: drive (a test folder) > Publish entire outline, the outcome includes the new section created.
When I do the exact same procedure, but choose to click Publish > server (which is set up for my UPK) > Publish entire outline, the outcome does NOT include the new section created, but everything else yes.
How to make the new section visible in the server published version?
Thanks!
Sille

Hi Sille,
Are you publishing over knowledge center? or is it publishing to a network drive? Once you check in the section save the module once and try again. See if it makes any difference.
best regards,
SD

Similar Messages

  • Map with 500 pdfs. How to make a new file with only the first pages, new file with second pages etc.

    Hi,
    A client confronted me with the next question:
    I have a map with 500 pdf's in it.
    Is it possible to make a new file with only the first page of each pdf?
    After that to make a new file with only the second page of each pdf?
    And after that the third?
    Etc.
    Is that possible with an action?
    Or are there scripts for?
    I couldn't find them.
    I use an iMac with Acrobat XI.
    Any help is very welcome.
    Thanks in advance.
    Bornholm

    You can extract each page from each pdf as a seperate page.     Once this is done you can select the pages tocombine.
    You would have to write custom a custom JavaScript and programatically code the names to combine if the extracted file pages habvestandars naming that could  be programed. There maybe some security  coding you will have to do because of Adobe restrictions but this all documented in the Acrobat JavaScript Reference.

  • How to make all "allowed" clients visible at the log on/welcome screen at start of the computer

    Assuming this is controlled by the Active Directory Server 2012 R2..
    I allow 3 users to be able to log on to computer A.
    I now start computer A. At the welcome / start screen I only see the person who was logged on latest.
    However, it would be great to see which 3 users actually can log on to that computer, have their user pic and names
    on the welcome / start screen instead of the "latest logged on" and then click on the person you are to log on.
    How do I configure the Server 2012 R2, or Client computer, so they won't see last person logged on, but simply everyone
    who actually is able to log on?

    You are not going to be able to do this on a domain computer. You can disable the last logged on user prompt though. This would make the computer prompt for a username at all times. That group policy setting is called: Interactive logon: Do not display
    last user name and is available under Computer Configuration\Policies\Windows Settings\Security Settings\Local Policies\Security Options.
    If my answer helped you, check out my blog:
    Deploy Happiness

  • How to make a new library visible for programs

    I have made dietlibc package at the Arch section of Linux Vserver wiki Now the new version of util-vserver is out and I got problems - util-vserver can't find dietlibc anymore.
    How could I make that library visible for util-vserver? util-vserver's configure only has option --disable-dietlibc and there is no possibility to give the location. This far I have tried to add the path to $PATH at .bashrc - but still configure does not find the library.

    No problem anymore with vserver, I managed to guess what must be the location for dietlibc that works. Perhaps this problem was because util-vserver assumed /usr/lib/diet to be the location and also /usr/lib/diet/bin to be at $PATH.

  • How to make a new file folder on screen?

    How to make file folder on screen?
    How to make a new window in browser?

    me1965 wrote:
    How to make file folder on screen?
    How to make a new window in browser?
    Don't know what OS you have so this info is for ICS.
    To make a folder on screen, long press on one app and drag and drop it on top of another app.  You will kinda see both apps there now and when you touch it a folder will open up and you can choose one of the apps.  You will also now be given a chance to name the folder.
    To open a new window in the chrome browser, tap on the menu button (the 3 verticle dots in the upper right hand corner of the screen) and click "new tab"
    If you have a different OS, let us know and someone will post the answer to your questions.

  • Firefox open images in a new tab upon clicking the link,how to make firefox to save images in the folder upon clicking the link

    firefox open images in a new tab upon clicking the link,how to make firefox to save images in the folder upon clicking the link.

    You can right-click the image and use "Save Image As" to save that image.

  • How to make direct selection handles visible against pasteboard?

    When I go to transform/resize images inside frames using the direct selection tool, I can't see the handles of the actual image because they are white against a white pasteboard.  I am using InDesign CS5 (ver 7.0.4) on a Mac. I have been using InDesign for a few years and never noticed this was a problem; all of a sudden, the handles seem invisble. I don't remember what the color scheme was before. (Maybe I am losing my mind). Did the colors change with an update? There is an option in preferences to select the color of the pasteboard, but this doesn't seem to have any effect. In the meantime, I can't find the handles to resize/transform images. I can input a percentage for scaling, but this is only useful sometimes. How do I make direct selection handles visible against the pasteboard?

    Not specifically a path. When I select an image in a layout with the selection tool, yes the frame border is the color of the layer. When I select the same image with the direct selection tool to see the full extent of the uncropped image, the border of the image is white with white handles. Since my pasteboard is white, I can't see the image border when it extends off my color layout and onto the pasteboard.

  • A have a white screen how to make a new installation of my computer

    A have a white screen how to make a new installation of my computer

    More details would help...what have you done to get to a white screen?  Were you in the process of reinstalling Mac OS X?  Or something else?
    In general, to reinstall Mac OS X, restart the Mac and hold the Command and R keys.  From the Utilities drop down select Install Mac OS X and the system will download the installer.  You w I'll then follow the instructions to install.
    By the way, you posted in the iMac PPC forum, this belongs in Yosemite from what you show on your info line, I will ask for relocation.

  • How to make a "new photo to publish" be considered "published" without actually publishing it?

    how to make a "new photo to publish" be considered "published" without actually publishing it?
    I have some photos that are really just stubs that represent the other "real" photos to publish.
    I don't want to have to do a mock export/rendering of them just to make them appear published.
    Any ideas?
    Rob

    In one of my plugins I have a requirement to download and add photos from the remote server and populate the newly created published collection in Lightroom.  In this routine, I use the following code to add the images to a published collection using the method provided by Don above.
    [code]
    catalog:withWriteAccessDo('createcollection', function()
         newcollection = v:createPublishedCollection(h.title)
         newcollection:setRemoteId(h.id)
    end)
    catalog:withWriteAccessDo( 'NPGSetUpdates', function()
         newphoto = catalog:addPhoto(newpath)
         newcollection:addPhotoByRemoteId(newphoto,p.id,p.url,true)
    end)
    [/code]
    The biggest thing here is that adding a photo like this requires the code to reside within the withWriteAccessDo block.

  • HT4759 How to make a new icloud?

    How to make a new i cloud ??

    If you want to change to a new iCloud accout you'll have to delete the account, create a new account with the other ID, and migrate your data to the new account.
    Before deleting the account, if you have any photos in photo stream that are not in your camera roll or backed up somewhere else save these to your camera roll or you will lose them.  To do this, open the photo stream album in the thumbnail view, tap Edit, tap all the photos you want to save, tap Share, then tap Save to Camera Roll.
    Once this is done, go to Settings>iCloud, scroll to the bottom and tap Delete Account. When prompted about what to do with the iCloud data, be sure to select Keep On iPhone.  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.

  • How can I make a new admin account without the password or cd?

    I got this Mac 5 off ebay, and it works fine.. but I can't download Silverlight, or update itunes.
    I've the reboot, terminal thing, but either I'm stupid and not doing it right, or it doesn't work.
    I can't make a new user, or change the password, and PLEASE help.

    We need a better description of what you bought. "Mac 5" doesn't ring a bell with me and I've been her a long time. Do you mean "iMac G5?"
    If so, the latest versions of SilverLight require a Mac with an Intel processor--the G5 iMac is not an Intel-based computer so it will not install.
    If it's a really a G5, neither can it run OS10.6 as shown in your equipment line. 10.5.8 is as high as it can go.
    I can't make a new user, or change the password,
    Call the seller and get the gray system install/restore disks that originally shipped with that computer, They are as much a part of the computer and the hard drive, and needed for resetting the password. I consider any used Mac sold without tose disk to be missing a part and therefore worth much less money.
    So---right now we're fighting conflicting info. Please do "About this Mac" from your Apple menu and post what is says about the processor and the OS version. If the processor description includes the word "Intel," you have a much newer Mac than the pre-2006 iMacs this forum covers and should repost in the forumfor newer iMacs here:
    iMac (Intel)

  • How to make a short clip out of the original one ?

    Some days ago, I asked a question on editing a clip in this forum. The responder asked me to provide a few seconds of the clip for his examination. But I got stuck. I didn't know how to make a clip of a few seconds out of the original clip and that it had the exact same format and properties as the original clip.
    Neither Premier nor After Effect have an ouput option such as "same as original source" .
    So, my question is how to make a short clip out of the original one with everything the same properties as the original one.
    Thanks in advance.

    May be I haven't made myself clear
    Sorry, but I think that I am still not following you.
    I want to export and render the short clip to a new file which I want to have everything the same as the original clip. Just like I cut off a few seconds off it and that few seconds becomes an independent file.
    OK, you have your original source file. It is complete and is also unaltered. If you want a "Copy" of it, just use Windows Explorer, or similar to make that Copy. If you want a separate file of your edited version of that source file (as it appears in the Timeline), use the WAB (Work Area Bar) to include just that edited instance of the source footage, and Export just the WAB. This will give you a separate file with the edits in it.
    I still feel that neither is what you want. If you can step me through, maybe with screen-caps, what you have and what you wish to end up with, I can see the operation more clearly.
    Good luck,
    Hunt

  • How can I get new iphone I broke the other one

    How can I get new iphone I broke the other one

    What do you mean "you broke it"?
    If you dropped it you can make a Genius Bar appointment at your nearest Apple Store and do an out-of-warranty replacement for $269 USD.

  • HT4356 My iPad does not find the printer. I have tried the HP app and it works, but in any other app the printer is not seen. How do I get this printer visible to the iPad. All my other network computers find and print with out a problem.

    My iPad does not find the printer. I have tried the HP app and it works, but in any other app the printer is not seen. How do I get this printer visible to the iPad. All my other network computers find and print with out a problem.

    hi
    could you tell us what the other app is please

  • My apple ID was disabled so i had to make a new apple ID, But the disabled apple ID  had all my games on it. Is there any way we could enable my disabled account

    My apple ID was disabled so i had to make a new apple ID, But the disabled apple ID had all my games on it. Is there any way we could enable my disabled account?????????????????????????

    If not this:
    Why do I see the message "This Apple ID has been disabled for security reasons” when I enter my password?
    This message means that someone was unable to sign in to this account multiple times. The Apple ID system will disable the account to prevent unauthorized people from gaining access to your information. You'll need to follow the instructions on My Apple ID to reset your password.
    Otherwise, contact iTunes:
    Apple - Support - iTunes - Contact Us

Maybe you are looking for

  • Windows Server 2012 CA will not allow Windows XP to autoenroll

    I have a Windows Server 2012 Domain Controller with an Enterprise root CA installed.  I have created a client authentication certificate template (2003 compatible).  Domain Computers have Read, Enroll and Autoenroll permissions.  I modified the Domai

  • Backing down to 10.4

    To the heart of the question:  I need to back my G5 imac down to 10.4 from 10.5, after having used 10.5 for almost a year, and backing up with Time Machine.  I would like to do a clean install of 10.4, and then recover stuff I have backed up from my

  • STO from Depot to Plant

    Hi stock transfer has done from plant to depot, now the same stocks have to be returned from depot to plant, now whether stock transfer has to be done or returns process has to be done? If stock transfer has to be done how to capture excise i.e after

  • Reset timer after user selection + Progress bar

    Hello there! I am trying to create a VI for humidity. So far everything works fine for that. I also wanted the ability to let the user define the frequency of data collections in units of time. ie: every <x> minutes/hours/days/etc. This also works to

  • Suspended. Reason: 116 - Invalid Identifier

    Hello Everybody, I hope someone here can help me. My Blackberry Curve stopped receiving or sending data comunications last night.  My service provider(Rogers) troubleshot the issue down to the RIM servers.  Rogers stated that they could not access th