Formula implementation issue

I have facing a problem to implement below issue.
below is the example
Master table          
code     desc     
1     REVENUES     
2     CAPITAL CHARGE     
3     REVENUES / Capital charge., %     
Transaction table          
code     process month     Amount
1     30-Apr-11     100
2     1-May-11     5000
we have to calculate value for code 3 like (code 1 /code 2)*100          
I want we want to keep this formula in a table and calculate as per formula given in the table ( formula is changeable) and because of this we can't write any direct formula in the procedure.
I am seeking help from forum on this issue. Thanks in advance.

Your solution needs small adjustement. You shoud generate xml not for whole table but just for the current row:
SQL> select * from t
  2  /
  REVENUES CAPITAL_CHARGE EQUATION
        10            100 REVENUES / CAPITAL_CHARGE
        20             50 REVENUES / CAPITAL_CHARGE
SQL> SELECT                                                     
  2                   REVENUES, CAPITAL_CHARGE,
  3                    TO_NUMBER (
  4                       EXTRACTVALUE (
  5                          xmltype (
  6                             DBMS_XMLGEN.
  7                              getxml ( 'SELECT '||EQUATION ||' RESULT FROM T'
  8                                )),
  9                          '/ROWSET/ROW/RESULT'))
10                       result
11               FROM t
12  /
                        xmltype (
ERROR at line 5:
ORA-19025: EXTRACTVALUE returns value of only one node
SQL > SELECT
                  REVENUES, CAPITAL_CHARGE,
                   TO_NUMBER (
                      EXTRACTVALUE (
                         xmltype (
                            DBMS_XMLGEN.
                             getxml ( 'SELECT '||EQUATION ||' RESULT FROM T WHERE ROWID = ''' || ROWID || ''''
                         '/ROWSET/ROW/RESULT'))
                      result
              FROM t
  REVENUES CAPITAL_CHARGE     RESULT
        10            100         .1
        20             50         .4
SQL> SY.

Similar Messages

  • Implementation issues in sap/bw

    Hi,
       This is srinivas can any one help me in telling what type of issues we will face in implementation project and can any one can send some scenario on cube and ods and multi-provider and infoset. please send me  some issues in transporting  and what type of issues we will face in implementation  and answers for error4,error9 with solutions in sap/bw.
    Regards,
    srinivas.

    These might be due to different reasons need to chk in ST22 for more details..anyway i am listing some
    error 4
    We will get this error when your flat file is opend and at the same time you are trying to load it, for this you have to close your file and reload it.
    or
    For invalid chars in the records then u can Go to PSA and edit the error record or go to RSKC and accept the special characters.
    Error 9
    This is due to timestamp then Replicate the data source and in se38 give RS_TRANSTRU_ACTIVATE_ALL for source system
    Or
    In ODS activation
    Implementation issues
    http://help.sap.com/bp_biv170/documentation/SolutionScope_EN.doc
    http://help.sap.com/bp_biv235/BI_EN/documentation/BWProjectPlan_EN.mpp
    Lifecycle Implementation
    Regards,
    B

  • End Routine Implementation Issue

    Hi Colleagues,
    I want to implemente an end routine in order to populate the material type from the material master data.
    The source structure of my transformation contain the material.
    The target structure of my transformation contain the material and material type infoobject.
    I have implemented the following source code in the end routine based on the sdn doc below :
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e73bfc19-0e01-0010-23bc-ef0ad53f2fab
    My source code is :
    Global data declaration
    List of all Employees and corresponding sales organisation
        DATA: BEGIN OF I_S_MATERIAL_TYPE,
          MATERIAL TYPE /BI0/PMATERIAL-MATERIAL,
          MATERIAL_TYPE TYPE /BI0/PMATERIAL-MATL_TYPE,
        END OF I_S_MATERIAL_TYPE.
        DATA: i_t_material_type like table of I_S_material_type.
      METHOD end_routine.
    *=== Segments ===
        FIELD-SYMBOLS:
          <RESULT_FIELDS>    TYPE tys_TG_1.
        DATA:
          MONITOR_REC     TYPE rstmonitor.
    $$ begin of routine - insert your code only below this line        -
    local data declaration
        data: e_s_result type tys_TG_1.
        data: e_t_result type tyt_TG_1.
        data: material_type like e_s_result-matl_type.
    read master data in local table once
          SELECT MATERIAL MATL_TYPE FROM /BI0/PMATERIAL
            into corresponding fields of table i_t_material_type
            WHERE  MATERIAL  = <RESULT_FIELDS>-material
            AND    objvers  = 'A'.
    Do the calculation and add the new rows
    *>>
    loop over the input result data package
        loop at RESULT_PACKAGE into e_s_result.
    get Counter
          read table i_t_material_type into e_t_result with key
          material = e_s_result-material.
             move material_type to e_s_result-matl_type.
             append e_s_result to e_t_result.
        endloop.
    add the lines to the output package
        refresh RESULT_PACKAGE.
        move e_t_result[] to RESULT_PACKAGE[].
    $$ end of routine - insert your code only before this line -
      ENDMETHOD. "end_routine
    $$ end of routine - insert your code only before this line         -
    ENDMETHOD.                    "end_routine
    I have the following error message :
    E:"E_T_RESULT" cannot e converted to the line type of
    "ME->I_T_MATERIAL_TYPE"
    Question :
    Can someone explain me what is the issue in my source code ?
    Cheers,

    Hi Vijay,
    Thanks for your precious answer !
    I have modified the matl_type - but I still have the same error message on the read table coding part.
    Error message: E:"E_T_RESULT" cannot be converted to the line type of
                                  "ME->I_T_MATL_TYPE".
    Global data declaration
    List of all Employees and corresponding sales organisation
        DATA:
        BEGIN OF I_S_MATL_TYPE,
            MATERIAL  TYPE /BI0/PMATERIAL-MATERIAL,
            MATL_TYPE TYPE /BI0/PMATERIAL-MATL_TYPE,
        END OF I_S_MATL_TYPE.
        DATA: i_t_matl_type like table of I_S_matl_type.
    local data declaration
        data: e_s_result type tys_TG_1.
        data: e_t_result type tyt_TG_1.
        data: matl_type like e_s_result-matl_type.
    read master data in local table once
        SELECT MATERIAL MATL_TYPE FROM /BI0/PMATERIAL
        into corresponding fields of table i_t_matl_type
        WHERE MATERIAL = <RESULT_FIELDS>-material
        AND objvers = 'A'.
    Do the calculation and add the new rows
    loop over the input result data package
        loop at RESULT_PACKAGE assigning <result_fields>.
    Error message: E:"E_T_RESULT" cannot be converted to the line type of*
                                 "ME->I_T_MATL_TYPE".*
          read table i_t_matl_type into e_t_result with key
          material = e_s_result-material.
          <RESULT_FIELDS>-matl_type = i_t_matl_type-matl_type
          Modify result_pacakage from <result_fields>
        endloop.

  • Formula Variable issue

    Hi,
    Can someone help me with the following issue as my client wants it quick.
    I have created a formula variable called "Enter number for formula" for number and used this formula variable  in a calculated key figure. When I run the query, it will ask me to enter a number in the formula variable and this number will be used in the calculated key figure to get the results for the calculated key figure in the report.
    Now the point here is that customer has to enter either 5 or 6 or 7 only in this formula variable and should not allow other numbers in the formula variable and more over we should have a selection option with only these 3 values and when customer pressses F4, he should get an option of selecting any one from these 3 values.
    Is this requirement feasible? If So can any one help me with an example.
    Advance Thanks for your help.
    Kishore

    Hi Aby,
    I have a quick question. My first priority is that, is selection option can be enabled for formula variable i,e when ever customer executes a query and presses F4 he should get 5 or 6 or 7 and has to select any one out of three.
    I can give the formula variable description "Enter either 5 or 6 or 7" but this can be worked out only if I have less values but if I have to select some numbers from 1 to 100 then definitely I need a selection option,
    and is the reason we are looking for selection option with the required values.
    Can you please help me with this.
    Thanks,
    Kishore

  • Financial Reporting Question - Formula row Issue

    Hello,
    I have a financial reporting question and would like to have your inputs in order to achieve what I am trying to do.
    I have a report with two grids – grid 1 & grid 2. And there is a formula row in grid 2 that is “change between the two years” worth of data. The year and period combination is in the page of the grids.
    Formula row (in grid 2) = ((Grid1.[b,6]) - [b,6]) / [b,6]
    The issue is when I change the Page selection in Grid 1 the formula in grid 2 doesn’t get updated values unless and until I make a change in the grid 2 Page selection too. If I don’t make any changes in the page selection in grid 2 it keeps the data (looks like it is still considering the previously retrieved/calculated values) as it is without any update.
    How can I make the formula row in grid 2 dynamic so that it gets updated no matter what combination of page selection I make in either grid 1 or grid 2 or even if I just change something in grid 1 and nothing in grid 2?
    Please let me know your inputs. Any help is appreciated.
    Thanks,
    Krrish
    Edited by: Krrish on Dec 3, 2012 7:45 AM

    Page POV will be specific to the grid.Why can't you try to have the POV at the report level.In the HTML view of the report,the report will give you a Drop Down to select POV for all Grids.Select All Grids option and then set the POV which will be same for both the grids (which you want) and all your formulas will work.

  • Smartform Implementation issue for the report  RFKORD50

    Hi,
    I have a requirement to implement a smartform for FI Invoice. 
    This smartform should be configured in OB96 for the print program RFKORD50.
    Currently the SAP Script F140_DOCU_EXC_01 has been configured for Standard print program RFKORD50.
    This SAP Script should be replaced with Smartform. But the issue is the report  RFKORD50 is designed to
    call only a SAP Scrip. Is there any better way to trigger the Smartform other than modifying the standard program?
    Thanks,
    Sailaja.A

    Hi,
    One of the very tough task, when it comes to migrate a script into Smartforms .. With a satndard print program ..
    You have a option on samrtform screen , just to migrate a Sapscript into Smartform .. But it is just a migration of Layout.. means just creation of WINDOWS and pages.. All the elements and text node creation still you need to do ..
    But one of the major challenge is to Customize your print program..
    So i will suggest you to create a Z copy of RFKORD50.. as print prgm .. Then you can feal better
    Now keep all the data selection part as it is .. collect it in different structure, then call your samrtform..
    and before calling your smartform, prepare your layout ..
    Very Imp suggestion, try to work on small small task.

  • ESS implementation issue.

    hi all
    I am implementing ESS on the NW04s platform. I have done all configuration in the front end and the back end (ECC 5.0). When I assign the role ESS to a user I see only the role, workset and one page (overview). I am not able to see the other pages even though they are attached to the role. Initially I did not even see the role but then attached the everyone group to the same. Now I am unable to find the issue for the pages not appearing. Can I use ECC 5.0 and EP 7.0 for BPs. Any help?
    Thank you all.
    regards
    LNV

    Check the permission role and Role content..
    you can open the location of ESS content and there right click and open permissions and then assign it to your role.
    you can check <a href="http://help.sap.com/erp2005_ehp_02/helpdata/en/f6/263359f8c14ef98384ae7a2becd156/frameset.htm">Setting of permissions</a>
    also check the authorization section of <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3467">Document</a>
    Hope this helps.
    Warm regards,
    Sudhir

  • Roll-out project implementation issue

    Dear colleagues,
    This issue might have already been turned up but couldn't find any related threads.
    We have created our template project, set up the structure, added project documentations (11MBs converted to PDF ), training materials, everything seems to be ok here.
    Now we have to create our first implementation project based on the template. Template is defined and is public (visible), Global Rollout Functionality is activated. The issue is, when we cretate the implementation project the structure is copied from the template, even the training materials can be seen in SOLAR02, but none of our blueprint documents are copied to the roll-out project.
    Have you ever faced such situation before? Do you have any clue where to find the root cause of this?
    thanks in advance for your replies
    Szabolcs
    Edited by: Szabolcs Dombó on Jul 17, 2008 1:26 PM

    Hi,
    Below mentioned is the details of using the SOLMAN for template rollout project. Hope this helps you.
    The process of setting up and using the template in projects involves two or more individual projects. The first project is referred as "Master Project".
    For Master project: Global Program Setup(Project Preparation)
    - Create a master project. this must be of project type template since this will allow the packaging of reuse elements.
    - Create the required number of templates(with in master project). At this stage, these templates are empty packages.
    - Select standard scenarios as a starting point to build business scenarios in the master project, in the same way as for a normal project.
    For Master project: Global Buisness Blueprint
    - Detail standard scenarios to customer specific solution structure
    - Assign template(s) at the scenario level of the customer specific solution structure
    - Set global attributes to determine global/standard/harmonised/local processes
    - Describe global business and technical requirement.
    ==========================================
    Reuse of template at local rollout site
    Project Preparation:
    - Create a local "rollout" project. This can be either an implemetation project type or can itself be a template project type if you may need to reuse sections of this project in its own right.
    - Select one or multiple templates and related scenarios in the scope tabbed page.
    Note: there is no direct relationship between the templates choosen here. In other words you can attach tempalte form multiple other "master" projects, which may have no other relationship to one another.
    Business Blueprint:
    - The contents of the templates which have been attached to the "roll-out" project appears as elements of the project structure.
    - Processes defined as global attributes with in the template area dopted wholesale with no changes.
    - Adapt harmonised and local processes to local specific requirement(such as enhance process scope).
    - Document local specific requirements of harmonised or local processes.
    - Add further local specific structure elements as required and document.
    Hope this help. Pls assign points.
    Rgds
    Manish

  • Unit price formula syntex issue in Contract line item

    Hi All,
    I have uploaded price condotion XML from SRM to Sourcing. I have defined integarted Master agreement and added 0ICT item price condition for service and materila. I was able to add line item and publish to SRM.
    I tried creating new custom price condition in Sourcing adn saved. After this I am not able to add line item in master agreement. It is showing systex error in unit price formula under document setup->formula.
    I faced this error in past when I haven't added item price condition in master agreement type as default for material and service.
    I don't know what went wrong. I have inactivated the custom price condition, imported the standard SRM again via XML and deleted priviously added price condition from the master agreement type and defualt with new one but no luck. I tried creating new master agreement type also but same error.
    Please let me know if anybody has faced the issue in past and able to fix it.
    Regards,
    Deepak

    Hi Avinash,
    Thank you very much dear...It is appearing in the report as you said.
    I am wondering why  it is not appearing in the standard Plan line item reports CJI4 or S_ALR_87013542 ? any clue.. Anyhow I have given points for your reply.
    Thanks once again for ur reply..
    Regards
    Tajammul

  • How to implement issuing stock in-transit for stock transport orders

    Hello,
    We are using stock transport orders in SAP. At the moment the supplying plant does a post goods issue for the delivery, the stock in-transit is "owned" by the receiving plant. Our Finance department wants this to be changed in such a way that the stock will be owned by the issuing plant until it has been received by the reciving plant.
    It seems there is a possibility to do that, but I can not figure out what exactly needs to be done. Can someone explain to me the steps that need to be taken to implement this?
    Thanks,
    Ed

    Try MB5TD. Please also check OSS notes 1120843, 1268193, 925384.
    Edited by: Csaba Szommer on May 22, 2009 8:28 AM

  • Q4_How to manage software material and BOM in SAP_High-tech Industry PLM Implementation Issues

    Hello,
    We are implementing SAP PLM for a high-tech company which designs and manufactures mobile phones (ODM). Since we are new in PLM consulting and we are facing with some implementation difficulties, we are looking for some solutions here.
    Question 4: How to manage software material and BOM in SAP?
    Currently, software are not managed as material in the BOM.  How to manage software material in PLM, can anyone help us with some suggestions.
    Question 5: PADS integration with PLM.
    Currently, customer is using Pro/E and PADS to design their product. SAP has already provided standard interface for Pro/E integration. But for PADS, there is no such interface. Because of the specialization of electrical components managed in PADS, different from structural parts in Pro/E, how to transfer them between PLM system and manage them in the PLM system has become an difficulty. We will appreciate a lot if anyone can share us with some successful solutions.

    Hi,
    software, typically a released version of software, is typically managed as a normal material master, and a related document with the code as a package (e.g. ZIP), if really needed.
    Software in development is managed typically with a dedicated Software Configuration Management tool like Rational ClearCase, Subversion, MKS Integrity, ....
    Regards, Ulf

  • R12.1.1 Receivable Module Implementation Issue

    Hi Friends
    I have going to implement R12.1.1 receivable module. I have already implemented same version GL module.
    Now I am working R12.1.1 vision server to initial implement of AR module but I am getting an error and I can’t open any transaction screen. I have done below works:
    1.     Create a Receivable Responsibility (IBCS Receivable Administrator)
    2.     The above (IBCS Receivable Administrator) responsibility I have created from Receivable Vision Operation (USA) i.e. Menu, Request Set etc.
    3.     I have created a Legal Entry and Operating Unit
    4.     Assigned the Operating Unit with IBCS Receivable Administrator
    5.     Assigned the above responsibility with my user
    After doing the above 5 activities when I am trying to open any receivable transaction I getting below error:
    ORA-01403: no data found
    FRM-40735: PRE-FORM trigger raised unhandled exception ORA-06502.
    Please help me. I will be very happy if anybody give a quick solution.
    Thanks
    Makshud

    Hi ;
    Please check below and see its helpful:
    ARXSUDRC: Cannot Open Receipt Class Form - FRM-40735, ORA-6502 [ID 729552.1]
    Quoting Forms User Interface TSG (11.5.6 - 11.5.8) [ID 181041.1] <<part : Error: FRM-40735, ORA-06508, ORA-01403: Setup Sales Supplement Data form errors Problem
    MultiOrg Setup: FRM-40735 Trigger raised unhandled exception in Form ARXTWMAI and ARXRWMAI [ID 260244.1]
    Regard
    Helios

  • Shared Services - CustomClass implementation issues, need help?

    We are attempting to deploy a custom login and custom authentication module to Shared Services, but we are receiving the following error:
    [2013-11-15T13:43:23.527-05:00] [EPMCSS] [NOTIFICATION:16] [EPMCSS-20007] [oracle.EPMCSS.CSS] [tid: 14] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.cache.ProviderCacheThread] [SRC_METHOD: run] Group cache completed for user directory PJIFRAN and size of group cache is 1,420. Status message. No action required.
    [2013-11-15T13:43:24.098-05:00] [EPMCSS] [WARNING] [EPMCSS-10349] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.CSSCustomModulesFactory] [SRC_METHOD: getAuthenticationModule] An error has occurred. Unable to load custom authentication class. No action required.
    [2013-11-15T13:43:24.110-05:00] [EPMCSS] [ERROR] [EPMCSS-00093] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.CSSCustomModulesFactory] [SRC_METHOD: getAuthenticationModule] Failed to initialize custom authentication class com.mydomain.esd.essbase.security.CustomAuthenticationImpl. Check for previous errors in the log file. Refer Shared Services security guide for Custom authentication implementation details.
    [2013-11-15T13:43:24.110-05:00] [EPMCSS] [ERROR] [] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.log.CSSLog] [SRC_METHOD: getLogLevel] ERROR:- Failed to get log level for 084
    [2013-11-15T13:43:24.110-05:00] [EPMCSS] [WARNING] [] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.spi.CSSManager] [SRC_METHOD: initCustomAuthenticationModule] 084
    [2013-11-15T13:43:24.142-05:00] [EPMCSS] [ERROR] [EPMCSS-00088] [oracle.EPMCSS.CSS] [tid: 10] [ecid: disabled,0] [SRC_CLASS: com.hyperion.css.facade.impl.SecurityAgentCustomLoginClass] [SRC_METHOD: SecurityAgentCustomLoginClass] Failed to initialize Security agent custom authentication class com.mydomain.esd.essbase.security.CustomLoginImpl. com.mydomain.esd.essbase.security.CustomLoginImpl. Verify custom authentication configuration and classpath settings.
    We've created a customAuth.jar and place it in the following directory:
    /oracle/Middleware/user_projects/domains/EPMSystem/lib/customAuth.jar
    We then setup custom authentication for the User Directories in the Hyperion Shared Services console.
    Unfortunately there aren't any other logs indicating why the error might be occurring.
    Any information would be helpful.

    Hi,
    According to your description, my understanding is that machines failed to ping the server name, and successfully to ping its IP address.
    First check to see if DNS related port 53 is opened on the DC, or disable any anti-various software temporally, then ping the DC’s
    FQDN and confirm that if the name would be resolved.
    >The host 7acf7675-12f6-4280-84ff-ca225bc99373._msdcs.REGENCYVILLAGE.LOCAL could not be resolved to an IP address.
    You domain name is REGENCYVILLAGE.LOCAL. It seems that the DNS server failed to resolve your DC’s name. check the zone named REGENCYVILLAGE.LOCAL to see if an A record is corresponding to your DC.
    >75.75.75.75 (<name unavailable>) [Invalid], 75.75.76.76 (<name unavailable>) [Invalid]
    It seems that invalid IP address of DNS server on the TCP/IP properties of DC. 
    I want to confirm with you that if you have installed the DNS with installing AD DS. Just the DC’s name can’t be resolved? Or any other device also has the same question?
    =======
    You may use AD DS Best Practices Analyzer (BPA), which is a server management tool that can help you implement best practices in the configuration of your Active Directory environment. Detailed information reference:
    https://technet.microsoft.com/en-us/library/dd391875(v=ws.10).aspx
    besides, suggestion about Active Directory Best practices, just for you reference:
    https://technet.microsoft.com/en-us/library/cc778219%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Disable Shared memory & Named Pipes protocols - Post implementation issues

    Hi,
     As per security guidelines, we disabled Shared memory & Named Pipes protocols and enabled "TCP/IP" only. Also, we changed the port# from 1433 to 1533 and after that, in management studio, SQL Server Error logs is not openning up and SQL
    Agent Service doesn't start.
     Error while opening SQL Server Error Logs in SSMS:
    The description for Event ID 17052 from source MSSQLSERVER cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    Severity: 16 Error:10061, OS: 10061 [Microsoft][SQL Server Native Client 11.0]TCP Provider: No connection could be made because the target machine actively refused it. 
    the message resource is present but the message is not found in the string/message table
    Error while trying to start SQL Agent Service from the configuration manager:
    SQLServerAgent could not be started (reason: Unable to connect to server '(local)'; SQLServerAgent cannot start).
     We changed the Server host in the registry by entering <ServerName>,<Port#>. This resolved SQL Agent Service startup issue. After startup, we tried to run jobs but they all are failing with the below error.
    Job runtime Error:
    Could not load package "Maintenance Plans\Daily DB Backups" because of error 0xC0014062.  Description: The LoadFromSQLServer method has encountered OLE DB error code 0x80004005 (Login timeout expired).  The SQL statement that was issued
    has failed.  Source:   Started:  4:40:45 PM  Finished: 4:41:00 PM  Elapsed:  15.547 seconds.  The package could not be loaded.  The step failed.
     Resolution: If I create an alias name then all problems are solved.
     Question: Alias name is the only one solution or is there any other turn around? For some reason, I’m not at all comfortable with alias name. I feel like cheating. :-) .
     PLEASE COMMENT
    If you feel that I have answered your question then please "Mark as Answer".

    Hi,
     Shared memory is a security threat reported by several security audit tools. In our company, we are using "DBProtect" and "FortiDB" tools. Both checks for "Shared memory" & "Named Pipes" protocols. In case,
    our server is compromised then the last step is to get into the SQL Server to steal the data and we are trying to restrict this from being happening. So, we are disabling both protocols.
     Finally, we got it worked.
     "Cliconfig" in run command and enable "TCP/IP" protocols and it worked like a charm. This is a fluke resolution and I don't know the technical reason why we need to do this in "Client Configuration" on the server when
    we have "Configuration Manager".
     We successfully configured by disabling "Shared memory/Named Pipes" protocols. SQL Browser is also disabled & no aliases are configured.
    Thanks.
    If you feel that I have answered your question then please "Mark as Answer".

  • Sap Note implementation Issue

    Hi All,
    While implementing an Oss note using SNOTE it is giving a popup asking to implement a prerequisite note, but this prerequisite note is already in status "Implemented completely" and processing status was set to "Completed" earlier. What could be the reason. Help needed.
    Regards
    Sunita

    Hi Sunita,
    Check out the link. This might help you to solve your problem.
    Thanks,
    Chidanand

Maybe you are looking for

  • Error when trying to connect to BT Fon

    My laptop was connecting to my BT Homehub, wirelessly, without any problem. When I moved it to another location and tried to connect to a BTFon hotspot, although the Wireless Network Connection in the system tray showed an Excellent/Good connection,

  • ICloud doesn't work with anything but Yosemite?

    i just found this: A note about iCloud Drive and iOS 8 When you upgrade to iOS 8, you will be prompted to upgrade to iCloud Drive. If you choose to upgrade, your iOS 8 devices can no longer transfer files to iOS 7 devices or Macs running OS X 10.9 or

  • Proxy to HTTP comm

    Hi , I have an Scenario where SAP ECC is communicating with HTTP in synchronous fashion. My requirement is that HTTP supports only Get() where as XI supports the Post() function.I need a synchronous Communication between them..... Any Help is highly

  • I have error 1611 how to fix

    hello

  • Oracle Jinitiator latest version

    Hello! which is the latest version of Oracle Jinitiator available for oracle forms and which parameters to be reconfigure for usage of newer version (if available) Thanks in Advance