Delta Linked object: reset attribute to inherit from parent

Hi all,
I inherited an ESS system where the SAP content had changes made to it.  The SAP supplied Employee Self-Service Role had some of the worksets set to Invisible in Navigation Areas.  I would like to clear the indicator that says that attribute is defined locally and have it back to inherit from parent.  Then I can make the Invisible change in the delta linked role in our custom content folder.
Is this possible without a program?
Thanks
--Amy Smith
--Haworth

Hi Gopal,
That would seem to make sense to me too.  I have one question about that that you may be able to help with. 
The role I am working with is a delta linked role that points back to the ESS role.  I can remove a workset from my delta linked role.  Later we will want to put that workset back in the role.
I can link it in pointing to the ESS workset, but the delta link trace will look different and anything done in the ESS role to that workset will not be reflected in my custom role.  So is there a way to tell my delta linked role to undelete the workset so it is still linked back to the ESS role.
Does this make any sense? 
--Amy Smith
--Haworth

Similar Messages

  • Transporting/Deploying Portal Content and Delta Linked Objects

    I researching the best way to trasport/deploy changed ESS Portal content from sandbox to D>Q.  I have become familiar with the few changes my co. needs to deploy part of ESS.  I have read articles that say it is wrong to modify the "Content Provided by SAP".  The recommendation appears to be "use delta link objects". I created the necessary delta links in a new directory. 
    How do I get the delta link objects to display instead of the sap source objects? I this primarily related to how the  portal is configured or how the content is managed?
    I'm really sorry about the general question (in advance) but this stuff is new for me and I'm essentially looking for some good direction here.
    Thanks,
    James

    Hi James,
    Yes exactly right. You should create your own PCD folder under Portal Content to store your objects. How you structure that is entirely up to you, however in my experience I have seen two ways
    1. First by Function or Dept (e.g. Finance, Logistics, HR) then by technical object (iView, role etc...)
    2. First by Technical Object (e.g. iViews, Roles, Worksets etc...) then by function or dept or region (Finance, HR etc...)
    Number 1 makes more sense to me. Just some other tips when it comes to creating PCD content:
    1. Put everything in your own namespace (e.g. com.mycompany) that way it is easy to separate from SAP content using filters.
    2, Come up with a logical naming standard so you can easily identify content by group, function and technical type (e.g. for an iView you might name it whoswho with the prefix com.mycompany.hr.ivu resulting in a name com.mycompany.hr.ivu.whoswho)
    2. Don't give PCD folders any prefix (e.g. com.mycompany) as it ends up elongating the resulting URLs unnecessarily and you can run into problems down the track.
    Hope this helps you.
    Simon

  • How to access objects in the Child Form from Parent form.

    I have a requirement in which I have to first open a Child Form from a Parent Form. Then I want to access objects in the Child Form from Parent form. For example, I want to insert a record into a block present in Child Form by executing statements from a trigger present in Parent Form.
    I cannot use object groups since I cannot write code into Child Form to first create object groups into Child Form.
    I have tried to achieved it using the following (working of my testcase) :
    1) Created two new Forms TESTFORM1.fmb (parent) and TESTFORM2.fmb (child).
    2) Created a block named BLK1 manually in TESTFORM1.
    3) Created two items in BLK1:
    1.PJC1 which is a text item.
    2.OPEN which is a push button.
    4) Created a new block using data block wizard for a table EMPLOYEE_S1. Created items corresponding to all columns present in EMPLOYEE_S1 table.
    5) In WHEN-NEW-FORM-INSTANCE trigger of TESTFORM1 set the first navigation block to BLK1. In BLK1 first navigable item is PJC1.
    6) In WHEN-NEW-ITEM-INSTANCE of PJC1, code has been written to automatically execute the WHEN-BUTTON-PRESSED trigger for the "Open" button.
    7) In WHEN-BUTTON-PRESSED trigger of OPEN item, TESTFORM2 is opened using the following statement :
    open_form(‘TESTFORM2',no_activate,no_session,SHARE_LIBRARY_DATA);
    Since its NO_ACTIVATE, the code flows without giving handle to TESTFORM2.
    8) After invoking OPEN_FORM, a GO_FORM(‘TESTFORM2’) is now called to set the focus to TESTFORM2
    PROBLEM AT HAND
    ===============
    After Step 8, I notice that it passes the focus to TESTFORM2, and statements after go_form (in Parent Form trigger) doesnot executes.
    I need go_form with no_activate, similar to open_form.
    Edited by: harishgupt on Oct 12, 2008 11:32 PM

    isn't it easier to find a solution without a second form? If you have a second window, then you can navigate and code whatever you want.
    If you must use a second form, then you can handle this with WHEN-WINDOW-ACTIVATED and meta-data, which you have to store in global variables... ( I can give you hints if the one-form-solution is no option for you )

  • Delted linked objects do not go away

    In AI CS3 I have a multi-layer illustration. Some of the layers have linked images (to other AI or Photoshop files). When I delete the layers, however, some to the items that had been on those layers still appear in the links palette. If you click on "go to item" nothing happens. This makes sense because the linked image no longer exists in the document. They are like ghosts that will not leave, but are invisible in the file. I've even tried selecting all on each layer, then hit delete, but they come back--but just in the links palette! Creepy. Has anyone else seen this? It would be nice to have a "delete" option in the Links palette, but there is none. Thanks in advance.
    MGuilfoile
    G5/2500 OS 10.4.11

    i have a mac. but i install XP on it using bootcamp.
    after i installed XP, i restore my ipod as itune prompt me to do so... didn't have any issues for about 2 weeks... now this is happening to me....
    ok... now my ipod is out of battery... let me try to connect it one more time.
    it shows the apple logo....
    it shows "do not disconnect"
    now my pc recognize ipod...
    let me try itune!!!
    WORKS!!!
    Ok !! guess my issure is gone...
    thx everyone's help!! really appreciate that!!

  • Child inherit from parents

    I am traversing down a tree and need to know how i can have the child inherit properties from a parent if its value is null;
    version 10g
    example
    id, parent_id, type
    1, null, A
    2, 1, A
    3, 2,null
    4, null, B
    5, 4, null
    for ids 3 and 5 i would like the type to be inherited from the partent so id 3 would have type A and id 5 would have type B.
    Message was edited by:
    user457357

    with t as
    ( select 1 as id , null as parent_id, 'A' as type from dual
      union all select 2, 1, 'A' from dual
      union all select 3, 2,null from dual
      union all select 4, null, 'B' from dual
      union all select 5, 4, null from dual
      union all select 6, 5, null from dual
      union all select 7, 5, 'C' from dual
      union all select 8, 7, null from dual
    select t1.id, t1.parent_id,
        ( select max(t2.type) keep (dense_rank last order by level)
          from t t2
          start with t2.id = t1.id
          connect by t2.id = prior t2.parent_id and prior t2.type is null
        ) as type
      from t t1
           ID     PARENT_ID T
            1               A
            2             1 A
            3             2 A
            4               B
            5             4 B
            6             5 B
            7             5 C
            8             7 C
    8 rows selected.

  • View link creation on two view objects, and both view objects are populated program(not from sql)

    I have master and detail VO , both views data is loaded in program. Now for show/hide feature, I create View Link Object and using one element from both child and master VO , View Link Object created properly.
    But I can not able to add that view link object into AM.
    Now because of that , I cannot say what is a instance name of that view link object.
    Hence getting following error  -- Invalid or missing view link. Please attach view link with the bean.
    Please can you provide some directions.

    I have master and detail VO , both views data is loaded in program. Now for show/hide feature, I create View Link Object and using one element from both child and master VO , View Link Object created properly.
    But I can not able to add that view link object into AM.
    Now because of that , I cannot say what is a instance name of that view link object.
    Hence getting following error  -- Invalid or missing view link. Please attach view link with the bean.
    Please can you provide some directions.

  • Reverting delta links?

    Hi All,
       I made a delta link of an standard SAP PCD object(X) into my local workspace (Y) and then edited only one property of that delta linked object (Y). so now i could see a sybmol "#" beside that delta linked object(Y). which means that there is some change from the original one (X).Now I want to revert this to the properties of original. I changed that property back to the orignal. but still i see "#" beside my PCD object.
      Is there soem tool available such as delta link comparator..which compares two delta link objects and show the differences between them..i.e. properties changed from the original
    Thank you

    I think what you want is to reset the Property
    If you want to do so, you have <b>to "expand" the Property</b> (small black triangle at the left of a Property on the Properties Panel) and then <b>click on the Reset button</b>. This will return the Property to the source value (and remove the "#" symbol)
    You can also do the same for the entire object with the "Reset Node" button
    As far as I know, there is no option to do it 'massively' in the Multiple Property Replacement functionality.
    Let me know if you find it !

  • Delta links on applying patches/upgrade.

    Hi,
    I have a basic question. What happens on applying patch/upgrade to the delta linked copies, when the source objects have been updated/upgraded with new SAP changes.
    Will the delta linked object properties get over written by new upgraded (or SAP patches) source objects.
    I have made delta links of the SAP delivered WPC IView container objects and using them in the custom pages. Lets say on applying a patch or upgrade, the orginal source objects are changed. Will those changes undo my changes on target delta linked objects.

    Hi,
    Copying to your namespace is possible but by that you loose all the advantages in the delta-link.
    What exactly are you copying Roles, iView, Pages everything?
    Adding additional delta link layer between the roles and SAP content is a wise step but copying everything will only dupplicate content and will not allow you upgrade safty with SAP features.
    Regards, Elisha
    PCD Team Leader
    SAP

  • "Inherit Permissions From Parent" doesn't work

    In OS X 10.5 server, selecting the option for an AFP share to inherit permissions from its parent does not work for users on OS X 10.3. All files created by users running 10.3 have 755 permissions, regardless of the parent folders permissions.
    Clearly, this rather dramatically reduces the utility of AFP in 10.5 Server for anyone with users running OS X 10.3.
    OS X 10.3 server did not have this problem.
    Manually propagating permissions is futile for two reasons. First, the needed set of nested permissions is complex enough that propagating them manually would take hours, and secondly there would be intervals between the propagations when documents would not be accessible to the right people.
    Consider a drastically simplified example:
    Imagine a share named "Share" with a folders inside it named Admin. Inside the Admin folder might be two additional folders named Accounting and Personnel. Inside Personnel there are folders named Performance Review and Forms. It would look like this:
    Share
    -- Admin
    ----- Accounting
    ----- Personnel
    -------- Performance Review
    -------- Forms
    Now consider several groups: Employees, Accounting, HumanResources
    Employees should have read write access to Share, and everything under it unless more restrictive permissions are explicitly created. Only the Accounting group has access to Accounting, and everything in Accounting should only be accessible to Accounting. Performance Reviews should only be accessible to the HumanResources group, but Forms should be accessible to all Employees.
    Now a member of the employees group saves a new file in the Forms folder, but the group doesn't have, and needs, read/write privileges. To fix this the permissions from Share can't be propagated to all the files and folders inside it because that would nuke the special privileges for Performance Reviews and Accounting.
    It might be conceivable that every n minutes a script could run that would recurse, depth first postorder, through the hierarchy assigning all files in each folder the permissions of the enclosing folder, but there are at least two problems with that. First, it would be slow and between runs the files wouldn't have the right permissions. Second, sometimes we might want a file to have special explicitly specified permissions that differ from the parent, but it would be terribly cumbersome to specify the exceptions for this sort of script.
    POSIX behavior also doesn't solve the problem because it will set the same permissions as we're seeing already, there's no obvious way to change the default permissions, and doing so would have security implications elsewhere on the server if that "umask"ish setting couldn't be specified exclusively for the share.
    Inherited permissions would solve the problem, and have solved the problem under past versions of OS X server, but they don't work on 10.5 with 10.3 clients.
    Does anyone know of a workaround or have any additional details?

    glad someone else is experiencing this, I'm having the same problem with inherit from parent.
    I was going to start using inherit because Leopard has ruined ACL's, Leopard clients don't honour the deny delete subfolders and files ACE, basically the leopard permissions systems seem to be flawed

  • TypeError: Error #2022: Class DS0$ must inherit from DisplayObject to link to a symbol

    Hello,
    When I tried AIR 3.7.0.1410 (ASC 2.0) to make an instance of a class that has AS linkage compiled as swc by Flash Pro,  it fails on
    TypeError: Error #2022: Class DS0$ must inherit from DisplayObject to link to a symbol
    at flash.display::Sprite/constructChildren()
        at flash.display::Sprite()
        at flash.display::MovieClip()
        at flash.display::Sprite/constructChildren()
        at flash.display::Sprite()
        at (AS-linkaged class name)
    while it's OK with AIR 3.6.0.6090.
    I'm on Windows 7 and Flash Builder 4.7. Does anyone see this issue?
    As for bug I put it here (Bug 3520793)
    https://bugbase.adobe.com/index.cfm?event=bug&id=3520793

    Hi Colin,
    Can you show me how you're embedding the asset in ASC 2.0?
    In Flash Pro, I imported a wav file into my library, configured the sound's linkage properties to export the asset, using the class name "ding". I then published the project as a .swc.
    In Flash Builder 4.7 Beta 1 (updated to ASC 2.0 Preview 3, though I don't think this is necessary for this particular test case), I created a new ActionScript Project, added the swc to my project library path, and then instantiated an instance of ding and played it. It seemed to work fine:
    package
        import flash.display.Sprite;
        import flash.media.Sound;
        public class SoundTest extends Sprite
            public function SoundTest()
                var s:Sound = new ding();
                s.play(0, 10);

  • Not able to create Remote Delta Link from Producer content to Consumer.

    Hi everybody,
    I am trying to create a Remote Delta Link from producer content (EP Version 7.0 SP15) to consumer (EP Version 7.0 SP15).
    I have achieved the following FPN settings/configuration:
    SSO Connection in both direction
    Connection test is done successfully
    Producer registration done successfully
    The user is existing in both portals (Producer and Consumer)
    But unfortunately I am receiving the following RDL copy and paste error message:
    *Could not create remote delta link
    Could not connect to producer portal. Please check that the producer portal is running, there are no network problems, and your consumer settings for the producer are configured properly.*
    The producer is running.
    There are no network problem
    and the setting are correct.
    Regards,
    Nagaraju

    Hi Nagaraju,
    did you solve this problem? I get the same error message and no hints in the log/trace files in both portals.
    Kind regards
    Gerd

  • FPN SP12: Remote Delta Linking does not work

    We have two portals, both running NW70 SP12.  The Producer portal is a BI portal, the consumer is a plain EP.  SSO has been implemented, and the consumer has been registered on the producer.  Remote Role Assignment works, and content from remote roles is visible on the consumer.  The producer portal object is called BI_Portal, and the consumer portal object is called EP_Portal.
    While RRA is working, Remote Delta Linking is not.
    I can browse the producer PCD from the consumer and copy the selected iView to the consumer PCD.  I can then take the copied iView and place it in a role.  Once I grant the consumer role to a user, the item then shows up in the navigation structure.  However, when clicking on the iView, I get the following error in the Producer log file:
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Unexpected error - Unable to get IView: fpn:EP_Portal/pcd:portal_content/ca.company.fld_comp/ca.company.fld_projects/ca.company.fld_fed_con/ca.company.rl_loc_fed_con/fld_my_work/fld_loc_fed_con/ca.company.iv_sd_org:Uql7CRb%2FAHAgS69lwbBcoA%3D%3D:1:
    Now, this error appears on the producer portal - why is the path fpn:EP_Portal in there?  I think what's happening is that the wrong fpn object is being placed in the iView object, so when the request hits the producer portal, the portal runtime can't find the object since the object fpn:EP_Portal doesn't exist.Or, perhaps I don't understand what the fpn: locator is supposed to mean.
    If you use the PCD Inspector, the iView attribute FpnLocator is what contains the fpn:EP_Portal/ string.  I've tried modifying it to point at the local portal, but that doesn't work either.
    Anyone else at this service pack level get RDL working?

    I'm a bit confused:
    EP_Portal is the name I entered for the consumer portal when I registered with the producer.  So, when I go the producer portal, EP_Portal is listed as one of the consumers.  Therefore, EP_Portal is the name of the consumer, as seen on the producer.
    And, where do I specify the P4 port?  There is not property for the consumer PCD entry - the only port number I can specify is the external network port, which is in this case 52000 (for the BI Portal).
    The only other port number I can set is in the URL of the Consumer.  The web dispatcher is running on the consumer, so the url does not specify a port number. 
    Are you saying that this URL should point at the P4 port on the consumer?

  • Remote Delta link setup problem with Bean / Access Service

    Hello,
    I am trying to setup Remote Delta Link (RDL) between two portals. (Both portals same version - EP 7.0 EHP1 SP 05 - are in the same domain)
    I already have the Remote Role Assignment working without any issues.
    The following have been done successfully:
    1. Same user repository has been setup for both the portals
    2. Setup trust between producer and consumer (SSO working fine)
    3. Producer added and registered succesfully on consumer
    4. Permissions setup on producer and consumer
    4. pcd_service user with required UME actions setup
    I am able to see all the remote content in the Consumer portal.
    When I try to copy the remote content and paste it as local content, I am getting the following error:
    Could not create remote delta link to object 'page id'. Could not connect to the remote portal. The remote portal may be down, there may be a network problem, or your connection settings to the remote portal may be configured incorrectly.
    After increasing the log severity, I am able to see the following in Default Trace:
    com.sap.portal.fpn.transport.Trying to lookup access service (P4-RMI) for connecting to producer 'ess_int' with information: com.sap.portal.fpn.remote.AccessServiceInformation@31c92207[connectionURL=hostname.mycompany.com:50004, shouldUseSSL=false, RemoteName=AccessService]
    com.sap.portal.fpn.transport.Unable to lookup access service (P4-RMI) with information: com.sap.portal.fpn.remote.AccessServiceInformation@31c92207[connectionURL=hostname.mycompany.com:50004, shouldUseSSL=false, RemoteName=AccessService]
    AbstractAdvancedOperation.handleDirOperationException
    [EXCEPTION]
    com.sap.portal.pcm.admin.exceptions.DirOperationFailedException: Could not retrieve the bean / access service to connect with producer
    Could not retrieve the bean / access service to connect with producer
    Like you can see above, there is some bean / access service which is not retrieved successfully. I am not sure if this is a permission problem on the consumer.
    I have checked that the P4 ports are configured correctly (standard - not changed) and I am able to telnet from producer to consumer (and vice versa) on the P4 port.
    I am stuck at this point and am not able to find any information on this.
    I would really appreciate if some one can point me in the right direction.
    Thank you for reading.
    - Raj

    Hi Raj,
    Please check your config of the P4 port on the producer.  Is it really 50004 (check SystemInfo of the producer)?
    I do think there's a problem with the P4 communication since RDL requires P4 connection.
    Do you have load balanced consumer-producer connection? Please refer to this blog for further details
    Little known ways to create a load balanced Consumer – Producer connection in a FPN scenario
    Regards,
    Dao

  • View link between calculated attributes

    Hi all,
    I'm having a problem with a view link. See, I'm linking two view objects on attributes that are calculated. The two view objects are result of sql query (not EO based) - plus, this attribute is present in the SQL query and in the db table for both view object.
    The SQL query is like, for both view object :
    select to_char(DATE_FO, 'dd/MM/yyyy), a, b, from ...
    And, as I said, I made a view link on these attributes. The cardinality is 1 to *.
    When testing the ApplicationModule, I'm getting
    (oracle.jbo.SQLStmtException) JBO-27122: SQL error during statement preparation. SELECT ....... ) QRSLT WHERE DATETOCHAR = :Bind_ToCharGdaCrahDateCrahDdMm
    ----- Level 1: Detail 0 -----
    (java.sql.SQLException) ORA-00904: "DATETOCHAR" : identificateur non valide
    DATETOCHAR is the alias of the calcultated attribute in detail vo.
    Please help ! Also I've been reading Steve's article : urlhttp://radio.weblogs.com/0118231/2003/11/13.html[url] ; what is jbo.viewlink.consistent property exactly ?
    Regards
    Luc

    Hi again,
    ok I found it ... I needed to add an alias in the SQL query and override the default sql where clause in the view link. Something weird btw, because the alias in the sql query seems to be not bind to the alias property in the attribute properties... and it add another attribute. But it works fine.
    Therefore, if Steve muench might explain jbo.viewlink.consistent property, I'm stil interested in knowing that :)
    Luc

  • How to automatically update Smart LINKED Object

    Hi.
    This is my first post here, I'm French, so excuse any English mistake i may do.
    I'm not an artist / designer / ..., still new about using image software editing like photoshop.
    So i downloaded Photoshop CC to try it because i wanted to do something on my spare time.
    I want to render digitaly a card collection based on a online Collectible Card Game (Duel of champions if you wanna know).
    For this I downloaded their card art from their site.
    Then i want to add several effect / filter to render them nicely.
    So i read and watch many tutorial in this purpose.
    I ended with a good result for 1 card.
    Here is an example :
    Hi.
    This is my first post here, I'm French, so excuse any English mistake i may do.
    I'm not an artist / designer / ..., still new about using image software editing like photoshop.
    So i downloaded Photoshop CC to try it because i wanted to do something on my spare time.
    I want to render digitaly a card collection based on a online Collectible Card Game (Duel of champions if you wanna know).
    For this I downloaded their card art from their site.
    Then i want to add several effect / filter to render them nicely.
    So i read and watch many tutorial in this purpose.
    I ended with a good result for 1 card.
    Here is an example :
    So what i did :
    I get a source card art image, adding its red border, embossed it to get relief, adding a gloss effect in 3 different layers (the card art, the border and the gloss effect). Than i duplicate all this layers, swap them vertically and moved down to get a reflection.
    I added a gradient to this new group of layers to have a nice fading effect to the reflection.
    As I do not want to redo all the process again and again if I change main the source card Art, I want the reflexion to automatically update.
    This was done using Smart object, both main source card Art and the (vertically swapped) reflexion card art using the same object storing my different main source card art.
    So when i change in this object the main source card art used, it automatically change both the rendered card and its corresponding reflexion.
    And then i Added a displacement filter to simulate a water reflection.
    And the first problem (solved by now) occurred :
    If i want to apply a filter to the group of layers corresponding to the rendered reflexion card, Photoshop have to convert and merged the whole group of layers into another new smart object and then apply a smart filter onto it. That worked but i lost the auto updating of the reflexion as the previous conversion have made Photoshop create in fact a whole new duplicated object storing a my different main source art.
    So i partially resolved This by using Smart LINKED object instead of Smart object. I say partially because it is not really fully automated anymore.
    Now if I change the main Source card Art to render a new one, I have to "manually" save file / update smart object to get the reflection updated.
    I kinda accelerate this using a action performing a batch of saves to get a "save all" options (that clearly miss in photoshop). But for this i still have to open all my smarted linked object in order to apply the "Save All" batch.
    But know I want to generalize the process to cards left, and render my whole card collection.
    So i created a template based on what i've done so far using in this template Smart LINKED Object for the Main source card art and the reflected one. By the Way I exported the Reflection group in a PSD file, and refered to it as another Smart LINKED Object in my template. Doing so i'm sure Photoshop no more use a temporary PSB object correspond to the converted / merged reflexion Smart Object (remember : created in order to apply a smart Filter on it).
    So what Happen now ?
    I create a new testing psd file in witch i embed several new smart objects each one is an occurence to my template. Here i have to used smart Object and NOT smart LINKED Object because if so i'll always end up with the same rendered card several times. I have to get Phososhop create it own temporary duplicated object so a modification to one don't affect all the others after "Save All" batch on the corresponding working card.
    So with what I have now, if I want to change 1 of the rendered card, i go its corresponding (duplicated) template object and from there i access again my LINKED object storing all my main source card Art.
    I change to what source card art I want, and I have to open the reflection smart LINKED Object too in order to apply the "SAve All" batch.
    Here is the "fun" (issue) thing : I have to apply the batch 3 time in a row to have the rendered card changed in my main testing psd file. I suppose saving 3 time time propagated the change along the Smart LINKED Object chain.
    AND I have to make sure ONLY the corresponding smart (LINKED) Object file are opened before. If another file from a different rendered card is opened too the change will also be propagated to it and so having a duplicated rendered card. (I only want each card rendered once, but using the same template to avoid repetitive work).
    So I explained in detail, but maybe not clearly, my situation and the step i went through.
    TLDR
    To summarize : I have a collections of Card art (jpeg).
    I created a Template applying effect to render 1 card.
    I created another template appliying same effect to render 1 REFLECTED card.
    In both i use the same Smart LINKED Object that Store my collection on Card Art.
    I make another Smart LINKED Object in the first template that reference the second one.
    So with my first template I can update the rendered card and its rendered reflexion after changing the main source card art  in the subsequent smart LINKED Object that store my whole cards art. I have to had all corresponding Smart LINKED Object file OPENED and save them all to have th updated result.
    So not really automatic.
    Then I want to render my whole card collection with effect and reflexion.
    I create in my project a duplicate of my first template for each card to be rendered.
    Then I have to open ONLY all subsequent corresponding Smart LINKED(or not) Object file of current working rendered card and change the main source card art, save all the file (several time to propagate change) to properlly update the current rendered card.
    I have to do this for EACH of my duplicated template in order to render EACH of my cards.
    Definitively  not automatic process, and prone to errors.
    Do you know a way to fully automatically render my card collection ? The only thing I want to do is chose one time the main source card art for each rendered card.
    Finally another way to explain this issue and maybe get an answer is to instead explain simply what I want to do :
    I have a collection of (jpeg) card art from an online card game.
    I want to render them all with effect (gloss, emboss border, faded and water filtered reflection).
    I want to do this automatically.
    The only thing i manually want to do is chose the card art to be rendered for each of the card i want to render in my collection.
    Here is an image of what i want based on what i've, not automatically, done so far :
    Thanks for any help from photophop professional here.

    Hi,
    The delta load does not work for product categories but only products.So to bring in the new product categories into SRM you will need to start the load of the object DNL_CUST_PROD1 again.
    The CRM middleware allows the following two methods for replication.
    -Initial loads:
    Launched manually (R3AS), the objects (customizing or business) are replicated between SRM and R/3, according to the filters you've put on the object (R3AC1 for Business objects like MATERIAL, R3AC3 for customizing objects like DNL_CUST_PROD0 and 1).
    -Delta loads:
    This option is only possible for Business objects, which is the case of MATERIAL.
    With this option a daemon is launched between the 2 servers. Every modification made on an object on SRM or R/3 is transfered as soon as this object is contained in the filter retrictions (creation and/or modification). this is done through transaction R3AC4.
    Also refer the foll thread:
    Material group from R/3 to COMM_CATEGORY (SRM)
    Related notes : OSS notes 872819 and 720819.
    BR,
    Disha.
    DO  reward points for helpful answers.

Maybe you are looking for

  • Unable to ./runInstaller in v100-  Please Help

    Hello, I have read previous discussions on this, so I checked pretty much all listed possibilities: 1- My cdrom is mounted beacuse Volume Mgr is running. Here is the output of ls command: cd /cdrom ls -ltotal 6 dr-xr-xr-x 2 root sys 2048 Jan 21 12:43

  • Iphone could not be restored error?

    Trying to do routine update on my iPhone 4.  Then was prompted to restore my phone to original settings. Went through 3 hours of that, then an error occured saying unable to restore the phone.  Now, I can't do anything with my phone.  Tried disconnec

  • Oracle By Example: Sensor Edge Server

    This morning I found some information about the Sensor Edger Server (10g AS Version 10.1.2) on the Oracle by Example web site: http://www.oracle.com/technology/obe/start/as.html Follow the link for 10.1.2 and you will find an example for the Sensor E

  • Connection object to Anonymous users ?

    Here is the requirement ... I'm using ConnectorGatewayService to establish connection to the R/3 system and working fine for logged in users in the portal ConnectionProperties cp = new ConnectionProperties(request.getLocale(), request.getUser); conne

  • DB 9i - TNS-12500: TNS:listener failed to start a dedicated server process

    hi all, I have a problem with the following configuration oracle 9.2.0.1 (32bits) on Win server 2003 - enterprise x64 edition - 10GM of RAM. I installed DB without problem, run server, started listener - seems all is fine. But when trying a remote co