Create name tags in SAP LSO

Hi,
Does anyone know if it is possible to print out name tags for course participants through SAP LSO? I have not come across anything that allows this to be done.
Best regards
Jakob

Thank you very much sapuser909,
I found that very helpful, i was able to print out some names, however the formatting and layout was not what was expected, do you know if it is possible to change the layout of the design for the name tags?
Thanks in advance
Jakob

Similar Messages

  • Create an own tag  h:name-Tag to replace h:CommandButton

    Hello,
    I have 2 questions :
    1 - How can create a personal tag in a JSF application?
    2 - How can I do to make this application :
    an example :
    I have 3 buttons A, B and C (<h:CommandButton>) .
    That I want to do :
    when I click on A, the value of B is replaced by D.
    when I click on B, the value of B is replaced by D and the value of C is replaced by A. etc...
    So the parameter action="..." for the each <h:name-Tag> call other tags i the same page.
    At the end, I want to create this tag and include it in the form of myTag.jar to be used in my project.
    Thank you

    In the setProperties method, you've got to resolve the valuebinding (#{blah.whatever}) to get the actual value. But you only want to do that if the attribute is set to a valuebinding.
    Here's an example:
          * @see javax.faces.webapp.UIComponentTag#setProperties(UIComponent)
         protected void setProperties(UIComponent component) {
              super.setProperties(component);
              //Set the field reference property
              if (fieldRef != null) {
                   if (UIComponentTag.isValueReference(fieldRef)) {
                        ValueBinding vb = getFacesContext().getApplication().
                             createValueBinding(fieldRef);
                        component.setValueBinding("fieldRef", vb);
                   } else {
                        component.getAttributes().put("fieldRef", fieldRef);
         }This example shows how to determine if the "fieldRef" attribute is a value binding, and extracts the value accordingly. But there's one more step. In your component class, or anywhere you access the attributes of your custom tag, use the following code:
         public String getFieldRef() {
              if (fieldRef != null)
                   return fieldRef;
              ValueBinding vb = getValueBinding("fieldRef");
              if (vb != null)
                   return (String)vb.getValue(getFacesContext());
              else
                   return null;
         }The above snippet is what you would put in your custom component getter method.
    JSF is open source. Something I found very helpful while learning how to create custom components was looking at how the JSF developers created theirs. You should go ahead and download the JSF source code.
    CowKing

  • How  to  create an infotype in sap ecc6.0 ?

    Hi all,
    I know i how to create an infotype   in   sap 4.7, but i am facing the problem while
    creating an infotype in sap ecc6.0 version. could u plz provide me  the info with screen shots how to create an infotype and how to enhace that infotype ?
    Waiting for u r response.
    Regards,
    Ravi

    Hi ,
    To create OM infotype:
    1. Go to SE11 and create a structure HRI9XXX (9XXX --> name of the infotype). Add the required fields to this structure and save and activate. then come out of it.
    2. Go to PPCI and enter Infotype number (9XXX) and description.
    3. Click create.
    4. In the infotype category select details for the infotype.
    5. Click create button. It should create the infotype.
    6. Click on Check. A window with menu will open.
    7. In that window navigate to Table Entries.
    8. Under table Entries, select T777I and click on change.
    9. It opens SM30. Click on Maintain.
    10. Select the infotype and add information for "Time Constraint" and "Infotype Per Object Type".
    11. Save.
    12. Go back to check menu, see if all entries exist. Do not worry last 5 table entries. And you are done

  • Creating a package in SAP BI

    Hi experts,
                         I need to create a package for my project .Please tell me how to create a package in SAP BI .
    Regards,
    Khan

    Hello,
    TCODE SE80 -> Give the name for the package and from drop dwn select package -> hit enter -> it will ask u want to create -> click yes.
    Regards,
    Shashank

  • Web App name tag capabilities and Upload response handling

    Hi Guys,
    Let me begin by apologising for how long-winded this is going to be. 
    I have set my products up in the ecommerce module utilising catalogues etc - I have removed the buy now and cart options, so the ecommerce module is operating essentially like a showroom.  What I want to do now is link the individual large products to a web app because my product range requires personalization and the customers need to give me information and assetts to get their finished product back - the key for me is getting reports from the system, the web apps are just a portal to those reports.  So the workflow would see them submit their text and assetts to be used in the final product and pay via the web app.  With the web app that takes payment and allows them to submit their personalization stuff I was going to make one per product, so if product a) requires them to submit one block of text and 2 photos, the web app would have corresponding fields.  Then I got thinking about using content holders, the one web app for all products that need one block of text and 2 photos, if I could get the name tag to populate with the product page that sends to it, or the page name the web app form is inserted on, because this will correspond to the large product.  This way when I do the reporting instead of having to report from heaps of web apps, I could just filter the reports by the product name.  It would mean I would only need a handful of web apps vs needing quite a lot, but if it is beyond me I am happy that I have a solution, even if it is a bloated one.
    The other part of this involves me needing to capture the uploaded file name in the web app form fields so I can report from them.  I have been looking around and came across the below code.  My web app will require 1-12 uploaded file names to be captured in 1-12 form fields i.e. img_1 - img_12 - I am not a coder but I wondered whether this had potential for what I need.  It comes from here http://www.openjs.com/articles/ajax/ajax_file_upload/response_data.php
    Thanks in advance for taking the time to digest all of this.
    Mandy
    A Sample Application
    For example, say you are building a photo gallery. When a user uploads an image(using the above mentioned ajax method), you want to get its name and file size from the server side. First, lets create the Javascript uploading script(for explanation on this part, see the Ajax File Upload article)...
    The Code
    <script type="text/javascript"> function init() { document.getElementById("file_upload_form").onsubmit=function() { document.getElementById("file_upload_form").target = "upload_target"; } } </script>  <form id="file_upload_form" method="post" enctype="multipart/form-data" action="upload.php"> <input name="file" id="file" size="27" type="file" /><br /> <input type="submit" name="action" value="Upload Image" /><br /> <iframe id="upload_target" name="upload_target" src="" style="width:100px;height:100px;border:1px solid #ccc;"></iframe> </form> <div id="image_details"></div>
    And the server side(PHP in this case) script will look something like this...
    <?php list($name,$result) = upload('file','image_uploads','jpg,jpeg,gif,png'); if($name) { // Upload Successful $details = stat("image_uploads/$name"); $size = $details['size'] / 1024; print json_encode(array( "success"     =>     $result, "failure"     =>     false, "file_name"     =>     $name,     // Name of the file - JS should get this value "size"          =>     $size     // Size of the file - JS should get this as well. )); } else { // Upload failed for some reason. print json_encode(array( "success"     =>     false, "failure"     =>     $result, )); }
    Here we are printing the data that should be given to JS directly into the iframe. Javascript can access this data by accessing the iframe's DOM. Lets add that part to the JS code...
    function init() { document.getElementById("file_upload_form").onsubmit=function() { document.getElementById("file_upload_form").target = "upload_target"; document.getElementById("upload_target").onload = uploadDone; //This function should be called when the iframe has compleated loading // That will happen when the file is completely uploaded and the server has returned the data we need. } }  function uploadDone() { //Function will be called when iframe is loaded var ret = frames['upload_target'].document.getElementsByTagName("body")[0].innerHTML; var data = eval("("+ret+")"); //Parse JSON // Read the below explanations before passing judgment on me  if(data.success) { //This part happens when the image gets uploaded. document.getElementById("image_details").innerHTML = "<img src='image_uploads/" + data.file_name + "' /><br />Size: " + data.size + " KB"; } else if(data.failure) { //Upload failed - show user the reason. alert("Upload Failed: " + data.failure); } }
    Explanation
    Lets see whats happening here - a play by play commentary...
    document.getElementById("upload_target").onload = uploadDone;
    Set an event handler that will be called when the iframe has compleated loading. That will happen when the file is completely uploaded and the server has returned the data we need. Now lets see the function uploadDone().
    var ret = frames['upload_target'].document.getElementsByTagName("body")[0].innerHTML; var data = eval("("+ret+")");
    These two lines are an eyesore. No - it goes beyond 'eyesore' - this is an abomination. If these lines causes you to gouge out your eyes and run for the hills, I can understand completely. I had to wash my hands after writing those lines. Twice.
    var ret = frames['upload_target'].document.getElementsByTagName("body")[0].innerHTML;
    This will get the data the server side script put in the iframe. This line cannot be avoided as far as I know. You can write it in different ways - but in the end, you will have to take the innerHTML or the nodeValue or something of the body element of the iframe. I used the smallest code in the sample. Even if you specify the Content type of the iframe page as text/plain, the browser will 'domify' it.
    One other thing - in frames['upload_target'] the 'upload_target' is the name of the iframe - not the ID. Its a gotcha you need to be aware of.
    var data = eval("("+ret+")");
    Thankfully, this line can be avoided - you can use some other format(in this particular case the best format might be plain HTML) so that you don't have to parse a string that comes out of innerHTML. Or you can use CSV. Or plain text. Or JSON as we are doing right now - just parse it without using eval(). Reason I choose it? Smallest code - and easier to understand.
    Now we have a working system. The files are uploaded and data reaches the client side. Everything works perfectly. Oh, how I wish I could say that. But nooo - the nightmare of every javascript developer rears its ugly head again...
    Internet Explorer
    Internet Explorer, also known as IE, also known as the Beast, again manages to mess things up. They don't support the onload event for iframe. So the code...
    document.getElementById("upload_target").onload = uploadDone;
    will not work. WILL. NOT. WORK. Thanks IE, thanks very much.
    So, what do we do? We use a small hack. We put a script tag inside the iframe with a onload event that calls the uploadDone() of the top frame. So now the server side script looks like this...
    <html> <head> <script type="text/javascript"> function init() { if(top.uploadDone) top.uploadDone(); //top means parent frame. } window.onload=init; </script> <body> <?php list($name,$result) = upload('file','image_uploads','jpg,jpeg,gif,png'); if($name) { // Upload Successful // Put the PHP content from the last code sample here here } ?> </body> </html>
    Okay - now we have a IE-proof working system. Upload an image using the below demo application to see it in action.
    If you have a better way of doing this, please, PLEASE let me know. I feel dirty doing it this way.
    See it in Action

    You also need to consider when someone removes a product and what happens in terms of the things uploaded.
    Not saying your way wont work but I have the structure for this basically very similar on sites already that covers all the basis of real world use and works well.
    Mine is future proof anyway. BC will never ( I have it in writing) replace the code because it will break implementations and sites directly. jquery version is on the cards but the way that will be implemented or any change will either be with notice and on new sites not old or like many features an option in the admin to change it.

  • Proceedure of how to create a logo in SAP R/3

    Dear Techie's,
    Please tell me the Proceedure of how to create a logo in SAP R/3 and how to include in the ALV.
    I suppose its to be included in the ALV_comentary_write function module.
    Please guide me in full.
    Regards,
    -=Virendra=-

    HI,
    Please follow below steps
    (1)Create a class name
    SBDSV1 (TRANSACTION) --> New Entries --> Class name (SOME NAME) --> Class type (OT).
    2)After entering the above details and saving, the fields Class object name fields   will be blank, make entries as shown  below .
    1)     Class : BDS_LOC1
    2)     Class : BDS_POC1
    3)     Class : BDS_REC1
    4)     Object name : BDS_CONN00
    3)- Now next time logging in to OAOR you can directly refer to this Class name.
    4)1)     Go to transaction OAOR, give the class name created.
       2)     Give class type as OT
       3)     Give some name in object key it’s like sub folder
    5) a) Click on create drag down standard doc types will get no. of option chose one
        b) double click on the class name in this new screen.
        c)in the below screen are, you have tabs for  details,documentinfo,keywords,create, click on create TAB,
       d)By double clicking on screen you can browse the folder where image is located and select it
       e)Once the image is selected it will be stored in the folder that is created with object key
    6) now double click on the image you uploaded & in below screen area select the Details tab, you will get object id,use this object id & code as below
    7)form FILL_EVENTS .
    DATA: wa_events TYPE SLIS_ALV_EVENT.
    CLEAR: LS_EVENTS.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       IMPORTING
         ET_EVENTS             = LS_EVENTS
    wa_events-form = 'STD_TOP_OF_PAGE'.
    MODIFY ls_events FROM wa_events TRANSPORTING FORM WHERE NAME =
    'TOP_OF_PAGE'.
    CLEAR: wa_events.
    endform.                    " FILL_EVENTS
    FORM STD_TOP_OF_PAGE.
    DATA: it_listheader TYPE SLIS_T_LISTHEADER,
           is_listheader TYPE SLIS_LISTHEADER.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary       = it_listheader[]
         I_LOGO                   = 'ZTEST'  "this is object id mentioned in 6 step
        I_END_OF_LIST_GRID       =
      ENDFORM.
    Regards,
    Raghavendra

  • Can't create a Tag in a Yosemite

    Hi !
    After upgrading to Yosemite, I can't create a tag on my file or folder.
    I tried several methods(type in a tag name, click on an existing tag...), but it doesn't work.
    I'm using Macbook Air, Yosemite 10.10.1
    Please let me know what's the problem
    Thank you for your help

    Thank you for your help
    It worked, and after that, even without control key I could create a tag
    Thanks a lot ~~

  • How do I keep the name tags in Picasa Web Albums from appearing on the images by default? With Explorer, name tags only appear when mousing over the image, but with Firefox, all the tags appear on the picture as soon as it is loaded, which looks messy.

    I use Picasa to create web albums, and I tag people who appear in the pictures. With Explorer, the name tags do not appear on the pictures until I mouse over a specific person, at which point the tag appears. With Firefox, the name tags appear as soon as the picture is loaded, and only disappear when you mouse over the people in the picture. This makes the picture look messy; by default, one would want to see a picture without tags all over people's faces.
    The only way to "fix" this is to disable the name tags completely (or tell people to use Explorer!), but this is not an ideal solution, since I would like to be able to share albums with people's names in them.

    I use Picasa to create web albums, and I tag people who appear in the pictures. With Explorer, the name tags do not appear on the pictures until I mouse over a specific person, at which point the tag appears. With Firefox, the name tags appear as soon as the picture is loaded, and only disappear when you mouse over the people in the picture. This makes the picture look messy; by default, one would want to see a picture without tags all over people's faces.
    The only way to "fix" this is to disable the name tags completely (or tell people to use Explorer!), but this is not an ideal solution, since I would like to be able to share albums with people's names in them.

  • How can I create Object Tag which supports Sun and MS JVM both.

    Hi,
    I have created object tag as shown below
    <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    name = "TestApplet" height="0" width="0" >
    <param name="code" value="com.apps.TestApplet.class" />
    <param name="codebase" value="codes" />
    <param name="archive" value="TestApplet.jar" />
    </object>
    The above tag is working fine with the below JVM combinations in Windows XP.
    1) Only Sun JVM
    2) Only MS JVM
    3) Sun JVM & MS JVM
    But these conditions are not working with Windows 2000.
    How we can create object tag which will support for these two opertating systems?

    I am not able to understand the problem. From my understanding, you have an applet which you are trying to display in a browser using <object> tag. If that is the correct then all it matters is the browser and the JRE�
    For example the below code when put in a JSP or a HTML, will use JRE 1.6.0_01 that is available on the client machine. If that is not available on the client machine then it will try and download automatically in IE.
    This below code is for IE� if you are using Mozilla Firefox then you need to change the �classid� attribute to �java: com.foo.bar.ui.MyClass�
    <OBJECT ID="Gantt" classid = "clsid:CAFEEFAC-0016-0000-0001-ABCDEFFEDCBA"
                  codebase = "http://java.sun.com/update/1.6.0/jinstall-6u1-windows-i586.cab"
                  WIDTH = "980" HEIGHT = "495" ALIGN = "baseline">
                   <PARAM NAME="cache_option" VALUE="Plugin">
                  <PARAM NAME ="CODE" VALUE = "com.foo.bar.ui.MyClass" >
                  <PARAM NAME="MAYSCRIPT" VALUE="true">
                  <PARAM NAME ="cache_archive" VALUE = "Myjar.jar /" >
                  <PARAM NAME = "type" VALUE = "application/x-java-applet;jpi-version=1.6.0">
                  <PARAM NAME = "scriptable" VALUE = "false">
                  <strong>
                     This browser does not have a Java 1.6.0_01 Plug-in.
                     <br />
                     <a href="http://java.sun.com/update/1.6.0/jinstall-6u1-windows-i586.cab">
                       Get the latest Java Plug-in here.
                     </a>
              </strong>
            </OBJECT>

  • Name Tags

    I would like to be able to print name tags from a database... Can anyone help me figure out how to do this?
    Thanks!

    Appleworks is my favorite program for the task for the very reasons you mention.
    First, it is dirt easy to create a new database and Appleworks has a template included for contacts.
    Once you have entered the data you create different layouts. For example, in one contact database I have multiple layouts. Example:
    1. Layout 1 Print out all the contacts in Roster format.
    2. Layout 2 is name tags for seats
    3. Layout 3 is address labels.
    4. Layout 4 is a calling checklist.
    All these layouts I created in one database! Pretty darn slick.
    There have been many complaints about Pages limited mail merge. It only communicates with Address Book. Appleworks Word Processing files do mail merge from any Appleworks database and any field. As mentioned previously, you can create layouts within the database to print out the info.
    Hesitancy to recommend Appleworks comes from its lack of development, although it has been mentioned elsewhere that Appleworks runs well on Intel Macs.
    If you want to work with Pages consider creating a new group in Address Book with the contact names you wish. At the end of the project you can delete all the contacts by selecting a the group, selecting a contact in the group, press ⌘ + A to select all contacts and then press delete. When it asks how you want to delete the contact make sure you select, delete from Address Book.
    Kurt

  • Learning Portal for SAP LSO

    Hi,
    We are implementing SAP Learning Solutions in our org.
    According to the information i read in the forum, apart from the R/3, Learning Portal is used on EP.
    My understanding is :
    The Learnign Portal is the entry point for Learners in SAP LSO. And one has to call the BSP application "HCM_LEARNING" from EP through a BSP iView and it will call the Learning Portal of LSO.
    This learnig portal has features like,
    Searching the course catalog, Book/cancel course participation etc.
    is my understanding correct ?
    I also want to know Is there any Web Dynpro for ABAP component also involved in Learning Portal or the BSP application HCM_LEARNING itself takes care of all the functionalities.
    Please help.

    Hi Rohit
    Difference: SAP Learning Solution - Training and Event Manag
    All of the settings required for the SAP Learning Solution are contained under SAP Learning Solution in the sections Training Management and Learning Portal and Authoring Environment.
    The activities in the sections that follow do not apply to the SAP Learning Solution, but to Training and Event Management
    LSO contains many additional functionalities and the portal is based on BSP Application.
    In Authoring Environment, you can create course content or import the SCORM based contents in the same for playing in the content player. You have the options of offline player etc.
    Customize the followup functions.
    There is no Webdynpro involved in the learning portal however in EHP4 and above, the webdynpro is used in the
    administrator portal and instructor portal and there are many new functionalities being added in EHP4 and above which is the latest developments.
    Learning portals in all the releases is based on BSP Application HCM_LEARNING.
    Below releases, you can have the ESS integrated via PV7i and PV8i.
    Rest you can refer SAP help websites:
    For TEM -
    http://help.sap.com/saphelp_47x200/helpdata/en/77/bff8ab4a2911d182b80000e829fbfe/frameset.htm
    For LSO -
    http://help.sap.com/erp2005_ehp_02/helpdata/en/b8/b56c3c50ac854ce10000000a11405a/frameset.htm
    This will help you understanding the concepts in more details.
    Hope this helps.
    Best Regards,
    Chetan

  • SAP LSO historic load

    hi.
    I'm New in SAP LSO. My client is implementing SAP LSO for the first time and they want to load the historic courses that an employee has taken since 2 years ago to the present.
    I have tried to use transacion LSO_PV00 to create a call transaction. But never save the data in tables.
    Anyone could help me please?
    Thanks in advanced.

    Hi,
    Please create and run LSMW sessions for the following transactions :
    PV00 - Course Create (all historical events) -> If course types do not appear in training catalog first create them and assign to respective course groups.
    PV11 - Book Attendance
    PV12 - Firmly Book
    PV15 - Follow up
    Do the last three steps for each historical course attendance of each employee.
    Regards,
    Dilek

  • How do I create rules files in Sap Data Services

    Hello Guys,
    I'm new with Bo Sap Development Data Services, and am migrating SSIS packages 2008 for the bods.
    I am studying the process of cleanup and word processing via bods.
    But I noticed that my installation does not have Rules Files.
    My question is:
    How do I create rules files in Sap Data Services library with support for Portuguese?

    Hello Ramana,
    So with version 4.2 of Sap Data Services do not currently have the rules files?
    How to mount files for text comparison Cleanse facing Addresses, Names, Clients, Companies? If you can give me some help link?
    Thanks again ...

  • SAP LSO Queries on Portal and Authoring Environment

    Hi Gurus,
    We are in the Process of implementing SAP LSO in ECC 6.0 environment.
    Can the gurus give some pointers on the following quries:
    Portal / Authoring Environment:
    1. How does the Collaboration Functionality Work in LSO Portal? Can you provide me a pointer for any documents or links the configuration and set up.
    2. I tried to install the LSOAE 6.00 in my PC. The Installation was successful but I am not able to open the application. I already have JDK 1.4.2 on my PC. Is there anything else that I need to do for opening the application?
    3. Can we link a PPT directly from the CMS without using the Authoring Environment? If so can you provide me the details on how this can be set up. ( Will the WBT functionality work without the Authoring Environment in SAP LSO).
    Please provide information.
    Thanks and Regards,
    Madhan.

    1. How does the Collaboration Functionality Work in LSO Portal? Can you provide me a pointer for any documents or links the configuration and set up.
    In general the KMC component is used for Collaboration, With infotype
    Collaboration Room (Infotype 5045)
    refer link for more detail. [http://help.sap.com/erp2005_ehp_03/helpdata/EN/45/5abb3f8e236d3fe10000000a114084/frameset.htm]
    2. I tried to install the LSOAE 6.00 in my PC. The Installation was successful but I am not able to open the application. I already have JDK 1.4.2 on my PC. Is there anything else that I need to do for opening the application?
    Pls update the JRE to latest version.
    3. Can we link a PPT directly from the CMS without using the Authoring Environment? If so can you provide me the details on how this can be set up. ( Will the WBT functionality work without the Authoring Environment in SAP LSO).
    No you can't do that, U need to publish any content form AE only. So that u can update the Publisher Database.
    Manually u can have the content in CMS, but no tag to it for SAP or in AE. Repository
    Amith Ingua
    Edited by: Amith Ingua on Jun 23, 2008 10:21 AM

  • Label Studio - Create a tag file as a pdf

    I am attempting to create a tag file as a pdf file in label studio.  When I attempt to use Adobe Acrobat, I get a message that says that "font WASP128M could not be embedded because of licensing restrictions."  Business Objects suggested trying another software to create the pdf file.   I downloaded Pdf Creator,  it creates a pdf file, but there is nothing in it.   Does any one have any ideas on how to do this?  Thanks for the help.

    Chris,
    Have you tried using one of the following pdf printer drivers?
    Here is some info from our KB article:
    There are many companies that offer PDF printer drivers. SAP BusinessObjects is not affiliated with any of these companies and does not recommend one in particular. The below information may change without SAP BusinessObjects knowledge. Here is a list of several PDF printer drivers and where to find them:
    - PDF Factory is from FinePrint Software, it can be found at http://www.fineprint.com/index.html
    - Freeware PDFCreator is a freeware PDF print driver, it can be downloaded from http://sourceforge.net/projects/pdfcreator/
    - Win2PDF is from Dane Prairie Systems, Inc. and can be found at http://www.win2pdf.com/
    I think Larry and I found that there are some issues with the latest version of PDFCreator but the other two should work fine.
    Thanks,
    Kendra

Maybe you are looking for

  • Is "jump to selection" broken in Safari 5.1?

    Can anyone get "jump to selection" (command+j) to work with Safari 5.1 for the Mac (Lion or Snow Leopard)?  In the past I've used it a lot as a quick placeholder and now it doesn't seem to work.  Maybe some preference setting?  Or do I just wait for

  • Conversion of Update rule to new Transformation

    Hi All, I'm using BI 7.0 SP9. I have a scenerio where in I need to load standard cube 0SD_C03 cube from the standard extractors like 2LIS_11_VAITM etc.. Based on the the thread below I have done the follwoing steps. how to migrate old transfer rule/u

  • Background step in workflow remains in process: Workflow gets stuck up

    Hi Gurus, I have custom workflow for organization management. The workflow takes information from e-forms(notifications) and updates the infotypes. The step which updates infotypes is run as background step.However in some cases the workflow gets stu

  • Ipod showing Unknown Album issue

    So I have an Ipod 5th gen. There's an issue whenever I try to add songs onto my Ipod. I open Itunes on my computer, click Ipod, then click On This Ipod, and add the songs I want. So everything i going right up until the album part. I right click a so

  • Imported images have poor colors

    Friends, I'm a new user to Motion 5 having what I hope is an easily-solved problem.  I want to create an animated image sequence.  The images were originally created and stored in Aperture.  Because I understand that Motion does not permit import fro