Link TADIR and E071

Hi,
I need to link E071-OBJ_NAME (Object Name in Object List) with TADIR-OBJ_NAME (Object Name in Object Directory).
Can anyone please suggest the link table for the two object names (as in object list and other in object directory).
Thanks in advance.
Arindam.

E071 may hold header (R3TR) or partial (LIMU) objects, TADIR holds only header objects. You can convert an E071 entry into its TADIR counterpart using function module TR_READ_TADIRS, or TR_CHECK_TYPE.
Thomas

Similar Messages

  • Relation between tadir and dokil

    Hello,
    is there any relation between the tadir and the dokil table?
    I would like to find all longtexts belonging to a package.
    Greets,
    Matthias

    Welcome to SCN,
    Already SAP standard transaction code SE61 is available. then also you need
    Try this way.
    Link
    TDEVC     DEVCLASS     =     TADIR     DEVCLASS
    then take TADIR-OBJ_NAME then
    SELECT SINGLE * FROM DOKIL
               AND    OBJECT      = TADIR-OBJ_NAME
               AND    LANGU       = SY-LANGU
               AND    TYP         = 'E'
               ORDER BY VERSION DESCENDING.
    then
    CALL FUNCTION 'DOCU_READ'
               EXPORTING
                    ID      = DOKIL-ID
                    LANGU   = DOKIL-LANGU
                    OBJECT  = DOKIL-OBJECT
                    TYP     = DOKIL-TYP
                    VERSION = DOKIL-VERSION
               IMPORTING
                    HEAD    = I_HEAD
               TABLES
                    LINE    = I_DOCU
               EXCEPTIONS
                    OTHERS  = 1.
    PS I am not 100% sure about this work well all

  • How to Bind a Combo Box so that it retrieves and display content corresponding to the Id in a link table and populates itself with the data in the main table?

    I am developing a desktop application in Wpf using MVVM and Entity Frameworks. I have the following tables:
    1. Party (PartyId, Name)
    2. Case (CaseId, CaseNo)
    3. Petitioner (CaseId, PartyId) ............. Link Table
    I am completely new to .Net and to begin with I download Microsoft's sample application and
    following the pattern I have been successful in creating several tabs. The problem started only when I wanted to implement many-to-many relationship. The sample application has not covered the scenario where there can be a any-to-many relationship. However
    with the help of MSDN forum I came to know about a link table and managed to solve entity framework issues pertaining to many-to-many relationship. Here is the screenshot of my application to show you what I have achieved so far.
    And now the problem I want the forum to address is how to bind a combo box so that it retrieves Party.Name for the corresponding PartyId in the Link Table and also I want to populate it with Party.Name so that
    users can choose one from the dropdown list to add or edit the petitioner.

    Hello Barry,
    Thanks a lot for responding to my query. As I am completely new to .Net and following the pattern of Microsoft's Employee Tracker sample it seems difficult to clearly understand the concept and implement it in a scenario which is different than what is in
    the sample available at the link you supplied.
    To get the idea of the thing here is my code behind of a view vBoxPetitioner:
    <UserControl x:Class="CCIS.View.Case.vBoxPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:v="clr-namespace:CCIS.View.Case"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    d:DesignWidth="300"
    d:DesignHeight="200">
    <UserControl.Resources>
    <DataTemplate DataType="{x:Type vm:vmPetitioner}">
    <v:vPetitioner Margin="0,2,0,0" />
    </DataTemplate>
    </UserControl.Resources>
    <Grid>
    <HeaderedContentControl>
    <HeaderedContentControl.Header>
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
    <TextBlock Margin="2">
    <Hyperlink Command="{Binding Path=AddPetitionerCommand}">Add Petitioner</Hyperlink>
    | <Hyperlink Command="{Binding Path=DeletePetitionerCommand}">Delete</Hyperlink>
    </TextBlock>
    </StackPanel>
    </HeaderedContentControl.Header>
    <ListBox BorderThickness="0" SelectedItem="{Binding Path=CurrentPetitioner, Mode=TwoWay}" ItemsSource="{Binding Path=tblParties}" />
    </HeaderedContentControl>
    </Grid>
    </UserControl>
    This part is working fine as it loads another view that is vPetioner perfectly in the manner I want it to be.
    Here is the code of vmPetitioner, a ViewModel:
    Imports Microsoft.VisualBasic
    Imports System.Collections.ObjectModel
    Imports System
    Imports CCIS.Model.Party
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' ViewModel of an individual Email
    ''' </summary>
    Public Class vmPetitioner
    Inherits vmParty
    ''' <summary>
    ''' The Email object backing this ViewModel
    ''' </summary>
    Private petitioner As tblParty
    ''' <summary>
    ''' Initializes a new instance of the EmailViewModel class.
    ''' </summary>
    ''' <param name="detail">The underlying Email this ViewModel is to be based on</param>
    Public Sub New(ByVal detail As tblParty)
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Me.petitioner = detail
    End Sub
    ''' <summary>
    ''' Gets the underlying Email this ViewModel is based on
    ''' </summary>
    Public Overrides ReadOnly Property Model() As tblParty
    Get
    Return Me.petitioner
    End Get
    End Property
    ''' <summary>
    ''' Gets or sets the actual email address
    ''' </summary>
    Public Property fldPartyId() As String
    Get
    Return Me.petitioner.fldPartyId
    End Get
    Set(ByVal value As String)
    Me.petitioner.fldPartyId = value
    Me.OnPropertyChanged("fldPartyId")
    End Set
    End Property
    End Class
    End Namespace
    And below is the ViewMode vmParty which vmPetitioner Inherits:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Collections.Generic
    Imports CCIS.Model.Case
    Imports CCIS.Model.Party
    Imports CCIS.ViewModel.Helpers
    Namespace CCIS.ViewModel.Case
    ''' <summary>
    ''' Common functionality for ViewModels of an individual ContactDetail
    ''' </summary>
    Public MustInherit Class vmParty
    Inherits ViewModelBase
    ''' <summary>
    ''' Gets the underlying ContactDetail this ViewModel is based on
    ''' </summary>
    Public MustOverride ReadOnly Property Model() As tblParty
    '''' <summary>
    '''' Gets the underlying ContactDetail this ViewModel is based on
    '''' </summary>
    'Public MustOverride ReadOnly Property Model() As tblAdvocate
    ''' <summary>
    ''' Gets or sets the name of this department
    ''' </summary>
    Public Property fldName() As String
    Get
    Return Me.Model.fldName
    End Get
    Set(ByVal value As String)
    Me.Model.fldName = value
    Me.OnPropertyChanged("fldName")
    End Set
    End Property
    ''' <summary>
    ''' Constructs a view model to represent the supplied ContactDetail
    ''' </summary>
    ''' <param name="detail">The detail to build a ViewModel for</param>
    ''' <returns>The constructed ViewModel, null if one can't be built</returns>
    Public Shared Function BuildViewModel(ByVal detail As tblParty) As vmParty
    If detail Is Nothing Then
    Throw New ArgumentNullException("detail")
    End If
    Dim e As tblParty = TryCast(detail, tblParty)
    If e IsNot Nothing Then
    Return New vmPetitioner(e)
    End If
    Return Nothing
    End Function
    End Class
    End Namespace
    And final the code behind of the view vPetitioner:
    <UserControl x:Class="CCIS.View.Case.vPetitioner"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:vm="clr-namespace:CCIS.ViewModel.Case"
    mc:Ignorable="d"
    Width="300">
    <UserControl.Resources>
    <ResourceDictionary Source=".\CompactFormStyles.xaml" />
    </UserControl.Resources>
    <Grid>
    <Border Style="{StaticResource DetailBorder}">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Text="Petitioner:" />
    <ComboBox Grid.Column="1" Width="240" SelectedValuePath="." SelectedItem="{Binding Path=tblParty}" ItemsSource="{Binding Path=PetitionerLookup}" DisplayMemberPath="fldName" />
    </Grid>
    </Border>
    </Grid>
    </UserControl>
    The problem, presumably, seems to be is that the binding path "PetitionerLookup" of the ItemSource of the Combo box in the view vPetitioner exists in a different ViewModel vmCase which serves as an ObservableCollection for MainViewModel. Therefore,
    what I need to Know is how to route the binding path if it exists in a different ViewModel?
    Sir, I look forward to your early reply bringing a workable solution to the problem I face. 
    Warm Regards,
    Arun

  • If my phone service is disconnected, can I still use the number to iMessage? Under my setting in iMessages it only allows me to select my linked emails and the telephone number is there but grayed out and i can't seletect it !

    If my phone service is disconnected, can I still use the number to iMessage? Under my setting in iMessages it only allows me to select my linked emails and the telephone number is there but grayed out and i can't seletect it ! It wont activate. I just recentely got AT&T.  When I had verizon before and my phone got disconnected it allowed me to still iMessage off my number.

    If your phone service is disconnected, it's not your number any more.
    If you "just got AT&T", how can it be disconnected?

  • OK, I need to be able to have a linked TOC, and also have destinations created in FM10 that will not be lost when I 1. Save the book as a PDF. then 2.  need the PDF to be as small as possible, but without losing my destinations. Anyone know how to do that

    OK, I need to be able to have a linked TOC, and also have destinations created in FM10 that will not be lost when I 1. Save the book as a PDF; then 2. I need the PDF to be as small as possible, but without losing my destinations. Anyone know how to do that??
    I had been saving as a PDF and then reducing the size of the PDF by printing it as a PDF with a degree of image compression. I write manuals with a LOT of screen captures and line art that needs to be clear. So it is a balancing act between image clarity and PDF size. The PDFs on the web need to be smaller - sure you can undertsand.
    Anyway, when I print the PDF again, I lose both my destinations and bookmarks.
    Anyone know of any way to avoid that?

    Control the images by creating a custom PDF Job Options and then selecting it in the PDF Job Options drop-down of the PDF setup dialog box (File > Save as PDF...)
    Create the custom PDF Job Options file with Distiller. If you do not have Distiller, open the Printing Preferences of the Adobe PDF printer. Start with the Smallest File Size Job Options settings and Edit.

  • I'm trying to load up webpages and am getting the error "URL not valid" but it's on sites and URLs that i know for sure are. Like when I click a link it'll do that but I'll close the notification box and click the link again and it'll load.

    I'll pretty much just get a message that says something like google.com is invalid when I know it for sure it. Even if I just click on a link on like Gizmodo or something, I'll get that message. I'll close the message and then I'll click the link again and it would actually load up now.
    == This happened ==
    A few times a week
    == A while ago. Perhaps a couple weeks

    Click here and request assistance.
    (91679)

  • How can i re-link .mpkg and .pkg files to hidden Installer?

    I am near the end of the process of setting up my new Mac Pro (early 2009) eight core. Quite the wonderful difference from my "Mirror Drive Door" dual 1.25 GHz machine!
    The Mac Pro came with Mac OS X 10.6.2 installed. I updated this to 10.6.6 via Software Update along with a slew of other updates presented there. I downloaded and installed a bunch of software. Finally, I was ready to install iLife 11 from the "CPU Drop-in" DVD that was on top of the box when the computer was originally unpacked.
    Unfortunately, it wouldn't even begin the install. The "iLife.mpkg" file, when double-clicked, returned the error message "no application associated with this document". Hours of investigation reveals that NO .mpkg or .pkg file will open; doing a "get info" on the files reveals that those files have lost their link to the Installer app.
    AND since the only installer I can find is hidden in /usr/sbin, there is no way I can re-link .mpkg and .pkg files to it via "get info".
    I downloaded Pacifist and used it to open the "Mac OS X 10.6.6 Combo" package and re-installed the Combo updater. Much to my surprise, that didn't fix the linking issue.
    I've logged in as root, but still can't re-link the package files to the Installer as /usr/ is still hidden. Is there a way I can temporarily "un-hide" the /usr directory so that "get info; open with" can see it?
    I've started from the Mac OS X installer DVD and repaired permissions on the hard disk and "repaired" the hard disk. No luck there either.
    I did a clean install of Mac OS X 10.6.2 to a different hard drive and applied the combo updater and the packages worked as expected there. So some software I installed or by running a slew of updaters via Software Update broke the link between packages and the Installer.
    I'm sure that re-linking to packages to the hidden installer app can be done via Terminal and possible other ways, but I don't know how to do it.
    Short of doing a complete Mac OS X 10.6 re-installation and update and having to re-do several days of other software installations and data transfers, I'm hoping someone will offer some solutions or tips on how to solve my problem.
    How do I re-link .mpkg and .pkg files to the Installer?

    Thanks for the reply. I know I had previously checked for the missing installer in /System/Library/CoreServices/ and I rechecked and it's still not there. But your tip spurred me to check the test 10.6.6 installation on the other hard disk and yes! It's there!
    A quick copy from the second hard disk to my current hard disk and doing the "get info" trick and everything now works wonderfully. Only one day lost to trying to figure this out. Now that the problem is fixed, quite the relief.

  • Topics missing from link view and topic references

    I am using RoboHelp X5 and have come across situations where
    I have a URL, and all of the topics that link to it do not display
    in link view, in the Show Topics References option, or in the
    External Topics report. I want to know if there is an easy way to
    correct this so I can see every topic that links to a particular
    URL.
    For example, I have a link to www.adobe.com that is
    referenced in the TOC and 5 different RoboHelp topics. After I
    initially set up all the links, all 5 topics show in link view from
    www.adobe.com. In topic references, the TOC also appears. Then a
    few days or weeks later, I try to view the links again, and some or
    all of them no longer appear. If I display the link in link view or
    right click and select Topic References, it may only show me the
    reference to the TOC. If I remove it from the TOC, it no longer
    appears as a URL at all. But it is still actually used in 5 topics.
    Also, if I know it is linked from topic A, I could go in and edit
    topic A and save. Then www.adobe.com will show up as a link in the
    URL list again, and topic A will appear again in link
    view/references. But I don't necessary know all of the topics that
    link to it, and if I am trying to remove it from the entire
    project, or change the URL, that becomes a problem.
    I hope this makes sense and if anyone can help, I would
    appreciate it!
    Chris

    Repair the broken links, create a zipped backup of the project, then delete the CPD file before reopening.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Using BAPI_PO_CREATE1 : Linking service, and account assignment

    Hello,
    I have trouble when using BAPI_PO_CREATE1. When creating PO using BAPI_PO_CREATE1, I need to input service for each po item and the service itself need to have account assignment. I simplify the code below.
    **PO item
    t_poitem-po_item        = '10'. "for item 10
    t_poitem-PCKG_NO        = '20'. "link with service
    t_poitemx-po_item        = 'X'.
    t_poitemx-PCKG_NO       = 'X'.
    **Account Assignment
    t_poaccount-po_item    = '10'. "link with PO Item
    t_poaccount-SERIAL_NO  = '01'.
    t_poaccount-DISTR_PERC = 1.
    t_poaccountx-po_item    = '10'.
    t_poaccountx-SERIAL_NO  =  '01'.
    t_poaccountx-po_itemx    = 'X'.
    t_poaccountx-SERIAL_NOx  = 'X'.
    t_poaccountx-DISTR_PERC = 'X'.
    **PO Services
    **1st row
    t_poservices-PCKG_NO = '20'.
    t_poservices-LINE_NO = '0000000001'.
    t_poservices-SUBPCKG_NO  = '21'.
    APPEND t_poservices.
    clear t_poservices.
    **2nd row
    t_poservices-PCKG_NO = '21'.
    t_poservices-LINE_NO = '0000000002'.
    t_poservices-EXT_LINE = '0000000010'.
    **fill account assignment for services
    t_POSRVACCESSVALUES-pckg_no = '21'.
    t_POSRVACCESSVALUES-LINE_NO = '0000000002'.
    T_POSRVACCESSVALUES-SERNO_LINE = '01'.
    t_POSRVACCESSVALUES-SERIAL_NO = '01'. "acct. assign. link
    t_POSRVACCESSVALUES-PERCENTAGE = '100'.
    Every time i execute BAPI_PO_CREATE1 using entry similar like above, i always found error message in t_return like this:
    No account assignment exists for service line 0000000010
    I feel sure that i have fill every field needed to link services and account assignment which is using serial_no, but somehow it does not link correctly. Can anyone advise me if there is some thing missing or incorrect with my ABAP code above? Thank you in advance for your help. For sure, first helpful answer will receive my rewards point.
    Regards,
    Abraham

    Thank you for the code. Actually i have fill the required field as you told but i did not put it in my code here to focus the problem on service and account assignment. After checking out your code, i found that the different between your code and mine is in services table.
    <u><b>your code :</b></u>
    <b>POSERVICES:structure</b>
    PCKG_NO : 0000000001
    LINE_NO :0000000001
    SUBPCKG_NO : 0000000002
    SERVICE :3000000000017
    QUANTITY :5
    BASE_UOM :AU
    GR_PRICE :20000
    <b>POSRVACCESSVALUES: structure name</b>
    PCKG_NO :0000000002
    LINE_NO :0000000002
    <u><b>my code are:</b></u>
    <b>POSERVICES:structure</b>
    PCKG_NO : 0000000001
    LINE_NO :0000000001
    SUBPCKG_NO : 0000000002
    PCKG_NO : 0000000002
    LINE_NO :0000000002
    SERVICE :3000000000017
    QUANTITY :5
    BASE_UOM :AU
    GR_PRICE :20000
    <b>POSRVACCESSVALUES: structure name</b>
    PCKG_NO :0000000002
    LINE_NO :0000000002
    SERIAL_NO :0000000001
    The other difference are in account assignment table, you didn't fill SERIAL_NO field.
    my code will be like below:
    <b>POACCOUNT: structure name</b>
    PO_ITEM :10
    SERIAL_NO : 0000000001
    If using your version, the error message will be:
    <i>In case of account assignment, please enter acc. assignment data for item</i>
    If using my version, the error message will be:
    <i>No account assignment exists for service line 0000000010</i>
    Please advise what was wrong with my code. Thank you.
    Regards,
    Abraham

  • I had to reset my Apple password and now my iTunes and iCloud passwords no longer work. How do I get them linked again and under the same password. I've tried my new password on each login screen and it isn't accepted.

    I had to reset my Apple password and now my iTunes and iCloud passwords no longer work. How do I get them linked again and under the same password. I've tried my new password on each login screen and it isn't accepted.

    Hi skippy2012trev,
    Welcome to the Apple Support Communities!
    I understand that you updated your Apple Id and password but now you are being prompted for the old information in iCloud. You are on the right track by changing the Apple ID back to the previous email address temporarily so that you can sign out. You should not need to verify the email address. After you edit the Apple ID back to the old email address and then sign out of iCloud on your iPhone, edit the Apple ID back to the address you would currently like to use. There is no need to change the password again, only the email address, unless you prefer to update the password again.
    If you're asked for the password to your previous Apple ID when signing out of iCloud - Apple Support
    Change your Apple ID temporarily
    If signing out and back in to iMessage or FaceTime didn't help, try these steps:
    Change your Apple ID to the Apple ID you used previously. You shouldn't need to verify the email address.
    Tap Settings > iCloud. Complete these steps only if the Find My [Device] setting is turned on:
    Scroll down and tap Sign Out, then tap Sign Out to confirm. If you're using iOS 7 or earlier, tap Delete Account, then tap Delete to confirm.
    Tap Keep on My [Device] or Delete from My [Device]. In either case, your data remains in iCloud and will be updated on your device when you sign in to iCloud again.
    Enter the password for your previous Apple ID.
    Change your Apple ID to the new email address that you want to use. You'll need to verify the email address.
    Return to Settings > iCloud and sign in with your new Apple ID.
    Cheers,
    Joe

  • ACD 30" Dual Link DVI and MacBook Pro Unibody

    I have the following configuration:
    ACD 30" Dual Link DVI and MacBook Pro Unibody
    I am exhibiting some intermittent problems with the 30" display not coming up when I reboot for example and here are some more:
    1. MacBook Pro not in clam-shell mode and restart equals 30" display not turning on
    2. When in Snow Leopard and I have the MacBook Pro running in clam-shell mode and I open the display on the MacBook Pro it remains black.
    3. When waking the MacBook Pro from sleeping (MacBook Pro in clam-shell) the 30" ACD is "grainy" and the display is not usable and it requires a reboot to solve the problem.
    Any help? In addition are there any other displays using mini-display port to mini display port technology?
    What about a different monitor; will I still have to use the Dual Link DVI adapter to drive a display with higher than 1920x1200 resolution?
    Are there adapters to go from mini-display port to display port?
    Thanks,
    Mike

    Just came across your post and i have a couple of suggestions ive noticed with the Dual-Link to Mini-DP with the same configuration.
    When working in clamshell mode for example, the 30" will become the MAIN/Default display...So if you open your macbookpro while the 30" is on and the system is running, the screen will remain black because it is in closed mode; basically meaning there is no signal to be sent.
    so if you want the display to show up, either restart or put into sleep mode, then wake the system WITH THE LID OPEN.
    As for the grainy/static artifacts, its beena reported issue since day 1, not sure waht the fix or issue may be with it but heres a resolution.
    Press; SHIFT CONTROL EJECT-KEY all at once, this will disable signal to the monitor, but not shut off the machine...then use your mouse or press a key on the keyboard to wake the display and the grainyness should disappear.

  • Links to and from a Flash video?

    (Sorry for the long post, trying to explain in detail what
    I'm looking for ...)
    Maybe you guys can tell me if this is possible using the
    current version of Flash (I will not be doing this myself, but I
    need to know if Flash is the way to go).
    1) Embed several videos/audio files in an HTML page, with the
    usual playback controls.
    2) Place links or form elements (buttons) in the page *to*
    those videos, allowing (via JavaScript/DOM) the user to
    a) play, pause and jump to a specific (SMPTE) position in a
    video.
    b) loop a section of the video (by giving two positions and a
    loop command)
    c) change audio volume.
    (I know this is normally done with controls in the video
    player, but I need interaction with the page.)
    3) Have links *from* the videos to the page/DOM - i.e., when
    the video is running, JavaScript events should be sent to the page
    to hide/load/update content - either automatically or user-driven
    (by clicking on the embedded video at a certain time - if possible,
    with hotspots so multiple options can be triggered; similar to a
    DVD menu).
    I'd like to do the same with audio. So I am basically looking
    for a mechanism to link to and from real-time content.
    Beyond the "Yup, possible!" I expect to hear ;) I have
    another question regarding workflow.
    The scenario for producing this stuff (e-learning)
    will/should be something like this:
    - Developer A builds a nice little audio/video player we can
    embed in our pages. This will be used to show/play our content.
    - Person B records video and audio, does a little post
    production, delivers media/files (DV, MP3).
    - Person C batch-converts the videos to FLV format, but
    doesn't (have to) do any creative work.
    - Person D with some HTML/JavaScript knowledge and a
    stopwatch :) builds the page, embeds the player(s) and sets the
    cues that will jump to certain positions. HTML pages, SWF, FLV and
    MP3 files are uploaded to a plain-vanilla HTTP server.
    Is this a realistic scenario? I.e., can we buy (or have
    someone develop) a player so that no tinkering with Flash itself is
    required anymore once we have established this workflow?
    I would appreciate your comments. Also, if the above is
    possible, I'd be grateful for links to showcase sites.
    Thank you.

    In theory - yup!
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15683
    Html pages can communicate to the flash file using
    javascript. The fla page can communicate to the FLV file using
    actionscript. So in theory you can send javascript commands to
    flash from the html page, and then have that set off some
    actionscript to control the movie.
    Can I be Person C? Sounds like easy money!
    Good luck. Check out the forums at www.gotoandlearn.com -
    that site has a lot of creative people with a very high knowledge
    of using Flash video.

  • When I am trying to package my artwork in Adobe Illustrator CC, it is not capturing my images and fonts. How do I make sure my linked photos and fonts are captured?

    When I am trying to package my artwork in Adobe Illustrator CC, it is not capturing my images and fonts. How do I make sure my linked photos and fonts are captured?

    Not all fonts can be packaged depending on their licensing. Some fonts are set to not allow packaging. For those you would have to manually locate them on your computer and add them to the folder where the packaging occurred.
    For the images have you checked the "copy links" option?

  • Re-link Assets and Place Assets Folder Navigation

    Can you PLEASE fix the bug in Muse that causes the folder to reset (don't know if I'm explaining this clearly) when re-linking assets, and placing assets. To clarify, when I re-link an asset in Adobe Muse it defaults to 'My Computer' instead of the last folder used. This is occasionally happening when placing assets as well. It is EXTREMELY frustrating, and VERY disruptive to the workflow having to navigate to the same folder OVER and OVER and OVER. Indesign does not have this issue, can you not have this work in the same manner? (Actually until an dAdobe Air update last year this was not an issue.) It need s to be fixed IMMEDIATELY, before any new 'paralax scrolling' or such is introduced.
    Thank You and I hope I can garner support from other users on this issue.

    Here's how ID works with links:
    First, the links in the file are absolute paths, meaning they refer to a particular location. If that location is acessible, ID will find the link and all is well. If the location is not acessible (on your colleague's hard drive, for example) ID will look for the links first in the current folder from which the .indd file was opened, and if nothing is found there, in any subfolders.
    But why are you both relinking? Do you both need to work with the links for output? Since CS4 there has been a Preference under File Handling that allows you to choose whether or not to find and update links when opening files, and it seems most likely to me that one of you should be ignoring missing and modified links and jut getting to work.

  • How to link parent and child relation in Metapedia

    How to link parent and child relation in Metapedia

    Vamsi,
    Did you every determine how to do what you were asking about? Where you thinking of how to link a parent term to a child term (i.e. like a related term) or was this about linking a term to a different metadata object (e.g. table or report) ?

Maybe you are looking for

  • HOW DO I SAVE APPLICATIONS INSTALILNG A NEW HARD DRIVE WITH NEW OS?

    I recently purchased a used G5 that is loaded with programs. I am getting signs that the hard drive is getting ready to crash. I installed a 1TB hard drive and formatted it. What I want to do is install leopard on the TB hard drive but still transfer

  • Day 2 with ATV, may need advice.

    iPhoNettie wrote:Apple Genius-tried syncing thru ethernet cable I need to know if this is possible with ethernet cable only between ATV/MacPro vs Airport wireless. I've spent hours with this 32gb ATV to just load and it's been nothing but long hours.

  • Performance counters for SQL database

    I have this need to carry out a performance test on our SQL database. What are the counters that I need to check and are there any tools that would assist me on this? mayooran99

  • Procedure entry point Adobe CC PS.CC

    The procedure entry point could not be located in the dynamic link libary C:\Program Files (x86)\Adobe\Adobe Photoshop CC\Photoshop.exe This after latest update!

  • Error launching CMC

    BO XI r2 Windows 2003 Server 64bit http://localhost8080/businessobjects/enterprise115/adminlaunch/launchpad.html I can log into 'Administrative Tool Console' When I try and launch CMC - I get message - 'HTTP Status 404' - The requested resource is no