Fetching ABAP connection information from SLD

Hi Experts,
I had created one SLD. so i want to use the ABAP connection information of SLD in JCo programming.  how can we achieve this one?
Thanks,
Maha

Hi,
Refer the below links...
SLD Configuration:
Configuring SLD in Sneak Preview SAP NetWeaver '04 Sneak
SAP Help on JCO Destinations and on other bussiness Packages.
http://help.sap.com/saphelp_erp2005/helpdata/en/8c/cb3042366c0521e10000000a155106/frameset.htm
Creating ABAP Technical System:
http://help.sap.com/saphelp_nw70/helpdata/en/24/8fa93e08503614e10000000a114084/content.htm
Regards,
Srinivas

Similar Messages

  • Delete connection information from portal

    i have successfully imported the portal pages and portlets.now i am not able to edit the connection information as it is disabled in the connection information for my old connection.
    how can i delete or edit connection information from portal
    thanks
    mish

    Check out this thread. Something similar would do for a KM Repository as well.
    <a href="https://forums.sdn.sap.com/click.jspa?searchID=2812737&messageID=608126">https://forums.sdn.sap.com/click.jspa?searchID=2812737&messageID=608126</a>

  • Extract software product information from SLD

    Hi Colleagues,
    I am wondering how to extract software products information from SLD.
    I need application and version of the product. For example Sap NetWeaver version 7.11.
    I read the business systems:
    CIMInstancenameList businessSystems = client.enumerateInstanceNames(CIMNames.C_SAP_BusinessSystem);
    // get clients for Business Systems
                for (final Iterator<?> iterSystems = businessSystems.iterator(); iterSystems.hasNext();) {
                    final CIMInstancename system = (CIMInstancename) iterSystems.next();
                    final IBusinessSystemDto dto = new BusinessSystemDto();
                    list.add(dto);
                    dto.setName(CIMUtil.getKeyValueByName(system, CIMNames.P_NAME).getValue());
    How can I get product information about business systems.
    Do I have to get it from the system or from the client or there is another way.
    Thank you in advance.
    Best Regards,
    Dimitar

    Hi,
    Whatever business system you have registered in your central SLD, that information you can get it by logging to SLD.
    Thanks
    Sunny

  • When getting information from SLD, should SMSY create a system for EP?

    I've connected my EP NW2004s system ES3 to the SLD.  I connected Solution Manager 4.0 to SLD so that SMSY can get information from the SLD.  When I run the import, I see:
    1. ES3's server sapeps03 created under SMSY Landscape Component ->Server.
    2. ES3 's database ES3 created under SMSY Landscape Component-> Database.
    3.  ES3 Java component entry created under SMSY Landscape Component->System Components->Java System.
    BUT, I don't see an ES3 entry under SMSY Landscape Component->Systems->SAP Netweaver.  Shouldn't there be?  Do I have to create this manually?
    The ECC 5.0 system RS3 got created under SMSY Landscape Component->Systems->SAP ECC.   Why not the EP system?
    Thanks.
    Regards,
    Mel Calucin

    Hello Mel,
    the SMSY transaction had a lot of issues resolving the appropriate Java product with older versions of Solution Manager. For instance, you can take a look at the SAP Note 1392992.
    Newer versions of Solution Manager (currently on SP24) resolve most of the issues. The portal is certainly detected successfully.
    My recommendation would be having Solution Manager updated always with the latest Support Package stack available.
    All the best,
    Andreu

  • Report to fetch the text information from customer master sales data

    Dear Experts,
    We have come up with a requirement where the business want a report/list of the customers for whom a particular text is not maintained in customer master -sales data.
    There are many Z text id are configured and are maintained in Sales data- extras- text. In addition, business also need some key fields from the customer master such as name, city, delv plant, payment terms, sales off, sales grp etc.
    I could not get any standard table where the text is maintained with the customer numbers. Table STXH can give the customer numbers for a particular text id type but what is maintained against the given text id is not fetched from the table.
    So we need the valuable inputs to realize the requirement.
    As an proposal, we are aiming to develop custom Z report with the FM READ_TEXT to get the text information with the customer no ( object type KNVV and text id ). But for the additional information, what should be the actual logic for fetching the data. say if this FM is used, what should be the sequence of the logic and ideal selection parameters.
    In addition, we aim to use BAPI BAPI_CUSTOMER_GETDETAIL2 to fetch some of the customer ifnormation but many fields are not found in this . can we use some other bapi which can provide the complete general/sales data of customer ( delv plant, sales off, sales grp, custo grp, incoterms, payment terms etc)
    Kindly suggest accordingly.
    Many thanks in advance.

    Hi Dharmendra Kumar,
    I guess the best would be to check in ABAP General forum on the READ_TEXT sequence/ logic etc..
    For customer details, the available BAPIs are:
    BAPI_CUSTOMER_GETDETAIL
    BAPI_CUSTOMER_GETDETAIL1
    BAPI_CUSTOMER_GETDETAIL2
    However, you might have to check classes in SE24 to find any existing classes and its method yo give you all the information of a customer. Also check this thread: [BAPI for customer details like in IDoc DEBMAS;
    Regards,
    Raghu.

  • How can we fetch the information from standard ItemDetails iView of SAP MDM

    Hi Portal/MDM experts,
    Is there any chance to fetch the information from standard ItemDetails iView? if it is possible please tell me the process.
    If it's not, how can we customize the ItemDetails iView using java WebDynpro .
    my requirement is, I have to fetch some of information from itemdetails iview and it'll be used in other WebDynpro  application, means we have fetch some details from itemdetails iview and populate them in another application. Please suggest me the procedure to do this.
    Regards,
    Mahi.

    Hi Mahi,
    Please follow the below steps:
    1. Create the Result Set iView.
    2. Select the Custom Events button and Add the Custom Event
    3. Select Event Type=EPCF
    4. Give Event Name=EpfcTest and Namespace=urn:com.sap.tc.webdynpro.mdm.epfc.test
    5. Select the desired fields to be passed to the WebDynpro application and give the parameter name.
    6. Save the iView
    7. Create WebDynpro application and write the below code.
    public void wdDoInit()
        //@@begin wdDoInit()
    namespace = "urn:com.sap.tc.webdynpro.mdm.epfc.test";
    eventname = "EpfcTest";
    WDPortalEventing.subscribe (namespace,eventname,wdThis.wdGetCatchValueAction());
        //@@end
    public void onActionCatchValue(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String dataObject )
        //@@begin onActionCatchValue(ServerEvent)
    int marked=dataObject.indexOf("=");
    String value=dataObject.substring(marked+1);
    wdContext.currentContextElement().setCatchedValue(value);
        //@@end
    variable Data Object will contain all the Mapped fileds separated by ;. You can then use the String functions to separate the parameters.
    Regards,
    Jitesh Talreja

  • Custom Connection info from an XML file

    I am writing a class that implements OnBeforeChangeUserProfile PEI. I will connect to a database to verify information. I want to be able to load the connection information from an XML file so that I won't have to compile the code for different servers. Where would I put that XML file, is there a structure that I should use?
    Oguz

    You should be able to use a VarPack:
    http://www.plumtree.com/EnterpriseWebDevelopmentDocumentation/index.asp?pagename=UsefulToolsObjects/VarPack/Quickstart_VarPack_intro.htm

  • Where is the connection information stored for Mac Remote Desktop?

    I want to restore Mac Remote Desktop connection information from a Time Machine backup to a new Mac.  On the new Mac, I've installed Remote Desktop from the App Store and installed all the files found in
    ~/Library/Containers/com.microsoft.rdc.mac from
    a Time Machine backup.  But I don't see my old connections.  I also don't see any connection information in my Time Machine backup here
    ~/Documents/RDC Connections.
    Where is the connection information stored?

    The path is correct. You could try to get an console log during application launch. This log might give you information why the information is missing.

  • When I connect my iTouch to my PC (windows 7) an error message is displayed reading "iTunes was unable to load dataclass information from sync services. Reconnect or try again later".

    When I connect my iTouch to my PC (windows 7) an error message is displayed reading "iTunes was unable to load dataclass information from sync services. Reconnect or try again later". I have completely uninstalled and then reinstalled iTunes. I have also completely reset my iTouch to factory defaults. I have even followed all the advice provided previously to other forum member with the same problem. Nothing seems to work. Please help me someone.

    I'm getting the same problem with both my IPad 4 and iPhone 5
    Just started a few weeks back, Since then I have had two Itunes updates.
    Is this something Apple is aware of and trying to fix?

  • I connected my external hard drive to my new imac to put all of the information from my macbook onto it. i have been working on the macbook now and want to reconnect the external hard drive so my imac is updated with the work. How is that done?

    I connected my external hard drive to my new imac to put all of the information from my macbook onto it. I have been working on the macbook now and want to reconnect the external hard drive so my imac is updated with the work. How is that done? or is it possible?

    As I said, I don't use Time Machine, so it'd be best to wait for an "expert" answer, but, with my very limited knowledge, I'd say: probably not - so, for now, I'd suggest you read up on Time Machine:
    http://web.me.com/pondini/Time_Machine/Home.html
    http://support.apple.com/kb/index?page=search&src=support_site.home.search&local e=en_US&q=time%20machine
    And, you might be attracting more knowledgeable answers if you were to post this question in the Time Machine Forum (part of the Snow Leopard forums).

  • TS2529 iTunes was unable to load data class information from Sync Services. Reconnect or try again later is the error message I am getting when i connect my iphone 4 to my windows based computer. Any help out there?

    iTunes was unable to load data class information from Sync Services. Reconnect or try again later. This is the message when I try to connect my iphone 4 to my computer. If anyone could help me with this, I would appreciate it.

    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/ts1591

  • HT1369 hey, when I connect either my ipod or ipad to itunes I get the promt ' i tunes was unable to load data class information from sync services. Reconnect or try again later'. Can anyone help me with syncing my devices?? Thanks in advance

    Hey, when I connect either my ipod or ipad to itunes I get the prompt 'itunes was unable to load data class information from sync services. Reconnect or try again later. Can anyone help me with syncing my devices?? Thanks in advance

    I am having the same issue, anyone else ?

  • I have an ipod touch 5th gen and when connected to itunes i get a message saying itunes was unable to load data class information from sync services. reconnect or try again later. anyone got any ideas? i've tried most things on most forums but still no jo

    i have an ipod touch 5th gen and when connected to itunes i get a message saying itunes was unable to load data class information from sync services. reconnect or try again later. anyone got any ideas? i've tried most things on most forums but still no joy

    Try here:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    If not successful see the previous discussion on the right side of this page with the green checkmark.

  • Do not seem to be able to backup iPad via iTunes on to my PC. Message after connecting is "iTunes was unable to load class information from Sync Services, Reconnect or try later"  Have tried that but get the same result. Can anyone assist?

    Do not seem to be able to backup iPad via iTunes on to my PC.
    Message after connecting is "iTunes was unable to load class information from Sync Services, Reconnect or try later" 
    Have tried that but get the same result.
    Remedies I've tried are:
    wait and try again
    reboot
    reload iTunes
    NB hp is a relatively new machine and has previously backed up quite happily.
    Can anyone assist?

    RHoodnkt-
    Try rebooting the iPad.  Hold down both the Home and Sleep buttons for several seconds until the Apple logo appears.  Ignore the "Slide to power off" arrow.  It takes a minute or two to restart.
    Also be sure your iPad battery is not completely discharged.
    Fred

  • Cisco Unity Connection 8.6 not getting CLID information from CUCM 8.6

    Hello,
    Currently Running:
    Cisco Unified Communications Manager 8.6.2
    Cisco Unity Connection 8.6.2
    Problem:
    when any outside caller leaves a voicemail, the caller number information is not being sent to unity.
    example, I call with my cell phone, 817.555.1234 to my Cisco 7940 phone and it shows the CLID information that i am calling with. iDivert to voice mail, Leave a message. Playback message and just the default message information from Cisco Unity.
    we currently upgraded from CUCM 6.1.3 and Unity 5. before i could press 9 and get the caller information.
    I have viewed the "Playback Message Settings" and selected "After Playing Each Message, Play" and selected Sender's Information. and also selected "Include Extension and Sender's ANI"
    upon playing the VoiceMail after the message i get the default message "From Cisco Unity Connection Messaging System"
    I also have the message relaying to my E-mail and I get the same in the subject line.
    "Message from Cisco Unity Connection Messaging System (Unknown extension)"
    This tends to be a big deal with the Sales team as customers will call and say "Call me back"
    But any Internal Calls show the correct information, proper greeting, extension information even on the relay to e-mail.
    Any help will be appreciated.
    Thanks
    Tim

    Found another post that referenced Cisco Bug ID CSCti37610.
    CUC plays message is from Unity Connection Messaging system
    Symptom:Before message playback, Unity Connection plays the message is from Unity Connection Messaging System instead sender's ANI
    Conditions:Problem was observed on Unity Connection cluster and appropriate services are not rebooted after changing the SMTP domain name
    Workaround:
    Restart the Unity Connection servers
    It should have been fixed in 8.5 but we did change the SMTP domain name on 8.6 and now see the problem. Will schedule a reboot and see if the issue goes away.

Maybe you are looking for

  • How do I search for a keyword?

    How do I do the equivalent in Lightroom of the keyword search that's in Bridge? LR Find appears to be finding IMAGES that contain a keyword when I specify "Keywords" in the text find, rather than finding the keyword... What I'd like is to be able to

  • Which cooling pad should I get for my MacBook Pro?

    I have the mid 2012 Mac Pro (the $1500 one) and now it is going to get hot in my country.Like around 110F and it is 92 and my Mac is starting to get really hot.So I was thinking of which cooling pad I should get.

  • I want to configure my email live adress in my iPhone

    I'm trying to configure my email account in my iPhone but I couldn't. I try to make it with exchange and outlook. Could somebody tell me how I have to configure it my email address is live.com.mx

  • My Skype won't load.

    My skype just won't load, I click on it and it comes up and just says Skype and a picture of Clouds and Rainbows and what-not. On my task bar it shows the skype icon with a Offline mark next to it. I'm using windows and my Internet speed is fine.

  • How do I copy and paste text style for multiple video tracks?

    hello, I am creating multiple video tracks with text.  I want to easily copy and paste the style, i.e., Font, Color, Size - rather than having to scroll down the giant list of fonts to find the one I want, then change the color, then change the size