XI Basis Samples

hi friends,
  I heard XI provided some Examples  Scenarios in Integration Repository.
In which SWCV we can find this
Please give me the path.
With Regards,
Raju.

Hi Raju,
In XI we have a SWCV named as SAP BASIS (mentioed in earlier replies as well) which is the required SWCV to work with IR. This is the default component and contains detail about amny things which includes Adapter details as well.
If you expand this SAP BASIS SWCV, here you will find some sample examples.
Also check this for Demo examples in XI:
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d46b9b90-0201-0010-ef92-9964c1bc98e1
Reward if helpful. *
Regards,
Subhasha Ranjan

Similar Messages

  • Base sample Quantity

    Dear Experts,
    While creating Inspection plan system is not allowing to enter more than 3 digits of the sample base quantity in the inspection characteristics overview screen . What is the maximum number of digits we can enter .
    Thanks.

    Hi SAP LOVER,
    This is SAP STD you can't change.

  • Edit ORACLE-BASE sample

    Hi guys!
    I've important Request....
    I've recently read an article posted to me in other post:
    http://www.oracle-base.com/articles/9i/ConsumingWebServices9i.php
    This Web Service no longer works....
    And i'd like to edit it in a way to be working with another one
    lets say:
    http://www.webservicex.net/WeatherForecast.asmx?op=GetWeatherByZipCode
    Here's the code edited by myself (doesnt work)
    CREATE OR REPLACE FUNCTION get_stock_price (p_stock_code IN VARCHAR2)
    RETURN NUMBER
    AS
    l_request soap_api.t_request;
    l_response soap_api.t_response;
    l_price NUMBER;
    BEGIN
    -- Set proxy details if no direct net connection.
    --UTL_HTTP.set_proxy('myproxy:4480', NULL);
    --UTL_HTTP.set_persistent_conn_support(TRUE);
    -- Set proxy authentication if necessary.
    --soap_api.set_proxy_authentication(p_username => 'myusername',
    -- p_password => 'mypassword');
    l_request := soap_api.new_request(p_method => 'GetWeatherByZipCode',
    p_namespace => 'xmlns="http://www.webservicex.net"');
    soap_api.add_parameter(p_request => l_request,
    p_name => 'symbol',
    p_type => 'xsd:string',
    p_value => p_stock_code);
    l_response := soap_api.invoke(p_request => l_request,
    p_url => 'http://www.webservicex.net/WeatherForecast.asmx?op=GetWeatherByZipCode',
    p_action => 'GetWeatherByZipCode');
    l_price := soap_api.get_return_value(p_response => l_response,
    p_name => 'Result',
    p_namespace => 'xmlns="http://www.webservicex.net"');
    RETURN l_price;
    EXCEPTION
    WHEN OTHERS THEN
    RETURN NULL;
    END;
    hEHE didnt change even the function name - cause im lazy...
    Anyone could help ? Please it very important
    With regards
    PsmakR

    Well, your almost unmodified procedure has a lot issues, the biggest showstopper is, as others already pointed, the silly exception handler, preventing your from seing actual exception thrown. Following works for me:
    SQL> create or replace function get_weather_info(p_zip_code in varchar2,p_info_detail in varchar2)
      2    return varchar2 as
      3    l_request  soap_api.t_request;
      4    l_response soap_api.t_response;
      5    l_price    varchar2(2000);
      6  begin
      7    l_request := soap_api.new_request(
      8      p_method    => 'GetWeatherByZipCode',
      9      p_namespace => 'xmlns="http://www.webservicex.net"');
    10
    11    soap_api.add_parameter(
    12      p_request => l_request,
    13      p_name    => 'ZipCode',
    14      p_type    => 'xsd:string',
    15      p_value   => p_zip_code);
    16
    17    l_response := soap_api.invoke(
    18      p_request => l_request,
    19      p_url     => 'http://www.webservicex.net/WeatherForecast.asmx?op=GetWeatherByZipCode',
    20      p_action  => 'http://www.webservicex.net/GetWeatherByZipCode');
    21
    22    l_price := soap_api.get_return_value(
    23      p_response  => l_response,
    24    p_name      => p_info_detail,
    25    p_namespace => 'xmlns="http://www.webservicex.net"');
    26
    27    return l_price;
    28  end;
    29  /
    Function created.
    SQL> select
      2  get_weather_info('72201','Latitude') Latitude,
      3  get_weather_info('72201','Longitude') Longitude,
      4  get_weather_info('72201','PlaceName') PlaceName,
      5  get_weather_info('72201','StateCode') StateCode
      6  from dual
      7  /
    LATITUDE        LONGITUDE       PLACENAME       STATECODE
    34.74834        92.28194        LITTLE ROCK     ARBest regards
    Maxim

  • GRPO/Sales for Sample items

    Hi,
    Please advise for GRPO conditons for Sample Items ( FOC Basis Samples received from Suppliers) and How to send Samples to our Customers in SAP Business One 9.0

    Hi,
    Create GRPO as zero value from supplier and store it in separate warehouse like sample
    warehouse (if item cost managed by warehouse). You can selnd the same item to your customer from
    the same warehouse and then u can close the document status if not receive the item again from the
    customer. Or if you receive the item from customer then u can use return document against that
    delivery.

  • What are the things we can do through BASIS?

    Hello everybody,
    I am newcomer in basis, I wish to know the some of the basic
    questions such as,
    what are the things we can do through basis?
    what are the basis components?
    How the basis components are actually works?
    Thanks & Regards,
    Rajesh

    Hello,
    Check these threads on BASIS:
    basis info...!
    New in SAP Basis
    XI Basis Samples
    Note:Points always encourage me to reply !!

  • Issue with Java Mission Control 5.3

    I see the following issue when using Java Mission Control 5.3 - the text area that appears in the Method Profiler section of the Code => Call Tree tab accepts text for filtering purposes. However, the filtering is seen to be applicable only to the top level nodes. For e.g., I am unable to search for a certain Java package name (or its part) that I know exists deep down in the stack trace. Is there a way to search for text that appears in lower level nodes? I find that the search does not work even if I expand the tree using the Expand Subtree option. Thanks for any insight.

    I also have this issue on 5.3. It is very difficult to do even a basic level of profiler analysis. The tool is ok at finding big watermelons (CPU cost or memory allocations), but when you want to drill in and see any more detail, it becomes quite painful. Best case is that I would be able to "swim" through the profile data, moving easily from method-to-method, and see the recorded sample counts in a base (samples in this method itself) and cumulative (samples in this method and all called methods) fashion. The indentation in the tree view can be painful. I would suggest a more simplified view as an option,
    PARENT (callers) methods, full names and cumulative sample counts (percentages would be nice as well)
    SELF (called) method, full name and cumulative sample counts (percentages would be nice as well)
    CHILD (calles) methods, full names and cumulative sample counts (percentages would be nice as well)
    Clicking on any row in the above immediately makes that method become the SELF in the view.
    Also, I should be able to enter the class/method name into some text box above this view and easily get into the data for the method. With the current tool, there is no way to quickly go to the data for a specific known method.

  • Issue with java

    hi, since i updated to version 10 of ff i have been getting an issue with a chat site that uses java, not sure if its an issue just with this site, or if its java related since updating to 10, maybe its just good timing with the update.
    anyway the issue i am having is i can use the actual chat site fine, when i go to any of my other tabs though, i.e facebook.. i then cannot click into sections where i can click my mouse and type, say in a chat window on facebook or the url bar, they all freeze, the page is useable apart from not being able to type in any box.
    what i found was if i try to click in a text box on facebook, nothing shows yet if i tab back to the chat site thats using java, what i tried to type on facebook is in the chat box on the java site.
    not sure if i have explained that well enough, i hope i have.
    does anyone know if this is an issue with ff or the chat site using java?
    the site is: http://www.ukchatterbox.co.uk/

    I also have this issue on 5.3. It is very difficult to do even a basic level of profiler analysis. The tool is ok at finding big watermelons (CPU cost or memory allocations), but when you want to drill in and see any more detail, it becomes quite painful. Best case is that I would be able to "swim" through the profile data, moving easily from method-to-method, and see the recorded sample counts in a base (samples in this method itself) and cumulative (samples in this method and all called methods) fashion. The indentation in the tree view can be painful. I would suggest a more simplified view as an option,
    PARENT (callers) methods, full names and cumulative sample counts (percentages would be nice as well)
    SELF (called) method, full name and cumulative sample counts (percentages would be nice as well)
    CHILD (calles) methods, full names and cumulative sample counts (percentages would be nice as well)
    Clicking on any row in the above immediately makes that method become the SELF in the view.
    Also, I should be able to enter the class/method name into some text box above this view and easily get into the data for the method. With the current tool, there is no way to quickly go to the data for a specific known method.

  • How can i compare two color images in vision builder for AI?

    What i want to do is to compare two images. I have a base color image that represents the desired colors and tones. I have another image to be compared to the base image. What i want to do is to compare this two images to know how close they are regarding contents of color and tones. In other words, i want to know how close is image 2 to image 1 (base sample)....
    I would like to know how to get the content of certain colors in an image and then compare this values with the same values from another image.
    For example..i have two sheets of paper that contain various mixed colors...i want to know the amount of green, red an blue in each image and then comapre this values.
    What i want to do is to compare difer
    ent samples of fabrics. this fabrics must be of a specified color...but due to the process they may vary in tone or even color...so i want to compare this fabrics to a amster sample to see how close they are in color and tone..
    Anything would help since i dont have experience in this type of comparisons...thanks

    VBAI allows you to work with grayscale images only. You can acquire an image, use the vision assistant to convert it grayscale by extracting the luminance plane (or any of the other color planes) and then analyze the resulting grayscale image. To do what you are talking about, though, it would really be better to get Vision for labview. You could then take color images, compare color plains, use statistical functions to determine average color values, and so on.

  • Decimal places display at the time of results recording

    Dear All,
    Please i faced one problem, At the time of results recoridngi/.e,
    In my insp. plan i defined Quantitative specification as 70.0 with '1' decimal place in Qunatitative data. but after results recording it displaying one more decimal place excessi.e., as 70.00. How can i solve this problem, due to what this problem is occure. Please if any, solve its urgent.
    Regards,
    Vijaya

    Dear Vijaya,
    While entering Inspection Characteristics.. There is a field called DecPlaces on the right. its the  24th field on the item table.
    The field comes after
    Method, Insp Method plant, Version, Sampling Procedure, Sample Unit of Measure, Base Sample Quantity, SPC Criterion, Modification Rule, Test Eqpmt, Test Equip Short Text, Par Sample, DecPlace, Unit of Measure, Target Value, Lower spec Lmt, Upper Spec Lmt... and so on...
    Regards
    Vijay

  • Brush size visualization

    Hi all,
    I don't know if this is new in CC or if there is a setting somewhere ( I am coming from cs3 to cc). How would one get the colored (red) brush sizing when alt-right clicking to change the brush size? Mine just shows the black ellipse outline, not the gradient edges for the brush. I am on a Mac with an Intuos pro.
    Thanks.

    The shortcut Alt + right click + drag left or right is the windows shortcut.
    On a mac it would be Ctrl + Option + Left click + drag left or right
    A couple things to note:
    1. Use graphics processor needs to be checked under Photoshop>Preferences>Performance>Use Graphics Processor
    2. The colored preview with either windows or mac, using the above shortcuts, only works with the default round brushes (brushes that the hardness can be adjusted) or presets made using the default round brushes as a base
        Sampled Brushes won't show the colored preview.

  • No Review Workflow for BCC Projects

    Hi
    I want some inputs about the best way to setup Zero step or a No review Workflow in ATG BCC so any projects assigned to this workflow will get published to any targets configured till Production with out any user intervention. I do not need any Review or Approval in my case?
    Let me the know the best way to achieve this any limitations or implications?
    Thanks

    ATG has given the workflow which pushes the project all thru production without user intervention C:\ATG\ATG10.1.1\Publishing\base\sample-code\config\atg\registry\data\epubworkflows\Content Administration\
    You can use these workflows by copying into your module.
    Peace
    Shaik

  • ROWNUM in UNION operator

    All,
    I have a requirement in SQL that I have to number each row. Hence I thought of using ROWNUM. But the sql query I'm using uses UNION operator. Hence I used like this
    select a,b,rownum as 'field1' from table1
    union
    select c,d,1 as 'field1' from table2
    Will the above query solve my purpose?
    thanks
    sen

    jeneesh wrote:
    This will probably kill the purpose of UNION - which is to take only the DISTINCT rows..
    If DISTINCT is not intended, it is better to choose UNION ALLYes, you are correct about use of UNION. Probably, OP would have wanted to use Union ALL perhaps, but might have forgotten about suppressing of duplicates and sorting and ended up using Union.
    But, in accordance with the original query used by OP, my suggestion of row number would not affect the output, I guess, would it?
    Perhaps, if OP would have provided us with some base sample data and the Output desired from it, it would have been of greater help.

  • Automated Interval

    Hi
    I have source data like
    DATETIME Amount Country
    8:30 10 SIN
    8:45 20 SIN
    9:00 30 SIN
    8:30 40 IND
    8:45 50 IND
    9:00 60 IND
    Have dashboard prompt Country(Multiple selection)
    When i select SIN in prompt i should display
    based on 30 min interval
    so i used time add function.
    TIMESTAMPADD( SQL_TSI_MINUTE , CASE WHEN EXTRACT( MINUTE FROM CSM.TableA.DATETIME) < 30 THEN 30 - EXTRACT( MINUTE FROM tableA.DATETIME) ELSE 60 - EXTRACT( MINUTE FROM CSM.TableA.DATETIME) END , CSM.TableA.DATETIME)
    When i select IND
    i should display as it is.Not any add on function
    How will do this

    Hi,
    Pricing values are already versioned, so you can manage then just with a BCC project.
    About inventory, the InventoryRepository are not versioned, but you can change the repository definitions to make inventory versioned (and then manage with BCC project).
    About automated projects, ATG has a sample code to start this feature. It is located at: ATG_FOLDER\Publishing\base\sample-code\ca-import-sample-code.jar\ProgramaticImportService.java
    Hope it helps. Bye.

  • BCC project creation through code and update sku properties

    Hi,
    I want to create a BCC project through my code and want to update some sku properties.
    Can someone please let me know how can it be possible?
    Please help me out.
    Thanks,
    Gaurav Agrawal

    Hello!
    If you look at $ATG_ROOT\Publishing\base\sample-code there is a ca-import-sample-code.jar file.
    This file contais .java files explaining how to create a project and auto-approve them, and .properties files for the components.
    It is really simple to use and understand.

  • Resumes

    Hi can any one send BASIS sample resumes to this id
    [email protected]
    thnaks in advance

    Hi
    Behind my answer u  get the 3 options like,
    Solved problem (10)
    Very helpful answer (6)
    Helpful answer (2)
    If u r problem solved then give 10. If it is useful for question then give 6. Other wise it is give  the route then give 2.
    Pls provide according to u.
    venkat.

Maybe you are looking for

  • No Success re-installing iTunes on my Dell PC

    Hi,  I have been trying to install iTunes on my Dell pc. I DID have iTunes installed and running on this computer.  I got an update notice that Version 11.1.4 is available to download, so I downloaded it. After downloading 11.1.4, I got two error mes

  • Crystal Report 8.5 with SQL SERVER 2005 problems

    Post Author: AREVA CA Forum: Data Connectivity and SQL Hi All !We have some problems with Crystal Reports version 8.5 with SQL Server 2005: 1) When we want to generate a report (using data in SQL Server 2005) we have a popup message error : "impossib

  • Applet / SQL Database communication

    I am developing an applet that needs to connect to a SQL Database to keep track of a variety of information. I am running into some errors when I try to connect to the database. Can anyone tell me the best way for an applet to connect to a SQL databa

  • Where can i get wiri

    my creative sound blaster audigy w external breakaway box comes with a 7 foot 45 pin hole and sb 394 fire wire. this thing is way to big and combersome for anything. (its so heavy and thick it pulls the breakaway box to the ground from on top my towe

  • Can't load apps on my older I pad

    I have an older I pad I bought used. I loaded credit into I tunes on a prepaid card. When I enter the apps store I try to download something free such as a calculator. It asks me to sign in. I then select the app and hit install . The desktop appears