Attempting to Create Payment using CC&B XAI from CC&B Web Self Service

We tested same from XAI Submission. There also it asks for authentication, used u=SYSUSER and p=sysuser00 (as configured in CC&B,it is default configuration) and it created payment event successfully in CC&B. Now we are trying to create payment event from CC&B Web Self Service, we are stuck in the authentication part, hopefully we will resolve it very soon. Manas Barua

Hi Ruud,
Thanks for replying, I'm using SOAP UI ver 4.0.0. for my trial.
Now i'm able to run my script by adding <wsse:Security> in my script and authentification error response not appear any more.
But i have another problem, when my script executed using SOAP UI it always makes the SOAP UI hang and if im execute using
XAI submission it will successfull creating payment for the first time but for the next trial it will makes my browser hang.. :(
Did my problem happened to your environment too? or is there any patch that i can use to resolve my problem?
Thank you Ruud.
Regards,
Hadi Wijaya

Similar Messages

  • Using a VB Class from a Java Web Application

    Hi,
    I need to instance a VB class, and then to invoke their methods, from a java web apllication. The code is:
    Set object = CreateObject("AS2.OBJECTS")
    If object.PutName(sCadenaError, sEntidad) Then
    Array1 = object.getData(sCadenaError, iEntorno, False)
    End if
    "AS2" is the VB dll library. "OBJECTS" is the class to instance. And "PutName" and "getData" are the methods that the web application has to call.
    Can I instance the class from Java, and use the methods with the same data types? What steps have I to do in JNI?
    Thanks in advance,
    Mary

    You are right, I guess my question is a good candidate for RTFM!
    I should have searched also on help.ondemand.com
    I just looked into SDN and ui5 sdk help.
    Thanks for your help
    Regards
    Vincenzo

  • Can not create follow up transaction FS Quotation from Lead in WEB UI

    Dear All,
    We have requirement wherein IC agent should be able create FS Quotation (Transaction type FSO1) from Lead transaction type in WEB UI.
    I have made all the necessary cutomization for copy control. FS Quotation is also maintained for all chanel.
    Its work fine in CRM Online. I can create FS Quotation from Lead transaction type but in WEB UI when I click on Follow up button from Lead transaction pop will appear but I can not see FS Quotation in pop up window.
    Please let me know if you have any suggestion or faced similar kind of issue.
    Regards
    Pankaj Vispute

    Hello Pankaj,
    Yes, I have discovered this behavior as well. It seems to be documented in SAP Note 1172066. Apparently only the four following category classes are allowed:
    'A' : Interaction Log 
    'F' : Appointment     
    'G' : E-Mail          
    'H' : Task            
    Best regards,
    John

  • My first attempt to create livecd using Archiso

    I just want to start by saying that I have searched the forum
    I managed to create a archlinux liveiso consisting of  archlinux core Xorg and fluxbox following the archiso article in the wiki.
    However I have one issue though when I run /arch/setup it only installs the base and base-devel packages not everything am I doing something wrong as I would like to install the whole contents of the cd.
    any assistance will be appreciated.
    Cheers

    Hi Svenstaro I had a look at the wiki after you have updated it, that's how I found that the Grub part has been taken out here is my Makefile
    #### Change these settings to modify how this ISO is built.
    # The directory that you'll be using for the actual build process.
    WORKDIR=work
    # A list of packages to install, either space separated in a string or line separated in a file. Can include groups.
    PACKAGES="$(shell cat packages.list syslinux)"
    # The name of our ISO. Does not specify the architecture!
    NAME=my-arch
    # Version will be appended to the ISO.
    VER=1.00
    # Kernel version. You'll need this.
    KVER=2.6.32-ARCH
    # Architecture will also be appended to the ISO name.
    ARCH?=$(shell uname -m)
    # Current working directory
    PWD:=$(shell pwd)
    # This is going to be the full name the final iso/img will carry
    FULLNAME="$(PWD)"/$(NAME)-$(VER)-$(ARCH)
    # Default make instruction to build everything.
    all: my-arch
    # The following will first run the base-fs routine before creating the final iso image.
    my-arch: base-fs
    mkarchiso -p syslinux iso "$(WORKDIR)" "$(FULLNAME)".iso
    # This is the main rule for make the working filesystem. It will run routines from left to right.
    # Thus, root-image is called first and syslinux is called last.
    base-fs: root-image boot-files initcpio overlay iso-mounts syslinux
    # The root-image routine is always executed first.
    # It only downloads and installs all packages into the $WORKDIR, giving you a basic system to use as a base.
    root-image: "$(WORKDIR)"/root-image/.arch-chroot
    "$(WORKDIR)"/root-image/.arch-chroot:
    root-image:
    mkarchiso -p $(PACKAGES) create "$(WORKDIR)"
    # Rule for make /boot
    boot-files: root-image
    cp -r "$(WORKDIR)"/root-image/boot "$(WORKDIR)"/iso/
    cp -r boot-files/* "$(WORKDIR)"/iso/boot/
    # Rules for initcpio images
    initcpio: "$(WORKDIR)"/iso/boot/archiso.img
    "$(WORKDIR)"/iso/boot/archiso.img: mkinitcpio.conf "$(WORKDIR)"/root-image/.arch-chroot
    mkdir -p "$(WORKDIR)"/iso/boot
    mkinitcpio -c ./mkinitcpio.conf -b "$(WORKDIR)"/root-image -k $(KVER) -g $@
    # See: Overlay
    overlay:
    mkdir -p "$(WORKDIR)"/overlay/etc/pacman.d
    cp -r overlay "$(WORKDIR)"/
    wget -O "$(WORKDIR)"/overlay/etc/pacman.d/mirrorlist http://www.archlinux.org/mirrorlist/$(ARCH)/all/
    sed -i "s/#Server/Server/g" "$(WORKDIR)"/overlay/etc/pacman.d/mirrorlist
    # Rule to process isomounts file.
    iso-mounts: "$(WORKDIR)"/isomounts
    "$(WORKDIR)"/isomounts: isomounts root-image
    sed "s|@ARCH@|$(ARCH)|g" isomounts > $@
    # This routine is always executed just before generating the actual image.
    syslinux: root-image
    mkdir -p $(WORKDIR)/iso/boot/isolinux
    cp $(WORKDIR)/root-image/usr/lib/syslinux/*.c32 $(WORKDIR)/iso/boot/isolinux/
    cp $(WORKDIR)/root-image/usr/lib/syslinux/isolinux.bin $(WORKDIR)/iso/boot/isolinux/
    # In case "make clean" is called, the following routine gets rid of all files created by this Makefile.
    clean:
    rm -rf "$(WORKDIR)" "$(FULLNAME)".img "$(FULLNAME)".iso
    .PHONY: all my-arch
    .PHONY: base-fs
    .PHONY: root-image boot-files initcpio overlay iso-mounts
    .PHONY: syslinux
    .PHONY: clean
    Last edited by sakrhass (2010-01-16 08:24:22)

  • Security warning claims invalid site when I attempt refresh. It uses outdated firefox component from Jan 2003.

    Tech details at end of this narrative:
    As you can see, Firefox is using an old piece of software not aware it is the one out of date, not the current certificate which it discovers is too far in the future. Accepting this puts me at risk as it may relate to the odd fact that a man called this morning that I did not know before saying he received email from me about the product I am now preparing to market. That was great - but, he received a message from me that I did not send and said he called my number expecting to hear a 15 minute recording I do not have set up. On occasion, including a few weeks ago, I have received email with my own address as if it was sent to me by someone with my identical address. If I push through this warning, it appears I am at risk of authorizing someone else access to my computer from a separate location. If so, with such persons advanced knowledge, I could lose access at times to my own online ID - for banking, etc, while such person cleans out my accounts. My Firefox software recently offered and I accepted an upgrade. Please assist me in getting the old security piece of softwar removed and I'd like to know what else may be suggested if anything. Thanks a million. Michael
    ~~
    Message:
    "You have asked Firefox to connect
    securely to login.live.com, but we can't confirm that your connection is secure.
    login.live.com uses an invalid security certificate.
    The certificate is not trusted because the issuer certificate has expired.
    The certificate will not be valid until 9/27/2011 5:00 PM. The current time is 1/1/2003 5:33 PM.
    (Error code: sec_error_expired_issuer_certificate)

    Quote: ''The current time is 1/1/2003 5:33 PM.''
    Check the date and time in the clock on your computer: (double) click the clock icon on the Windows Taskbar.
    *https://support.mozilla.com/kb/Secure+Connection+Failed

  • Dynamically create javascripts using pl/sql code from page header

    I understand by placing a javascript code in the page header is one of the way adding javascript functionality to your pages.
    But lets say I need (dynamically) bring my javascripts into the page header using my pl/sql package/functions like core_func_jscript_pkg.get_jscript('jf_isnumber');
    1- How can I call my pl/sql package/functions from page header area of Apex?
    If I need to use 20 javascripts functions into a page which I have them stored in database (using them on my other pages) and I don't want to copy or re-write them in Apex, instead I like to have 20 line of calls to my pl/sql package like:
    core_func_jscript_pkg.get_jscript('myFirstJavascript');
    core_func_jscript_pkg.get_jscript('mySecondJavascript');
    core_func_jscript_pkg.get_jscript('myThirdJavascript');
    core_func_jscript_pkg.get_jscript('myFourthJavascript');
    ... and so on.
    2- In past we wrote our web apps using pl/sql example:
    htp.p('<html>');
    htp.p('<head>');
    core_func_jscript_pkg.get_jscript('jf_get_today_date');
    core_func_jscript_pkg.get_jscript('someothe_scripts');
    htp.p('</head>');
    htp.p('</html>');
    I like to do the same thing in Apex, Can I accomplish this in Apex?
    Thanks again
    -iahmadi

    There was a <head> content & dynamic metadata with APEX? that should provide some pointers.

  • HT2309 I need info on how to use a SIM card from another country to have service on iPhone 4 & 5 while traveling

    I need to know any problems I might have getting a SIM card in another country and swapping it w current card in my iPhones (4 and 5).
    Need both phone and internet access while there. My carrier has no service (verizon)
    Also assume all apps and data on phones will still work?

    The GSM section of your Verizon iPhone 5 is unlocked and will work with any nano-SIM card. 
    Not all iPhone features such as FaceTime, iMessage, visual voicemail, etc, may work if using a carrier that doesn't support iPhones.  If using an unofficial carrier, you may need to enter APN settings to get cell data. LTE may not be compatable.

  • BUILD PROGRAM ERROR - CANNOT CREATE PAYMENTS

    Hi, I'm trying to run a payment batch using payments manager and encountered this error.
    In my test data I used two suppliers that belongs to the same operating unit.
    Payments: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    IBYBUILD module: Build Payments
    Current system time is 09-NOV-2009 11:26:11
    **Starts**09-NOV-2009 11:26:11
    **Ends**09-NOV-2009 11:26:13
    BUILD PROGRAM ERROR - CANNOT CREATE PAYMENTS
    Start of log messages from FND_FILE
    IBY_PAYGROUP_PUB.performPostHookProcess: Fatal error - Payment count mismatch after hook operation. # payments passed to hook: 1, # payments returning from hook: 2
    IBY_PAYGROUP_PUB.performPostHookProcess: Aborting program ..
    End of log messages from FND_FILE
    Executing request completion options...
    Finished executing request completion options.
    Exceptions posted by this request:
    Concurrent Request for "Build Payments" has completed with error.
    Concurrent request completed
    Current system time is 09-NOV-2009 11:26:13
    Please help
    thanks,
    Renz

    Hi
    Please review the below note from Metalink,
    Bug No. 6771847
    Filed 24-JAN-2008 Updated 13-MAR-2008
    Product Oracle Payments Product Version 12.0.4
    Platform Linux x86 Platform Version ENTERPRISE 4
    Database Version 10.2.0.2 Affects Platforms Generic
    Severity Severe Loss of Service Status Closed, Verified by Filer
    Base Bug N/A Fixed in Product Version 12.0.4
    Problem statement:
    R12: AFTER APPLYING 12.0.4 BUILD PAYMENT PROGRAM ERRORS
    please review the same if it resolvs your error.
    Thanks
    Manish Jain.

  • 9.0.1 create database using dbca fails

    Solaris 8, 64-bit SPARC, 528mb RAM, 2 SCSI 9gig. Development box with no other users/processes running except Sendmail.
    Installed Oracle 9.0.1 on machine from CDs with no problems, Attempting to create database using Database Configuration Assistant.
    Creating 'general purpose' database using dbca with generally default parameters. Progress bar gets to 50% done, "creating & starting instance" is checked in progress window.
    CPU utilization goes to 100% and nothing happens for hours. Eventually have to cancel dbca. No control files or init.ora created, (pfile directory is empty) there are a bunch of oracle processes left running which have to be killed.
    I've tried this several times, moved stuff to different drives and/or filesystems, no luck. Have 5 gig available on /u01 where the database should install, and 8 gig available on /u02 where the .dbf's go.
    If I had any hair left, I'd pull it out. Any help would be greatly appreciated.
    Thanks in advance!

    I am getting this same problem: The DBCA gets to the point where it is installing the database and starting the instance (it says 51% of the way through), and then it just sits there doing nothing. I noticed when I installed Oracle (9.2.0) when it got to the point of the configuration assistants, there was mention of a listener not being able to start and the installer assuming it was already started (the listener that is). When the DBCA started right after, it stalled out at 51%.
    I aleady had the Sun JDK installed, but am assuming this is not the issue since the install got that far. Can someone please advise a course of action so that I can trouble shoot this? I am very very new to this side of Oracle. Any assistance is greatly appreciated and will be passed along to others in turn.
    Thanks,
    BillR

  • Error creating Payments in SAP 2007 A

    While creating Payments using SAPbobsCOM.Payments I am getting error message "Credit sum is zero  [RCT3.CreditSum][line: 1]" but code working fine with 2005 DI API

    Thanks Trinidad for you reply
    After debugging I have found that there is no problem in payment code but there is a problem with "FormDataEvent" it's not returning the proper output
    My code
    Private Sub con_FormDataEvent(BusinessObjectInfo As SAPbouiCOM.IBusinessObjectInfo, BubbleEvent As Boolean)
    If BusinessObjectInfo.FormTypeEx = "139" And BusinessObjectInfo.ActionSuccess = True Then
        If BusinessObjectInfo.Type = "17" Then
            SoDocType = True
        Else
            SoDocType = False
        End If
    ElseIf BusinessObjectInfo.FormTypeEx = "133" And BusinessObjectInfo.ActionSuccess = True Then
       InvoiceDocentry = 0
        If BusinessObjectInfo.Type = "13" Then
            Set oXMLDoc = New MSXML2.DOMDocument
            oXMLDoc.loadXML BusinessObjectInfo.ObjectKey
            InvoiceDocentry = oXMLDoc.selectSingleNode("DocumentParams").selectNodes("DocEntry").Item(0).Text
        End If
    End If
    End Sub
    Now the line "BusinessObjectInfo.Type = "13"" not returning the docnum of 13 but returning docnum of base document. Same code working fine in SAP 2005. What could be the problem?

  • I created new responsability using seeded menu 'Manager Self Service'it give me that'select action' no selected action

    i created new responsability using seeded menu 'Manager Self Service'  which is assigned to seded responsability  'Manager Self-Service', when i try  to open any  function like 'change job' it give me that there are no  selected actions although it works with the seeded responsability.

    Hi Steven,
    Please create a quota template named "Personal site" and apply in self service site creation page, then check again.
    http://blogs.msdn.com/b/jimmiet/archive/2012/07/22/10332361.aspx
    http://danmyhre.wordpress.com/2010/03/16/my-sites-do-not-have-a-quota-when-they-are-created/
    Thanks
    Daniel Yang
    TechNet Community Support

  • Using Azure internal load balancer (ILB) for Sql Reporting Services

    I am attempting to implement a scale-out SSRS deployment using the Azure ILB feature. I have created 2 Sql Reporting servers using the azure images and have created a ILB endpoint on both servers.  I am then attempting to access the servers via the
    ILB from my .Net web application.  I can access the report server from my browser and am prompted for credentials using forms authentication.  there is no issue accessing the reports from a browser however my web application cannot access the reports
    and returns a 500 error.  I have a hunch this is due to an authentication issue due to invalid kerberos proxy authentication.
    Does anyone have any information regarding the possible authentication mechanisms that are supported using Azure ILB?  

    Thanks for the response Swallow0417, but as I stated I already had configured this to work in a browser.  I should have mentioned that I already had set the machine key and altered the rsreportserver.config file as mentioned in
    https://msdn.microsoft.com/en-us/library/cc281307.aspx.
    It turns out this was due to the extended data validation that was introduced in SQL 2014. 
    This page led me to alter rsreportserver.config so that:
    <RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
    <RSWindowsExtendedProtectionScenario>Any</RSWindowsExtendedProtectionScenario>
    After restarting the report server service my application now can make the requests for the reports successfully.  I'll provide the other steps I took to hopefully help someone else in the future:
    1. Create 2 or more SQL servers in an Azure availability group on the same service in a Reports server scale out deployment.  The SSRS Service account must be a domain account or it will not work
    2. Create an Azure ILB using powershell and add the endpoints on your http(s) ports on the server in step 1. I also set the endpoint IdleTimeoutInMinutes to 30 on both endpoints as it seemed like there was some possible timeout issues. the endpoint MUST
    also have DirectServerReturn Set to $true 
    3. disable the loopbackcheck see method 2 here
    http://support.microsoft.com/kb/896861
    create a DWORD registry key value 1,
    DisableLoopbackCheck,
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
    4. Configure View state validation by setting an identical machine key on all servers behind the azure ILB
    5. Create a Host record in your AD DNS for the Azure ILB IP Address. 
    6. configure hostname
    and URLRoot in rsreportserver.config - see
    https://msdn.microsoft.com/en-us/library/cc281307.aspx
    Setting the hostname tag breaks the report manager url. It is only
    required to set the URLRoot tag. I do not think it is required in this configurtaion only for Windows
    NLB
    6. Configure the authentication method in rsreportserver.conig
      <RSWindowsExtendedProtectionLevel>Off</RSWindowsExtendedProtectionLevel>
      <RSWindowsExtendedProtectionScenario>Any</RSWindowsExtendedProtectionScenario>

  • Using Quota templates with Self Service Site Creation

    I am having an issue with quota templates not getting assigned to site collections created with Self Service Site Creation.
    I set up a quota template in 'Specify Quota Templates' and give it the name 'test'.  I then go to self service site creation management and select the name 'test' from the 'Quota template to apply' dropdown.  I then create a site using self service
    site creation and when completed no template is applied to the new site collection.  I am wondering if anybody has seen this or if not am I incorrect in what I am expecting, that is that all site created in that web application should have the quota template
    applied that I selected in self-service site creation management
    Steven Albrecht
    University of Colorado Denver
    Steven Albrecht

    Hi Steven,
    Please create a quota template named "Personal site" and apply in self service site creation page, then check again.
    http://blogs.msdn.com/b/jimmiet/archive/2012/07/22/10332361.aspx
    http://danmyhre.wordpress.com/2010/03/16/my-sites-do-not-have-a-quota-when-they-are-created/
    Thanks
    Daniel Yang
    TechNet Community Support

  • SSO to SAP EP6 (for Employee Self Service) using WebSEAL

    Hi SDN friends,
    We are about to embark on a SSO implementation using IBM WebSEAL for SAP EP6 ESS (Employee Self Service) connecting through to an SAP R/3 4.7 server.  Since the ESS solution for 4.7 still uses ITS services, this means that we have ITS iViews in the EP6 portal.
    We have managed to look through the whitepaper 'IBM Tivoli Access Manager - Single Sign On for SAP NetWeaver - September 2005' described at https://www.sdn.sap.com/irj/sdn/developerareas/ibm
    We have the following queries, if anybody has a simple answer to these:
    -  Is it absolutely necessary to configure an SNC connection between ITS/EP6 and R/3 server to achieve SSO for the portal?
    -  Given that SAP EP6 references ITS IAC iviews, is it necessary for us to configure both ITS and EP6 for SSO, or can we simply configure EP6 for SSO?  If so, is it also necessary to configure both for SSL?
    -  Otherwise, how easy is it to set up SSO in this scenario without SSL (for demo purposes)?
    Any thoughts would be greatly appreciated.
    Cheers
    John Moy

    Hello John,
    regarding your questions:
    ad 1) no. SNC is only mandatory if you use X.509-based SSO to R/3. You can also use SAP logon ticket-based SSO from EP to R/3 or usermapping that do both not require SNC.
    ad 2) yes, you have to configure both EP and ITS at WebSeal.
    ad 3) you can always omit SSL. However for production use, it is recommended.
    Regards
    Michael

  • Cancel Payment using XAI Inbound Service (CC&B)

    Hi All,
    Do you have any idea how to cancel payment using XAI in CC&B?
    Now Im using xai Inbound service (SSvcPaymentEventMaintenance) to do cancellation process, but it just affects for the payment status only, meaning payment and payment tender status become cancel but the payment amount for the related bill is still not deducted. The bill is still in status "Fully Matched". Seems the financial transaction for payment cancellation is not created. Any idea about this ?
    Thank you,
    Taufix

    You must use a Business Service to perform such actions, although there is no such default available even in the Demo data, follow below steps (assuming you are on CC&B 2.2.x or higher):
    - Create/Configure a Business Service using Service Program 'CILPTNDP - Cancel Payment Tender'.
    - Create/Configure a SS with following steps (SS Schema would contain the Payment Event Id):
    1. Invoke/read Payment Event and retrieve the PAY_TENDER_ID
    2. Invoke Business Service created above for each PAY_TENDER_ID by providing the Cancel Reason Code.
    - Expose above created SS as an XAI Inbound Service.

Maybe you are looking for

  • HT204350 Moving software and files from my old MacBook Pro to a new one

    Does the Apple Store migrate all my files and software from my old laptop to a new one? How long does it take? Do I need an appointment? I am not comfortable doing it myself. Actually, I do not know how to do it.

  • 7 dollar charge per month for 1 year and half

    I hate to rain on everyones parade, because I know everyone is excited about the new iPhone and the new Droid, however I must. I was wondering why I've been getting charged  7 dollars by best buy for a year and a half or maybe even more. Every month

  • Change the battery pack

    I have seen many people with this issue - I have a powershot ELPH 530HS and it has been working with no issues. Recently it started giving an error stating that i should "change the battery pack". This is a fairly new camera and i doubt the battery i

  • TS1702 credit charges

    I have got 2 charges from one time Snoopy coins purchase but the coins are not shown up at all. Need help.

  • Saving PDF directly in the shared drive

    when I create PDF using Adobe Live Cycle, always it sends PDF as an email to the creator and then user has to save it the shared drive. Is there a way to directly save the file instead of sending as email through SMTP? Thanks