Link to a 3rd party URL

Hi All,
I would like to know your suggestions on implementing the following,
I have a requirement to redirect to a 3rd party portal URL form a link in OAF page.
For ex, a link/button like 'Enter' in OAF page should open the url (http://aa.bb.com/login.cfm) in a new page
The problem is, the login details are to be passed as request params along with the URL (http://aa.bb.com/login.cfm?userName=aa&password=bb) and these details should be hidden to the users (In the GUI, In the URL link and also in the page view source)
How to achieve this in OAF page ?
- Senthil

Tapash,
There are couple of things:
1)I told this as a generic approach, I am not considering only serilizable objects like string. Definatley if i have just 1-2 serilizable objects there is no point of having a class for it.
2)Say for example I have 20 objects which are to be utilised by session, so eveytime i have to create new session objects and invalidate the old session objects, i would have to write the same statement 20 times?
3) If you are working in a team and different users are using different session objects, how would someone in team , when removing all objects know or be sure that all exactly have been removed??
For point 2 and 3 in J2EE, we make either session beans of serilizable class with scope as session.The same applies here.
--Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Link between 3rd party software and SAP

    Our company uses a 3rd party software for its payroll processing.  At the end of every 2 weeks, we receive an Excel file that the clerk sorts and uploads into SAP using LSMW.
    The Director of Finance thinks that this process can be achieved much quicker/faster/more efficiently, and he wanted to know if we can directly establish a link between the 3rd party payroll software and SAP. 
    Any thoughts on how this can be established?  Do I have to write a BAPI functional specification for this and work with the ABAP team?
    Thanks in advance for all your help.
    Regards,
    Vijay.

    Hi Vijay,
    Through BAPI / BDC / Idoc you can achive this requirement.
    Ex:
    1 - Create Landing Table in R/3
    2 - Pull Data from Leagacy to SAP Landing Table
    3 - From Landing Table you can post to SAP
    http://www.sap-img.com/general/what-are-the-methods-to-migrate-data-from-a-legacy-system-to-sap.htm
    http://saphrexpert.blogspot.com/2008/11/batch-data-communication-bdc-in-sap-r3.html
    Regards
    Viswa

  • Send xml file from sap to third party url through https

    Hi,
    I have a requirement to send the xml file from ecc to a 3rd party url through HTTPS. How can we achieve this using ABAP.
    Client doesn't have XI enviroment. The client has provided the 3rd party url where the file needs to be uploaded.
    Please help ! <removed by moderator>
    Thanks in advance.
    Regards,
    Chitra.K
    Edited by: Thomas Zloch on Sep 12, 2011 12:58 PM

    Hi Chitra,
    I had similar requirement and here is what I did: -
    REPORT  Z_HTTP_POST_TEST_AMEY.
    DATA: L_URL               TYPE                   STRING          ,
          L_PARAMS_STRING     TYPE                   STRING          ,
          L_HTTP_CLIENT       TYPE REF TO            IF_HTTP_CLIENT  ,
          L_RESULT            TYPE                   STRING          ,
          L_STATUS_TEXT       TYPE                   STRING          ,
          L_HTTP_STATUS_CODE  TYPE                   I               ,
          L_HTTP_LENGTH       TYPE                   I               ,
          L_PARAMS_XSTRING    TYPE                   XSTRING         ,
          L_XSTRING           TYPE                   XSTRING         ,
          L_IS_XML_TABLE      TYPE STANDARD TABLE OF SMUM_XMLTB      ,
          L_IS_RETURN         TYPE STANDARD TABLE OF BAPIRET2        ,
          L_OUT_TAB           TYPE STANDARD TABLE OF TBL1024
    MOVE 'https://<hostname>/xxx/yyy/zzz' TO L_URL.
    MOVE '<XML as string>' TO L_PARAMS_STRING.
    *STEP-1 : CREATE HTTP CLIENT
    CALL METHOD CL_HTTP_CLIENT=>CREATE_BY_URL
        EXPORTING
          URL                = L_URL
        IMPORTING
          CLIENT             = L_HTTP_CLIENT
        EXCEPTIONS
          ARGUMENT_NOT_FOUND = 1
          PLUGIN_NOT_ACTIVE  = 2
          INTERNAL_ERROR     = 3
          OTHERS             = 4 .
    "STEP-2 :  AUTHENTICATE HTTP CLIENT
    CALL METHOD L_HTTP_CLIENT->AUTHENTICATE
      EXPORTING
        USERNAME             = 'testUser'
        PASSWORD             = 'testPassword'.
    "STEP-3 :  SET HTTP HEADERS
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_HEADER_FIELD
          EXPORTING NAME  = 'Accept'
                    VALUE = 'text/xml'.
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_HEADER_FIELD
        EXPORTING NAME  = '~request_method'
                   VALUE = 'POST' .
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_CONTENT_TYPE
        EXPORTING CONTENT_TYPE  = 'text/xml' .
    "SETTING REQUEST DATA FOR 'POST' METHOD
    IF L_PARAMS_STRING IS NOT INITIAL.
       CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
         EXPORTING
             TEXT   = L_PARAMS_STRING
         IMPORTING
               BUFFER = L_PARAMS_XSTRING
         EXCEPTIONS
            FAILED = 1
            OTHERS = 2.
    CALL METHOD L_HTTP_CLIENT->REQUEST->SET_DATA
        EXPORTING DATA  = L_PARAMS_XSTRING  .
    ENDIF.
    "STEP-4 :  SEND HTTP REQUEST
      CALL METHOD L_HTTP_CLIENT->SEND
        EXCEPTIONS
          HTTP_COMMUNICATION_FAILURE = 1
          HTTP_INVALID_STATE         = 2.
    "STEP-5 :  GET HTTP RESPONSE
        CALL METHOD L_HTTP_CLIENT->RECEIVE
          EXCEPTIONS
            HTTP_COMMUNICATION_FAILURE = 1
            HTTP_INVALID_STATE         = 2
            HTTP_PROCESSING_FAILED     = 3.
    "STEP-6 : Read HTTP RETURN CODE
    CALL METHOD L_HTTP_CLIENT->RESPONSE->GET_STATUS
        IMPORTING
          CODE = L_HTTP_STATUS_CODE
          REASON = L_STATUS_TEXT  .
    WRITE: / 'HTTP_STATUS_CODE = ',
              L_HTTP_STATUS_CODE,
             / 'STATUS_TEXT = ',
             L_STATUS_TEXT .
    "STEP-7 :  READ RESPONSE DATA
    CALL METHOD L_HTTP_CLIENT->RESPONSE->GET_CDATA
            RECEIVING DATA = L_RESULT .
    "STEP-8 : CLOSE CONNECTION
    CALL METHOD L_HTTP_CLIENT->CLOSE
      EXCEPTIONS
        HTTP_INVALID_STATE = 1
        OTHERS             = 2   .
    "STEP-9 : PRINT OUTPUT TO FILE
    CLEAR : L_XSTRING, L_OUT_TAB[].
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
        EXPORTING
          TEXT   = L_RESULT
        IMPORTING
          BUFFER = L_XSTRING
        EXCEPTIONS
          FAILED = 1
          OTHERS = 2.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        BUFFER                = L_XSTRING
      TABLES
        BINARY_TAB            = L_OUT_TAB .
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       FILENAME                        = 'C:AMEYHTTP_POST_OUTPUT.xml'
      TABLES
        DATA_TAB                        = L_OUT_TAB .
    Also, following is the detailed link for use of HTTP_CLIENT class: -
    http://help.sap.com/saphelp_nw70ehp1/helpdata/EN/1f/93163f9959a808e10000000a114084/content.htm
    Also, in below link, you can ignore XI specific part and observe how its sending XML to external URL:-
    (I know it describes call to SAP XI server's URL, but it can be used to call any URL)
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/ae388f45-0901-0010-0f99-a76d785e3ccc
    In addition to all above, following configs to be present at ABAP application server: -
    1. The hostname used to URL should be present in SAP ABAP application server's 'hosts' file.
    2. Security certificate (if available) for URL to be called must be installed in SAP ABAP application server.
    Let me know if you achieve any progress with it...

  • Using 3rd party library on linux (ABI Compatibility ?)

    Hi all !
    I am facing a problem while developing an application that uses a 3rd party library. This 3rd party library is an OCR Engine.
    Actually I am able to use this OCR from Java via JNI under windows. Now I try to do the same thing under Linux.
    I created a C++ wrapper shared library linking the OCR Engine shared library.
    I wrote 3 JNI functions for :
    - loading the engine
    - closing the engine
    - setting the engine language support
    Using my wrapper from any C/C++ program works fine. But when I use a JNI interface to these method, it ends randomly with a segmentation fault.
    Consider this simple program :
    engine.nativeLoadEngine();
    for(int i = 0; i < 500; i++)
    bq. engine.nativeSetTextLanguage( "French" );
    engine.nativeCloseEngine();
    Sometimes the segmentation fault appears before the nativeLoadEngine(), sometimes after nativeCloseEngine(), sometimes at iteration N etc.
    It cannot be a matter of my JNI code because... take a look at my functions bodies :
    * Class: com_XXX_ocr_OCREngine
    * Method: initEngine
    * Signature: ()V
    JNIEXPORT void JNICALL Java_com_XXX_ocr_OCREngine_initEngine( JNIEnv* env, jobject thisObj )
    * Class: com_XXX_ocr_OCREngine
    * Method: closeEngine
    * Signature: ()V
    JNIEXPORT void JNICALL Java_com_XXX_ocr_OCREngine_closeEngine( JNIEnv* env, jobject thisObj )
    * Class: com_XXX_ocr_OCREngine
    * Method: setTextLanguage
    * Signature: (Ljava/lang/String;)V
    JNIEXPORT void JNICALL
    Java_com_XXX_ocr_OCREngine_setTextLanguage( JNIEnv* env, jobject thisObj, jstring textLang )
    Even if I do "nothing" in the bodies, I face segmentation faults. If I don't link the OCR library, it is self-evident that there is no problem.
    I even used JNA (https://jna.dev.java.net/) to access a shared library exposing my three functions and linking to my 3rd party .so. I reproduced the same issue.
    Config :
    Ubuntu 2.6.20-16
    gcc 4.1.2
    libstc++6
    jdk1.5.0_11
    My wrapper and OCR Engine are both linking to :
    libc.so.6
    libstdc++.so.6
    My libjvm.so is linking to :
    libc.so.6
    I tried both g++ and gcc to compile my wrapper.
    Am I facing a kind of ABI compatibility issue between libjvm.so and my OCR engine 3rd party library ?
    I tried some compile command tweaking but it was pointless. It really seems hopeless to me...
    Thanks for any help.

    I believe I built Boost using the complete option. I have several files for each library, for example, I have the following in the boost_1_47_0\stage\lib\  folder:
    libboost_regex-vc100-mt-1_47.lib
    libboost_regex-vc100-mt-gd-1_47.lib
    libboost_regex-vc100-mt-s-1_47.lib
    libboost_regex-vc100-mt-sgd-1_47.lib
    libboost_regex-vc100-s-1_47.lib
    libboost_regex-vc100-sgd-1_47,lib
    boost_regex-vc100-mt-1_47.dll
    boost_regex-vc100-mt-1_47.lib
    boost_regex-vc100-mt-gd-1_47.dll
    boost_regex-vc100-mt-gd-1_47.dll
    I think the ones that have the -s- in the filename are the static versions of the library.
    I've tried changing the Project Properties->C/C++->Code Generation->Runtime Library settings without luck. And I'm not sure if there are other settings that I need to change.

  • 3rd Party Sales Issue

    Dear Guru's
    We have a process for creating 3rd Party Sales Order which use the standard TAS item category. SO is created and we then manually create a Purchase Order based on the Pur Req created when the Sales Order was saved. This all works fine. When we get the Vendors Invoice we post the Invoice via MIRO, again this is OK when the qty matches the Sales Order qty. If the vendor part delivers ie 10 out of 20, when the Sales Order Billing document is created, the Status of the Sales Order is set to Complete. Read some of the threads it would appear it should go to BILLED until the last Vendor Invoice comes in.
    Has anyone got any thoughts on what the problem might be, or is this a SAP standard issue?
    Many Thanks
    Paul Gray

    Hi Ravi
    I am a bit confused now.
    The process we have is to Create Sales Order with Item cat TAS and then link to a 3rd party PO. At the point the SO line Status is "Open". So Qty is 10
    If I then us MIRO to create a GR-IV for a Partial Qty IE 5 and Half the Value of the SO. This works OK and the SO Line Status is still "Open".
    Then Using VF01 to Create a Billing Doc, the Bill Doc is created with a Qty of 5 and the correct Value. However, the SO line Status has now changed to "Completed", even though I still have 5 Outstanding.
    If I then do the remaining GR-IV the SO line Status changes again to "In Progress" and upon creation of Billing Doc changes again to "Completed".
    Its the first part that cause me an Issue as we run several reports based on the Status and these Part Invoiced once show as Complete. As we still have material to deliver I would expect the Status to stay as Open or In Progress and not "Completed".
    Do you know if this is Standard SAP and If so is there a work around?
    Many Thanks
    Paul Gray

  • Volume not working on 3rd party apps

    My volume works on ipod, facetime, itunes (all apple native apps) on my ipad 2, but not on any other 3rd party apps such as zombies, angry birds and time/warner tv apps.  I have checked volume both within apps and in settings.

    Hi Sachin
    Thanks for getting back to me
    here's a link to the 3rd party hosted site that shows the problem
    http://www.cccuk.com/cccmuse/
    and here's a link to the same muse site on BC
    http://cccuk.businesscatalyst.com/index.html
    which works ok, unfortunately this site is going to have to be hosted on the 3rd party host, if I can't get it to work I'll have to go back to dreamweaver which would be a shame.
    Cheers

  • ANE with 3rd party libraries

    Short Version:  How does one package 3rd party dylib dependencies with an ANE on MacOS?
    Extended Version:
    I have an ANE that dynamically links with 3rd party libraries.  I am working on MacOS.
    My ANE framework dylib file links with the 3rd party library dylib.  However, when I package a bundle application with the ANE, the ANE fails to initialize, throwing an Error: "ArgumentError: Error #3500".  I have inferred that the issue is failure to find and link my 3rd party library dylib.
    If I run my AIR app from a Working Directory that contains the 3rd party library, everything works.  This implies that the linker is only looking in the Current Working Directory and not the locations of the 3rd party dylibs.
    I have included my 3rd party dylibs with my ANE framework, for instance:
    MyANE.framework/MyANE
    MyANE.framework/Resources/3rdparty.dylib
    I have used otool to inspect the linkage for MyANE.framework/MyANE:
    MyANE:
              libMyANE.dylib (compatibility version 0.0.0, current version 0.0.0)
              @rpath/Adobe AIR.framework/Versions/1.0/Adobe AIR (compatibility version 1.0.0, current version 1.0.0)
              ./3rdparty.dylib (compatibility version 1.0.0, current version 1.0.0)
          /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 52.0.0)
              /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 159.1.0)
    Ok, you see that it wants to load from CWD.  I tried changing the 3rdparty.dylib linkage, as so:
    install_name_tool -change ./3rdparty.dylib @loader_path/Resources/3rdparty.dylib MyANE
    but the application displays exactly the same behavior:  It only works if I run from the folder containing 3rdparty.lib.
    Are there some kind of additional platform options I have to set while packaging the ANE?
    Thanks!
    JW

    Hello,
    I assume your client is standalone (or runs outside of the WLS JVM) if so you will need to put the required jars on your clients classpath.
    cheers
    Hussein Badakhchani
    www.orbism.com

  • Iweb double-url is still showing even though I'm using a 3rd party host

    A client of mine created and published a site in iweb.....she didn't even have hosting, so does iweb host files in the cloud? I deleted the site in her iweb app, changed the DNS, edited the domain file, updated to a 3rd party host, checked idisk, but im still getting the double-url (www.mysite.com/www.mysite.com/index.html/) crap that iweb does....it's like iweb is overriding everything else no matter what I do....there was an index.html file that was re-directing to the double-url, which i also promptly deleted...still no change....for the life of me I can't get just a normal URL (www.mysite.com) without having the additional url that iweb adds....I have no idea how to get rid of this....even with a fresh host, it still shows up.....anyone have any ideas other than scrapping the URL and finding a new one? I've never used iweb, but I've been doing web design for 5 years and i've never seen anything like this.....on a wordpress install, the URL works with the additional crap added, but there is some trouble when trying to set a 'home' link...I get a cgi-sys/defaultwebpage.cgi error....which is problematic....when trying to get back to the homepage.....

    The iWeb Domain file is just a package where the website data is stored. Once the site is published, iWeb isn't in the picture...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html
    iWeb publishes a folder containing all the files for the website and an external index.html file. Unlike most websites, the index.html file is just a redirect to the Home page which is the one at the top of the list in the iWeb sidebar.
    There's also a copy of the index.html file inside the folder. This arrangement is so that the site will work on Apple's - soon to be defunct - server MobileMe. Perhaps this is where you client published the site?
    Its not quite clear how you are trying to conect the site to Wordpress. Can you explain?
    If an iWeb site is published "as is", the URL for any page is...
    http://www.domain-name/folder-name/page-name.html
    ... where "folder-name" is the name of the site in the iWeb app which can be seen at the very top of the left column above the first or Home page name.

  • Any links i open from 3rd party applications do not open in firefox.

    To be more precise, when i click a link, Firefox does open however it does not visit the URL. It simply opens a new session. I have started Firefox in safe mode and the problem occurs, i have reset firefox to default preferences and the problem still persists. I can see no problems in the setting of Firefox itself and have already tried all the fixes available.
    I am using Firefox 29.0.1 on Fedora 20 64x

    As i stated, when i click links from 3rd party applications, such as skype; a youtube link or something similar. Firefox opens a new session however it does not visit the clicked url

  • Linking 3rd Party Vendor invoice to customer invoice

    Hi Guys,
    We have a requirement in 3rd party order processing. Client wants us to link the vendor invoice to the customer invoice. For example, in a 3rd party order, the customers orders 100 qty of MATERIAL A. Then a PR, PO is generated for 100 qty. Vendor delivers it in 3 shipments say 30, 30 & 40. Requirement is that for each invoice the vendor raises( 30, 30 & 40), client wants the system to raise 3 separate customer invoices, though the customer invoice is created after recieving all vendor invoices.
    Do let me know if there is any control to have the above requirement met?
    Thanks.

    Hello Vasanth,
    In the standard the TAS item category as rightly mentioned has F as billing relevance. Which says status according to invoice qty which in case of 3rd party sceanario is Vendor Invoice verified in MIRO.
    If the 3rd party is already there in your case, the standard if used to customise it, shoiuld be enough to take care of your sceanario .
    What exact error or problem do you face ?
    Thanks
    Deepak

  • Is it possible to extract vacacy created in Global HR or provide a link to 3rd party system on vacancy card?

    Hi,
    We have a client requirement either to extract vacacy created in Global HR or provide a link on vacancy card to 3rd party system ?
    Regards,
    Manoj

    Generally integration would be done using web services, the available web services are documented in OER. I am not familiar enough with HCM functionality to comment on the specific feature, I will ask a colleague to comment.
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Need to know why websites say my cookies are Blocked. My cookies are on and acept 3rd party cookies is checked and the web site is not blocked but Excite, StatCounter and links off of my job servcie site say cookies are blocked

    I am getting error messages on several different pages that my cookies are blocked but checking the Tools - Options - Privacy accept cookies and accept 3rd party cookies are both enabled and the web sites are not listed under the exceptions button
    == URL of affected sites ==
    http://www.excite.com; http://my.statcounter.com; http://www.careerbuilder.com/jobseeker/ApplyOnline/ExternalApply.aspx?useframes=True&aourl=http%3a%2f%2fjobs.brassring.com%2f1033%2fASP%2fTG%2fcim_jobdetail.asp%3fSID%3d^yO_slp_rhc_SH6kO%2fBg3XfACT2rJ6oKKYLIsW2rhGiHOLenpNYCPYFHjYWwlbbMXORa6BsEbeeuFe2XAiP77_C_R__L_F_0JLmPqHv6d5W1fI_slp_rhc_1wVz03j7dDsFltg%3d%26jobId%3d356833%26type%3dsearch%26JobReqLang%3d1%26recordstart%3d1%26JobSiteId%3d5224%26JobSiteInfo%3d356833_5224%26GQId%3d0&Job_DID=J8E4VG6H6JZV4W5S7B5

    Check on the setting, as far s i know it was there by going on tools>options> privacy then check it out. If there was no changes, what i can suggest is try to update your firefox.
    [http://www.nestentertainment.com/nest-productions_c1441.aspx Kids Sunday School]

  • Linking Error :: Solaris 8 machine with 3rd party libraries

    Hi,
    I am working on a Solaris8 migration project.
    I need an explanation for a problem I have compiling a rather old program I am working with at work. I tried compiling it,
    however I get a bunch of errors of the same type:
    Undefined symbol first referenced in file
    unsafe_ostream::do_opfx(void) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    operator new(unsigned int) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.
    so
    endl(ostream&) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    ws(istream&) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    exthrow /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    RWCString RWLocaleSnapshot::asString(double,int,bool)const ./objs/CalcFinancial.o
    FDRMSCash::FDRMSCash(const RWDBDatabase&,const RWCString&) ./objs/CalcFinancial.o
    RWDBMemTable::~RWDBMemTable() ./objs/CalcFinancial.o
    exalloc /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    ostream::operator <<(double) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    ostream::operator <<(long) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    istream::operator >>(double&) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    istream::operator >>(int&) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    istream::operator >>(long&) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    istream::operator >>(char*) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    Iostream_init::Iostream_init(void) /xenv/RKCurves/sun4/5.x/1.0_A0_beta/lib/librk.so
    FDRMSvsCash::FDRMSvsCash(const RWDBDatabase&,const RWCString&) ./objs/CalcFinancial.o
    RWDBValue&RWDBRow::operator[](unsigned)const ./objs/CalcFinancial.o
    RWDBRow&RWDBMemTable::operator[](unsigned) ./objs/CalcFinancial.o
    RWDecimalPortableInit::RWDecimalPortableInit() ./objs/CalcFinancial.o
    ld: fatal: Symbol referencing errors. No output written to CalcFinancial
    *** Error code 1
    make: Fatal error: Command failed for target `CalcFinancial'
    I can understand that it has to do with linking problems...Compiling is ok..
    I am working on Solaris 8 machine with additional 3rd party libraries like rogue wave etc..
    I have added the library path to the makefile with the -L option & also given the library name with -l option.
    Any help would be appreciated...
    regards
    Debkumar

    I am using FORTE 6 compiler on Solaris 8, & Rogue Wave Source Pro.
    The LINK command is
    $(ALTCC) -mt -library=rwtools7,iostream -staticlib=rwtools7,iostream -lCcFi -lCcDt /xenv/RK
    Curves/sun4/5.x/1.0_A0_beta/lib/librk.a -L/software/development/fdrms/ab83445/src/lib/sun4-5 -lFDRMS
    Calc -L/software/development/fdrms/ab83445/src/lib/sun4-5.5.1 -lFDRMSCalc -ptr$(OBJDIR) -o $@ $(OBJECTS:%=$(OBJDIR)/%)
    The librk.so linking errors can be eliminated if i force it to link the static libraries by including the complete paths to it...
    The errors with CalcFinancial still persists..
    RWCString RWLocaleSnapshot::asString(double,int,bool)const ./objs/CalcFinancial.o
    FDRMSCash::FDRMSCash(const RWDBDatabase&,const RWCString&) ./objs/CalcFinancial.o
    RWDBMemTable::~RWDBMemTable() ./objs/CalcFinancial.o
    FDRMSvsCash::FDRMSvsCash(const RWDBDatabase&,const RWCString&) ./objs/CalcFinancial.o
    RWDBValue&RWDBRow:perator[](unsigned)const ./objs/CalcFinancial.o
    RWDBRow&RWDBMemTable:perator[](unsigned) ./objs/CalcFinancial.o
    RWDecimalPortableInit::RWDecimalPortableInit() ./objs/CalcFinancial.o
    bool RWLocaleSnapshot::stringToNum(const RWCString&,unsigned long*)const ./objs/CalcFinancial.o
    bool RWLocaleSnapshot::stringToNum(const RWCString&,long*)const ./objs/CalcFinancial.o
    FDRMSDebugger::FDRMSDebugger() ./objs/CalcFinancial.o
    bool RWLocaleSnapshot::stringToTime(const RWCString&,std::tm*)const ./objs/CalcFinancial.o
    void DestroyCurves() ./objs/CalcFinancial.o
    FDRMSvsNonCash::FDRMSvsNonCash(const RWDBDatabase&,const RWCString&) ./objs/CalcFinancial.o
    RWDBDatabase::~RWDBDatabase() ./objs/CalcFinancial.o
    RWDBDatabase RWDBManager::database(const RWCString&,const RWCString&,const RWCString&,const RWCStrin
    g&,const RWCString&) ./objs/CalcFinancial.o
    RWDate getValueDate(const RWDBDatabase&) ./objs/CalcFinancial.o
    FDRMSDebugger::~FDRMSDebugger() ./objs/CalcFinancial.o
    unsigned RWDBTable::index(const RWCString&)const ./objs/CalcFinancial.o
    RWCString RWDBValue::asString()const ./objs/CalcFinancial.o
    void closeDatabase(RWDBDatabase&) ./objs/CalcFinancial.o
    unsigned RWDBMemTable::entries()const ./objs/CalcFinancial.o
    bool RWLocaleSnapshot::stringToDate(const RWCString&,std::tm*)const ./objs/CalcFinancial.o
    FDRMSFinancial::FinancialType FDRMSFinancial::convertStringToFinancialType(const RWCString) ./objs/C
    alcFinancial.o
    void CreateCurves() ./objs/CalcFinancial.o
    RWCString arg(RWCString,int,char**) ./objs/CalcFinancial.o
    RWDBMemTable*getRefsByFinclSrcAndBatchStp(const RWDBDatabase&,const RWCString&,const RWCString&,cons
    t RWCString&,const int,const int) ./objs/CalcFinancial.o
    bool RWLocaleSnapshot::stringToMoney(const RWCString&,double*,RWLocale::CurrSymbol)const ./objs/Calc
    Financial.o
    bool FDRMSDebugger::start(const RWCString&) ./objs/CalcFinancial.o
    bool RWLocaleSnapshot::stringToNum(const RWCString&,double*)const ./objs/CalcFinancial.o
    bool RWDBDatabase::isValid()const ./objs/CalcFinancial.o
    ld: fatal: Symbol referencing errors. No output written to CalcFinancial
    *** Error code 1
    make: Fatal error: Command failed for target `CalcFinancial'
    Any help...
    Thanks in advance.
    Deb

  • Trying to create a linked server to a remote 3rd party server using an AD group

    I am the DBA at our organization so I have full authority to all of our local SQL Server databases but we have data in a remote 3rd party SQL Server database that is only read-only.  The 3rd party has granted the read only privileges to one of our AD
    groups - let's call it mydomain\adgroup1.  I would like to create a linked server from one of our local SQL Servers to the remote database.  I'm not sure how to do this. 
    I have set the AD group up as a login and a user in my local database.  When I try to create the link, I used the mydomain\adgroup1 as the local login and, since the same credentials exist in the remote server, I checked the impersonate box and click
    OK but I get "mydomain\adgroup1 is not a valid login or you do not have permission".  Is it possible to create a linked server using an AD group?  As of now, we only have the AD group permissions in the remote database.  We could probably
    request a single SQL Server account to be created on the remote side and we could create the same on our side, but we are trying to keep things as simple and transparent as possible (and we would really like to move more toward AD security and away
    from individual users in the db).
    Can anyone give me advice on how to get these two SQL Servers linked?

      From your description, you likely want to implement Windows authentication for linked server, which requires to implement Kerberos constrained delegation.
     I would recommend the following link to get started: 
    How to Implement Kerberos Constrained Delegation with SQL Server 2008 (https://msdn.microsoft.com/en-us/library/ee191523%28SQL.100%29.aspx?f=255&MSPPError=-2147217396
      -Raul Garcia
       SQL Server Security
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • SSO between EP, 3rd party app, XI and R/3

    Hi All,
    Here is our scenario: EP--> 3rd party --> XI --> SAP R/3
    User logs into EP with his userID/password...which brings him the 3rd party application (through URL iView)...lets say he search for the customer number ....3rd party (need XI userID/Password)sends request to XI (thr webservice call using sender SOAP adapter) ....then XI (need SAP userID/password) will send request to SAP (Receiver RFC adapter. How do I implement SSO for this case??
    Or how do I implent SSO between 3rd party application and XI in our case.
    We are sending XI user id and password in URL iView as URL parameter and Value pair. Can we send userid/pwd as variables instead hardcode values??
    Thank You,
    Indrasena R. Janga

    Hi
    my scenario is also like that
    EP>XI>R//3
    i am able to do the SSO between EP-->XI
    But when i tried to maintaind the SSO between EP>XI>R/3 it is working from
    EP>XI with logon ticket ,but the ticket that it is using from EP>XI is is not able to login to R/3 using the same ticket.
    The link you have provided is not opened. can yup please tell me the steps regarding the XI-->R/3 settings.
    please help me out.
    Thanks & Regards
    Rinku Gangwani

Maybe you are looking for

  • Smart objects "bleeding" colours when resized

    Bit of a strange one, this. In Photoshop CS6, whenever I create a smart object with the intention of resizing it, whenever I shrink it, where one flat colour collides with another, it creates a really ugly "bleed" effect -- kind of the same effect yo

  • I have a new Mac Book Pro with Retina, and Keynote crash almoset every time i use it?

    I have a new Mac Book Pro with Retina, and Keynote crashes almoset every time i use it? I have the newest update. Could you please help me? I have a lot of Keynote shows, and I have to use it now!! I have saved a crash report, if you need it.

  • Applications and random files have magically disappeared!!!

    Hello Everyone, I've been using my imac (OSX 10.5.5) daily for about 18 months with no problem whatsoever....until last when it started behaving erratically: 1. external hard lacie firewire drives would not eject partitions (had to restart computer)

  • WebLogic 10.3 Problem when stop a deployed application from admin console

    I've deployed a web application inside webLogic 10.3 and Oracle jdk1.6 in a single server. The application starts up correctly. When I stop it the weblogic server says that it's really stopped but I can see that the application continues to write log

  • Materials(goods) issue to production

    Hi All, While issuing materials against production orders, my client has specific requirement to issue material from a specific supplier only to production. Stocks are lying at plant from various sources(suppliers). We have stocks with split valuatio