Role Expert: Org values Missing

Hi,
I ran the 3 Backgrnd jobs in sequential way: Org Value/Transaction/Activity Sync jobs and jobs were completed with no errors. I checked the log files and i see no major errors as well.
But after completing the jobs, i tried creating a role and assign the org values to the role. But i dont see the org values under each org levels such as Company Code, Sales org etc..
Did I miss any config steps here?
Thanks
Sundaram

Hello All,
Even we faced this issue and was resolved by running the three BG jobs again but in a sequence as follows:
1. Transaction Sync.
2. Object Sync.
3. Activity Sync.
Please try this and lemme know if you still face an issue with the same.
Regards,
Hersh.

Similar Messages

  • Org values in dervied roles

    Hello
    We are 4 plants and hence we have 4 derived role for one master role, in one of the plant, Orglevel field for example Warehouse number / warehouse complex ( $LGNUM) is not maintian ( not used by this plant ) and instead of leaving blank k,  can I  give @ value in LGNUM field for one of the plant as they are not using this field.
    Other plant has some values like 284, 361, 366, 364
    My question : What will happen if we give @ value in the org field - if the org filed is not maintianed ( not in use for this plant)
    Thanks
    Damodar

    Hi Damodar,
    No, I mean that it is fine to leave it blank.  The red status is to tell you that there is an org level missing.  If you leave it blank or enter an arbitrary non-relevant value, the outcome is the same.
    How you tidy up the roles is up to you but it illustrates that all lights being green in a role does not necessarily mean it will work better than one with no values at all.
    If you are comfortable that @ is not a valid warehouse value (your func team will confirm, alternatively have a look in the IMG) then you can use that.  The important thing is that it is not value that has any significance and your use of it is properly documented.

  • Error on miscellaneous tab in Role Expert (a web dynpro application)

    Hi,
    When i click on Miscellaneous option within configuration tab in role expert. Page is not getting displayed, error is "The page cannot be found".
    I am attaching the print screen also.
    Please suggest the solution for it.
    Thanks in Advance.
    Regards,
    Pravin
    The page cannot be found
    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
    Please try the following:
    If you typed the page address in the Address bar, make sure that it is spelled correctly.
    Open the sapfapci.eame.syngenta.org:51700 home page, and then look for links to the information you want.
    Click the Back button to try another link.
    Click Search to look for information on the Internet.
    HTTP 404 - File not found
    Internet Explorer

    Can you please tell us what files were missing. We are facing the same issue during our upgrade. Misc page cannot be found error.

  • UDF required !! Cannot create target element Values missing in queue context

    Dear Experts,
    I am getting the cannot create target element error with acknowledgement payload in response message mapping  in synchronous interface. I have shared the response payload2. Please suggest do I need write any UDF.
    Message mapping successful with below payload1:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:updateOppResponse xmlns:ns0="http://soap.sforce.com/schemas/class/clientUpdateInqWebService">
       <ns0:result>
          <ns0:Description>Record Updated</ns0:Description>
          <ns0:SFDCId>006M0000007xjTrIAI</ns0:SFDCId>
          <ns0:Status>true</ns0:Status>
       </ns0:result>
    </ns0:updateOppResponse>
    With the below target system response message, Mapping failing with Cannot create target element /ns1:MT_InquiryUpdate_ECC_Ack. Values missing in queue context. Target XSD requires a value for this element, but the target-field mapping does not create one. Check whether the XML instance is valid for the source XSD, and whether the target-field mapping fulfils the requirement of the target XSD com.sap.aii.mappingtool.tf7.IllegalInstanceException:
    Actual acknowledgement reply from target system payload2:
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns="http://soap.sforce.com/schemas/class/clientUpdateInqWebService" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
       <soapenv:Body>
          <updateOppResponse>
             <result>
                <Description>Record Updated</Description>
                <SFDCId>006M0000007xjTrIAI</SFDCId>
                <Status>true</Status>
             </result>
          </updateOppResponse>
       </soapenv:Body>
    </soapenv:Envelope>
    Regards
    RKN

    Hi
    The easiest solution will be , write an simple java map for your response mapping.
    Please provide your target structure , if you need any help on the java mapping.
    Sample code:
    Response message from web service
    target msg:
    java code:
    package com.sap;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import com.sap.aii.mapping.api.AbstractTransformation;
    import com.sap.aii.mapping.api.StreamTransformationException;
    import com.sap.aii.mapping.api.TransformationInput;
    import com.sap.aii.mapping.api.TransformationOutput;
    public class populateResponseMessage extends AbstractTransformation {
          public void transform(TransformationInput arg0, TransformationOutput arg1)
                      throws StreamTransformationException {
                try {
                      DocumentBuilderFactory tfactory = DocumentBuilderFactory
                                  .newInstance();
                      DocumentBuilder tbuilder = tfactory.newDocumentBuilder();
                      Document doc = tbuilder.parse(arg0.getInputPayload()
                                  .getInputStream());
                      Document newdoc = tbuilder.newDocument();
                      Element root = (Element) newdoc.createElementNS(
                                  "urn:sap-com:document:sap:rfc:functions",
                                  "ns1:ZTEST_FAULT_MESSAGE_DATA.Response");
                      newdoc.appendChild(root);
                      NodeList nlList = doc.getElementsByTagName("ConversionRateResult");
                      if (nlList.getLength() != 0 && nlList != null) {
                            Node data = nlList.item(0);
                            String sourceval = data.getTextContent();
                            Element rate = (Element) newdoc.createElement("RATE");
                            rate.setTextContent(sourceval);
                            root.appendChild(rate);
                      Transformer transformer = TransformerFactory.newInstance()
                                  .newTransformer();
                      Source source = new DOMSource(newdoc);
                      Result output = new StreamResult(arg1.getOutputPayload().getOutputStream());
                      transformer.transform(source, output);
                } catch (Exception e) {
                      e.printStackTrace();
          }// end of transform

  • Cannot create target element /Invoice. Values missing in queue context.

    Hi Experts,
    I am working on Idoc to File scenario using SAP PI 7.1. In this scenario I am mapping Invoic02 Idoc with Invoice xsd. I am able to test the mapping in ESR with status as success.
    In ID Tools --> Test Configuration I used the same payload and tried testing the configuration step by step. while executing I am getting an error at Operation Mapping saying "Runtime exception occurred during application mapping com/sap/xi/tf/_MM_SRM_Hubwoo_Invoice_; com.sap.aii.mappingtool.tf7.IllegalInstanceException: Cannot create target element /Invoice. Valuesmissing in queue context. Target XSD requires a v~"
    Even though the mapping is getting executed successfully in ESR, I am not able to fix this issue. Need your inputs in resolving the same.
    Regards,
    Saurabh
    Edited by: saurabh mathure on Oct 16, 2010 8:14 AM

    Hi ,
    issue"Can not create the target element   value missing the queue context'.
    reason for this issue:
    Target field expecting some value from sender field. so in testing your not getting  any data from source field  for this reason your getting that issue.
    Solution:
    In mapping use node function:Mapwith deafault between source and taget fileds.
    Then activate mapping . now excute the scenario it  will properly without that issue.
    Cheers,
    Meera

  • Some values missing in FAX whereas same drivr program and smartfrm in print

    Hi Experts,
    I have a driver form and smartform in Print and same in fax configured in nace. But there are some values missing in FAX output whereas in print and email it is correct.
    Can anyone help with the reason.
    Thanks

    closed..

  • ORG values for parameters not set in configuration

    Hi All,
    We are creating parent / child roles for FICO & MM for a project. The business requirement / configuration is such that the org values are available only for Company code and Purchasing organization. What is the appropriate way to set this up in the child roles? For e.g. should we put in * for plant , purchasing group etc or leave it BLANK
    Please provide your comments
    Thanks in advance
    Vijaya

    Hi
    FI relies on company codes (mainly) and MM relies on plant, Porg etc (again - mainly) but, without all the other objects being filled in your roles won't work.
    It depends on your client's needs I suppose but it does sound a little open to me but each set up has their own design requirements, you'll have to put * in the rest of the very many org levels (and cost centres, release strategies, etc - too many to mention at org/object) if you aren't given the information either due to lack of knowledge by the functional guys (not likely, hopefully) or a top down 'do what I say approach'.
    I'd get the spec in an email from somebody responsible for the implementation from the business and save it for the auditors...
    Cheers
    David

  • Wildcard character in Org value

    I have a requirement wherein ,I have to provide access to all cost centers with pattern 200ABUS,200CDUS,200XYUS,etc.
    I want to use 4th and 5th character as wildcard,but neither + nor ? works.I have tried 200++US and 200??US,but system didn't recognize these as wildcard character.
    System is currently on SAPKB70106 support pack for SAP Basis Component.
    Is it possible to use single wildcard character in org value?

    Hi,
    I recommend you use the search function.  There is the same topic on the 1st page of the forum. 
    In R3 role design , "filling character" for org level required
    The quick answer is that you cannot achieve what you want.

  • Promoting org values in development system

    Hello,
    I have to promote org value called LEC in the development system. Can anyone suggest me how to do this.
    Thanks

    Authorization field can be changed to Organization field using PFCG_ORGFIELD_CREATE by using SE38 or SA38 transaction.   Please use TEST MODE before executing into real mode.
    u2022     Organizational level fields should only be created before you start setting up your system. If you create organizational level fields later, you might have to do an impact analysis. The authentication data may have to be post processed in roles.
    u2022     The fields "Activity", "ACTVT" and "Transaction code", "TCD" cannot be converted into an organizational level field.
    In addition, all affected roles are analyzed and the authorization data is adjusted. The values of the authorization field which is now to become the organizational level field are removed and entered into the organizational level data of the role.
    Note: Table for Org Element- USORG
    Refer to Note 323817 for more detail.

  • BP Role CRM003 - Payer is missing in drop down

    Hi Experts,
    I found BP role CRM003 - Payer is missing in BP (Tcode) drop down. Please suggest how to get it.
    Thanks,
    Shakti

    Missing font. Had to re-load basic fonts.

  • Location security within roles and org sturucture

    We have been using SAP for some time.  We have some specific roles with certain location values for resticiting some access but generally all of our roles when it comes to the org levels, we have used asterisk (*).  It was always an out os scope project, but now...things need to change.
    Is the only way to builded a proper org sturcture.  What document describes the PFCG insertion of $BUKRS in the company code, as an example, and the behavior you will have.  Up to this point, those have always been change to (*).

    Hi jerry,
    You can check the objects in T-Code SU24. Every T-Code is pre-defined with some objects.
    Based on the objects defined when you add T-Code in PFCG it will prompt for org values
    Hope now you are clear.
    For better understanding just go through the following example:
    When you add T-code you VA01 there are n number of objects.
    The objects C_TCLS_MNT (T-Code VA01)
    Authorization C_TCLS_MNT defines whether characteristics are available for entry, using the organizational area.
    In classification, you can use organizational areas to restrict which characteristics are selected. This authorization checks whether a user can maintain characteristics of a certain organizational area.
    Organizational areas are defined separately for each class type, so authorizations for organizational areas in the user master can be restricted to certain class types. This means that the user has no authorization to maintain characteristics with organizational areas in other class types.
    Note
    You can define organizational areas for each class type in Customizing for Classification, under Classes.
    Defined fields
    Field Possible entries  Description
    Actvt 23  Maintenance of characteristics for
       org. area allowed
    any other value  Display characteristics for org.
       area only
    Class type (Any)
    001  Material class (standard)
    017  Document class (standard)
    and so on
    Org. area (Any)  Organizational area
    Example:
    Field  Value
    Actvt  23
    Class type  *
    Org. area  A - E, K, V
    A user can only assign values to characteristics that belong to organizational areas A to E, K, or V. This setting applies to all class types.
    Cheers
    Soma

  • Org. value sync job in ERM

    Hello experts,
    Scenario: Our backend system consist HR component, but we do not use it and therefore do not want to implement the HR RTA
    So my question is, Is it possible to skip the HR contents for the org. value sync job in ERM? As we encounter error when running the report, and if possible, we would like to skip the HR contents which is not neccessary for our environment.
    Appreciate any feedback for this, thank you in advance.
    regards,
    weihow

    Hello Wei,
    If your system has SAP_HR component installed then you must install the VIRSAHR component for GRC as well. Reason being that there are some function modules which are there specifically for system with SAP HR component installed. If SAP HR is there then GRC applications will use the functions available in VIRSAHR component for activities. If you do not install them then this can lead to problems. You can refer to SAP Note 1086823 which confirms this.
    Regarding the ORG value sync job, you can customize it to not to pick any specific type of data. It will pick all the ORG value related data in your system.
    Regards,
    Varun

  • Cannot create target element /ns0 Values missing in queue context

    Hi Sdn,
    When I am testing the Message mapping in PI i am getting the below error message .
    Cannot create target element /ns0:TechObjChange. Values missing in queue context. Target XSD requires a value for this element, but the target-field mapping does not create one. Check whether the XML instance is valid for the source XSD, and whether the target-field mapping fulfils the requirement of the target XSD See error logs for details
    Could you please tel me what would be the wrong.
    below is the XML file data .
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:TechObjChange xmlns:ns0="http://schemas.xxxxx.com/iiiii/xxxxxx">
       <TechObjChangeFLEQ>
          <FormType/>
          <FunctionalLocation/>
          <Descoffunctionalloc/>
          <Equipment/>
          <DescofEquipment/>
          <StartupDateofTechObj/>
          <Manufacturer/>
          <Manufacturermodelnumber/>
          <Manufacturerpartnumber/>
          <Manufacturerserialnumbe/>
          <Countryofmanufacture/>
          <Yearofconstruction/>
          <Monthofconstruction/>
          <TypeofTechObject/>
          <PlannerGroup/>
          <MainWorkCenter/>
          <CatalogProfile/>
          <NameofUserchangingtheobject/>
          <Characteristic>
             <CharacteristicName/>
             <Characteristicvalue/>
          </Characteristic>
          <MeasuringPoint>
             <MeasurementPosition/>
             <Characteristic/>
             <MeasurementPoint/>
             <MeasuringPointAsIs/>
             <MeasuringPointAsLeft/>
             <PCTCodeGroupMP/>
             <PCTCodeMP/>
          </MeasuringPoint>
       </TechObjChangeFLEQ>
    </ns0:TechObjChange>

    WSDL structure
    WSDL structure
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://schemas.xxxxxxxx">
       <wsdl:types>
          <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:p0="http://schemas.xxxxxxxxx" targetNamespace="http://schemas.xxxxxxxxxx">
             <xsd:element name="TechObjChange">
                <xsd:complexType>
                   <xsd:sequence>
                      <xsd:element name="TechObjChangeFLEQ">
                         <xsd:complexType>
                            <xsd:sequence>
                               <xsd:element name="FormType" type="xsd:string" minOccurs="0" />
                               <xsd:element name="FunctionalLocation" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Descoffunctionalloc" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Equipment" type="xsd:string" minOccurs="0" />
                               <xsd:element name="DescofEquipment" type="xsd:string" minOccurs="0" />
                               <xsd:element name="StartupDateofTechObj" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Manufacturer" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Manufacturermodelnumber" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Manufacturerpartnumber" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Manufacturerserialnumbe" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Countryofmanufacture" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Yearofconstruction" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Monthofconstruction" type="xsd:string" minOccurs="0" />
                               <xsd:element name="TypeofTechObject" type="xsd:string" minOccurs="0" />
                               <xsd:element name="PlannerGroup" type="xsd:string" minOccurs="0" />
                               <xsd:element name="MainWorkCenter" type="xsd:string" minOccurs="0" />
                               <xsd:element name="CatalogProfile" type="xsd:string" minOccurs="0" />
                               <xsd:element name="NameofUserchangingtheobject" type="xsd:string" minOccurs="0" />
                               <xsd:element name="Characteristic" minOccurs="0" maxOccurs="unbounded">
                                  <xsd:complexType>
                                     <xsd:sequence>
                                        <xsd:element name="CharacteristicName" type="xsd:string" minOccurs="0" />
                                        <xsd:element name="Characteristicvalue" type="xsd:string" minOccurs="0" />
                                     </xsd:sequence>
                                  </xsd:complexType>
                               </xsd:element>
                               <xsd:element name="MeasuringPoint" minOccurs="0" maxOccurs="unbounded">
                                  <xsd:complexType>
                                     <xsd:sequence>
                                        <xsd:element name="MeasurementPosition" type="xsd:string" minOccurs="0" />
                                        <xsd:element name="Characteristic" type="xsd:string" minOccurs="0" />
                                        <xsd:element name="MeasurementPoint" type="xsd:string" minOccurs="0" />
                                        <xsd:element name="MeasuringPointAsIs" type="xsd:string" minOccurs="0" />
                                        <xsd:element name="MeasuringPointAsLeft" type="xsd:string" minOccurs="0" />
                                        <xsd:element name="PCTCodeGroupMP" type="xsd:string" minOccurs="0" />
                                        <xsd:element name="PCTCodeMP" type="xsd:string" minOccurs="0" />
                                     </xsd:sequence>
                                  </xsd:complexType>
                               </xsd:element>
                            </xsd:sequence>
                         </xsd:complexType>
                      </xsd:element>
                   </xsd:sequence>
                </xsd:complexType>
             </xsd:element>
          </xsd:schema>
       </wsdl:types>
       <wsdl:message name="TechObjChange">
          <wsdl:part xmlns:p4="http://schemas.xxxxxxx" name="TechObjChange" element="p4:TechObjChange" />
       </wsdl:message>
    </wsdl:definitions>

  • CRM security - is look up table possible for Sales org value

    I have a requirement in CRM role where the sales organization value has to taken from a table. Since this value is different between development, Quality and production.
    Please advice if I can set the field to all the three values or is there way make the field value in role point to a table where the sales organization value will be maintained.

    Hi ,
    Did you mean to say you will have one sales org value in DEV?
    another in Quality? third variation in Production?
    If this is the case , its not a good practice
    Answer:
    If you have tried all standard options and still insist that table is the method you want to follow:
    creating a custom authority object, custom field name  with the option to have one of the three values from the table under the field name is possible (ABAP DEVELOPER should work with you on this ).
    Regards

  • Org. values

    Hi,
    I need to know the meaning of the following  org. values with a simple example:
    company code, operating concern, Businees area, credit control area,
    account type, controlling area, division, sales organization, plants.
    Also, please reveal the program that actually generates these org. values when we create a role.
    Thanks in advance.
    Ramakrishna.

    Hi,
    Organizational values are authorizations fields that are chained to the organization and should be used with derived roles. Derived roles are copies of the mother role and the menu (transactions) cannot be changed. Just change the organizational fields.You use this for other organizational parts of the company. If you have to change something in the activities you can do this in the mother role and with the right generate button do this for all the derived roles. It is a lot easier in maintenance.  It is possible to change or add authorization objects but you should not do so, this violate the derived method.
    have fun
    jan van Roest

Maybe you are looking for

  • Just installed new 10.8.5 update and my 15" MacBook Pro display is now turning off on it's own.

    I installed the Mountain Lion OSX update today, and I saw in the notes that this update was supposed to address an issue with the retina displays just shutting off, which is a problem I have not had with my new laptop. Now mine IS shutting itself off

  • Dock gone, minimize doesn't work, computer won't respond to "shut down"....

    First of all, I'm surely not a computer expert by any means, but one morning when I turned on my computer (iBook) trouble erupted as follows: Once I logged on, the desktop picture was changing pictures every 2 seconds. I changed it to not switch pict

  • Types of input to file adapter

    hi all, I am doing a file to mail scenario.And i wanted to send a text file as input.But while doing so i am getting mapping transformation error,since the data types and mapping fields are different from the input. its working fine for xml files. So

  • Bridge flash web gallery does not take crop data

    Hello, I have been using bridge and Photoshop for many years and made many flash galleries. Lately, using CS5 I have noticed that in some cases, the crop and image adjustments information entered in bridge/photoRaw  is not taken into account when mak

  • Compound char and transaction data

    Hi experts We have a new characteristic ZCONTRACT. A few master data datasources delivers this new object with attributes. ZCONTRACT consists of time dependent attributes and additionaly this field ZOBJ_NO (object number). ZOBJ_NO is compounded to ZC