Why org vaues is not updating the Changed Objects

hi all,
we have a master role with some some objects as maintained and some as changed  and some as standard.
when i derived some 10 child roles and added org values. this org value is not pusing for the changed objects, even when i add it in the field, once if i make any other  modification in the master role and distribute it to child roles then all the org values for the changed objects are going to blank again
so, org values wont push or work for changed objects?  please help
thanks,
SSS

>
sun wrote:
> can you tell the difference between maintained and changed in PFCg
>
Hi Sun,
Is it a coincidence that the objects having ORG level fields are in changed state in the master role or is it becasue of the SAP feature?
When we directly maintain ORG fileds in objects and NOT in the specified ORG window, then
first - > the object status goes to changed
second -> when you create derived roles, that field will not be maintained in the derived role even though you maintain ORG values in derived roles. The value maintained in the master role is passed to the child role.
What you need to do is follow what Jurjen said..... first ... fix the messed up master role, and then maintain the ORG values in the derived roles.
Hope this helps
Abhishek

Similar Messages

  • Why my ipad can not update the ios7.1.1

    why my ipad can not update the ios 7.1.1

    Hello there, crivera350.
    The following Knowledge Base article offers up some great steps for if you are unable to update your iOS device:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    Recovery mode erases your device and restores it, which should resolve the issue. If you previously synced with iTunes or iCloud, you may be able to restore from your backup after recovery.
    Turn off your device. If you can't turn it off, press and hold the Sleep/Wake and Home buttons at the same time and wait a few seconds for it to turn off.
    Plug the device's USB cable into your computer only.
    Hold down the device's Home button as you connect the USB cable to it.
    When you see the Connect to iTunes screen, release the Home button. If you don't see this screen, try steps 1 through 3 one more time.
    iTunes should open and display a message such as: "iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes."
    Use iTunes to restore your device.
    If you don't see your device in iTunes, follow these steps for Mac or these for Windows.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • BAPI_PROCORDCONF_CREATE_HDR not updating the change document transaction

    I am using FM BAPI_PROCORDCONF_CREATE_HDR to confirm a process order.
    I am also updating the batch characteristics with this FM.
    Now when i check the the change documents of the batch in MSC3n (in "Change" tab), the transaction field is sometimes blank.
    This FM will sometimes update the transaction with my Ztcode and sometimes it will not for the same batch.
    We get this same issue in the change documenst in the "Classification" tab.

    Thnaks for your reply sujay.
    I am not passing the key relations ships. Is it the mistake am doiong ??
    I have just passed the data which i have passed manually to the BAPI.
    here is my code any way
    *Header data
    ls_ntype = 'Z2'.
    ls_nhead-REFOBJECTTYPE = 'BUS2078'.
    *ls_nhead-REFOBJECTKEY   = '000000004711'.
    ls_nhead-REFRELTYPE     = 'REFZ'.
    ls_nhead-doc_year          =  '2010'.
    ls_nhead-mat_doc_item      =  '0001'.
    ls_nhead-mat_doc           =  '0011171068'.
    ls_nhead-po_number         =  '4500084423'.
    ls_nhead-po_item           =  '00010'.
    *ls_nhead-REFOBJECTTYPE     = 'QMEL'.
      Patener data
    ls_part-partn_role = 'KU'.
    ls_part-partner    = 'BEYER'.
    APPEND ls_part TO lt_part.
    CLEAR ls_part.
    ls_part-partn_role = 'LF'.
    ls_part-partner    = '000000304302'.
    APPEND ls_part TO lt_part.
    CLEAR ls_part.
    CALL FUNCTION 'BAPI_QUALNOT_CREATE'
      EXPORTING
       EXTERNAL_NUMBER          =
        notif_type               = ls_ntype
        notifheader              = ls_nhead
       TASK_DETERMINATION       = ' '
       SENDER                   =
    IMPORTING
       notifheader_export       = ls_exp
    TABLES
       NOTITEM                  = lt_item
       NOTIFCAUS                = lt_caus
       NOTIFACTV                =
       NOTIFTASK                =
       notifpartnr              = lt_part
       LONGTEXTS                =
       KEY_RELATIONSHIPS        =
       return                   = lt_ret .
    CLEAR lt_ret.
    CALL FUNCTION 'BAPI_QUALNOT_SAVE'
      EXPORTING
        number      = ls_exp-notif_no
      IMPORTING
        notifheader = ls_exp1
      TABLES
        return      = lt_ret.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'    .

  • Why this program can not update the datatbase?

    The database I used is MS SQL Server 2000.
    The program can run normally,but the table is not updated.
    import java.sql.*;
    public class BatchUpdate {
    public static void main(String args[]) {
    String url = "jdbc:mySubprotocol:myDataSource";
    Connection con;
    Statement stmt;
    try {
    Class.forName("myDriver.ClassName");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(e.getMessage());
    try {
    con = DriverManager.getConnection(url, "myLogin", "myPassword");
    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
    ResultSet.CONCUR_UPDATABLE);
    con.setAutoCommit(false);
    stmt.addBatch("INSERT INTO COFFEES " + "VALUES('Amaretto', 49, 9.99, 0, 0)");
    stmt.addBatch("INSERT INTO COFFEES " + "VALUES('Hazelnut', 49, 9.99, 0, 0)");
    stmt.addBatch("INSERT INTO COFFEES " + "VALUES('Amaretto_decaf', 49, 10.99, 0, 0)");
    stmt.addBatch("INSERT INTO COFFEES " + "VALUES('Hazelnut_decaf', 49, 10.99, 0, 0)");
    int [] updateCounts = stmt.executeBatch();
    ResultSet uprs = stmt.executeQuery("SELECT * FROM COFFEES");
    System.out.println("Table COFFEES after insertion:");
    while (uprs.next()) {
    String name = uprs.getString("COF_NAME");
    int id = uprs.getInt("SUP_ID");
    float price = uprs.getFloat("PRICE");
    int sales = uprs.getInt("SALES");
    int total = uprs.getInt("TOTAL");
    System.out.print(name + " " + id + " " + price);
    System.out.println(" " + sales + " " + total);
    uprs.close();
    stmt.close();
    con.close();
    } catch(BatchUpdateException b) {
    System.err.println("SQLException: " + b.getMessage());
    System.err.println("SQLState: " + b.getSQLState());
    System.err.println("Message: " + b.getMessage());
    System.err.println("Vendor: " + b.getErrorCode());
    System.err.print("Update counts: ");
    int [] updateCounts = b.getUpdateCounts();
    for (int i = 0; i < updateCounts.length; i++) {
    System.err.print(updateCounts[i] + " ");
    } catch(SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    System.err.println("SQLState: " + ex.getSQLState());
    System.err.println("Message: " + ex.getMessage());
    System.err.println("Vendor: " + ex.getErrorCode());

    con.setAutoCommit(false);The changes are not comitted to the DB when you set autocommit to false.
    commit with
    con.commit();
    or dont set autocommit to false
    rgds

  • Why is Adobe Bridge not showing the changes I had done on Camera Raw?

    Dear all, I am trying out Adobe Bridge and discovered that after editing in Camera Raw (ACR), the changes was not shown on the thumbnail.
    I am using photo (1), which is the top left corner photo, as my main and tried to apply changes to the remaining 5 photos.
    I randomly changed the temperature to the mix and click "done".
    You can see that (1) thumbnail did not change after my changes in ACR. Nevetheless, I then apply previous conversion to the remaining photos.
    Neither (1) nor other photos have changes on the thumbnail.
    Please note that when I check all the photos, inside ACR, I can see the changes (in temperature).
    How may I make the thumbnail change show in Bridge after I edited in ACR? The purpose is that I hope that  from the look (without clicking), I know there is changes (e.g changes in temperature).
    [Note: I do not own the photo(s)]
    Thank you for your help.

    Hi station_two, thank you for the very quick respond. I had found out the problem is my setting as followings:
    My solution is as followings (after Develop setting> Previous conversion):
    Once again, thank you very much.

  • HT204135 I update my Mac to version 10.9.2 and now my printer does not work anymore. I did all the software updates and I do not understand why my mac does not recognize the printer anymore?

    I update my Mac to version 10.9.2 and now my printer does not work anymore. I did all the software updates and I do not understand why my mac does not recognize the printer anymore?

    Go to the website of the manufacturer of your printer and check to see if they have released an updated driver for your particular model.

  • I've changed iPad carriers but iTunes will not update the carrier settings,

    I've changed iPad carriers but iTunes will not update the carrier settings, stating that the requested resource could not be found. Does anyone know how I can download the ipcc file and force an update.

    Your iPad may already have the latest carrier settings, especially if you have updated to iOS 4.3.3.

  • Why is my playlist not updating as i type in the search window anymore?

    why is my playlist not updating to reflect what i type on the search window anymore? just searches in the same window as you type i want it to reflect and show location on my plylist instead as it did before.

    I have code within the FLA, but I am also using .as files (with classes and such). The code does not update when I try to use it, or will not run. Currently I am getting 4 errors, all of which were related to syntax and have been fixed. I know this because I hit the check mark button at the top of code field and it confirmed that all syntax is okay. I believe the error may be due to a lack of understanding on my part regarding the source path and document classes.
    For example: I am using the code found here: http://www.learningactionscript3.com/download/45/ in the particle_system folder. My .as files and SWF are set up exactly the same as theirs, the example, but I can run theirs without error and mine with a perpetual 4 errors at runtime no matter how I fix it. I have made sure that the source path leads to the .as files being used ("Particle" and "ParticleDemo"), and confirmed that it should work by hitting the check mark next to the Document Class under Advanced ActionScript 3.0 Settings.
    Edit: So in short, yes, I run the SWF and my code not update. If I close out of Flash and open it up again with the same SWF and .as files, then it works. However, this is an extremely inefficient thing to do. I am thinking that maybe downgrading down to CS5 may do the trick, but not sure if it's worth the time.

  • HT4623 why my iphone does not have the software update option

    why my iphone does not have the software update option

    Are you sure you're connected to a network and that your iphone isn't on airplane mode?

  • Why I can not update the software of Iphone 6

    I can not update the software of my Iphone

    Hi alabdulla,
    If you are having an issue with updating iOS on your iPhone through iTunes, I would suggest that you troubleshoot using the steps in this article - 
    Resolve iOS update and restore errors in iTunes
    If you are trying to do your update over Wi-Fi, try doing it when connected to your computer and using iTunes. See this article -
    iTunes 11 for Windows: Update and restore software on iPod, iPhone, or iPad
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • The workflow could not update the item, possibly because one or more columns for the item require a different type of information. Outcome: Unknown Error

    Received this error (The workflow could not update the item, possibly because one or more columns for the item require a different type of information.) recently on a workflow that was
    working fine and no changes were made to the workflow.
    I have tried a few suggestions, i.e. adding a pause before any ‘Update’ action (which didn’t help because the workflow past this action without incident); checked the data type being written
    to the fields (the correct data types are being written); and we even checked the list schema to ensure the list names and the internal names are aligned (they
    are), but we still cannot figure out why the workflow is still throwing this error.
    We located the area within the workflow step where it is failing and we inserted a logging action to determine if the workflow would execute the logging action but it did not, but wrote the same error message.
    The workflow is a Reusable Approval workflow designed in SharePoint Designer 2010 and attached to a content type. 
    The form associated with the list was modified in InfoPath 2010. 
    Approvers would provide their approval in the InfoPath form which is then read by the workflow.
    Side note - items created after the workflow throws this Unknown Error some seem to be working fine. 
    We have deleted the item in question and re-added it with no effect. 
    Based on what we were able to determine there don’t seem to be any consistency with how this issue is behaving.
    Any suggestions on how to further investigate this issue in order to find the root cause would be greatly appreciated?
    Cheers

    Hi,
    I understand that the reusable workflow doesn’t work properly now. Have you tried to remove the Update list item action to see whether the workflow can run without issue?
    If the workflow runs perfectly when the Update list item action is removed, then you need to check whether there are errors in the update action. Check whether the values have been changed.
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • Automatic Row Processing (DML) process is not updating the record

    Hi all,
    I have an application which was working fine last week and tested and backuped to new application. This Monday, one of the form in that application is not updating the data all of a sudden. I debug that by having page 0 variable and assign the value from the column variable to page 0 variable. Whatever value I changed to the column variable was getting updated to page 0 variable. But it is not updated in the database. So, I changed the success message of the "Automatic Row Processing (DML) process" and I can see the success message on the page, but the column value does not get updated. But when I go back and checked my backup application, that page is working fine. For now, I copy that from the backup application, but I would like to know why this is happening?
    Thanks
    SHY

    Hi Scott,
    Thank you very much for your response. Because of the database complexity, I can't create/import the application on the apex.oracle.com. I am just wondering why this is happening. One of my coworker said same thing happened to her in one of her project and it gets resolved once she restart the server. I am not able to restart the server to check and see if this resolved as the application is on the client server. Do we need to clean up any log file? Thanks.
    SHY

  • Template is not updating the rest of the pages

    This is odd. I have a template, from which I created all child pages in this website and now want to change the navigation to add a new drop-down menu structure under "cases."
    Here's the website: http://ghostsofnewengland.org/
    Here's the template: http://ghostsofnewengland.org/Templates/goners.dwt
    From the template, you'll see that I have changed some commented-out sections in the code. Then I saved the .dwt file, it did not ask and did not update the rest of the pages in the website.
    Normally, I work with templates as a fast way to handle just about any change to navigation and other commonly-available sections on a website. This is the first time I've seen Dreamweaver simply fail to update pages (or even ask) after a template change.
    Anyone have a quick way to get Dreamweaver to wake up here?
    -Mark Hollis

    My advice is to exit DW, reboot, open only your template and make a minor change (add a comment someplace) save and update child pages. If that doesn't work, then give Adobe a call because something isn't right.
    Jim

  • Updateing CustomXML scheema from sharepoint 2010 in VBA does not update the DIP (Document information panel)

    I need to update a schema from Sharepoint with namespace
    http://schenas.microsoft.com/office/2006/metada/contentType when i am opening a Word document. I am using VBA to do so. When i have made the Changes it does not update the DIP, not until i save the document.
    Is there a way to update the dip using VBA.
    /Ola
    olha

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office client. For any VBA related issues, I would suggest you to post in related MSDN forum -
    Microsoft Office for Developers, to get better support experience:
    https://social.msdn.microsoft.com/Forums/office/en-US/home?category=officedev
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Work order should not update the fields in PR

    Hi  Gurus
    My requirements is that workorder should not updates the purchasing data fields in PR  do not go to the shoping cart. How can make it possible.
    Thanks in Advance

    Hi,
          I am not sure of your requirement clearly but check up the below user exits :-
    COZF0001 Change purchase req. for externally processed operation
    COZF0002 Change purchase req. for externally procured component
    or BADI :- IWO1_PREQ_BADI BAdI for Manipulation of P.Reqs from Orders + Networks ,SE18
    regrds
    pushpa

Maybe you are looking for

  • 4.1.1 SDK Problems with missing xpacket tags in sidecar XMP files

    The current 4.1.1 SDK has problems with sidecar XMP files that don't have the xpacket headers and trailers, i.e: <?xpacket begin='' id='W5M0MpCehiHzreSzNTczkc9d'?> <?xpacket end='w'?> is missing. Now, unfortunately Adobe Bridge CS2/CS3 does not ex

  • Opening FLA file in CS5.5 compared to CS6 - possible glitches in CS6?

    I've tried opening one of my FLA files from a client with CS6 and the components on the scene are mis-aligned,invisible and unselectable whereas if I open it in CS5.5, then it opens fine and everything is displays perfectly. Why would this be?

  • How to video call with other phone using Iphone 4??

    Hii Anant Patel here. How to use iphone 4 for video call to other phone like nokia or others.??

  • OS Lion is a total mess

    Why do Apple think its clever to upgrade their OS only to leave us all in a mess. I see pages and pages of complaints on these discussion boards. I upgraded only because of my email account didn't work without it. Now I have so many issues, and pleas

  • Shared server problem.

    Has anyone every had this issue occur? I had a system slow down on one of our database servers, running Linux AS3 Oracle 10g (10.1.0.2.0). During the slow down (CPU spikes), sqlplus querries were running very slow on our client/server applications co