XCBL in ABAP without XI or BC

Hi experts,
I have a serious problem with interfaces unification. I need to read a xCBL sent by a partner. How to read this xCBL in ABAP?. I understand wich need a XSLT program for transform this xCBL. I don't have the Know.How to create this XSLT, where I can found any information to create the XSLT program and read the xCBL in ABAP?
Best Regards.

Depending on your release the process is a little bit different. 
For NW 2004, see these instructions.
http://help.sap.com/saphelp_NW04/helpdata/en/bf/d005244e9d1d4d92b2fe7935556b4c/frameset.htm
For NW 7.0 see these instructions, in NW 7.0, you will, use the SOAMANAGER transaction  to configure logical ports and other stuff, this replaces transaction WSADMIN and LPCONFIG.
http://help.sap.com/saphelp_nw70/helpdata/EN/bf/d005244e9d1d4d92b2fe7935556b4c/frameset.htm
Regards,
Rich Heilman

Similar Messages

  • Can we create Interactive forms only with ABAP & without using GP,  or Java

    Hi,
    I would like to know if we can create Interactive forms only with ABAP & without using GP or Java. We want to develop an offline solution using Interactive forms, but would like to use only ABAP for creating the forms. All the documents so far either refer to creating the forms, in reference to / in sync with: ISR (Service Requests), GP (General Procedures) or Java. Can this be done with ABAP alone?
    Regards,
    Ramesh
    Edited by: Ramesh Nallabelli on Apr 16, 2008 12:02 AM

    Hello Ramesh,
    You should be able to create Adobe Interactive Forms using only the ABAP stack (without GP, Java, etc). Please refer to the thread below. Hope it helps.
    Re: help for-offline interactive forms based on sending receiving mails in ABAP
    Regards,
    Rao

  • SELECT ROWID using ABAP without Native SQL ?

    Hi All,
    is that possible to query Oracle ROWID from ABAP without using Native SQL ? Please advise.
    Thank You and Best Regards
    FL

    Since this is usually not relevant for application programming and also database specific, I'm fairly sure this information hidden by the DBI and you cannot access it via Open SQL, so native SQL seems to be your only choice.
    Thomas

  • Process to consume a WSDL file in ABAP without using XI

    Hi all,
    I want to know if we can consume a WSDL file in ABAP without using XI?
    I have developed a lot of web services and gave WSDL file to respective teams.
    Now i need to consume a WSDL file in ABAP and i dont know how to do it.For creating a web service i use the web service wizard in SE37.
    Now i need to consume a WSDL file in ABAP . The WSDL file is from a third party organization. how can i consume a WSDL file in ABAP without using XI. What is the process to consume a WSDL file in ABAP without using XI
    Please help me with process and some sample code to consume a WSDL file in ABAP without using XI
    Regards,
    Jessica Sam.

    Depending on your release the process is a little bit different. 
    For NW 2004, see these instructions.
    http://help.sap.com/saphelp_NW04/helpdata/en/bf/d005244e9d1d4d92b2fe7935556b4c/frameset.htm
    For NW 7.0 see these instructions, in NW 7.0, you will, use the SOAMANAGER transaction  to configure logical ports and other stuff, this replaces transaction WSADMIN and LPCONFIG.
    http://help.sap.com/saphelp_nw70/helpdata/EN/bf/d005244e9d1d4d92b2fe7935556b4c/frameset.htm
    Regards,
    Rich Heilman

  • Automate update profiles by abap (without PFCG)  ?

    Hi,
    I have a lot of roles to create and derivate by PFCG.
    I'd like to know if it's possible to use (or develop) standard Abap / function / Bapi to update directly values on fields authorizations from in external file, without PFCG neither CAT.
    Thanks a lot for your response
    Etienne

    Hi Etienne,
    You may try to take a look these BAPI group.
    ALE_JOBROLE_CLONE                                                      
    BAPI_CONVERT_DATA_FROM_AGR    
    Conversion of Internal Tables to BAPI Format  
    BAPI_CONVERT_DATA_TO_AGR      
    Conversion of Internal Tables From BAPI Format
    BAPI_JOBROLE_CLONE
    Create a User Role in Another System By Copying
    Hope this will help.
    Regards,
    Ferry Lianto

  • Printing lists in ABAP without using the standard button

    Dear community,
    i've got a little problem and I can't fix it on my own.
    Some user in our company gave me the instruction to extend an existing SAP Programmm with some defined functionalities.
    They want to implement an new button for printing in the gui status and when someone uses the buttons they want to count down a number and print the generated list of the report.
    I created also the new button in the gui status with a own functioncode and in the report i implemented an own AT USER-Command event:
    **&   Event
    AT USER-Command.
      CASE sy-ucomm.
        WHEN 'PRVR'.
          CALL FUNCTION 'PRINT_REPORT'
            EXPORTING
              report = sy-cprog
           EXCEPTIONS
             OTHERS = 99.
    When I push my own print button th reports jumps in the At-user-command event.
    The window for chosing the print properties will appear immediatly and I cn start printing.
    But only the spool-order will only appear when I leave the list-view with the button "back", "exit", or "cancel".
    Has anyone an idea why the output appears only when I go back to the selection screen?
    Can anybody tell me how to create an printing function to print out the list of an abap-report? I don't wnt to use the normal print-button!
    Many thanks in advance.
    Michael

    Hi Michael,
    sy-lsind is the list-id. If you set it to 0 or 1 it jumps (when using BACK)
    to the first output-list.
    Here a short demo-code to understand it.
    Make severeal time doubleclick in the outputline and
    look at the changing output.
    try it with:
    sy-lsind = 1
    and
    sy-lsind = 1.
    REPORT ZGRO_TEST1.
    data: dc type i value 1.
    START-OF-SELECTION.
      WRITE: / 'List:', dc, 'SY-LSIND:', SY-LSIND.
      HIDE:    SY-LSIND.
    AT LINE-SELECTION.
      dc = dc + 1.
    sy-lsind = 1.
      WRITE: / 'List:', dc, 'SY-LSIND:', SY-LSIND.
      HIDE:    SY-LSIND.
    Hope it helps.
    Regards, Dieter

  • Webservice Consumption from ABAP without XI

    Hi Experts,
    Im trying to consume a webservice which I got from ESB(IBM) team. Basically I got a wsdl file.
    First I have created a proxy from SE80 by uploading this wsdl file and I have activated sucessfully.
    Second from SOA Manager I have created Logical port for this wsdl file.
    Finally I wrote one ABAP program to consume webservice and got the return message.
    Now for this I have few doubts.
    1) Because I'm uploading WSDL file manually, in future if there is any change in the webservice do i need to upload new wsdl file again?
    2) In the wsdl file endpoints like URL will change from dev to qa and prod. If that is the case, from SAP how can we transport from dev to Quality to Prod?  Do we need to manually change those urls? How can we transport to different  servers?
    3)suppose I have uploaded 2 wsdl files. And in SOA manager I have created logical ports with the same name. Then in our program how can we call the right service as there are two logical ports with the same name?
    Appreciate your help .
    Regards,
    Ravi.D

    Hi,
    >1) Because I'm uploading WSDL file manually, in future if there is any change in the webservice do i >need to upload new wsdl file again?
    It depends of the changes. Suppose, one optional input parameter has been added in the wsdl, and you don't need this parameter from the client side. You would not need to regenereate the client proxy from the new wsdl. But if you want to play it safe, regenerate the proxy each time the wsdl is modified.
    It should not change every day !
    >2) In the wsdl file endpoints like URL will change from dev to qa and prod. If that is the case, from SAP >how can we transport from dev to Quality to Prod? Do we need to manually change those urls? How >can we transport to different servers?
    This is runtime configuration that you have to do manually in each system. It cannot be transported and should not as it would have no meaning.
    3)suppose I have uploaded 2 wsdl files. And in SOA manager I have created logical ports with the same name. Then in our program how can we call the right service as there are two logical ports with the same name?
    It would be a bad idea to create 2 different logical ports with the same name but if you do, thare will be no confusion because the logical port is defined for the client proxy.
    Regards,
    Olivier

  • Multi message to Proxy ABAP without BPM possible?

    Hi Experts,
    I am designing a scenario where my source is a flat file and the target SAP.
    According to the content of the file, we would like to group the data per company and then send the grouped data.
    The question is, is it possible to send data in a proxy per company? which means that we would have as many proxies as there are companies? without using BPM
    Thanks a lots,
    regards

    Hi Now i have the same requirement. As you said group the data by company code in the internal table and handle it, does not feasible to my requirement.
    I am doing material movements using proxies. Here for every loop i will call BAPI to do the material movements. Suppose there are 10 rows which are coming from XI and needs to do 10 material movements.
    First 5 loops successfully processed, but some functional error comes while executing the 6th loop. My proxy will throw the exception comes out of the process.
    By seeing the error record data in the exception, i have rectified the error. Now if i restart the proxy, the proxy will again try to execute from 1st row. But, first 5 th rows are already successfully processed.
    This shouldn't be the case in real time. How can i overcome this?
    If i get the proxy data row by row, then it would be more beneficial to me to handle.
    How can we the message split possible using enhanced interface determination in the Proxies.
    Could you post the solution, if anyone has?
    Thanking you,
    Regards,
    Krishnaraju.

  • Is it possible to call an external web service using ABAP?

    Hi~~
    I wonder that is possible to use an external web service in SAPGUI using ABAP without PI ( Process Integraion ).
    The external web service means the service that is developed by web-language like ASP.NET.
    Thank you.

    hi,
    i'm trying to study on how to use the oracle bi publisher using another client application aside from oracle. the client application is custom and uses a .Net framework. unfortunately, i am not familiar with how .Net sends requests to oracle bi publisher so i was thinking that may be i can just create oracle pl/sql stored procedures that can send this requests over to bi publisher.
    p.s. when you said concurrent manager, i'm not sure if you are referring to oracle apps concurrent manager but if you are, unfortunately i won't be using oracle apps with bi publisher.
    thanks
    allen

  • XI with ABAP stack only ?

    Looking at some very annoying problems with the XI Java Stack and applications (stability, memory consumption), following question comes to mind:
    is it technically possible to run an XI system without the Java stack ? How much functionality do we have in there, can we do customers projects with that ?
    In ABAP stack, we have the following functions:
    - Business Process Engine
    - Integration Engine
    - HTTP Adapter
    - IDoc Adapter
    - ABAP-Mapping (XSL or handmade)
    also, we have of course the functionality of using File/FTP,Mail in ABAP. This means the most important adapter types are available in ABAP (without needing the Java adapter engine).
    Of course the Integration Builder is not available then. But do we really need it ?? Same applies for the SLD.
    Are the pipeline objects (receiver determination, interface determination and so on) stored in the ABAP stack ? I assume that is the case. Does ABAP stack contain the XI message type objects ? Or is that stored in Java ?
    Anyone tried that path ? Is it already failing in the installation because some core XI ABAP components require Java parts ? Or would it work ?
    Of course the answer depends on "what do we define to be XI". For me it is the core integration engine with the pipeline architecture plus mapping and proxy extension points. Everything else (e.g. tools) needed can be built around it.
    Customer benefits would be: focus on ABAP only (Java knowhow not needed), easier administration and more stability.
    CSY

    Hello Jaishankar,
    > there is no transaction to replace Visual Admin (NWA from >PI7.1) functionality.
    question: suppose we are not using the J2EE stack of XI, do we need the NWA ? Does NWA also contain important functions which control/configure the ABAP stack ?
    >I would say Java and ABAP stacks are very tightly coupled >to each other and it would take ages to understand how >tightly it is coupled.
    this would be quite bad design then. But you may be right. Current cross-calls from ABAP to Java I know:
    - call Java-Mapping from ABAP pipeline. If we do not need Java mapping, this call is not needed. In ABAP, we have ABAP and XSLT mapping options
    - other ? What else ? I am talking about runtime execution (pipeline), not designer tools
    >For example XI is a client of SLD which runs on Java stack, >how do you think you can replace the functionality of SLD via
    yes. But what does XI need from SLD ? Business systems, target transports, ok. It's a handful of objects types which can easily be maintained in the ABAP stack also. For customers which are using the SAP portal or other Java components (apart from XI), of course, that makes no sense. But for smaller customers which do not use portal: for what do they really need that SLD ? I have seen one customer recently who didnt know about the transport targets and so maintained the IR objects on the productive system manually. More an education issue, but it shows a bit that the SLD for some customers is overkill.
    >improvised and will be done in the future versions. The long >term plan is to make XI a complete Java based tool. All the >developers tools will be accessed via NWDS in future"
    yes, I heard that also, and it is very interesting in fact. We will see what happens
    thanks for your input,
    CSY

  • Data Maintenance Web Dynpro ABAP versus Classic ABAP

    I am working on a project where I will have to create a couple of custom master data tables. In classic SAP it is very easy to create standard table maintenance screens for master data via transaction SE54 where you can assign an authorization group for security purposes if necessary. Although we very much like Web Dynpro ABAP development, I cannot find an easy way to create the same userfriendly table maintenance screens as we know them in classic SAP.
    That's why I am a bit in doubt: on the one hand we want the web look and feel, but on the other hand creating the maintenance functionality in classic sap is very simple and straight forward. Whatever the solution will be, classic or not, it will become part of a portal someday. I know both solutions can be linked to a portal so that's no decision maker in our case.
    Does somebody have any idea if there is something available for generating standard data maintenance screens in Web Dynpro ABAP without the need for a lot of additional coding? Basically I am looking for a web dynpro replacement for transaction SE54.
    Looking forward to your thoughs!!
    kind regards
    Angelique Heutinck
    IFF

    Hi Angelique Heutinck  ,
                                       Webdynpro abap is a screen design interface, as module pool, in module pool development we can only desigh screens, similarly in wda is also intented to design screen that are web enabled,
    while in classical abap we have the povision to call a transaction from a screen, while in wda, we have the provision to call another screen or view, but not a transaction.
    unfortunately we cant embedd a tranction inside a wda development, so the only provision to simulate SE54 in wda is to create screens manually.
    Regards
    Sarath

  • ABAP Web Service with tables

    Hello,
    <br>
    <br>
    We need to build a web service with a predefined message in our ERP (ABAP), without PI or WebAS JAVA.
    <br>
    <br>
    We thought it should be a simple task, because we had no problem with many other applications and systems when building the same service, but were not able to build it with SAP ABAP, probably as a consequence of our lack of knowledge on ABAP SOAP runtime.
    <br>
    <br>
    We have an external asynchronous process that delivers information to many other systems using web services (information diffusion). Concecuently, the web service call's structure is determined by the caller, so we have to fulfill this structure if we want to receive the info.
    <br>
    <br>
    The owner of the process defined a very simple service call, in which one kind of  "record" can be repeated 1 to n times:
    <br>
    <br>
    <br>
    <br>
    <br>
    <br>
    &lt;reglasSuscripcion&gt;
    <br>
                &lt;!Zero or more repetitions:&gt;
    <br>
                   &lt;nombre&gt;?&lt;/nombre&gt;
    <br>
                   &lt;valor&gt;?&lt;/valor&gt;
    <br>
                   &lt;nombre&gt;?&lt;/nombre&gt;
    <br>
                   &lt;valor&gt;?&lt;/valor&gt;
    <br>
                   &lt;nombre&gt;?&lt;/nombre&gt;
    <br>
                   &lt;valor&gt;?&lt;/valor&gt;
    <br>
    <br>
                   &lt;nombre&gt;?&lt;/nombre&gt;
    <br>
                   &lt;valor&gt;?&lt;/valor&gt;
    <br>
    &lt;/reglasSuscripcion&gt;
    <br>
    <br>
    <br>
    In order to receive this info, we have to implement an abap web service handler to accept this kind of call, the same way other applications/systems have already done.
    <br>
    <br>
    We tried to build a RFC function call and create a web service with the wizard and it resulted in a web service with the following WSDL:
    <br>
    <br>
    &lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:sap-com:document:sap:soap:functions:mc-style"&gt;
    <br>
    <br>
    <br>
    <br>
             &lt;reglasSuscripcion&gt;
    <br>
                &lt;!Zero or more repetitions:&gt;
    <br>
                &lt;item&gt;
    <br>
                   &lt;nombre&gt;?&lt;/nombre&gt;
    <br>
                   &lt;valor&gt;?&lt;/valor&gt;
    <br>
                &lt;/item&gt;
    <br>
    <br>
    <br>
    <br>
    &lt;item&gt;
    <br>
                   &lt;nombre&gt;?&lt;/nombre&gt;
    <br>
                   &lt;valor&gt;?&lt;/valor&gt;
    <br>
                &lt;/item&gt;
    <br>
             &lt;/reglasSuscripcion&gt;
    <br>
    <br>
    <br>
    <br>
    We found two main problems:
    <br>
    <br>
    1.- When "wrapping" the RFC as a WS with the wizard, for a table datatype it automatically includes the <item></item> tag, so we break the predefined calling rules.
    <br>
    <br>
    2.- The namespace is fixed by the wizard, and we would like to use a common namespace for all the "susbscribers", logically, the namespace fixed by the information diffusion service.
    <br>
    <br>
    We also tried to find info on the outside-in approach for building a web service from the WSDL, but all the info we found required the ESR and we have no PI, just the ERP.
    <br>
    <br>
    Any ideas on how to proceed?
    <br>
    <br>
    Thanks in advance,
    <br>
    <br>
    Joseba M. Iturbe
    <br>
    <br>
    Edited by: Soporte Desarrollo on Mar 5, 2010 10:56 AM

    #2.  I've recently had to "zap" some namespaces in an ECC5 system because the calling (TIBCO) system didn't appreciate the default SAP "urn" default - something to do with multiple colons in the address.  There were, I think, just three table this affected, all VEP* ones.  I think I should have been able to change these via the virtual interface in SE80 except that the ECC5 code was a bit "light" in this respect, so you may be able to do this now in SOAMANAGER in ECC6 (btw,  I also had to re-save the WS definition within WSCONFIG and re-activate the virtual interfaces after this "zap" to generated the associated handler class again).
    #1. Given your "name / value" pairs represent a complex type, then it might be better practice to have them as "item" which is probably why SAP proposes it this way... what does your custom function module parameter list look like?
    Jonathan

  • Can you do webreporting with WAS6.40(only ABAP stack)

    Hi gurus,
    I have one question:
    Is it possible to do webreporting with a WAS6.40(only abap)without a java stack. Only the ABAP stack is installed.
    So design/publish reports with the BEx Web Application designer
    Thanks for your reactions in advance.

    Hi,
    Till BW Version 3.5 it should be possible because the Webreporting Enviroment is fully written in ABAP.
    In BI 2004s i know that same things are written in Java, so i think it will not work.
    Regards
    Marcus

  • How to start working in ABAP

    Hi,
    I have a friend who is a Singapore PR.
    She worked in non-SAP in IT for the past 10 yrs.
    Recently she learned ABAP(not certified).
    She dont have the experience working in a company.
    she has ABAP knowledge and can do the job.
    How can she break into the market? Will anyone share your experience how you started working in ABAP without the experience.
    Thank you so much for your reply.

    I too beleive that if you are having about 10 years of experience as an IT guy , then definately one would have developed that understanding of the function as well .
    In ABAP what i have experienced is that if you are having that business clarity or fucntion knowledge the you would think in a more effective way as compared to a newbie . As you would be aware what the problems coule be and what new would cropp in over a period of time .
    As a fresher yes you can start in ABAP but it would make your friend diffrent from the masses based on his 10 years of experience .
    Good luck .....

  • Are ZCI interactive forms available via Web Dynpro for ABAP?

    Note 955795 talks about ZCI forms available via Web Dynpro for Java. Is this kind of forms also available via Web Dynpro for ABAP?.
    Do ZCI interactive forms work via Web Dynpro for ABAP without the need of ACF?
    If available, which support package levels are required?
    Regards

    Hi Mahamed,
    I got your problem. You have not done anything wrong.
    It is WebAS version which is not supported for this functionality.
    But there is solution to this problem
    Please refer to the SAP Note number - 1055738.
    I think you will get the answer and the scenario described there will match your requirement.
    This is a know issues with WebDypro ABAP but this works fine for Java Web Dynpro.
    I have also tried for 2 months but finally came to know about it.
    Regards
    Satya

Maybe you are looking for

  • Can't Install iTunes 10.6.1 on Windows 7 64-Bit

    I've tried repeatedly. The installation verifies, unpacks, and then installs to approximately 60% and then -- nothing. I can wait for twenty minutes and there's no further progress. Meanwhile, the entire system has slowed to a crawl and has become to

  • Bug in Report Buider (anybody solve it?)

    We are facing a problem with Oracle Developer Report Builder 6.0.5.28.0 . The Problem is as Follows. When we print a report from the previewer of a character mode report it is giving a GPF error and we are unable to print the Report but if the report

  • No update Camera Raw for CS5

    The only update of Camera Raw for CS5 was ver 6.7.1 in Mid 2013 but the Nikon Df wasn launch in Dec last year.  Adobe did not update the file therefore my Creative Suite 5 could not see the new NEF file unless I use DNG Converter to change to DNG fil

  • Maximum value of Processes in Oracle 11g

    Hi, In our application, we do get the following error frequently. ORA-12516, TNS:listener could not find available handler with matching protocol stack When i searched about it, I learnt that the processes /sessions used might be exceeded. So, I'm tr

  • How to compile to version 1.0?

    I want to compile for version 1.0 (IE Browser, etc.). But my javac SDK 1.5 only compiles for newer versions? So is it impossible to comple Applets???