XI used as middleware for Telecom related end to end integration

How is XI used as middleware for Telecom relaed end to end Implementation.....please help me out with some concrete scenarios...Yes Im using SAP ERP & SAP BW alon with it...

Hi,
XI is an application integratoin engine and you have to use Netweaver Stack as a whole ( PI + Portal)for implemeting the telecom integartiopn scenarios.
I'll point you to some practical scenario...suppose you want to integrate any BSS & OSS system with SAP ( ERP + CRM ) to offer an end to end telco service.
You need to form an application server that resides outside XI and which handles all telco related request and puts them in form of web service calls to XI which then maps it to upstream systems whose front end can be CRM or Portal.
Lets take up a scenario like Lead to Cash...typically this will involve SAP CRM to capture teh order process it thru SAP CRM and finally OSS calls will be required for Order Management & provisionng wherein XI(PI) will forward process specific web service calls to downstream OSS applications and keep the Billing systems in sysnc.
you can also refer to following for more info
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0243748-acbb-2a10-0fa7-ba7a353ae668
http://help.sap.com/saphelp_nw04s/helpdata/en/01/d9d43fb9490c65e10000000a114b1d/frameset.htm

Similar Messages

  • Can I use Mozilla Etherpad for OpenBadge related project?

    Hello,
    I would like to use Mozilla Etherpad for our Open Badge integration project, and I noticed this note on the https://etherpad.mozilla.org: "Mozilla systems and collaborative tools are intended for use by the Mozilla community for Mozilla related work and subject to web site terms and conditions at Legal Notices."
    Just want to get confirmation, is it alright to use Mozilla etherpad for my project (as it's related to one of Mozilla's project)? Is there any info I need to provide if Mozilla wants to verify or clean up our pads? Thanks.
    Cheers,
    Vu
    P.S.: Sorry for the question mis-categorized, I can't seem to find any category that fits the question.

    Hello,
    I would think there is no issue in doing this. The [https://wiki.mozilla.org/Etherpad Etherpad Wiki] states this
    <quote>
    You can create a private Etherpad domain just for whomever you invite into it. This is convenient for individual departments, for things not yet ready for external visibility. There's a button on the homepage, and the initial creation is straightforward... similar to making an account on any other web application.
    </quote>
    I think this is best asked on IRC. Try the #introduction channel and see if you are able to get a response.
    Hope this helps.

  • Right PAAS/Middleware for SAP HCM and SAP Cloud Integration ?

    In 2013, SAP has lot of Focus on SAP Cloud and SAP HCM on premises integration elements following the hybrid model, I will like to know the direction from SAP on integration Middleware/PAAS which will reap great returns in terms of TCO to customers over next 4-5 years basis the SAP Integration Road map esp the exposing standard connectors ?
    Please do keep in mind the the Middleware/PAAS should be able to support easy integration with Third Party Vendors like ADP/Hewitt etc

    The SFAPI and OData API are exposed for any web service integration, including Dell Boomi AtomSphere. The OData API can handle delta changes.
    HCI is an evolving platform and offers similar functionality to Boomi in terms of building integrations with a drag-and-drop interface, etc. There is a SuccessFactors connector provided for HCI and the Talent Hybrid integration content is available on HCI as well as PI. The Employee Central integration content currently available on Boomi should be available on HCI hopefully by the end of the year. The Talent Hybrid high-level roadmap can be found here:
    SAP HCM and SuccessFactors Integration Packages: an overview
    Boomi is included in the Employee Central subscription, but is very expensive to license for other use cases (i.e. Talent Hybrid scenarios). HCI costs 7.5% of the SuccessFactors subscription. PI is free. HCI may be included in the Employee Central subscription at a later date, but this is not definitely going to happen.

  • Anyone using cfselect bind for 3 related fields?

    I have a form that a user needs to select the office from
    which will then populate the activity fields in the next drop down
    box and then he will pick the activity which would select the
    various dates that activity is run on. He would then pick from the
    date in the third box and submit. Unfortunatly, I'm only able to
    get 2 of the cfselect tags to bind correctly. Or if I could display
    two items in one box that would be a good workaround but that fails
    also. I've looked all over the livedocs and forums and haven't
    found using 3 or more. The error I get when I run the code with 3
    on the page is "Error invoking CFC /cmpts.cfc: Error executing
    database query." and also "Error invoking CFC/cmpts.cfc: The org_ID
    argument passed to the getCategoryArg function is not of type
    numeric." -It is numeric but I tried changing it anyway to "array",
    and "any" but then the error message reads "not of type array". If
    I comment out the last one it runs fine or if I comment out the
    first one (I'm removing the arguments passed in the cmpts.cfc code
    as well) and this runs fine. Below is my code. (Oh and even though
    the return value is data for all three in the cfc- using the same
    name works for 2 and I copied this straight from the livedocs so I
    didn't think that was the issue)
    Any suggestions? Thanks, Wendy
    <cfform name="test" method="POST"
    action="dumptest.cfm">
    <cfselect name="officeId"
    bind="cfc:cmpts.getOffices()"
    display="shortname"
    value="org_id"
    bindonload="true" />
    <!---based on the office select the activity --->
    <cfselect name="Activity"
    bind="cfc:cmpts.getCategoryArg({officeId})"
    display="title"
    value="id"
    />
    <!--- based on activity select the date --->
    <cfselect name="date"
    bind="cfc:cmpts.getdate({Activity})"
    display="date"
    value="date" />
    <input type="Submit" value="Submit">
    </cfform>
    <!--- cmpts.cfc below
    ------------------------------------------>
    <cfcomponent>
    <cffunction name="getOffices" access="remote"
    returntype="query" hint="Get's the Officename and id">
    <cfset var data="">
    <cfquery datasource="dsn1" name="data">
    select org_id,shortname
    from all_offices
    Where org_id <> ''
    order by shortname
    </cfquery>
    <cfreturn data>
    </cffunction>
    <cffunction name="getCategoryArg" access="remote"
    returntype="query" hint="Get's the category titles">
    <cfargument name="org_id" type="numeric"
    required="Yes">
    <cfset var data="">
    <cfquery datasource="dsn" name="data">
    Select a.id,a.title,b.org_id,convert(varchar,b.date,101) AS
    date
    from km_activities a,km_work b
    Where b.org_id= '#trim(ARGUMENTS.org_id)#'
    and a.id =b.act_id
    Order by a.id
    </cfquery>
    <cfreturn data>
    </cffunction>
    <cffunction name="getdate" access="remote"
    returntype="query" hint="Get date of activities to update">
    <cfargument name="id" type="any" required="Yes">
    <cfset var data="">
    <cfquery datasource="dsn" name="data">
    Select convert(varchar,date,101) AS date,office_id,act_id
    from km_work
    Where act_id = '#trim(ARGUMENTS.id)#'
    Order by date
    </cfquery>
    <cfreturn data>
    </cffunction>
    </cfcomponent>

    Hello
    This file is created when a folder or project is downloaded from the Dimensions Server using JDeveloper. If you create a dimensions connection and then using the versioning navigator (View -> Team -> Version Navigator) open the connection and navigate to the folder you want to work on. Select the folder and use the context menu "Download" to download the folder.
    Dave

  • Using TASK TS40008005 for SRM invoice workflow with portal integration

    Hello Experts,
    we are using processed based workflow.
    within a new workflow scenario it is necessary that the approver should read the details first of the invoice. for this reason we want to avoid that the buttons for approval appears on the portal uwl. It should only appears "details".
    is it possible to send a task like 40008005 with parameters that will influence portal uwl in this way ?
    in data container of taks 40008005 there are parameters like Task Type valued with "DECIDE" and BOMODE valued with "APPROVAL".
    in the details view it should be possible to approve the workitem.
    Does anybody have an idea ?
    thanks for help.
    regards uwe

    Hi
    You have two options here:
    1. Ask your portal team to remove the Approve , Reject buttons from the UWL. It is possible via UWL Configurations in Portal
    2. Implement Check BADI for Invoices and make sure Approver puts a comment in the Invoice while approving or rejecting. In this caase system will not approve the invoice(there will be an error ) if the approver tries to approve the invoice from UWL. But in this case Approver will not be able to see the error details in UWL....UWL will give  ageneric message that document could not be approved or exception kind of message
    Regards
    Virender Singh

  • Presets used for Printing / Relative Develop Presets

    Hi
    I am still not able to produce accurate colors when printing on my HP Color Laserjet CP3505X (the printer does not allow me to disable color management, and yes, I am using a calibrated monitor). Even with the sRGB profiles mentioned here (http://forums.adobe.com/message/2165085#2165085) and printer settings on sRGB I still have a color shift in my prints.
    But I could (by experimenting) find out, what corrections have to be applied to the images for them to come out right in printing (e.g. Temperature +600, Tint +15).
    Is there a way to have such a correction applied while printing, like a preset used only when printing?
    Or, if not, is there a way to define a develop preset which acts relative (cumulative), meaning that I only code the difference of what I want to be added to the rest of the development settings? Such a preset then could be applied as the last action before printing.
    Either method would partially solve my problem.
    Beat Gossweiler
    Switzerland

    Jao,
    Jao vdL wrote:
     Not using Lightroom's controls. What you describe is exactly what a printer profile is supposed to do. 
    I know that this is the purpose of a printer profile. What I would need is a correction (preset) on top of the profile used.
    II. Create a real printer profile. You can either do this using a higher-end calibrator or using one of several services. Usually you download a file. Print it. Mail it to them and they send you back a profile that will work for the combination of ink/paper/printing settings that you used. See for example:
    http://www.inkjetart.com/custom_profiles/
    Or this websearch.
    Since I cannot switch off color management with my printer, I am using the sRGB profile you recommended in this post of yours and let the printer work with sRGB.
    I even would be able to create a printer profile myself (I own a Spyder3Print™ to calibrate a printer). But this involves being able to disable color management in the printer (driver) completely, which seems impossible with the CP3505X .
    So what I would need is a combination of the sRGB profile I use, corrected by lets say 600K temperature and 15 ticks tint. But I have no idea how to get there.
    Beat Gossweiler
    Switzerland

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

  • Does Revel have a backup retention for deleted files in the cloud and what is the encryption level it uses both end-to-end and locally?

    I'm interested in the premium version of this service however I'd like to know if:
    1. Revel has any kind of cloud backup feature for accidentally deleted files.
    2. What encryption strength does it use for it's end-to-end transfers and also for the local app and cloud storage
    3. Does it have 2 stage authentication?
    I ask because I need something picture friendly but is also HIPAA and SEC compliant.
    thanks!

    Hi nick2048,
    We take security and privacy very seriously and send all communication over encrypted channels.
    However, as a consumer photo site that supports user sharing, it is not our goal to achieve HIPAA certification
    Hope this helps!
    Glenyse

  • Since updating to LR5.5 it crashes about every 5-10 images while working in the development module. Computer is PC Windows 7 Home Premium. I have been using this computer for several years with zero problems. Is this related to the updating? What is the f

    Since updating to LR5.5 it crashes about every 5-10 images while working in the development module. Computer is PC Windows 7 Home Premium. I have been using this computer for several years with zero problems. Is this related to the updating? What is the fix?

    Do you get an error message? If so, what does it say?
    Do you get a Blue Screen?
    Does something else happen?

  • Using accrual engine for reversal of month end provisions

    Hello everyone,
    I am working on a requirement to set up accrual engine for automatic reversal of month end provisions (like electricity expense provision at month end which will be reversed on first day of next month).
    I understand that accrual engine is meant for handling accruals and deferrals. But having seen the manual option of FBS1 and F.81, I felt there must be an option in the accrual engine also to handle provisions and their reversal. Also, I saw some comments in this forum that using accrual engine it is possible to automatically reverse the postings.
    So I set up a test scenario in sandbox client with basic configuration for Manual Accruals (accrual type, methods, object category, number ranges, account determination)
    After that I created an accrual object which automatically created an FI document for the provision entry. So far it is fine and working as expected. Now, for reversing the document, I see two options:
    1) Reverse entire accrual run; or
    2) Reverse the accrual object.
    By reversing the accrual object, I was able to post a reversal FI document. I am not sure whether reversal of entire accrual run is right option since SAP help recommends to use this in case wrong key date was used.
    But both options require manual execution for reversal.
    Am I missing some other option? Is there any other option/setting in the accrual engine where it is possible to set up automatic reversal of a month end provision? Only if this is not feasible, I would look at other solutions (like FBS1+F.81 or FBS1+background job for F.81).
    Any inputs/pointers from the learned members will be highly appreciated.
    Thanks in advance,
    Raghu

    Hello Raghu,
    As far as I know, all clients I worked with preferred using "FBS1+background job for F.81" as they found this more flexible (adapt job variant and possible dynamic selection), easy to maintain and well understood by accountants (rather than using accrual type, methods, object category...)
    Tamim

  • Got an email stating my Creative Cloud Membership ends tonight, yet I'm all paid up and the card I'm using to pay for it is good.  I have two very important projects going on and can't afford to have CC go down.  Please help!

    got an email stating my Creative Cloud Membership ends tonight, yet I'm all paid up and the card I'm using to pay for it is good.  I have two very important projects going on and can't afford to have CC go down.  Please help!

    You have 3 CC under same Adobe ID out of which one purchased on has expired, you are getting notification due to this.
    Creative Cloud Photography plan (one-year)
    Desktop Subscription
    Mar 30, 2015
    The other two are active, however it is advisable to have one CC under one Adobe ID.
    Regards
    Rajshree

  • What are the best settings for video  compression if my end result is for use as  progressive .flv

    What are the best settings for video compression if my end result is for use as  progressive .flv.?
    Thanks,
    KIM

    Use the Final Cut Studio forum
    http://discussions.apple.com/forum.jspa?forumID=939

  • Contention for latches related to the shared pool was consuming significant

    We are having performance issue on our database. When I look at the AWR, I see that there is a contention for latches. Below is the AWR Report.
    ADDM Report for Task 'ADDM:1775307360_12808'
    Analysis Period
    AWR snapshot range from 12807 to 12808.
    Time period starts at 10-MAY-11 01.00.15 PM
    Time period ends at 10-MAY-11 02.00.23 PM
    Analysis Target
    Database 'ADVFDWP' with DB ID 1775307360.
    Database version 11.1.0.7.0.
    ADDM performed an analysis of all instances.
    Activity During the Analysis Period
    Total database time was 27827 seconds.
    The average number of active sessions was 7.71.
    Summary of Findings
    Description Active Sessions Recommendations
    Percent of Activity
    1 Shared Pool Latches 6.43 | 83.42 0
    2 Top SQL by DB Time 2.41 | 31.24 3
    3 "Concurrency" Wait Class 2.18 | 28.22 0
    4 PL/SQL Execution 1.53 | 19.86 1
    5 "User I/O" wait Class 1.33 | 17.24 0
    6 Hard Parse 1.24 | 16.14 0
    7 Undersized Buffer Cache .83 | 10.73 0
    8 CPU Usage .7 | 9.02 0
    9 Top SQL By I/O .31 | 4.04 1
    10 Top Segments by I/O .24 | 3.12 1
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Findings and Recommendations
    Finding 1: Shared Pool Latches
    Impact is 6.43 active sessions, 83.42% of total activity.
    Contention for latches related to the shared pool was consuming significant
    database time in some instances.
    Instances that were significantly affected by this finding:
    Number Name Percent Impact ADDM Task Name
    1 ADVFDWP1 99.31 ADDM:1775307360_1_12808
    Check the ADDM analysis of affected instances for recommendations.
    Finding 2: Top SQL by DB Time
    Impact is 2.41 active sessions, 31.24% of total activity.
    SQL statements consuming significant database time were found.
    Recommendation 1: SQL Tuning
    Estimated benefit is 1.07 active sessions, 13.82% of total activity.
    Action
    Run SQL Tuning Advisor on the SQL statement with SQL_ID "fdk73nhpt93a5".
    Related Object
    SQL statement with SQL_ID fdk73nhpt93a5.
    INSERT INTO SFCDM.F_LOAN_PTFL_MOL_SNPSHT SELECT * FROM
    F_LOAN_PTFL_MOL_SNPSHT_STG
    Recommendation 2: SQL Tuning
    Estimated benefit is 1 active sessions, 12.96% of total activity.
    Action
    Tune the PL/SQL block with SQL_ID "7nvgzsgy9ydn9". Refer to the "Tuning
    PL/SQL Applications" chapter of Oracle's "PL/SQL User's Guide and
    Reference".
    Related Object
    SQL statement with SQL_ID 7nvgzsgy9ydn9.
    begin
    insert into SFCDM.F_LOAN_PTFL_MOL_SNPSHT select * from
    F_LOAN_PTFL_MOL_SNPSHT_STG;
    end;
    Recommendation 3: SQL Tuning
    Estimated benefit is .4 active sessions, 5.2% of total activity.
    Action
    Investigate the SQL statement with SQL_ID "fcvfq2gzmxu0t" for possible
    performance improvements.
    Related Object
    SQL statement with SQL_ID fcvfq2gzmxu0t.
    select
    a11.DT_YR_MO DT_YR_MO,
    a11.IND_SCRTZD IND_SCRTZD,
    a13.CD_LNSTAT CD_LNSTAT_INTGRTD,
    sum(a11.CNT_LOAN) WJXBFS1,
    sum(a11.AMT_PART_EOP_UPB) WJXBFS2,
    sum(a11.AMT_LST_VLD_PART_UPB) WJXBFS3
    from
    SFCDM.F_LOAN_PTFL_MOL_SNPSHT
    a11
    join
    SFCDM.D_DETD_LNSTAT_CURR
    a12
    on
    (a11.ID_CYCL_CLOS_DETD_LNSTAT_SRGT = a12.ID_DETD_LNSTAT_SRGT)
    join
    SFCDM.D_LNSTAT_CD
    a13
    on
    (a12.ID_LNSTAT_CD_SRGT = a13.ID_LNSTAT_CD_SRGT)
    join
    SFCDM.D_LOAN_CHARTC_CURR_MINI
    a14
    on
    (a11.ID_LOAN_CHARTC_SRGT = a14.ID_LOAN_CHARTC_SRGT)
    where
    (a11.DT_YR_MO in (201103)
    and a14.CD_SFCRM_LOAN_BUS_LI not in ('L', 'T', 'W')
    and a13.CD_LNSTAT in (14)
    and not exists
    (select * from SFCDM.F_LOAN_PTFL_MOL_SNPSHT s
    where s.id_loan_syst_gend = a11.id_loan_syst_gend
    and s.dt_yr_mo

    It is worth checking the actual size of the shared pool e.g.
    select pool,sum(bytes)/1024/1024/1024 from v$sgastat group by pool;
    the parameters you ahve posted suggest you have set a minimum but no maximum, so it could very large.
    Next up is looking for unhared SQL i.e.
    select column1 from some_table where column2='A_VALUE';
    select column1 from some_table where column2='Another_Value';
    where the code should be using binds instead of literals for security and performance reasons, a simple way to find this is to look in v$sql for sql having the same plan_hash_value but different sql_Ids and compare the sql_fulltext of each statement.
    Also a possibility is sql with many child cursors, this is trickier as the cause may vary and may not be easy to fix. check th econtents of v$sql for sql that have high values in the child_number column anmd investigate the contents of v$sql_shared_cursor for the reason there are multiple child cursors.
    Chris

  • Inter Company Billing (for order-related)

    Dear SD Expert,
                  I have problem with "Inter Company Billing". What I have searched are showed in term of "Inter Company Billing (for Delivery-related). But, my case is about "Inter Company Billing (for Order-related). Thus, I got problem in created inter-company billing.
    <u><b>Ex</b></u>  In "Copy Control from Sales Order to Billing", the configuration guide suggest me to use "014 (Hdr dlv.rel.IC bill.)"; but, I didn't want it to copy from delivery order. How can I solve it?
    Could you help me on that?
    Best Regard,
    Prach

    Hi,
    I saw in SAP Forum that you faced a similar problem sometime back as I am facing now.  Just curious to check whether you had a solution for the same, if so, please share with me.  Please see below for my problem.
    We are using SAP R/3 4.6C version. Normally, the inter-company billing are delivery related and this is working fine. I am configuring the order related Inter-company billing, i.e. Third Party drop shipment with Inter-company. I refered to SAP notes 203876, 63459, 381042 and maintained the copy control between OR => IVA (for TAS) as follows:
    Copying requirement = '013',
    Invoiced quantity = 'F', (*)
    Quantity/value = '+',
    Pricing type = 'G'.
    The issue I am facing is when I try to create an Inter-company invoice (after the F2 Customer invoice), the End customer details is being pulled instead of the Inter-company customer details. In other words the Inter-company invoice is also being issued to the End customer. Also the prices are showing in negative.
    Kindly share with me if any of you guys know a solution for this. I have searched all the SAP forums, but couldn't find a similar issue.
    My concern here is, in none of the SAP notes, there is no information about the copying requirement at the header level between OR=>IVA. I am not sure whether this is causing the issue.
    My mail id is "[email protected]".
    I would appreciate your reply to this message.
    Regards,
    Saravanan

  • How do I add a widget to give a review or star rating for a book at the end of a book in iBooks Author?

    How do I add a widget to give a review or star rating for a book at the end of a book in iBooks Author? You know, how you buy books on iBooks and when you're finished reading it, there's a place where you can give a rating or review right there on the very last page?

    Just supply a link that says 'Review This Book' - use http://itunes.apple.com/linkmaker/ to generate one.

Maybe you are looking for

  • HT201412 My Ipod touch is flashing white how do i fix it?

    It sometimes fixes when its on charge but it is moastly white . The charger thing doesnt work anymore and this is getting on my nerves as i got it about 7months ago for £139.00 of off amazon! How can i make it stop flashing white and can only make ou

  • How to get the index of selected values in SelectManyChoice...

    How to get the index of selected values in SelectManyChoice... the value which i get is coming when i submit the value second time

  • Iphone 5 has a live of it's own..

    it's acting out of it's own.. I set the alarm en set it on a stand next to my bed (sticky plastic nothing fancy) and set it on power. If its on the stand for say 5 minutes the touch screen isn't touchable any more. I doesn't work on any touch so alar

  • Remittance advice E-mail

    Hi All, We have a remittance advice e-mail going out to vendors from AP after the check run is completed by the users. The users kick off conc. request to send the remittance advice. The module is coded to send the rem. advice when the vendors in the

  • Mass Maintain weighting key for vendor evaluation.?

    Hi experts Can anybody give some inputs for below issue 1.How to maintain weighting key for vendors . 2.How to maintain weighting key for all vendors in mass .(Mass maintainence) 3.How to get the report of vendor ranking list duration wise (Month, ye