Need a quant specific attribute

I am looking for a way to maintain country of origin at the quant leve.  Since we dual source many materials, the MM setting only allows one COO.  We are using WMS so I need to be able to track that at the bin level x10 of material 123 is COO = US and x 5 od material 123 is COO CN.  I would also prefer if this attribute would prevent mixing storage where "addition to stock" is used in the put-away strategy.
Batch numbers have been suggested, but we use them for true SLED relevant parts so I do not want to have to use some elaborate naming convention of COO+SLED info = batch number.
It needs to be something that can be addded during GR and follows the quant through WM activites.
Thanks in advance.
dw

I know the COO is not at the quant level, I am looking for an attribute field that follows the quant (e.g. 2 quants for same material can show different attribute) that we could use (mis-use) to represent the COO,  We are 3 years into SLED /batch managment and cannot revert that decision.
We do nooed to track multiple COO per material.  THis would all be resulting in soem enhancment to pass this quant level attribute to GTS during CI creation.
Something like using storage units for the various COo but  maybe not that complex...
dw

Similar Messages

  • Multi-Message-split with ABAP mapping and adapter specific attributes

    Hi all,
    With <b>ABAP-Mapping I split 1 message to n messages</b>.
    So many files are generated in <b>file-Adapter</b>.
    Everything fine.
    But now I want the file names different using adapter specific attributes.
    It is not possible to use variable substitution and write the file name in payload because of receiver restrictions.
    I tried this with following similar coding in ABAP-Mapping:
    data: lt_records TYPE MPP_DYNAMIC_TAB.
          Loop.
          l_file_name = "payload-Inbound"-information
          ls_record-namespace = 'http://sap.com/xi/XI/System/File'.
          ls_record-name = 'FileName'.
          ls_record-value = l_file_name.  "l_file_name comes from inbound-payload
          append ls_record to lt_records.
         Endloop.
      CALL METHOD dynamic_configuration->set_all_records
        EXPORTING
          records = lt_records.
    If I start the interface I see in the monitoring the dynamic configuration with many entries for file-name in the the SOAP-Header mapping of the request message (following extract):
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Mapping der Request-Message
      -->
    - <SAP:DynamicConfiguration xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileName">BPAADDRESS.XML</SAP:Record>
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileName">BPABROKERROLE.XML</SAP:Record>
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileName">BPACOMPANYSEGMENT.XML</SAP:Record>
      <SAP:Record namespace="http://sap.com/xi/XI/System/File" name="FileName">BPACUSTOMERROLE.XML</SAP:Record>
    The result is that <b>all files have the same file name</b> (last entry in dynamic configuration).
    Is it possible to write the adapter specific configuration in ABAP-mapping <u>for every single result message</u>??
    Thank you for your help,
    Florian

    Hi Florian,
    I've a different idea...I dont think its a "right solution" but just another work around..it involves a BPM...
    In your ABAP mapping..set the dynamic config with as many variables as number of different messages...i.e. use the variables like 'FileName1', 'FileName2'...'FileName6' instead of 'FileName'. But use the same namespace 'http://sap.com/xi/XI/System/File'
    Call the above mapping in a BPM and capture the individual messages and set the attribute 'FileName' from the values of 'FileName1' to 'FileName6' accordingly using Message Mapping and then send the message using the 'Send' step.
    before you try this, try using the variable names 'FileName1' ...'FileName6' in the receiver adapters...enable the ASMS. <b>I know we need to select which variables from the dynamic config to be used by the adapter by specifically selecting 'FileName', 'Directory' etc...but just give it a try and see if it works..</b>
    Or..instead of using a BPM..you can combine Henrique's idea...use Adapter module to set the value for 'FileName' from variables 'FileName1'...'FileName6' accordingly.
    hope I'm clear..lemme know if you have any questions..
    cheers
    praveen

  • Using Adapter-specific attributes in Mail adapter

    Hi,
    I try to use adapter-specific attributes in my Mail adapter. I set the "Use Adapter-Specific Message Attributes" indicator, but I do not get a result in the mapping and also in the SXMB_MONI the attributes are not visible.
    The documentation also refers to Variable Transport Binding indicator:<a href="http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm</a>
    Could this be the problem? I cannot find this indiciator! Does anyone know where I can find this indicator?
    Regards,
    Torsten

    Hi,
    The values for the parameters, set using adapter specific message attributes are available at runtime in the path http://sap.com/xi/XI/System/Mail.
    We need to write UDF's that can extract the values from this path.
    For Ex:
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters() .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create(
        “http://sap.com/xi/XI/System/File”,
        “FileName”);
    String valueOld = conf.get(key);
    if (valueOld != null) {
        String valueNew = valueOld.replaceAll(“input”,”output”);
        conf.put(key, valueNew);
    If you check Dynamic configuration in sxmb_moni, you would be able to find the values for all the attributes that have been set in the adapter.
    Regards,
    Smitha.

  • IXML - Reading a specific tag/specific attribute

    Hi,
    I'm trying to get out a specific tag ans specific attribute from an xml string.
    I built my method based on BCCIIXMLT2 & BCCIIXMLT11 and Parsing XML file to Internal table., however it doesn't seem to work.
    I already tried 2 approach, none of them worked
    The loops are ended before the get_attributes method is called.
    My code:
    METHOD /eby/if_xml_output_writer~finish_element.
    * Based on program BCCIIXMLT2 & BCCIIXMLT11
    * \\ ======= iXML =======
      DATA:
        lr_ixml           TYPE REF TO if_ixml,
        lr_xml_doc        TYPE REF TO if_ixml_document,
        lr_node           TYPE REF TO if_ixml_node,
    *    lr_iterator       TYPE REF TO if_ixml_inline_iterator,
        lr_iterator       TYPE REF TO if_ixml_node_iterator,
        lr_nodemap        TYPE REF TO if_ixml_named_node_map,
        lr_stream_factory TYPE REF TO if_ixml_stream_factory,
        lr_istream        TYPE REF TO if_ixml_istream,
        lr_parser         TYPE REF TO if_ixml_parser,
        lr_nnmap          TYPE REF TO if_ixml_named_node_map,
        lr_attr           TYPE REF TO if_ixml_node,
        lc_name           TYPE string,
        lc_value          TYPE string,
        lc_prefix         TYPE string,
        li_type           TYPE i,
        li_indent         TYPE i,
        li_index          TYPE i,
        li_count          TYPE i.
    * // ======= iXML =======
    *=======================================================================
      CLASS     cl_ixml          DEFINITION LOAD.
    *=======================================================================
      CHECK i_parent IS INITIAL.
    *-- Create the main factory
      lr_ixml = cl_ixml=>create( ).
    *-- Create the initial document
      lr_xml_doc = lr_ixml->create_document( ).
    *-- Create the stream factory
      lr_stream_factory = lr_ixml->create_stream_factory( ).
    *-- Create a stream for the input (string)
      lr_istream = lr_stream_factory->create_istream_cstring( i_input ).
    *-- Create the parser
    lr_parser = lr_ixml->create_parser( stream_factory = lr_stream_factory
                                         istream        = lr_istream
                                         document       = lr_xml_doc ).
    *-- We don't need the stream any more, so let's close it...
      lr_istream->close( ).
    * 1st attempt
    *  lr_node = lr_xml_doc.
    *  lr_iterator = lr_node->create_inline_iterator( ).
    *  li_type     = lr_iterator->get_type( ).
    *  WHILE li_type NE 0.
    *    li_indent = lr_iterator->get_height( ) * 2.
    *    CASE li_type.
    *      WHEN if_ixml_node=>co_node_element.
    *        lr_nnmap = lr_iterator->get_attributes( ).
    *        li_index = 0.
    *        li_count  = lr_nnmap->get_length( ).
    *        WHILE li_index < li_count.
    *          lr_attr  = lr_nnmap->get_item( li_index ).
    *          lc_name  = lr_attr->get_name( ).
    *          lc_value = lr_attr->get_value( ).
    *          li_index = li_index + 1.
    *        ENDWHILE.
    *    ENDCASE.
    *    li_type = lr_iterator->advance( ).
    *  ENDWHILE.
    * 2nd attempt
      lr_node ?= lr_xml_doc.
    * Create a node iterator
      lr_iterator = lr_node->create_iterator( ).
    * Get current node
      lr_node = lr_iterator->get_next( ).
    * Loop over all nodes
      WHILE NOT lr_node IS INITIAL.
        li_indent = lr_node->get_height( ) * 2.
        li_indent = li_indent + 20.
        CASE lr_node->get_type( ).
          WHEN if_ixml_node=>co_node_element.
    *       Element node
            lc_name = lr_node->get_name( ).
            lr_nodemap = lr_node->get_attributes( ).
            IF NOT lr_nodemap IS INITIAL.
    *         Attributes
              li_count = lr_nodemap->get_length( ).
              DO li_count TIMES.
                li_index  = sy-index - 1.
                lr_attr   = lr_nodemap->get_item( li_index ).
                lc_name   = lr_attr->get_name( ).
                lc_prefix = lr_attr->get_namespace_prefix( ).
                lc_value  = lr_attr->get_value( ).
              ENDDO.
            ENDIF.
          WHEN if_ixml_node=>co_node_text OR
               if_ixml_node=>co_node_cdata_section.
    *       Text node
            lc_value = lr_node->get_value( ).
        ENDCASE.
    *   Advance to next node
        lr_node = lr_iterator->get_next( ).
      ENDWHILE.
    ENDMETHOD.
    Any idea what could be wrong?
    Thanks in advance,
    Peter

    Thanks!
    Unfortunately my code should also work on 46C, so XLST is not an option. Anyway I used some code from SAPLink  and it works fine now.
    *-- Create the main factory
      lr_ixml = cl_ixml=>create( ).
    *-- Create the initial document
      lr_xml_doc = lr_ixml->create_document( ).
    *-- Create the stream factory
      lr_stream_factory = lr_ixml->create_stream_factory( ).
    *-- Create a stream for the input (string)
      lr_istream = lr_stream_factory->create_istream_cstring( i_input ).
    *-- Create the parser
      lr_parser = lr_ixml->create_parser(
                          stream_factory = lr_stream_factory
                          istream        = lr_istream
                          document       = lr_xml_doc ).
    *-- Parse the stream
      lr_parser->parse( ).
    *-- We don't need the stream any more, so let's close it...
      CLEAR lr_istream.
    * Find the tag
      lr_rootnode = lr_xml_doc->find_from_name( c_tag_structureddocument ).
      lr_attributelist = lr_rootnode->get_attributes( ).
      lr_nodeiterator  = lr_attributelist->create_iterator( ).
      lr_attributenode = lr_nodeiterator->get_next( ).
    * Find the attribute
      WHILE lr_attributenode IS NOT INITIAL.
        lc_name = lr_attributenode->get_name( ).
        IF lc_name = c_attribute_id.
          lc_value = lr_attributenode->get_value( ).
          EXIT.
        ENDIF.
        lr_attributenode = lr_nodeiterator->get_next( ).
      ENDWHILE.
      mc_output = lc_value.

  • RADIUS and Vendor-Specific attributes

    Hi,
    I'm trying to add a vendor specific attribute (Cisco AV Pair) to BMAS
    (NMAS 3.1.2 on NetWare 6.5 SP6). I can add any generic attribute I
    want, but any of the vendor-specific attributes are not sent back in the
    radius access-accept packet. Is there some configuration change I need
    to make to support vendor specific attributes? They all show up in
    ConsoleOne, I can add them, and they are saved when I hit OK.
    Thanks for any suggestions!
    Greg

    In article <UG2Jm.1195$[email protected]>, Greg Palumbo
    wrote:
    > I read the other two recent threads on this, it does sort of sound like
    > a snapin issue, but those are usually under the 1.2\snapins directory I
    > thought. what about installing a fresh copy of C1 on the C:\ drive from
    > the BMAS CD or from NW65SP7? Also, wouldn't all the replaced sys/public
    > files be in SYS/SYSTEM:\BACKSP7? Maybe something like Beyond Compare or
    > WinMerge could flag all the changed files easily...
    >
    My latest thinking is that this is related to security. The failing
    attribute contains an encryption of the DAS client password. I'm assuming
    that ConsoleOne relies on some background process to do the encryption, and
    that between SP7 and SP8, it changed. The new attributes are longer than
    the old ones, so the snapin-related issue may simply be that it cannot read
    what was stored.
    I don't know if there is a particular security-related component that can
    be reversed to allow changes to the DAS object, then updated again to put
    things back to SP8.
    Craig Johnson
    Novell Support Connection SysOp
    *** For a current patch list, tips, handy files and books on
    BorderManager, go to http://www.craigjconsulting.com ***

  • Adpater Specific Attribute Message

    Hi Experts,
    I am doing IDoc->XI -> file Scenario. I sending material master data to a third party. At the target side i need to create a file name of this type "Material + MATNR+Timestamp.txt". In that file name  "Material" is always constant and "MATNR" is dynamic, it will be fetched from payload and timestamp is also dynamic. How can i create this kind of file name at target side.
    I know i have to use  "Adpater Specific Attribute Message" but i dont know hw to do this. If some body know this please help out.
    Thanks in Advance,
    Venky

    Hi Yugandhar Kotha ,
    It is giving the following error
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The following variable was not found in the message payload: MATNR: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The following variable was not found in the message payload: MATNR
    In variable substitution table i gave
    MATNR payload:ZMAT_MN,1,IDOC,1,E1MARAM,1,MATNR,1
    Below i am sending the XSD structure please provide the payload path
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
         <xsd:element name="ZMAT_MN">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element name="IDOC" type="ZMATMAS.MATMAS05.ZMAT_MN" />
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:complexType name="ZMAT_MN.E1MARAM">
              <xsd:annotation>
                   <xsd:documentation>
                   Master material general data (MARA)
                   </xsd:documentation>
              </xsd:annotation>
              <xsd:sequence>
                   <xsd:element name="MSGFN" minOccurs="0">
                        <xsd:annotation>
                             <xsd:documentation>
                             Function
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:maxLength value="3" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="MATNR" minOccurs="0">
                        <xsd:annotation>
                             <xsd:documentation>
                             Material Number
                             </xsd:documentation>
                        </xsd:annotation>
                        <xsd:simpleType>
                             <xsd:restriction base="xsd:string">
                                  <xsd:maxLength value="18" />
                             </xsd:restriction>
                        </xsd:simpleType>
                   </xsd:element>
                   <xsd:element name="ERSDA" minOccurs="0">
    Thanks,
    Venky

  • How to bind a specific attribute of an element to an input field

    HI,
    in my web shop application I create an overview page of the items dynamically in the wdDoModify Method. Each item has it's own transparent container. I do not use tables or row repeaters, because they did not fullfill my requirements.
    Now I have the problem to bind a specific attribute to an input field.
    I bind the value with following code:
    amountInput.bindValue(item.getAttributePointer("amount").getAttributeInfo())
    item is the element of the item to display. amount is the attribute with type integer.
    The problem is, that I have 4 Items on the screen. When I enter a value for amount, all amounts on the screen are the same. So I guess that the input field is not bound to the correct element.
    Has anybody an idea what I have done wrong? Or which string for bindValue do I have to use for example for an attribute of the 5th element in a node?
    Best regards,
    Peter

    Peter, you can set the context node to mutiple select, but you have to select it on item variable, like:
    item = wdContext.nodeXXX.getElementAt(1);
    amountInput.bindValue(item.getAttributePointer("amount").getAttributeInfo())
    item = wdContext.nodeXXX.getElementAt(2);
    amountInput2.bindValue(item.getAttributePointer("amount").getAttributeInfo())
    Regards,
    Edson Thomaz

  • Adapter specific attributes - SOAP Adapter

    Hi,
    I am trying to use the adapter specific attributes of the receiver SOAP adapter. But I am not able to view the Dynamic configurations in sxi_monitor corresponding to this message. Any clue why!?
    I read through the SOAP adapter help on help.sap.com,
    <i>http://help.sap.com/saphelp_nw2004s/helpdata/en/69/a6fb3fea9df028e10000000a1550b0/frameset.htm</i>
    Here it says:
    <i>If you want to use header fields, set the relevant indicator for Variable Header. The technical names for the fields are XHeaderName1, XHeaderName2, XHeaderName3. The parameters are embedded in the HTTP request under the names you enter here.</i>
    But I donot find an option where I can enter the names. Am I missing something here?
    Regards,
    Smitha.

    Hi Smitha,
    I did not try to use adapter-specific attributes with SOAP-adapter, but with mail-adapter. The documentation is quite similar, so I excpect similar results...
    So as far as I understood, the parameters XHeaderName1, ... etc are for dynamic extension of the set of adapter-specific attributes. For example, if you want to add some more information in the message header, you can program an adapter module and you have now a guide how to name the additional attributes.
    Usually, the "standard" adapter-specific attributes are starting with "S" (Sender) or "T" (Receiver). You can find the names in the documentation of the SOAP-adapter.
    In order to use the adapter-specific attributes, you have to check both indicators (adapter-specific attributes, variable transport binding). If this still doesn't work, you should use OSS. In my scenario (mail adapter) this didn't work, too. The reason was, that there was a bug in the adapter metadata (Integration Repository) of SAP BASIS. There was a SAP note, where I could download the correct adapter metadata. Maybe you can find a SAP note for the SOAP Adapter.
    Although this is probably not the final solution, I hope this guides you a step further.
    Regards,
    Torsten

  • Do I need a Mac-specific Radeon 9600 for my G4 MDD?

    I have a Power Mac dual 1ghz MDD with a Radeon 9000 graphics card. I can buy a cheap ($50) Radeon Geforce 9600 AGP 512 MB card, not specified as Mac-specific. Do I need a Mac-specific card? Or will any Geforce 9600 work in the MDD?
    I am planning to use my MDD as a media center for my LCD TV; will the Radeon 9600 provide much better performance than my 9000 card (with 64MB)?
    Anything else I should consider?
    Thanks!

    You may hear otherwise from wiser heads, but right now I would work on the basis that it has to be Mac-specific. All other reference to such cards I have seen has required Mac specific. However, some cards are non-Mac cards which have had their firmware flashed to be Mac specific. I don't know about that card but from many years ago I recall that sometimes there could still be compatibility issues with flashed cards. On the other hand I have also seen such cards suggested here as suitable so I may be out of date on this. Just so you don't rush out and buy the card before getting other feedback.

  • Specific attributes for IDM implementation

    I am trying to integrate webcenter with Oracle IDM environment, to do the same i required to know the specific attributes for oracle webcenter users
    the input is required for the IDM team to create the schemas,
    Can anybody enlighten me about the same,

    Read this link and around: http://docs.oracle.com/cd/E21764_01/webcenter.1111/e12405/wcadm_security_id_store.htm#CFHJEJID
    Note, that you will not integrate "WebCenter", but rather "its LDAP".

  • I need to update specific records(of variable lengths) in a file. I can get the correct record but when I update it(add info), it overwrites part of the record following it. I am using labview 6.0

    I need to update specific records(of variable lengths) in a file. I can get the correct record but when I update it(add or change info), it overwrites part of the record following it. I am using labview 6.0. I need to be able to insert information into the middle of a file without disturbing the data before and after

    It's hard to give more specifics without more detail, but in general you're going to need to read in the entire file, split it into three pieces (everything before the record of interest, the record itself, and everything after the record of interest), modify the record, reassemble the three pieces in proper order, and write the whole thing back to the file.Of course if the file is very large you might not want to actually implement it this way, but conceptually at least, this is what you are looking at.If this file some sort of proprietary format?Mike...PS: this type of issue is why I really like databases...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Do I need to use specific printers with Macbook Pro?

    Do I need to use specific printers with Mac?

    Only those that provide compatible printer drivers.
    OS X- Printer and scanner software available for download
    OS X Mavericks- Set up a printer

  • Need to accommodate an attribute in /oracle/apps/pa/project/webui/MyProjectsPG

    Hi,
    I have a requirement to accommodate an attribute burdened_cost of pa_budget_versions table in the page /oracle/apps/pa/project/webui/MyProjectsPG.
    Actually the issue is, this is a standard search page and there is another page /oracle/apps/fnd/framework/customjrad/webui/CustomJRADViewUpdatePage.xml where we have the facility to shuttle the display attributes.
    Currently my requirement is my attribute doesn't exist in the shuttle list and hence I need to accommodate my attribute possibly by VO extension (I believe)
    But I am not able to exactly get the details, which VO to be extended here...
    Attaching the images of the pages.(CustomJRADViewUpdatePage is where we can see shuttling of attirbutes and I need to additionally accommodate one attribute here)
    (MyProjectsPG is where we see the shuttled attributes, so I should view my additionally added attribute here in the display list)
    Can any please let me know how to get the details and achieve the solution for this requirement.
    OAF version: 11.5.10RUP7
    Thanks,
    Affy

    AJ,
    Thanks for your super fast response.
    I don't want to dynamically display the attribute.
    As we can see there are existing attributes in the shuttle list , so we can shuttle whichever attribute we want to display.
    I need to add my attribute to this list and I am not getting idea as to how and which VO i need to substitute to get the attirbute in this list, once I can get this attribute I hope it'll be displayed in the search page once we shuttle this attribute to the display list. Let me know if i am wrong.
    Also, I tried to find the VO behind both the pages, for CustomJRADViewUpdatePG.xml there are no VOs to check for and only in MyProjectsPG , I found out ProjectListGenVO, so is this the one i need to substitute with?
    Thanks,
    Affy

  • VIM: need for VIM specific reports

    Hello Experts,
    My need is to create a report from a cross of two existant reports: VIM_ANALYTICS and REMINDER (Transaction /OPT/VIM_ANALYTICS and /OPT/REMINDER).
    - Is there a point in the customizing  where we can create VIM customer reports ? I mean with assistant by selecting the fields,  the columns like queries?
    - Do you have any idea to achieve this? I need necessarily a specific development (Z program)? or can i just enhance or use some user exit in one report to include it by the other fields report?
    Thank you in advance for your help,
    Amal

    Hello,
    Now instead of manually generating these reportsBy manually to you mean you don't want to have to go to a website?
    If you want emails you would use a combination of the APEX views to get your data
    Home>Utilities>Application Express Views
    The APEX email functionality to create the message and send it
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b32258/api.htm#CHDDHBGI
    and
    dbms job to run the the job at a specific time or interval.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_job.htm
    Regards,
    Carl
    blog : http://carlback.blogspot.com/
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Customer-specific attributes (properties) for processes?

    Hello community,
    I already know how to define customer-specific attributes (properties) for documents stored in Solution Manager using the Document Modelling Workbench. For documents, everything works fine, so far.
    But: I also want to define customer-specific properties for processes. Is this possible? If yes, how do I do that? I cannot find any related configuration options -- neither in SPRO nor in Solution Manager's own project configuration area.
    Thanks in advance,
    Thomas

    Hi,
    In SPRO, naviagete to SAP Solution Manager Implementation Guide -> SAP Solution Manager -> Scenario-Specific Settings -> Implementation/Upgrade -> Blueprint and Configuration -> Object Attributes -> Definition of Customer Attributes for Object Types
    Best regards,
    Jacques.

Maybe you are looking for

  • SP1 to R2 upgrade no client activity

    I have updated from SP1 to R2 and all seems fine, i have since changed Hierarchy Settings to update client automatically within 2 days. Its now been 2 days and there is no sign of any clients being updated. All clients say inactive and don't seem to

  • Go back to old eclipse interface?

    Hi.  Eclipse upgraded a while ago, and the whole interface style changed.  All the borders and toolbar backgrounds are like a steel grey.  I'm finding some parts have white letters on light-grey backgrounds.  There's no problem with the editor and pa

  • IOS 5.0.1 removes battery drain (kinda...)

    I've updated OTA to iOS 5.0.1 on my iPhone4 and Original iPad. BOTH of them are connected to the same iCloud account and have bookmarks on so I can sync what's in my safari from my Mac into my devices, a pretty neat feature. The problem is that both

  • Problems with Lexar USH-1 cards?

    I have a problem using my new Lexar SDHC USH-I 600x 16GB card. Formatted and used with  Nikon D800. The card seems to work apparently properly in the cam. Inserted in the internal SD-slot of my MacBookPro (purchased March 2012, OS-X 10.8.2) the files

  • PRT material process

    Dear experts, I need a complete step by step process regarding the PRT materials 1) PRT material -- Procurement ( FHMI material type don't have  purchasing view , no accounting view) How can we stock this PRT material if procured 2) PRT Material -- B