Can we use two Communication channels for one Interafce

Hi All,
Can we achive this in XI .
on basis of one value of field
If we get a value X=0  then use CC1
if we get a value X=1 then use CC2
for Single Interface.........
Regards

Hi Gangadhar,
i am working same scenario.
the scenarios is
Proxy->PI->JDBC
the condition is
IF Flag =0 it will sent to JDBC ,
IF Flag =1 it will sent to file and Mail
in mail it comes as a attachment.
I have achived this scenario using multi mapping in IR.
In ID  i have used one bussiness system as Abap related and one is Bussiness Service.In that Bussiness system i have assign two Communiction Channesl.
In Reciever determination u have to select STANDARD and assing the recievers.
In interface dermination u have to select ENHANCED.
Please do these steps u r scenario will work fine.
Thanks
Ravi

Similar Messages

  • Can I use two Time Capsules? one as an extension of my laptop (for music and video storage) and the other one to back up everything from the laptop and  Time Capsule (for music and videos)

    Can I use two Time Capsules? one as an extension of my laptop (for music and video storage) and the other one to back up everything from the laptop and  Time Capsule (for music and videos)

    Not via Time Machine.   It cannot back up from a network location.
    The 3rd-party apps CarbonCopyCloner and ChronoSync may be workable alternatives.
    EDIT:  And, if you're going to do that, you could back up from the Time Capsule to a USB drive connected to the TC's USB port.  Second TC not required.
    Message was edited by: Pondini

  • Can you have two iCloud accounts for one Apple id?

    Can you have two iCloud accounts for one Apple id?

    the appleID is you in the ios world if you have an iphone and an ipad and an Ipod touch and an appletv and a mac then you should use 1 appleID on all of them it does not mean the same data is on all of them unless you want it to be

  • Can i Use two qery hints in one SQL(Oracle)?

    Hi,
    Can i Use two Query hints in one SQL(Oracle)? USE_HASH and No_Merge
    Thanks

    user10916886 wrote:
    Can I use like
    /*+ USE_HASH(X,Y) NO_MERGE(X) */
    will this work?Not really: NO_MERGE relates to mergeable views, not base tables. So whilst the USE_HASH may result in a hash join between the tables X and Y, USE_MERGE will be ignored for X.
    As hoek says, however, HINTs should be a last resort only, and if they're to be used at all you're best to stay with those that don't involve explicit objects, like ALL_ROWS, FIRST_ROWS_10, etc.
    user10916886 wrote:
    Im my database, if i don't use query hints. The expalin plan uses Nested loops, hence the query takes a lot of time.You would be better trying the ALL_ROWS hint here, instead of USE_HASH.
    Edit
    The optimizer, however, will have chosen NESTED LOOPs where it did because it believed that to be the most efficient data retrieval path with the information that it had to hand. So, if your statistics are comprehensive and up-to-date, yet the optimizer is continually opting for the less efficient plan, there's something else wrong, and HINTs are only masking that problem in the short-term.

  • Can we use two costing variant for standard cost estimate

    Hi,
    Can we use two costing variant for standard cost estimate of two different materials in the same period ? e.g. Costing variant Z001 for Material code 1000 and Costing Variant Z002 for Material code 2000.
    Here the system is not allowing to change the costing variant in Marking Allowance (t code CK24) for marking and release of Material cost 2000 if the standard cost for Material code 1000 is already marked and released.
    Thanks,
    Bijay

    For a material in a period only one price can be released. Though you cn have two separate costing variants and then calculate standard estimate with that. U can release based on one variant only for a month. Or use MR21 and update the price as per the other variant
    Thanks and Regards

  • Can i use two apple tvs with one itunes account?

    can i use two apple tvs with one itunes account?

    yes and you can use more then 2
    just don't give them the same name

  • How can I use two differant iphones on one itunes

    I can i use two differant iphones on one itunes, and keep the content seperate?

    You can sync as many iphones/ipod/ipads as you like to one computer.
    Each is different and is recognized as such

  • Can we make two shipment cost for one outbound delivery

    Hi team,
    Can we make two shipment cost for one outbound delivery?
    Need your suggesstions.
    Regards
    Venkat Ramana

    Hi
    I do not think that you will get a reply now as it has been too long.
    Maybe the answer is not known.
    However as the forum is growing and it takes so much time to get through all of the pages it would be nice to keep it current so could you please close your thread and either re-open a new one (this might help as people are more likely to look at curret ones) or try another forum.
    This will make life easier for everyone
    Regards
    Frenchy.

  • Can i use two iphone user for a single apple ID to download apps from iTunes?

    can i use two different iphone for a single apple ID to download apps from iTunes?

    You can use as many iPhones as you want, there is no limit to the number of devices that can sync to an iTunes account.

  • How can I use two single-dimensional arrays-one for the titles and array

    I want to Use two single-dimensional arrays-one for the titles and one for the ID
    Could everyone help me how can i write the code for it?
    Flower
    public class Video
    public static void main(String[] args) throws Exception
    int[][] ID =
    { {145,147,148},
    {146,149, 150} };
    String[][] Titles=
    { {"Barney","True Grit","The night before Christmas"},
    {"Lalla", "Jacke Chan", "Metal"} };
    int x, y;
    int r, c;
    System.out.println("List before Sort");
    for(c =0; c< 3; ++c)
    for(r=0; r< 3; ++ r)
    System.out.println("ID:" + ID[c][r]+ "\tTitle: " + Titles[c][r]);
    System.out.println("\nAfter Sort:");
    for(c =0; c< 3; ++c)
    for(r=0; r< 3; ++ r)
    System.out.println("ID:" + ID[c][r]+ "\tTitle: " + Titles[c][r]);

    This is one of the most bizarre questions I have seen here:
    public class Video
    public static void main(String[] args) throws Exception
    int[] ID = {145,147,148, 146,149, 150};
    String[] Titles= {"Barney","True Grit","The night before Christmas", "Lalla", "Jacke Chan", "Metal"};
    System.out.println("List before Sort");
    for(int i = 0; i < Titles.length; i++)
       System.out.println("ID:" + ID[i]+ "\tTitle: " + Titles);
    System.out.println("\nAfter Sort:");
    for(int i = 0; c < Titles.length; i++)
    System.out.println("ID:" + ID[i]+ "\tTitle: " + Titles[i]);
    Generally you don't use prefix (++c) operators in you for loop. Use postfix (c++).
    Prefix means that it will increment the variable before the loop body is executed. Postfix will cause it to increment after.

  • Can I use two iPod touches with one computer?

    I have my iTunes library on my computer for my iPod touch but we got my daughter an iPod touch for Christmas. Can I use two iPod Touches and only one computer for both and yet still have different iTunes Libraries?

    Click here for options.
    (49891)

  • Can we use two pricing procedure for same sales area

    can we assign  two  pricing procedure to the same sales area
    please suggest

    hi all,
    i am facing a strange problem
    i m having some material which is under one division one distribution channel and one sale organization,and also the customer is same,but the customer some times taking the product for internal use of their company so they order it as general product and charging 4% tax on it
    and some times they are asking product as spare and the spare is rate is hihg ,the tax is 12.5%then additional cess and exice duty is there
    so the treat ment is totally different
    can any body help me to solve this
    shoud i make another division
    should i make another distribution channel shoud i use another pricing procedure
    should i use another order type to raise the order
    please please solve the problem
    now tell two pricing procedure will help or not???????????????
    regards
    subrat
    [email protected]

  • I want to use two analog channels and one digital simultaneo​usly

    Hello and thanks in advance for reading this!
    What I am trying to do is generate two different signals from the output channels of my interface card (PCI6024E) and simultaneously use a digital line so that I can switch two tranzistors (one NPN, one PNP) which actually control the "flow" of the two signals. This means that both signals need to be "active" while the VI is running and at the same time whenever I want to choose the signal not in use I need to use the digital line so that I switch the tranzistors and I get the desired signal.
    I have already created a VI which activates a digital line and while I was trying to add with the NI-DAQmx Assistant the first digital output, I discovered that it c
    ould not be used simultaneously, because there was the error code -200324 saying that "Device not available in NI-DAQmx. It is possible that the device is being used by Traditional NI-DAQ or that the device is being reset."
    I did reset the device but as I get it when VI runs, it cannot have an active digital channel and an analog output channel at the same time (not to mention two analog channels). Correct me (And make my day if I am wrong but this seems to be the case. Thanks a lot for your time!

    Hey Shootist000,  Thanks for the replies.  First off, I am actually okay if we both have each other applications so I am not concerned about that. It is still unclear from what you have said as to whether I can in fact, use these two separte time machine backup to create two separate profiles on the new hard drive.  If that in fact can be done, then - will it create two copies of the apps we both have in the ROOT of the drive as well as placing all the ones we each have separately?
    And reading your second reply, makes me think that maybe the partition is the way to go to begin with and then down the road - after I am in the new iMac, I could reformat the iMac 27 with only one partion and restore my son's latest back prior to the reformat thus giving him full access to the 2 TB of the drive.
    If this is still making sense, does this mean :
    replace the 1TB with a 2TB - but have it partitione - 1.5 TB & 500 GB.
    Install(Restore using Time Machine) my latest back up prior to the  1.5 partition
    Install (Restore using Time Machine) my son's latest back up prior to the 500 gig partition
    Lastly, in order for us both to be using the partioned computer - I am assuming Switch user can no longer be used - so would we need to restart and select our respective partions in order to use the computer?   And if so, how would we each be able to be using time machine to back up - two separte external hard drives - with each one dedicated to only one partition? Or ? 
    Thanks so much.
    Ironically, I am only trying to do this so that I don't need to manually install all his apps, setting, games, blah blah for this temporary period.  :-)

  • How can I use two screens to display one window

    Before Mavericks, MAC OS allowed you to use two screens (next to each other) in order to display one (big) window of one application.
    That would mean that a window would start on your left screen en would continue on the right screen.
    With Mavericks, however, this not possible any more. The window of the application can only be seen on ONE of the screens (i.e. the left one).
    Can any one tell me whether I've missed certain options or how to adjust my settings in order to get this feature back?

    Hey CGNL,
    First, if you haven't already, set up the displays as an extended desktop:
    Choose Apple menu > System Preferences, click Displays, then click Arrangement.
    Follow the onscreen instructions.
    Then, use Mission Control preferences to uncheck/turn off the option for "Displays have separate Spaces":
    Choose Apple menu > System Preferences, click Mission Control
    Uncheck "Displays have separate Spaces"
    That should enable you to stretch whatever window you want across multiple displays.
    via: OS X Mavericks: Connect multiple displays to your Mac
    http://support.apple.com/kb/PH13814
    and
    OS X Mavericks: Mission Control preferences
    http://support.apple.com/kb/PH13925
    Welcome to Apple Support Communities!
    Have a good one,
    Delgadoh

  • Can we use two costing variants for standards cost estimate release.

    Hi,
    We have 2 plants (plant 5100 and plant 5200) under company code 5000.
    We have run standard cost estimate(CK11N) for material 98001000027 at plant 5100 using costing variant ZG01 and at plant 5200 using costing variant ZG02. First, we released  standard cost estimate (CK24) for this materia at plant 5100 and set (in marking allowance) costing variant ZG01 and costing version 01. Next time when we are trying to release the standard cost estimate for the same material for plant 5200, it is automatically picking ZG01 as costing variant in marking allowance and it is not allowing to change the costing variant to ZG02 saying Company code 5000: Release already carried out, cancellation not possible, Message no. CK797.
    Is it possible to use two different costing variants for release of standard cost estimate for a material at two different plants at the same company code? If so how?
    Please suggest.
    Thanks,
    Bijay

    Hi,
    Thanks for your reply again.
    What is the benefit of assigning "Single Valuation Variant same to different Plants" ? In costing variant also we can assign maximum only one valuation variant and this valuation variant will default for all the plants, and hence I dont think it is necessary to assign same valuation variant to different plants.
    My  issue is :
    Example: ( Standard Cost Estimate for material 98001000027)
    Plant - 1
    Material Cost                                             Rs.100
    Labour Cost                                               Rs.50
    Overheads (10% of Labour Cost)                  Rs.5
    (say ,through costing sheet - 1)
    Total Standard Cost Estimate                      Rs.155
    Plant - 2
    Material Cost                                             Rs.150
    Labour Cost                                               Rs.100
    Overheads (20% of Labour Cost)                  Rs.20
    (say, through costing sheet - 2)
    Total Standard Cost Estimate                      Rs.270
    Now, Please explain why we cannot have two Standard Cost Estimates for a material at two different plants? If it is possible to have two standard cost estimates for a material at two different plants, how to take care of  overheads (rate of which varies) at two different plants (plant - 1 > 10% and plant- 2>20%) as we can assign maximum one costing sheet to a valuation variant variant?
    How to map the system so as to meet the above requirement?
    Thanks,
    Bijay

Maybe you are looking for

  • Recovering old data from DVD

    I have some interesting questions. I have among my back up discs a DVD that has one file on it that is a .sit archive that is 4.03 GB in size. Created back on 12/30/04 in either 10.2.8 or OS 9.2.2 and don't know what version of stuffit. I realize the

  • Output variable value (DBMS_OUTPUT.PUT_LINE)

    Hello, I just started using ORACLE and am learning about PL/SQL. My question is how do you output a variable? I am running the following in an SQL Worksheet, but I can't output the value: DECLARE v_Temp VARCHAR2(200); BEGIN v_Temp :='help me'; DBMS_O

  • Problem while populating RFC table into HTMLB tableView control

    Hi, We are trying to populate some data from R/3 into the front end. For this we are using tableView control in HTMLB. But the problem is, one particular field is behaving strangely where as all other fields are displayed correctly. This value is som

  • 'Determining Song Volume' crashes iTunes in Vista

    Hello all. I have just purchased a new Vista machine, and all updates are installed on it. My first app to install was iTunes but when I drag & drop music into the library, iTunes crashes. This also occurs whenever I restart iTunes. I have figured ou

  • Video in video

    I'm trying to work on a video art project where I can play multiple videos in one main window on sort of a grid where they all play together. I've tried picture in picture but that doesn't seem to work. Any thoughts out there and is this to complicat