"Merge with values" not merging values

Hello,
I have quite a problem with LDAP provisionning and LDAP groups management:
- "user1" and "user2" already exist in the LDAP directory and are members of "group1"
- I create user1 in IDM and give him the LDAP ressource => he gets linked correctly to his account
- I create user2 in IDM
- I have a role in IDM with the LDAP ressource associated and a "set attribute value" configured with "group2" and "merge with values"
- when I give this role to user1, user1 gets group1 and group2 in the LDAP directory. Great.
- when I give this role to user2, user2 gets linked correctly to his account and only has group2! group1 has disappeared and no merge whatsoever was performed!
Of course, my real situation involves thousands of existing users, and I plan to manage user ressources only via Roles and not via Ressource. I then have thousands of user2 who are going to lose their groups!
I also tried with "Authoritative merge with values", same result.
Any idea what should be changed?
Thanks

Hi,
If the users already have access to 'group1' then create a role with "Merge with value, clear existing" for the attribute.
If required then create another role for 'group2' also with "Merge with value, clear existing" for the attribute. A user who is assign both roles will be granted access to 'group1' and'group2'
"Merge with value, clear existing" will ensure the user only has access to the groups as per the role assignments. If the user is independently assigned 'group3' then IDM will remove 'group3' next time the user is refreshed within IDM.
If you only use "Merge with value" then old groups will not be removed even if they are not required.

Similar Messages

  • Select List with Submit Not pulling % values

    Hello All,
    I have a tabular form in app and displays data based on choice selected in 'select list with submit' from Item, it works fine for values chosen, when i choose '%' I want to display all the records existing in the tabular form but instead it says 'No Data Found'. How do i solve this ? Kindly advice and help.
    ex:
    Tabular form query-
    select a, b
    from table
    where a like :ITEM
    Item:
    Type: select list with submit
    Named LOV:
    select a d, a r
    from lookup_table order by 1
    Appreciate your response.
    Thanks and Regards,
    Senana

    Hello,
    You need to check what value is returned by select list when you select '%' in the select..
    there is a field display null value as where you can enter '%' and return value of null you can enter 0
    and then modify your tabular form query to
    select a , b from table where a like :ITEM OR :ITEM = 0
    Regards,
    Shijesh

  • ManyToMany merge (or maybe not merge)

    Hi all..
    I have 2 entities with reference type manytomany. Code looks like this:
    @Entity
    @Table(name = "roles")
    public class RoleEntity implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @Column(name = "rls_id", nullable = false)
    private Integer rlsId;
    @Column(name = "rls_title")
    private String rlsTitle;
    @ManyToMany(cascade=CascadeType.ALL, fetch=FetchType.EAGER)
    @JoinTable(name="rights_to_roles",
    joinColumns=
    @JoinColumn(name="rls_id", referencedColumnName="rls_id"),
    inverseJoinColumns=
    @JoinColumn(name="rht_id", referencedColumnName="rht_id"))
    public Set<RightEntity> rights;
    ..and..
    @Entity
    @Table(name = "rights")
    public class RightEntity implements Serializable {
    private static final long serialVersionUID = 1L;
    @Id
    @Column(name = "rht_id", nullable = false)
    private Integer rhtId;
    @Column(name = "rht_title")
    private String rhtTitle;
    I have two objects: role and right (right object exist, but don't belong to role). I want to add right to role with follow code:
    role.getRights().add(right);
    but when I call entityManager.merge(role); the exception is thrown. Am I doing right?? The joing table "rights_to_roles" has no its own Entity representation, but in fact I want to do insert only to this table. When I changed "role" title or "right" properties (for "rights" which belong to "role"), and call "entityManager.merge(role);" everything work correctly.
    All manipulations with entity manager are in stateless session bean.
    Exception is follow:
    javax.ejb.EJBException: nested exception is: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.; nested exception is:
    javax.transaction.RollbackException: Transaction marked for rollback.
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.; nested exception is:
    javax.transaction.RollbackException: Transaction marked for rollback.
    at com.sun.corba.ee.impl.javax.rmi.CORBA.Util.mapSystemException(Util.java:243)
    at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.privateInvoke(StubInvocationHandlerImpl.java:205)
    at com.sun.corba.ee.impl.presentation.rmi.StubInvocationHandlerImpl.invoke(StubInvocationHandlerImpl.java:152)
    at com.sun.corba.ee.impl.presentation.rmi.bcel.BCELStubBase.invoke(BCELStubBase.java:225)
    at Facades.__RoleEntityFacadeRemote_Remote_DynamicStub.edit(Facades/__RoleEntityFacadeRemote_Remote_DynamicStub.java)
    at Facades._RoleEntityFacadeRemote_Wrapper.edit(Facades/_RoleEntityFacadeRemote_Wrapper.java)
    at clientti059.Main.main(Main.java:57)
    Caused by: java.rmi.RemoteException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.; nested exception is:
    javax.transaction.RollbackException: Transaction marked for rollback.
    at com.sun.enterprise.iiop.POAProtocolMgr.mapException(POAProtocolMgr.java:251)
    at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1386)
    at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1316)
    at com.sun.ejb.containers.EJBObjectInvocationHandler.invoke(EJBObjectInvocationHandler.java:210)
    at com.sun.ejb.containers.EJBObjectInvocationHandlerDelegate.invoke(EJBObjectInvocationHandlerDelegate.java:77)
    at $Proxy115.edit(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.corba.ee.impl.presentation.rmi.ReflectiveTie._invoke(ReflectiveTie.java:154)
    at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatchToServant(CorbaServerRequestDispatcherImpl.java:687)
    at com.sun.corba.ee.impl.protocol.CorbaServerRequestDispatcherImpl.dispatch(CorbaServerRequestDispatcherImpl.java:227)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequestRequest(CorbaMessageMediatorImpl.java:1846)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:1706)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleInput(CorbaMessageMediatorImpl.java:1088)
    at com.sun.corba.ee.impl.protocol.giopmsgheaders.RequestMessage_1_2.callback(RequestMessage_1_2.java:223)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.handleRequest(CorbaMessageMediatorImpl.java:806)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.dispatch(CorbaMessageMediatorImpl.java:563)
    at com.sun.corba.ee.impl.protocol.CorbaMessageMediatorImpl.doWork(CorbaMessageMediatorImpl.java:2567)
    at com.sun.corba.ee.impl.orbutil.threadpool.ThreadPoolImpl$WorkerThread.run(ThreadPoolImpl.java:555)
    Caused by: javax.transaction.RollbackException: Transaction marked for rollback.
    at com.sun.enterprise.distributedtx.J2EETransaction.commit(J2EETransaction.java:440)
    at com.sun.enterprise.distributedtx.J2EETransactionManagerOpt.commit(J2EETransactionManagerOpt.java:371)
    at com.sun.ejb.containers.BaseContainer.completeNewTx(BaseContainer.java:3792)
    at com.sun.ejb.containers.BaseContainer.postInvokeTx(BaseContainer.java:3571)
    at com.sun.ejb.containers.BaseContainer.postInvoke(BaseContainer.java:1354)
    ... 19 more
    javax.ejb.EJBException: nested exception is: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.RemoteException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.; nested exception is:
    javax.transaction.RollbackException: Transaction marked for rollback.
    at Facades._RoleEntityFacadeRemote_Wrapper.edit(Facades/_RoleEntityFacadeRemote_Wrapper.java)
    Thanks

    It looks like some exception occur during your commit causing the rollback, unfortunately I do not see the exception causing the error in the stack.
    Either look in your logs for the exception that causes the error, or call a flush() at the end of your session-bean method to trigger the error (around a try catch/log).
    Why are you merging the role, was the object serialized, or read in a different transaction?
    -- James : http://www.eclipselink.org

  • Oawebbean.getValue() returns intial value not updated value. Please Help

    Hi all, I'm using the code
    OAMessageTextInputBean test = (OAMessageTextInputBean)oawebbean.findChildRecursive("xxTestTo");
    Object testing = test.getValue(oapagecontext);
    where xxTestTo is the ID of the field in the XML
    I've set the initial value for testing purposes to be 12345 and when the page loads I try to change the value to 54321 however, the value which is always passed is 12345 not the updated value.
    What am I doing wrong. I have the code above in my processFormRequest
    Please Help

    I think I've pinpointed the problem but I don't know the solution.
    When I add a messageinputtext field within the a region within the page, oawebbean.getValue always returns the old value.
    However if I add the messageinputtext field within the Page (not within a region) then oawebbean.getValue will give me the most updated value.
    When I add the messageinputtext, do I need to set its properties so that it doens't reset its value when I go into processFormRequest?

  • Dimension based on OLAP source returns text value not key value

    Hi,
    I have a Business Objects Universe based on a BEX query sitting on top of a BW datasource.  I imported the BEX query into Designer and several dimensions were created for me as well as several detail objects.  I was hoping the dimension objects created when pulled onto a Webi report would display the KEY value of the info object from BW, but unfortunately it appears to be pulling in the text value of the info object.
    Is there a way to change the default behavior so that the default dimension created will pull in the key value?
    Example:
    Universe dimension Object definition:  [ZCPCNTR].[LEVEL01]
    When pulled into a Webi report the MDX statement generated contains:  NON EMPTY [ZCPCNTR].[LEVEL01].MEMBERS DIMENSION PROPERTIES MEMBER_CAPTION
    Somewhere ".MEMBERS DIMENSION PROPERTIES MEMTER_CAPTION" gets added to the MDX statement.  I think this results in the Webi report displaying the text of the info object as opposed to the key value.  Is this modifiable?  If so what do I change to get it to display the key value?
    Thanks,
    Tim

    SAPBO786,
    Yes I do see the key value as a detail object under the dimension.  Do you kow of a way to change the default behavior so the dimension returns the key value?
    I have a bunch of reports (approx. 50) I built based on the dimension assuming the value was going to be key.  I don't want to go back and change all those reports if possible.  I am aware that I can take the Key detail object, change that to a dimension object and then modify my reports to pull that new dimension onto them, but I don't want to do that if there is a way to change the default behavior.
    Thanks,
    Tim

  • Why is button value not changing?

    I have a fairly complex form with several input text fields and buttons that have their values changed during operation.
    The components are created from a session bean and are updated by two different mechanisms.
    The input text fields are updated by user input.
    The button acts as a toggle. When the user pushed the button, a javascript function checks the value of the button.
    The button contains a single character, either a "X" or "O".
    When the button is pushed, the javascript checks the value and changes it to the other.
    Visually, this all works fine. Both the text fields and buttons behave as expected.
    Here is the problem.
    When the user pushes the "Apply" button, a session bean looks for the text fields and buttons using 'findComponent' for a specified ID.
    They attempt to fetch the values of the components and update an internal array of values.
    The input text component works fine.
    User changes value, it is identified correctly, and the new value is detected on the component.
    The commandButton component does not work as expected.
    Visually, the component value changes properly.
    When I use findComponent() and getValue(),. I get the original value.
    I have verified that the component ID is correct - I print it with an Alert() method in the javascript and check it with the debugger before the findComponent() method.
    But, what is returned from getValue() of the found component is the original value, not the value that is visually displayed on the form.
    Can anyone explain why this happens and what I can do to get the correct visually displayed value from the button component?
    Thanks.

    <h:inputHidden value="#{myBean.myProp}" />Although this is annoying on the client side because the client id is rendered as the name.
    Alternatively:
    <input type="hidden" name="myProp" value="#{myBean.myProp}" />along with the following bean config:
        <managed-bean>
           <managed-bean-name>myBean</managed-bean-name>
           <managed-bean-class>MyBeanClass</managed-bean-class>
           <managed-bean-scope>request</managed-bean-scope>
           <managed-property>
                <property-name>myProp</property-name>
                <property-class>java.lang.String</property-class>
                <value>#{param.myProp}</value>
           </managed-property>
        </managed-bean>

  • HT204053 We have three iPhones but one Apple ID because I pay for the acct whenever we buy Apps or music.  However, it's frustrating that when we share iCloud it merges our notes and contacts even if we say "DO NOT MERGE."  I've also lost my notes but cou

    We have three iPhones but one Apple ID because I pay for the acct whenever we buy Apps or music.  However, it's frustrating that when we share iCloud it merges our notes and contacts even if we say "DO NOT MERGE."  I've also lost my notes but could not recover them even if I did a restore.

    You can share the same iTunes ID on all your devices and still have different iCloud accounts with different IDs on them.  The ID you use for iTunes does not need to be the same as the ID used for iCloud.
    If you want to migrate your devices to separate accounts, on the devices that will be moving save any photo stream photos to your camera roll by opening the photo stream album in the thumbnail view, tapping Edit, then tap all the photos you want to save, tap Share and tap Save to Camera Roll.  Also email any synced notes to yourself so you can recreate them in the new account.  Finally, if you are syncing any iWork documents with iCloud, go to the iWork app settings and turn off iCloud syncing.
    Once this is done, go to Settings>iCloud, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The phone that will be keeping the account will not be effected by this.)  When prompted about what to do with the iCloud data, be sure to select Keep On My iPhone.  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.
    Once the phones are all on separate accounts you can  then have to go to icloud.com on your computer and sign into each iCloud account separately and manually delete the data you don't want from each account.

  • Is there a way to name the .indd files created by a data merge with values in the CSV file

    I have a data merge document that is set to single Record per Document page and 1 page per document.  In my CSV file I have a field for Part Number.  If I run a data merge with 10 records I end up with 10 .indd files.  I need a way so that the resulting .indd files are named the same value that is in the Part Number field.

    Loic has provided a link for my original piece, and I've written up some follow-up pieces for indesignsecrets.com:
    http://indesignsecrets.com/data-merging-individual-records-separate-pdfs.php
    http://indesignsecrets.com/data-merging-individual-records-separate-pdfs-part-2-scripting. php
    So there are several ways to get unique name PDFs from an indesign Data Merge. However, none of these 3 articles will truly answer your question of how to get unique indesign filenames using the database. I can see a practical purpose for this as merging business cards directly to PDFs is great, but I can be guaranteed that while on proof, there will be alts to the business cards that need to be done outside the merge, meaning specific records need to be exported to indesign files for further manipulation.

  • Inserting values using merge

    Hi everyone,
    I need help with inserting values using merge.
    * I need to check all the units in a parent category. For example, NF_ARTICLECATEGORYID = 7462 is a parent category.
    * Im going to compare all the units in the parent category(7642) to the units in a subcategory (8053).
    * If the units in parent category(7642) is not present in the subcategory(8053) then the units will be inserted in the same table.
    table structure:
    Table name : ARTICLECATEGORYACCESS
    Fields: IP_ARTICLECATEGORYACCESSID
    NF_ARTICLECATEGORYID
    NF_UNITID
    NF_USERID
    N_VIEW
    N_EDIT
    Sample data:
    CREATE TABLE articlecategoryaccess (
    IP_ARTICLECATEGORYACCESSID NUMBER(5),
    NF_ARTICLECATEGORYID NUMBER (10),
    NF_UNITID NUMBER (10),
    NF_USERID NUMBER (10)
    N_VIEW INT,
    N_EDIT INT);
    INSERT INTO articlecategoryaccess VALUES (255583, 7642, 29727, NULL, 1 ,1);
    INSERT INTO articlecategoryaccess VALUES (243977,7642,29728, NULL, 1 ,1);
    INSERT INTO articlecategoryaccess VALUES (240770,7642,29843, NULL, 1 ,1);
    INSERT INTO articlecategoryaccess VALUES (243413,7642,29844, NULL, 1 ,1);
    INSERT INTO articlecategoryaccess VALUES (274828,7642,44849, NULL, 1 ,1);
    INSERT INTO articlecategoryaccess VALUES (274828,8053,44849, NULL, 1 ,1);
    Units ID 29727, 29728, 29843, 29844, 44849 has access to parent category 7642.
    The units id 29727, 29728, 29843, 29844 dont have access to subcategory 8053.
    29727, 29728, 29843, 29844 should be inserted in the same table and will have an access to 8053.
    After they are inserted, it should look like this
    IP_ARTICLECATEGORYACCESSID     NF_ARTICLECATEGORYID     NF_UNITID NF_USERID N_VIEW N_EDIT
    255583     7642     29727 null 1 1
    243977     7642     29728 null 1 1
    240770     7642     29843 null 1 1
    243413     7642     29844 null 1 1
    274828     7642     44849 null 1 1
    new value     8053     44849 null 1 1
    new value     8053     29843 null 1 1
    new value     8053     29844 null 1 1
    new value     8053     29728 null 1 1
    new value     8053     29727 null 1 1
    NOTE: IP_ARTICLECATEGORYACCESSID is a sequence and it should be unique
    DECLARE
    BEGIN
    MERGE INTO articlecategoryaccess b
    USING (SELECT *
    FROM articlecategoryaccess c
    WHERE nf_articlecategoryid = 7642
    MINUS
    SELECT *
    FROM articlecategoryaccess c
    WHERE nf_articlecategoryid = 8053) e
    ON (1 = 2)
    WHEN NOT MATCHED THEN
    INSERT (b.ip_articlecategoryaccessid, b.nf_articlecategoryid, b.nf_unitid, b.NF_USERID, b.N_VIEW, b.N_EDIT)
    VALUES (articlecategoryaccessid_seq.nextval, 8053, e.nf_unitid, null, 1, 1);
    END;
    i got an error after running the script:
    *Cause:    An UPDATE or INSERT statement attempted to insert a duplicate key.
    For Trusted Oracle configured in DBMS MAC mode, you may see
    this message if a duplicate entry exists at a different level.
    *Action:   Either remove the unique restriction or do not insert the key.
    why would it be duplicated? its a sequence and its unique.. I dont know, maybe there is something wrong my script..
    Any help is appreciated..
    Ed

    Ed,
    1. What is the current value of the Sequence? Does the current value of sequence exist in the table? If yes, then increment the sequence to a value that is not present in the Table.
    2. Do you have any unique constraint on any of the columns that you are inserting?
    I have to ask you again, Why are you insisting on Merge statement when a simple Insert can do the job for you? Don't you feel that the below specified Merge statement is making things look more Complicated than they actually are, do you?
    Think on it and then proceed. I hope these pointers help you to resolve the issue.
    Regards,
    P.

  • CO-PA Cost Component do not match with Standard Cost Component Values

    Dear Members,
    The CO-PA Cost Components (as mapped through KE4R), do not match with Standard Cost Component values for the Group Currency. In local currency the values match.
    System is correctly picking up VPRS value, both in local currency and Group Currency, which is equal to the total of Standard Cost Components however, it is the Value Fields linked to the Standard Cost Components in Group Currency that do not match.
    In KE40, the Indicator is 4:Released Standard Cost Estimate matching Goods issue Date.
    I have verified KEPH/CKMLPKEPH tables. The values are same as that of VPRS.
    Any help/clues?
    Regards
    Satya

    Hi,
    In case of billing documents the group valuation approach is managed in the data structures of the legal valuation in additional value fields. To control costs and revenues in the different views separately, you must create additional value fields and assign them to the data structures.
    The field contents must be filled via the CO-PA user exit, they cannot be entered by assigning conditions to value fields. The profit center valuation is updated in a separate ledger. No separate value fields are necessary.
    The exit to be used is function module 'EXIT_SAPLKEII_002' ( enhancement COPA0005 ). Within the exit you have the complete SD data avaialble in the tables 'T_ACCIT' and 'T_ACCCR'. The conditions can be found in T_ACCIT and the corresponding values ( linked via 'POSNR' ) in table T_ACCCR. The PA line item and the corresponding SD item in table ACCIT
    can be mapped via the line item field 'RPOSN' and the field 'POSNR_SD' in table ACCIT.
    regards
    Waman

  • Contract Release Value is not updated with Confirmation or Invoice value

    The release value for a contract in SRM EBP shows the value of purchase orders created using that contract.  It does not take into account confirmation and/or invoice values.
    For example I create a PO for 10 items at £100/each using Contract ABC.  The total value of the PO is £1000 and the release value contract ABC would be £1000.  If I then only confirm and invoice 5 items (£500) for the PO, the release value of contract ABC stays at £1000 even though I would expect it to update to £500
    Therefore the release value of the contract could be incorrectly overstated if purchase orders are created against the contract but not actually invoiced/confirmed for their total value.
    Please could you confirm the correct functionality and how I could find out the the true invoice value of purchases made using a contract?

    Hi
    <u>Which SRM and R/3 versions are you using ?</u>
    <b>Meanwhile, please go through the following SAP OSS Notes, which will help in this case -></b>
    Note 622045 Net value in release overview of contract is incorrect
    Note 493519 Release quantities are not updated
    Note 1108322 BBP_CONTRACT_CHECK wrong calculation of values
    Note 1102886 Contracts: Lesser Field length for Target Value
    Note 1082548 Check of Released quantity and released value in contract
    Note 656181 Release synchronization of releases on services
    Note 874920 Currency not allowed to be changed for a 'Released' Contract
    Note 703771 Resetting release values during purchase order item deletion
    Note 643823 BLAREL: Incorrect values in service segment
    Note 519879 BBP_CTR_MAIN: No message when values in Contract are reset
    Note 520734 Target value not converted if currency is changed
    Note 528897 Documents not displayed in contract release order overview
    Note 430373 BBP_CON_MNT: No releases available
    Note 491993 Entry of contracts with target values
    Note 437491 Purchase contract: Incorrect update of the call-off values
    Note 406799 BBP_CON_MNT: Fields after contract release ready for input
    Note 398168 Purchase contract: Target value is not changed
    <b>Do let me know.</b>
    Regards
    - Atul

  • Changed apple ID BUT i cloud not merging with  new ID..still on the previous one

    i have changed my Apple ID but my I Cloud has not merged with the new ID and is still on the previous ID and there is no option to try and change it ??

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone, then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • GL account balance not matching with the total stock value

    Hi,
    The GL account balance is not matching with the total stock value in report RM07MBSTfor stock in transit, Can anyone please let me know, where should, I look into to verify the reason for difference.
    Quick response will be appreciated.
    Thanks & Regards

    I am able to solve this issue. My client has a customized report, which helped me to look into the details of stock in tranisit account. Stock in transit account actually include PPV and TPV alongwith standard cost.

  • How to change default HDR toning with 32 bit smart object - 16 bit, when not merging

    Suppose I have just done this:
    Opened a RAW file as a 16-bit smart object through camera raw, so I can easily go back and change raw parameters if needed
    Converted the document to 32 bit mode
    Set 32-bit preview mode to Highlight Compression
    Added a Curves layer and fiddled with the sliders until satisfied
    So far so good.
    Now what I would like to do is envelope/convert these two layers into a smart object, and then change the mode to 16 bit with a Highlight compression method, but WITHOUT merging the smart object. Merging leaves me with one flattened non-smart layer. Obviously I don't want to merge, because all the smartness of the previous (32 bit) smart object, and I cannot go back to the equally smart raw file.
    For a demonstration: http://tv.adobe.com/watch/russell-brown-at-photoshop-world-2011-orlando/smart-object-32-bi t-hdr-editing-techniques/
    After chosing "merge layers", an impressive dialog box is displayed with 4 toning methods. When NOT merging, nothing is displayed, and Exposure/Gamma seems to be silently used. Fine in some cases, but not now. It seems one cannot change that, or choose another one of the 4 methods. But perhaps someone has figured out a way to "will" it in another direction?
    Thanks for your help!

    Yes sorry about that, I may have been a bit brief indeed:
    I'm using Photoshop CS5, x64, latest patch (12.0.4). And ACR 6.4.1 to open a Raw file as a smart object in Photoshop.
    Step 2: correct, I used Image->Mode->32bit
    Step 3: I set the 32bit preview mode by clicking View->32-bit Preview Options->Highlight Compession
    Setp 4: I'm mistaken here, I added a Levels layer, because Curves are indeed unavailable in 32 bit mode.
    While I'm at it:
    Step 5: Then, I would select these 2 layers in the layers pane and convert them to a smart object (right click in layers pane -> convert to smart object)
    Step 6: Next step would be Image->Mode->16-bit. It would then ask to have the layers merged or not before changing bit depth. Only if you choose merge, the HDR toning dialog box would appear, from which you can select Exposure&Gamma, Highlight Compession, Local Adaptation and so on.
    I don't want to merge, because it will destroy the smart object containing the Levels layer and the original raw file (in a smart object)
    So I select "Don't merge". It doesn't show the HDR toning dialog, and goes straight in 16-bit mode. But what toning mode did it choose? By comparing the result you get when not merging, to the result when one does merge, it appears a default toning mode of Exposure&gamma is chosen. That's not what I want, because I would like to have Highlight Compression.
    But where can I change this behaviour?

  • Please help with an error "could not write value key \Software\classes\iTune.wav.....

    I have windows 7 with plenty of memory and storage capacity. When accessing iTunes I had an error message to uninstall and reinstall. I have uninstalled but when trying to reinstall I get the error message "could not write value key \software\classes\iTune.wav. Verify that you have sufficient access to that key or contact your support personnel"  I don't understand what this means, can anyone help please?

    For "Could not open key/write value" errors when reinstalling try b noir's user tip:
    "Could not open key: UNKNOWN\Components\[LongStringOfLettersAndNumbers]\
    [LongStringOfLettersAndNumbers]" error messages when installing iTunes for Windows.
    The technique can be applied to the branch of the registry mentioned in the error message.
    If you still have issues see Troubleshooting issues with iTunes for Windows updates.
    tt2

Maybe you are looking for

  • IWeb link opening in a external (new) browser window.

    Dear members: After making several unsuccessful attempts to find this information I decided to post a questions here to see if anyone has the answer. I have created two web site with several web pages in iWeb but haven't been able to add links to a p

  • Backup/Restore from PC Suite with N71 worthless

    Hi, I have used Backup from PC Suite (Version 6.82.22.0) to backup my N71 data before I gave the N71 to a repair shop. The N71 camera was not working. After four weeks I got a N71 replacement. A brand new N71 with a different serial number which is n

  • Error code -43 - unable to get file path when burning DVD

    I just installed Tiger on my son's iMac 500. Borrowed a Lacie DVD r/w and tried to burn the contents of a user folder to a DVD-R. It burned part of it, but failed with the following error: The operation can not be completed because one or more requir

  • Where can I download Crystal Enterprise 10 Service Pack 1??

    I am going crazy trying to find the download for Crysal Enterprise 10 Service Pack 1 through SAP's website. It dosen't appear to be online. Does anyone in this forum know where I can download it? Thanks in advance! Mike

  • JDE 9 Installation Issues...

    Hello, I'm not really sure which forum to post this in so hopefully I chose the correct one. I'm following the "Applications Installation Guide (Oracle)" which starts by talking about installing the E1Local database, the Deployment Server, and now th