Interface scenarios - new attributes for adapters

Hi,
sinde sp15 we have a new tab interface scenarios in solman
and there are many adapters lile: EDI, XI adapters, etc that
we can use in those scanarios with special attributes
for each of those adapters
if there any chance to add some new attributes in standard
to those tabs ?
thank you,
Regards,
Michal Krawczyk

Hi Michal,
On a related note, I would suggest you to read [this|Interfaces and Interface-Scenarios in Projects; thread, if it's useful for you.
Coming to your specific question, by new attributes do you mean new technologies being listed in the list of values ?
If so, yes you can add them (though there will be a standard warning message from SAP) in the view tables version of the following tables, from SM30.
DIR_IFTECHATTGRP     Solution Dir: Interface technology and Attribute groupe
DIR_IFTECHTOATT     Solution Dir: Assignment of Attributes to Interface techno       
DIR_IFTECH_TYPE     Solution Manager: Interface Techno
DIR_IFACE_TECH     Solution Manager: Interface Technology
Trust this helps to answer your question.
Best regards,
Srini
Edited by: Srinivasan Radhakrishnan on Oct 2, 2008 11:03 AM

Similar Messages

  • Add a new attribute for user provisioining on SAP R3

    Hi,
    I want to add a new attribute for user provisioining on SAP R3.
    - I have added new attribute in Process form and Resource form
    - I think i need to add this attribute in lookup definition of SAP attributes also need to do mapping
    but i am not finding lookup definition of SAP attributes .
    What will be name of lookup definition of SAP attributes? (In case of AD, we have AtMap.AD).
    Can any body please help me?
    Thanks

    Hi,
    You cannot add custom fields and do provision or recon for it.I have opened the SR with Oracle and this facility will be available in 9.1. which is launching after 4 months.You need to request the source code and modify it to get the custom fields.
    Thanks

  • Creating new Attributes for use with AttributedStrings

    I trying to find a way to change the color of key strings in a phrase so that they stand out. For example.
    the String (The water is HOT). I want the word HOT to be the color RED.
    I have noticed in using the TextAttributes option on the AttributedString doesn't have an option to change a color for a particular word in a String only a way to swap the foreground and background colors. In general is there a way to add new attributes for doing the above example?
    Just a note. This modification is not being done in an editor pane or text field. I'm looking for a way to do this without user interaction.

    If you are not drawing this in an JEditorPane, but just with DrawText, you will have to split the text up your self, draw the first half, then switch colors, then draw the second half.

  • New attributes for resource

    Hi,
    I have AD as a resource in IDM. The attributes in IDM are mapped to corresponding attributes in AD. Now i have a requirement wherein I have some new attributes in AD. So i need to have IDM attributes mapped to these new AD attributes so that when i make changes to the IDM attributes these changes get reflected in the resource(AD) side as well.
    Can anyone please tell me how can I proceed on this.
    Thanks

    You should be able to define those attributes in schema. If the workflow updates them as global.<attribute>, updates will flow to all resources with that attribute name. That's a blessing and curse if you're not careful with attribute naming, but very useful if you are careful.

  • How to add new attribute for triggering workflow?

    Dear Expert,
    I want to create condition for triggering workflow.
    I am working on travel request workflow, using BUS2089.
    my requirement is to differentiate or make condition of triggering workflow based on trip activity type,
    but I can't find any attribute about trip activity type.
    how to add activity type to be available for create condition?
    thanks

    Hi,
      If am not wrong you are trying to raise event when ever there is a new travel request raised, so the BOR would be availbel in the workflow container to be more preciese it would be available in the event container, so you need to find out the right attribute in the BOR where the trip type is assigned and validate this in the start conditions i mean in the basic data of the workflow where you activate the event linkage.
    Regards
    Pavan

  • Data load for new attribute

    i added a new attribute for customer master data but will be loading this attribute with a flat file which is different from the customer file. How can i achieve this?

    Once you have added the new field in the target.
    Flat File to contain Customer No & the new fields
    Follow instructions in this link...
    http://help.sap.com/saphelp_nw04/helpdata/en/9a/e92637c2cbf357e10000009b38f936/content.htm

  • Addition of New Attributes to existing Infoobject

    Hi all,
    I need to add new Attributes to an InfoObject,
    which is already in Prod Env for my next release.
    Can I add the new attributes in Dev and Transport the same to Prod without deleting the Data in the InfoObject in the Prod. env? we don't have option to get the data back if it gets deactivated, when transporting the New attributes to Prod as it is live and used in reporting..
    Please suggest me the best way to do that and some important points to consider when dealing with the above scenarios.
    Thanks in advance.
    Mike.

    Hi,
        You can add new attributes for the existing object and it will not be a problem to teh data.
    since you are doing it in dev you can even follow the below method.
    Create a new infoobject in dev with same attributes of the existing object and load data to the newly created object. Add attributes to the existing one and load back the data from the newly created object. Check out this. It will let you ensure about the data.(Assuming that the infoobject is master data object)

  • Customer attributes creation for interface scenario ?

    Hi Experts,
    I want to create customer attributes in the interface scenario in dswp transaction.
    I was able to create one using the SPRO transaction. but it does not allow me to add further.
    Can anyone tell me how to resolve this or give any useful blogs, as i am a beginner.
    Thanks,
    Shamly
    Edited by: Shamly MM on Jun 9, 2010 10:10 AM

    Hi,
    Are you looking for Application Monitors and Customer exits for your requirement. May be this [guide|https://websmp110.sap-ag.de/~sapdownload/011000358700006184412006E/Setup_Guide-Customer_Exit.pdf] can help you.
    Hope this helps.
    Regards,
    Jagan

  • Interface not found in implements-attribute for MXML component

    Hi,
    I am trying to use the "implements" attribute for an
    MXML-component in order to implement an interface from a library
    like below (Flex 3). I get the error "Interface IClonable not
    found". The compiler does not complain about " import
    com.yworks.support.IClonable;", so the library is installed
    correctly. I use the library in many places in my project, it just
    does not find it in the "implements" tag. How can I fix this
    without reimplementing the component in ActionScript?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    implements="com.yworks.support.IClonable">
    <mx:Script>
    <![CDATA[
    import com.yworks.support.IClonable;
    ]]>
    </mx:Script>
    </mx:VBox>

    "mavdzee" <[email protected]> wrote in
    message
    news:gldjg8$js8$[email protected]..
    > Hi,
    >
    > I am trying to use the "implements" attribute for an
    MXML-component in
    > order
    > to implement an interface from a library like below
    (Flex 3). I get the
    > error
    > "Interface IClonable not found". The compiler does not
    complain about "
    > import
    > com.yworks.support.IClonable;", so the library is
    installed correctly. I
    > use
    > the library in many places in my project, it just does
    not find it in the
    > "implements" tag. How can I fix this without
    reimplementing the component
    > in
    > ActionScript?
    >
    >
    > <?xml version="1.0" encoding="utf-8"?>
    > <mx:VBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    > implements="com.yworks.support.IClonable">
    >
    > <mx:Script>
    > <![CDATA[
    >
    > import com.yworks.support.IClonable;
    >
    > ]]>
    > </mx:Script>
    >
    > </mx:VBox>
    I don't see anything where you're actually _implementing_ the
    interface, but
    I'd expect to see a different error if that's the problem.
    Still, I'd go
    ahead and implement the properties and methods in the
    interface, just to
    make sure.
    HTH;
    Amy

  • Roll back to standard SAP, after generating a new version for an interface

    Hello all,
    Somebody has modified one standard interface, and now a new version has been created with that  user name.  But, there is no difference between the old SAP version and the current active versioin (he/she has changed nothing).  If i go and see the version management it is appearing like this,
    X     Active    ..............   with that user name............
    below which i have the standard SAP version like this,
    .......................0.00.000. ......................  SAP
    But, if i go and see the attributes for that interface,  its showing
    LAST CHANGED BY    ............................ SAP
    how this can happen, when the active version is under a user name, but still the attributes is showing LAST CHANGED BY as SAP ????
    one more question,
    Now i want to revert my interface back to Standard SAP version, although there are no changes between the old and the current version.  If i go and see the version management, it should show me only one version that too of standard SAP, like this,
    X      Active...........................   SAP.
    THe reason is, some body in future on seeing this interface should not think that this standard interface got changed.
    Is it possible now?  Please give me suggestions. 
    Thanks in advance

    Hi ,
    This currently seems like a bug , we have encountered this too.
    work around is you have to delete the rtf files from server Siebel\client\temp\XMLP directory and upload them again so that they are not cached any more.
    same on dedicated client you may have to delete relavant files form siebel\client\temp\xmlp directory and upload again.
    Thanks,
    Vamsi

  • Hi all, i'm new and facing a problem while creating a new file for Xcode. I can't select the box "with XIB for user interface" if the subclass is "UIViewController".this problem happen after i upgrade Xcode to 4.6 version.Appreciate for any help rendered.

    Hi all, i'm new to Mac book & Xcode. I'm learning and facing problems while creating a new file for Xcode. Before i upgrade the software, i have no issue to create simple steps in apps. After upgrade Xcode to 4.6 version, i'm facing lot's of issue eg.
    1) "the identity "iphone developer" doesn't match any valid certificate/ private key pair",
    2) can't select the box "with XIB for user interface" if the subclass is "UIViewController"..
    Appreciate for any help rendered.

    Mikko777 wrote:So what is the best?
    I wouldn't judge. I've been to Arch for a week, you know? But as said, it's VERY close to it.
    What I dislike after a week is makepkg not handling dependencies automatically (which would be overhead, so probably not appropriate).
    Mikko777 wrote:Also theres KDEmod for modular kde, dunno if its for 64 bits tho.
    Don't actually need that as said ... I see no real benefit of having that other than not beeing a KDE user or having Gentoos useflags.
    Mikko777 wrote:PS:You produce a lot of text and welcome smile
    Yeah. Wonder why I'm still employed? So do I ...

  • Web Service Tool - to add the attribute (to get a new TAG) for existing Obj

    Hi Gurus
    I have existing (productive) object name which we use for Letter Templates
    I need to add the new attribute but when I select it (highlight) the buttom below "Confirm selection" is not active, so when I got to "Maintain Attributes" I can't see my attribute there...
    Question is - how to do that?
    Do I need to got ot Settings first and make my WS "Not Productive" (what is the sequence)?
    Or I need to create a NEW web service (to re-place the current one) ?
    Thank you.

    hi There,
    Once the service is made Productive you can not make any changes.
    So first change it to non productive.
    Then add the attributes and again set it to productive.
    Hope this helps.
    Regards,
    Suchita

  • Steps for adding a new attribute

    Please let me know if the below steps are correct
    =================================================
    I have an Infoobject called 0XXXX in BW and want to add another attribute called XXX_TYPE.
    This infoobject is used in 2 Info Cubes and a Multiprovider. Also in 3 queries.
    In R/3 the info I need is stored in a Table(XYZ). Please let me know if the below steps are correct and all I need
    1) Create a generic extractor to pull the data from XYZ table (Like an ABAP program) .. This is the part which I am not clear !!!
    2) Modify 0XXXX in BW to add this new navigational attribute
    3) Load Master data using process chain
    4) Re activate all update rules
    5) Change Infoprovider's for the new attribute (How to do that ??)
    6) Change query (What changes will I need to make .. Just select this attribute field into the required query)
    Please help

    Hello,
    As you said, either enhance the extract structure by adding this new InfoObject and then write the code in the user-exit.
    Or if the SAP table has the Key fields of the InfoObject, then create a generic extractor. Create a view by including the key fields of the InfoObject and the new attribute InfoOBject for which data has to be derived from this. Use this view or the table itself for the extractor.
    Create new InfoSOurce for the InfoObject which will only update the new InfoObject. Keep only transfer rules for the Key InfoObjects and the new InfoObject.
    GSM.

  • New Format for creating Attribute Sets.

    Hi,
    In SAP CRM webclient ui 7.0 there is a new format for creating Attribute Sets. The format is 'value table'.
    On selecting Format=Value Table the field 'Table' comes up.
    There is a message: Here you can enter a table that contains all the values you want to use. This is particularly useful for attributes with a lot of values or if you want to enter multiple attributes with the same values. The table must be a check table with a search help.
    Do I need to create a table with all the fields in in marketing attribute assignment block with search help on attributes field.
    Can you please guide as to how I should go about this issue.
    Regards,
    John.

    Hi John,
    The Attribute Set of Format type 'Value Table' is for the Mutiple Attribute Sets. These can be either a Single Attribute Set with Multiple values or the Multiple Attribute Sets with One value.
    You can include all such marketing attributes into one table which is a check table with search help. and use this as the Value Table.
    Hope this helps you out!
    Regards
    Veena.

  • Help required specifying Transation attributes for this scenario

    Hi ,
    I am trying to create/update rows in a database using BMP and CMP beans.
    A business method ( Method1 )in session bean calls a non-business method ( Method2) in the same session bean which inturn calls an EntityBean ( EB1-BMP) . EB1 can throw a certain business exception upon which , the Method1 in the session bean calls another EntityBean in a loop( EB2-CMP).
    The problem is that , when the EB1 throws the business exception, i am getting an exception ( part of the stack trace attached below ).
    Could any please explain what should be the transaction attributes to be specified for this scenario.
    Using RequiresNew for the EntityBeans would not work ( or would it ?? ) because the entity bean is being called in a loop and the commit or rollback should happen for all the methods.
    I feel the problem should be solved by specifying the transaction attribute for Method2 ( non business method in session bean ) as Required, but i guess this is not possible.
    How exactly will the transaction behave in this scenario, is the exception caused because EB1 has thrown an exception and i am trying to continue the transaction.
    Could someone please suggest a solution or workaround for this problem.
    Regards,
    Harsha
    ---- Begin backtrace for nested exception
    java.lang.IllegalStateException
    at com.ibm.ws.Transaction.JTA.TransactionImpl.enlistResource(TransactionImpl.java:1694)
    javax.ejb.EJBException: nested exception is: com.ibm.ws.ejbpersistence.utilpm.PersistenceManagerException: PMGR6022E: Error using adapter to create or execute an Interaction. com.ibm.ws.rsadapter.cci.WSInteractionImpl@28d16547
    .

    tryout business method ( Method1 )in session bean with transaction as RequiresNew.
    catch exception in Method2 originated from EB1-BMP
    make the method in EB2-CMP as Required/Mandatory
    I have made a guess here so just tryout and let me know if works.
    Its recommend that not to use both BMP's and CMPs in your application. Have any one either.

Maybe you are looking for

  • How do I get Apple TV to work with my receiver?

    I have a new home theater. If I plug in my AppleTV to my TV, it works but the sound comes out of the TV. If I plug AppleTV into an HDMI port on my receiver, the TV doesn't know it exists. I want it to come out of my sound system thru my receiver. How

  • Iweb and web galleries?

    i need to use a password protected program to host online albums for clients through my website. 1) i have no idea how to do this and 2) where to get it... my website is hosted through godaddy.com but is created through iweb. - i have been told simpl

  • Error 820D - Invalid database - truncated to 0 bytes

    Hi Forum. I'm importing Mail into an account and every time I ran into the following error when the ofuser DB file size hit the 2gb. POA Log: 10:05:37 F403 The database function 44 reported error [820D] on userq4f.db 10:05:37 F403 Error: File size is

  • Backwards Navigation and automatic marking of "incomplete"

    Hello and thank you for your help in advance. Here is the scenario: a learner is on a question and they click the Back button and because we want them to be allowed to refer back to the material before answering the question OR they click the slide b

  • How can i open graph by clicking in another graph on a particular point

    i have a graph which is construct point by point and i want to open another graph which gives some more information thanks to a mouse click. each point will open a different graph