Please Explain how to use extensions..

We are using Agile D2R PIP, we do have some cutomizations. to enable the Extensions, we need change the following extensions to True.
<Property name="ABCSEXTENSION.PREPROCESSABM">false</Property>
<Property name="ABCSEXTENSION.POSTPROCESSABM">false</Property>
<Property name="ABCSEXTENSION.PREPROCESSEBM">false</Property>
<Property name="ABCSEXTENSION.POSTPROCESSEBM">false</Property>
My question is to extend the Provider ABCS service, i will prefer set true for PREPROCESSEBM and POSTPROCESSABM.
But In Environment A we have the properties like below
<Property name="ABCSEXTENSION.PREPROCESSABM">false</Property>
<Property name="ABCSEXTENSION.POSTPROCESSABM">true</Property>
<Property name="ABCSEXTENSION.PREPROCESSEBM">true</Property>
<Property name="ABCSEXTENSION.POSTPROCESSEBM">false</Property>
In Environment B the properties are like below,
<Property name="ABCSEXTENSION.PREPROCESSABM">true</Property>
<Property name="ABCSEXTENSION.POSTPROCESSABM">true</Property>
<Property name="ABCSEXTENSION.PREPROCESSEBM">true</Property>
<Property name="ABCSEXTENSION.POSTPROCESSEBM">false</Property>
But the functionality on both Environments is same. Can you please explain me how really extension processes works in the two cases..?
Thanks
SK

Please refer to:
http://docs.oracle.com/cd/E20713_01/doc.11112/e17364.pdf
13.1.2. Introduction to Enabling Provider ABCS for Extension
http://docs.oracle.com/cd/E23549_01/doc.1111/e17363/chapter06.htm#BABEAIFG
6.5 Process Extensions
As 'ABCSEXTENSION.PREPROCESSABM' is different, compare input/output payload of ABCS extension service in both environment for the difference.
Also check PreprocessABMSequence in ABCS and what's done inside your ABCS extension service.
What's the Prov ABCS service you r referring to?
Regards,
Faiz

Similar Messages

  • Iphone 6 3 UK please explain how to use internet while not using wifi

    when i bought my iphone 6 i placed my sim in to my phone from my previous blackberry. i have credit but no plan as im on pay as you go. despite not having a plan i still have internet when i turn mobile data on when im outside my house. it doesnt work well so can anyone explain how this works if there taking money from my credit and the best plan for me internet wise thanks

    How do I ask a question on the forums?
    SQL and PL/SQL FAQ
    interesting code.
    so what exactly is your problem?

  • Please  explain how to use JarURLClassLoader?

    If you can please give an example.
    I want to know how to load classes from jar files and invoke them.

    You don't NEED to... that class is used internally by the JVM so don't care about it in your applikation. To test what I'm now saying do like this:
    Copy this class, compile it and put it into a jar-file. My jarfile was in the dir D:\javaforum\testmain\test.jar
    package lime.test.frames;
    import java.awt.BorderLayout;
    import javax.swing.JPanel;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    public class TestFrame extends JFrame {
         private static final long serialVersionUID = 1L;
         private JPanel jContentPane = null;
         private JLabel jLabel = null;
          * This is the default constructor
         public TestFrame() {
              super();
              initialize();
          * This method initializes this
          * @return void
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setTitle("JFrame");
          * This method initializes jContentPane
          * @return javax.swing.JPanel
         private JPanel getJContentPane() {
              if (jContentPane == null) {
                   jLabel = new JLabel();
                   jLabel.setText("Called!");
                   jContentPane = new JPanel();
                   jContentPane.setLayout(new BorderLayout());
                   jContentPane.add(jLabel, BorderLayout.CENTER);
              return jContentPane;
         public static void main(String[] args) {
              TestFrame t = new TestFrame();
              t.setVisible(true);
    }Copy this class and put it wherever you want to, as long as it is not in the same catalog as the previous class or the jar-file created.
    package lime.javaforum;
    import lime.test.frames.*;
    public class InvokeTest {
          * @param args
         public static void main(String[] args) {
              TestFrame.main(args);
    }Compile it and start the InvokeTest with:
    [java -cp <path to jar> lime.javaforum.InvokeTest[/i]
    and see what will happen...

  • ICal on iPad: please explain how to use the duplicate calendars

    I am traveling with my iPad and cannot get on my computer. I want to add calendar events that will sync to MMe. I have checked off the calendars for @me.com. Sometimes the iPad duplicate switches on. I assume that i have this so i can see if i need to what is really on the iPad ND what is really on mobile me in case i don't have wi fi access. However Apple does not explain to us why so that we could understand our own systems. We are left to guess and stab in the dark. I want to add items that will go over to mobile me and to my phone. Do i add them in to the calendar that is on the ipad and then it will automatically sync the events?
    I just edited some items that had previously been synced to mobile me. Those items are showing up synced to my phone so i know they went to mobile me. However i added some new items that went into the calendar on my iPad and those are not syncing (I wonder why apple has this odd system set up?)
    So is there something i don't know about entering events in my iPad? Why would there be a dublicTe calendar kept that does not sync to the rest?
    Please help! I can't go to my computer to reset hints for now i just have to know how to input events correctly into iPad so they will sync to mobile me and my phone. I have previously fine through resetting hints with mobile me support so it all should be set up correctly.
    Thanks

    Edited version (it won't let me edit)
    I am traveling with my iPad and cannot get on my computer. I want to add calendar events that will sync to MMe. I have checked off the calendars for @me.com. Sometimes the iPad duplicate switches on. I assume that i have this so i can see if i need to what is really on the iPad and what is really on mobile me in case i don't have wi fi access. However Apple does not explain to us why so that we could understand our own systems. We are left to guess and stab in the dark. I want to add items that will go over to mobile me and to my iPhone. Do i add them in to the calendar that is on the ipad and then it will automatically sync the events?
    I just edited some items that had previously been synced to mobile me. Those items are showing up synced to my iphone now so i know they went to mobile me. However i added some new items that went into the calendar "on my iPad" and those are not syncing (I wonder why apple has this odd system set up?)
    So is there something i don't know about entering events in my iPad? Why would there be a duplicate calendar kept on the iPad that does not sync to the rest?
    Please help! I can't go to my computer to reset anything for now i just have to know how to input events correctly into iPad so they will sync to mobile me and my phone. I have previously been through resetting everything with mobile me support so it all should be set up correctly.
    Also I have the new iCal that was called beta ND it syncs through CalDav or whatever that is separate from the contacts and bookmarks.
    Thanks
    iPad wifi + 3G   Other OS   Why not give a choice for iPad in that list?  

  • Please explain how to use binary search in this loop.

    Hi,
    I want to use the binary search in below Read please give me solution....
    LOOP AT it_vbfa_temp ASSIGNING <fs_vbfa_temp>.
          CLEAR is_ekbz1.
          READ TABLE it_ekbz1 INTO is_ekbz1 WITH KEY xblnr = <fs_vbfa_temp>-deliv flag = space.
          IF  sy-subrc = 0.
            w_tabix = sy-tabix.
            is_ekbz1-tknum = <fs_vbfa_temp>-shipno.
            is_ekbz1-flag  = 'X'.
            MODIFY it_ekbz1 FROM is_ekbz1 INDEX w_tabix TRANSPORTING tknum flag.
    ENDLOOP.

    Hi,
    Thanks for the inputs given.. Please find the solution for the same ....
       CLEAR is_ekbz1.
        is_ekbz1-flag = 'X'.
        MODIFY it_ekbz1 FROM is_ekbz1 TRANSPORTING flag WHERE flag IS INITIAL.
        SORT it_ekbz1 BY ebeln xblnr lifnr flag.
      LOOP AT it_vbfa_temp ASSIGNING <fs_vbfa_temp>.
          CLEAR is_ekbz1.
          READ TABLE it_ekbz1 INTO is_ekbz1 WITH KEY xblnr = <fs_vbfa_temp>-deliv flag = 'X' BINARY SEARCH.
          IF  sy-subrc = 0.
            w_tabix = sy-tabix.
            is_ekbz1-tknum = <fs_vbfa_temp>-shipno.
            is_ekbz1-flag  = space.
            MODIFY it_ekbz1 FROM is_ekbz1 INDEX w_tabix TRANSPORTING tknum flag.
      ENDLOOP.
    Regards,
    Srinivas
    Edited by: Srininas on Apr 6, 2010 12:16 PM
    Edited by: Srininas on Apr 6, 2010 12:17 PM

  • Explain How to use Structure mapping button

    Hi All
    Iam Developing an application "Implementing and Using Exceptions in Guided Procedures"
    Can you please explain How to use Structure mapping button,
    Plz give me steps in details
    Thanks
    Srinivas

    Hi
    Create a project using 0020 as method.
    Max

  • I am having email problems with the new Lion.  stmp, imap, etc. I have looked up google info and It is confusing when it comes to TS, SSL also, please explain how to set it up so my email goes out and comes in securely.  Help

    I am having email problems with the new Mountain Lion.  stmp, imap, etc. I have looked up google info and It is confusing when it comes to TS, SSL also, please explain how to set it up so my email goes out and comes in securely.  Help
    Incoming Mail (IMAP) Server - requires SSL:
    imap.gmail.com
    Use SSL: Yes
    Port: 993
    Outgoing Mail (SMTP) Server - requires TLS:
    smtp.gmail.com (use authentication)
    Use Authentication: Yes
    Use STARTTLS: Yes (some clients call this SSL)
    Port: 465 or 587
    Account Name:
    your full email address (including @gmail.com) Google Apps users, please enter username@your_domain.com
    Email Address:
    your full Gmail email address ([email protected]) Google Apps users, please enter username@your_domain.com
    Password:
    your Gmail password
    The Quick Answer
    Follow the instructions below to set up IMAP1 access in most email clients.
    Google Apps users, please follow the default instructions unless otherwise noted, replacing 'your_domain.com' with your actual domain2 name.
    this is all greek to me. WHAT IS STARTTLS? On the first page of Apple set up there is a TLS certificate and it is marked NONE- should I change it to the long APPLE CERT option?  The next page under ADVANCED: THERE IS A BOX SSL MARKED.  Then IMAP Path Prefix - I put stmp.gmail.com.. is that right?  Port 993 can  use this one? as 456 doesn't work and 587 said it wasn't safe.  Under AUTHENTICATION I used PASSWORD.  Should I have used external client cert TLS?
    Please help me set this up securely. Thanks

    Apple - Support - Mail Setup Assistant

  • In Pages 09 we can do Mail Merge and Import Styles from a document. Can someone please explain how we can do this with the new version of Pages 5.1. Even Apple solutions are only valid for Pages Version 09. What a DOWN GRADE!

    In Pages 09 we can do Mail Merge and Import Styles from a document. Can someone please explain how we can do this with the new version of Pages 5.1. Even Apple solutions are only valid for Pages Version 09. What a DOWN GRADE! Thank god Pages 09 is still there.

    …and the other 98 missing features.
    Just use Pages '09, which should be in your Applications/iWork folder.
    Rate/review Pages 5 in the App Store.
    Peter

  • Can somebody please explain how to format and then reinstall Mac lion10.7 without cd

    can somebody please explain how to format and then reinstall Mac lion10.7 without cd

    You will need either an Ethernet or Wifi Connection to the Internet - USB Mobile device is not supported.
    If you already have Lion installed you can boot to Recovery with Command R and use the Disk Utility to erase the Macintosh HD and then reinstall the OS from the Mac OS X Utilities.
    You will need the Apple Id used for purchase if the Mac did not ship with Lion installed originally.
    If you want to repartition the HDD you can use the Recovery Disk Assistant to make a recovery USB drive
    http://support.apple.com/kb/DL1433
    http://support.apple.com/kb/HT4848
    As Always - Back up the Mac before erasing unless you are confident there is absolutely nothing on the mac that you might possibly need later.
    If the machine is a 2011 build or later you might be able to boot to Internet Recovery with Command Option R

  • Could someone explain how to use of the object Thermometer?

    Hi to all,
    please, could someone write a real example explaining how to use the thermometer in order to indicate the progress of a process like to submit a document?
    I need to do it exactly to indicate this process in Adobe Reader.
    Thanks.
    Dan

    Sorry but I surely have explained my problem badly. I understand how to use the object thermometer perfectly.
    I need to use this object in order to determine the progress of the document's transference when I submit a PDF form from Adobe Reader.
    I'm having problems when I try to do this, and I would like to know if there exists some way to do it.
    b I have tried the following:
    var t = app.thermometer;
    t.duration = 1000;
    // How can I know this value?
    t.begin();
    t.text = "Please wait";
    // Is this a madness?
    while( event.target.submitForm( { cURL: [...], cSubmitAs: [...] } ) )
       t.value++;
    t.end();
    Thank you for your time
    Dan

  • I have just downlaoded the color burst app, can someone explain how to use it?

    I have just downlaoded the color burst app, can someone explain how to use it??
    There is no help in the app and i can't log onto the smart solutions..it is really frustrating me because it is propably a really simple app...can someone please help???

    I posted in this thread an example that illustrates how to use the 3d graph to do surfaces ac lines.
    The type of data that you present to the 3d graph depends on which mthod you are using. In general you want to present a set of points that need plotted. These points are defined by taking one value for each of the XYZ and sometimes W arrays.
    Explanation:
    You want to plot a surface that is defined by four point (X0,Y0,Z0,W0), (X1,Y1,Z1,W1), etc. You can present the values using (4) 2-d arrays each of which have four values at index (o,o), (0,1), (1,0) and (1,1).
    Thie first point plotted would be the point that is defined by taking (0,0) from each of the arrays.
    So as you can see from the above all of your arrays should be of the same size and dimensions for this to work.
    Look at the Example i posted in the other thread and try some small experiments with small data sets before you jump to anything complicated.
    I hope that helps,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Hi guys, can you please explain how to perform automatic system scan with CleanApp - it looks like it wants me to manually chose files to delete and I just want an automatic scan (like cleanmymac does)

    Hi guys, can you please explain how to perform automatic system scan with CleanApp - it looks like it wants me to manually chose files to delete and I just want an automatic scan (like cleanmymac does)

    Slowness...First Try using Disk Utility to do a Disk Repair, as shown in this link, while booted up on your install disk.
      You could have some directory corruption. Let us know what errors Disk Utility reports and if DU was able to repair them. Disk Utility's Disk Repair is not perfect and may not find or repair all directory issues. A stronger utility may be required to finish the job.
      After that Repair Permissions. No need to report Permissions errors....we all get them.
    Here's Freeing up Disk Space.
    DALE

  • Hi there, i have Q i have excel file it need to be block with password. Could you please explain how i make password protect to Excel document

    Hi there,
    i have Q i have excel file it need to be block with password. Could you please explain how i make password protect to Excel document
    Thanks

    On the File menu, click Save As.
    On the Tools menu, click General Options.
    Do either or both of the following:
    If you want users to enter a password before they can view the workbook, type a password in the Password to open box, and then click OK.
    If you want users to enter a password before they can save changes to the workbook, type a password in the Password to modify box.
    NOTE   Unlike passwords you specify in the Password to open box, passwords you specify in the Password to modify box are not encrypted. These passwords are only meant to give specific users permission to modify workbook data. For optimal password security, it's best to assign both passwords. An encrypted password to access the workbook, and one to provide specific users with permission to modify its content. IMPORTANT   Use strong passwords that combine uppercase and lowercase letters, numbers, and symbols. Weak passwords don't mix these elements. Strong password: Y6dh!et5. Weak password: House27. Use a strong password that you can remember so that you don't have to write it down.
    If you want to use a different encryption type, click Advanced, click the type you want in the Choose an encryption type list, and then click OK.
    If needed, specify the number of characters you want in the Choose a key length box.
    NOTE   Document property encryption is enabled by default for most encryption types and providers. It prevents unauthorized users from viewing summary and custom file properties (such as the author or any custom file information) in theProperties dialog box. When users right-click the password-protected file, and then click Properties, information won't be available on the Summary tab and Customtab. Authorized users, however, can open the file and view all file properties (Filemenu, Properties command). To disable document property encryption, clear theEncrypt document properties check box.
    Click OK.
    When prompted, retype your passwords to confirm them.
    Click Save.
    If prompted, click Yes to replace the existing workbook.
    NOTE   You can also secure a workbook with a password on the Security tab of the Options dialog box (Tools menu, Options command).

  • Can someone please explain how I download all my songs from the cloud without having to tick each cloud individually for each song

    Can someone please explain how to download all my songs from cloud without having to tick each cloud individually

    Music > iTunes Store > Music Quick Links > Purchased > Not in My Library > Download All.
    tt2

  • I just purchased a new laptop, so consequently had to buy Itunes Match to get all of my music back. Now everything is in the cloud, and I can't play them and cannot make a cd. Please explain how I can get

    I just purchased a new laptop, so consequently had to buy Itunes Match to get all of my music back. Now everything is in the cloud, and I can't play them and cannot make a cd. Please explain how I can get my library out of the cloud and keep them on my computer so they are available when I want them? Wow.......why have you made everything so difficult now?

    SKF5656 wrote:
    I just purchased a new laptop, so consequently had to buy Itunes Match to get all of my music back.
    No you didn't.
    Now everything is in the cloud
    Except for anything you did not purchase in iTunes Store.
    Only you iTunes purchases are in the cloud.
    Reada the article that brenden dv posted to copy your iTunes library to new computer.

Maybe you are looking for

  • Error occurred while converting the file "". You do not have the privilege

    I have recently bought a new MacBook Pro and it's my first mac ever. I have imported all my songs into itunes from an external hard drive where i would keep all my music and video's. I went ahead and added it to my mac and everything plays and works

  • Applescript buttons returned from display dialog

    Hi! I have been learning Applescript for about a month and found the following issue which I thought was an easy implementation. On the "text returned" I get the error condition described. Do not understand! Any help would be appreciated. display dia

  • Advice re LR2, laptop & desktop, with photos on ext drive

    Please critique this setup.  I've been considering this b/c I have had images stored to both computers but would prefer that one storage drive be known to contain all of my work; as it is, I can't recall if certain photos are on one or the other comp

  • Not allowing to save changes in program

    When i try to make some changes in Standard program and then save it, i create a new request for it and then try to save. It flashes a msg : "SAP names file for TCS_ABAP locked by another process" ...and does not let me save changes.But it does creat

  • Display top tags from all blogs on a non-blog page

    I need to display a list of the top-used tags from all the blogs on a site. This will not be on a blog page. I had expected tag_blogtaglist to be the answer, but it requires that a specific blog be selected. Making a list that combines the tag_blogta