EREC: Wrong client in PR approval URL

Hi
We make client copy from client 600 to 700.
Now when we release personal requisition in client 700, it is not appearing for approval in recruiters URL. It can be found in user's SAP business workplace as workflow work item. When we execute that work item it is called in internet explorer with URL
http://qaserert.asure.com:8000/sap/bc/webflow/wshandler/wshandler?_saptask=TS51807979&_saplogsys=CLNTRCT700&_sapwiid=000000004064&_sapuname=IALI&_saplangu=E&sap-client=600
We want client 700 in the URL instead of 600 because PR is created in client 700.
Regards
Iftikhar Ali

Thank for Mr. Mohammad Rafiulla and Mr.Ted Dinh who reply to my post.
We solve the problem by doing following.
We create new external aliases of “webflow” by using t-code “SICF”. In the login data of “webflow” we specify the client “700”.
We insert new entry “TS51807979” with type “A” in task filter table “T77RCF_WI_FILTER”
by using the IMG steps: SAP E-Recruitment -> Technical Settings -> Workflows -> Define Task Fileter.
Regards
Iftikhar Ali

Similar Messages

  • Pop up error encountered after upgrade--wrong client window id--POP UP

    Hi All,
       We have upgraded the system to EP7 SP15.on the upgraded system on certain actions i am getting a error pop up showing the following error message
    An error occured while starting the iview
    Application will run with a wrong client window ID!
    Do not continue please report this problem to your administrator
    Also
    we refered to R3 Note 1171930 which says its an SAP bug and for NWDS SP15 EPPSERVSP patch#2 should be applied.
    After applying the patch also i still encounter the POP -UPs.
    Please help

    If the user is using link from favourites of browser, Ask him to delete it and manually enter the url and Try.
    In my case, The user just deleted the saved link from Favorites and tried entering the url manually,
    though it is weird it worked.
    or else try these Notes 1450543, 1171930 .

  • Error - Application will run with a wrong client window ID!

    Anyone here knows how to resolve this error:
    An error occurred while starting the iView.
    Application /webdynpro/dispatcher/ ... ... ... will run with a wrong client window ID!
    Do not continue; please report this problem to your administrator.
    The user encountered this pop-up message after she upgraded her browser to IE8. However, she's the only one having this error. Others who have switched to IE8 didn't encounter this error.
    SAP Note 1171930 -- is not applicable to us.
    Your prompt response is appreciated.

    I guess you need not use the library. The note says its a problem with library.
    It applies to you if you use custom framework page other than standard framework page.
    SAP can give you better response on why only one user gets it. In my scenario, we are able to consistently reproduce this.
    And I guess most of the bugs will have similar statements attached 'it occurs only for one user'. 

  • Trip form - Warning PageBuilder will run with wrong client window ID"

    Dear All,
    I am getting following warning message before opening Trop form.
    "error starting iView webdynpro PageBuilder will run with wrong client window ID"
    If we click on OK button, the pdf form ets opened correctly.
    How to remove this warning ?
    Thanks,
    Vinod

    We ran into the exact problem when opening a PCR form from the "Status Overview" iView in MSS.
    The solution is here: [Note 1171930 - Application will run with a wrong client window ID alert|https://service.sap.com/sap/support/notes/1171930]
    This applies if you have one of the following versions and an iView is launched in a new window:
    - NW04s SP15
    - EhP1
    Best regards,
    Jill

  • Non-Deterministic Exception When Connecting With Wrong Client Certificate

    I am working on an internal application and need to determine the correct client-side SSL certificate to use when connecting to a server (the user can supply multiple client-side certificates). I had expected that if I connected to a server using the wrong client certificate the java client would throw a SSLHandshakeException and I could then try the next certificate. This seems to work some of the time, however the java client will sometimes throw a “SocketException: Software caused connection abort: recv failed”, in which case it is not possible to know that the wrong certificate caused the problem.
    Below is the code I have been using to test as well as the intermittent SocketException stack trace. Does anyone have an idea as to how to fix this problem? Thanks in advance.
    Note: the TrustAllX509TrustManager is a trust manager that trusts all servers.
    protected void connectSsl() throws Exception {
          final String host = "x.x.x.x";
          final int portNumber = 443;
          final int socketTimeout = 10*1000;
          // Note: Wrong certificate (expect SSLHandshakeException).
          final String certFilename = "C:\\xxx\\clientSSL.P12";
          final String certPassword = "certPassword";
          final BufferedInputStream bis = new BufferedInputStream(new FileInputStream(new File(certFilename)));
          final char[] certificatePasswordArray = certPassword.toCharArray();
          final KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance("SunX509");
          final KeyStore keyStore = KeyStore.getInstance("PKCS12");
          keyStore.load(bis, certificatePasswordArray);
          keyManagerFactory.init(keyStore, certificatePasswordArray);
          final KeyManager[] keyManagers = keyManagerFactory.getKeyManagers();
          final SSLContext context = SSLContext.getInstance("SSL");
          context.init(keyManagers, new TrustManager[]{new TrustAllX509TrustManager()}, new SecureRandom());
          final SocketFactory secureFactory = context.getSocketFactory();
          final Socket socket = secureFactory.createSocket();
          final InetAddress ip = InetAddress.getByName(host);
          socket.connect(new InetSocketAddress(ip, portNumber), socketTimeout);
          socket.setSoTimeout(socketTimeout);
          // Write the request.
          final OutputStream out = new BufferedOutputStream(socket.getOutputStream());
          out.write("GET / HTTP/1.1\r\n".getBytes());
          out.write("\r\n".getBytes());
          out.flush();
          InputStream inputStream = socket.getInputStream();
          ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
          byte[] byteArray = new byte[1024];
          int bytesRead = 0;
          while ((bytesRead = inputStream.read(byteArray)) != -1) {
             outputStream.write(byteArray, 0, bytesRead);
          socket.close();
          System.out.println("Response:\r\n" + outputStream.toString("UTF-8"));
       }Unexpected SocketException:
    main: java.net.SocketException: Software caused connection abort: recv failed
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at com.sun.net.ssl.internal.ssl.InputRecord.readFully(InputRecord.java:293)
         at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:331)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:789)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.waitForClose(SSLSocketImpl.java:1435)
         at com.sun.net.ssl.internal.ssl.HandshakeOutStream.flush(HandshakeOutStream.java:103)
         at com.sun.net.ssl.internal.ssl.Handshaker.sendChangeCipherSpec(Handshaker.java:612)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.sendChangeCipherAndFinish(ClientHandshaker.java:808)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.serverHelloDone(ClientHandshaker.java:734)
         at com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:197)
         at com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:516)
         at com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:454)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:884)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1096)
         at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:623)
         at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:59)
         at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
         at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)

    Thanks for the quick response. Here are answers to the questions:
    1) No, this issue is not associated with one particular certificate. I have tried several certificates and see the same issue.
    2) I agree it would be simpler to only send the required certificate, but unfortunately the project requires that the user be able to specify multiple certificates and, if a client-side certificate is required, the application try each one in turn until the correct certificate is found.
    3) Yes, I realize the TrustAllX509TrustManager is insecure, but I am using this for testing purposes while trying to diagnose the client certificate problem.
    In terms of testing, I am just wrapping the above code in a try/catch block and executing it in a loop. It is quite odd that the same exact code will sometimes generate a SSLHandshakeException and other times a SocketException.
    One additional piece of information: if I force the client code to use "SSLv3" using the Socket.setEnabledProtocols(...) method, the problem goes away (I consistently get a SSLHandshakeException). However, I don't think this solves my problem as forcing the application to use SSLv3 would mean it could not handle TLS connections.
    The code to specify the SSLv3 protocol is:
    SSLSocket sslSocket = (SSLSocket) socket;
    sslSocket.setEnabledProtocols(new String[] {"SSLv3"});
    One other strange issue: if instead of specifying the SSLv3 protocol using setEnabledProtocols(...) I instead specify the protocol when creating the SSLContext, the SocketException problem comes back. So if I replace:
    final SSLContext context = SSLContext.getInstance("SSL");
    with:
    final SSLContext context = SSLContext.getInstance("SSLv3");
    and remove the "sslSocket.setEnabledProtocols(new String[] {"SSLv3"})" line, I see the intermittent SocketException problem.
    All very weird. Any thoughts?

  • Generate client from secured WSDL URL

    I was playing arounf with the (excellent) Web Service Proxy generation wizard in JDeveloper.
    It works great but I did run into one annoying issue.
    When I try to enter an URL to a WSDL that will serve as the source for the proxy generation JDeveloper is not able to find it if the URL requires some form of authentication. In my example the service requires basic username/password authentication (and so does the ?WSDL).
    I can work around it by accessing the WSDL through my browser and storing it locally but I'd prefer to use the direct URL so that I can easily refresh it. Is there something I'm doing wrong?

    Thanks for the assistance, I've saved the WSDL locally and secured the proxy, now I get the following error :
    SEVERE: No username found
    Exception in thread main
    oracle.j2ee.ws.common.soap.fault.SOAP11FaultException: No username found
    at oracle.security.wss.interceptors.AbstractSecurityInterceptor.throwSOAPFaultException(AbstractSecurityInterceptor.java:222)
    at oracle.security.wss.interceptors.AbstractSecurityInterceptor.handleOutbound(AbstractSecurityInterceptor.java:196)
    at oracle.security.wss.interceptors.ClientInterceptor.handleRequest(ClientInterceptor.java:48)
    at oracle.j2ee.ws.common.mgmt.runtime.InterceptorChainImpl.handleRequest(InterceptorChainImpl.java:122)
    at oracle.j2ee.ws.common.mgmt.runtime.AbstractInterceptorPipeline.handleRequest(AbstractInterceptorPipeline.java:87)
    at oracle.j2ee.ws.client.StubBase._preRequestSendingHook(StubBase.java:646)
    at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:141)
    at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:111)
    at testsms.runtime.Service1Soap_Stub.ws_submitSimple(Service1Soap_Stub.java:453)
    at testsms.Service1SoapClient.ws_submitSimple(Service1SoapClient.java:52)
    at testsms.Class1.main(Class1.java:41)
    Caused by: FAULT CODE: InvalidSecurity FAULT MESSAGE: No username found
    at oracle.security.wss.WSSecurity.build(WSSecurity.java:1627)
    at oracle.security.wss.interceptors.AbstractSecurityInterceptor.handleOutbound(AbstractSecurityInterceptor.java:188)
    ... 9 more
    The only thing I enabled when securing it was Authentication, when I right click and edit the security propertes the "Authentication" tab has "Use Username to Authenticate" password type "Plain text" and I disabled "Add Nonce" and "Add create time" after it failed first time.
    Where is it expecting to get username and password from ? I have the right username and apssword in Tools->Preferences->Web Browser and Proxy, is that where it comes from ?
    Just to reitterate its the internet proxy server at my end that I'm trying to get through - the web service itself does not use WS Security, so I'm thinking that the mention of WSSecurity in the error means I'm going the wrong way here.

  • Java AMFConnection client - what is service url?

    I can't get the AMConnection object to connect to me BlazeDS service. How can I determine the URL and endpoint of my service?
    My BlazeDS service is a simple, no parameter hello world:
    package example.blaze;
    public class HelloWorldService {
        public String getHelloWorld() {
            return "Hello From BlazeDS";
    The destination in the remoting-config.xml is configured like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <service id="remoting-service" class="flex.messaging.services.RemotingService">
        <adapters>
            <adapter-definition id="java-object"
                                class="flex.messaging.services.remoting.adapters.JavaAdapter"
                                default="true"/>
        </adapters>
        <default-channels>
            <channel ref="my-amf"/>
        </default-channels>
        <destination id="helloworld">
            <properties>
                <source>example.blaze.HelloWorldService</source>
            </properties>
            <adapter ref="java-object"/>
        </destination>
    </service>
    I would expect this Java client to work, but it doesn't:
            AMFConnection amfConnection = new AMFConnection()
            amfConnection.connect("http://localhost:8080/blazeds/")
            Object result = amfConnection.call("helloworld.getHelloWorld")
    The error is:
    ClientStatusException
        message: java.io.FileNotFoundException: http://localhost:8080/blazeds/
        code: AMFConnection.Call.Failed
    I've tried a lot of different variations on this endpoint and can't get anything to work.
    What is the correct parameter to AMFConnection#connect(String) and AMFConnection#call(String, Object...)?
    Thanks

    Hi,
    I am trying to use Java-AMF connection, to connect from my java program to connect to LCDS. I am getting the following error:
    Here is the code snippet I use:
       // Create the AMF connection.
            AMFConnection amfConnection = new AMFConnection();   
            String url = "http://localhost:8080/SampleBlazeDS/messagebroker/amf";
            try
                 amfConnection.connect(url);
            catch (ClientStatusException cse)
                System.out.println("Exception in connection");
                cse.printStackTrace();
    The exception I get is:
    Exception in thread "main" java.lang.NoSuchFieldError: createASObjectForMissingType
         at flex.messaging.io.amf.client.AMFConnection.connect(AMFConnection.java:515)
         at TestClient.main(TestClient.java:24)
    I have verified my endpoint in the service-config.xml and it seems to be correct.Here I am just trying to connect to the end point but am not able to.
    Can anyone please help me what is going wrong?
    Thanx in advance.
    Regards,
    Sethu

  • Adding system and client specific TMS approval steps

    Hello,
    In defining QA approval steps, how to define a step which is not system and client wide?
    When adding a new step, it is automaticaly defined with * in the client and system fields, and when changing the steps, these fields are not editable. However, there are several approval steps for which a specific system and client are entered, but this was done by a consultant, who was here some years ago.
    Does anyone know how to do this?
    Thanks in advance,
    A

    Hi Aleksandra,
    Did you ever find a solution to this issue.  I too have multiple QA systems in our landscape (4 system landscape), and yet I can not defined system/client specific approval procedures in STMS.
    The system and client options don't even appear when I go into change mode, yet table TMSQASTEPS has the options available.  Direct table update works fine, but it would be nice to know the "SAP standard" way of doing this.
    Cheers
    Shaun

  • Client Eventing Problem with URL Iview

    Hi,
    I am new to EP and have a basic client eventing question. We are trying to integrate a URL Iview from a partner product with a standard Iview downloaded from Iviewstudio. This standard Iview is capable of handling client events from other Iviews in the standard package. We want to re-use this Iview with the same event (same functionality) to be able to handle events from the partner URL Iview.
    The partner Iview and our portal are on different servers.
    We are using the following Javascript but it doesnt seem to raise the event.
    EPCM.storeClientData('urn:com.sap.bor:BUS0010','objid',LocId));
    EPCM.storeClientData('urn:com.sap.bor:BUS0010','AllKeys','objid');
    EPCM.raiseEvent('urn:com.sap.bor:BUS0010','select','','/irj/servlet/prt/portal/prtroot/...'
    We were able to debug and find that the data was being stored in the Data Bag. However the event is not being raised at all. It seems that it just gets stuck somewhere in the Raise event. We even put a javascript alert after the raise event but it doesnt seem to reach there at all.
    Could you give me a few pointers as to what the problem might be.
    Thanks in advance.
    Message was edited by: Mayank Bhatnagar

    Hi,
    let's have a look at two quotes of the PDK documentation.
    "Using the EPCF from your JavaScript, you can send messages to JavaScript code embedded in other iViews."
    "Isolated iViews are iViews that are not inlined into a portal page, but referenced using an IFRAME. To make the EPCF available in such iViews, the EPCF JavaScript as well as the EPCF applet are included into each generated frame."
    From my point of view, this only can work automatically with content provided by the portal.
    Therefore, this can't work with isolated URL iViews  generated with the wizards. Imagine a google iView, running in an iFrame. Google is called by the portal, but it's simply standard google HTML output - displayed in the portal.
    To provide the capability of the EPCF, the epcf javascript file has to be included in the "partner URL iView"'s source. I tried this and it worked. However, this is not a highly sophisticated solution
    If the partner iView's server is running in a different domain, there are further issues to be considered (keyword: java script origin policy)
    If anybody has corrections or can provide a good solution, don't hesitate.

  • ICE is there a way to allow my client to make External URLs open in new tabs?

    Hi.
    I have a set my client's site up with lots of editable regions so they can manage content. Although the InContext editor is great for letting my client link to internal pages, documents and external pages I couldn't find where they would select the external URL to open in a new browser tab. Obviously I can go back in and add the html to their links but is there a way they can set the target?
    Cheers
    David

    The sessionstore.js file only exists while Firefox is closed. During shutdown, Firefox writes out that file based (I think) on recovery.js as of that point. When Firefox starts back up again, it reads sessionstore.js and deletes it. So if Firefox is running, it's normal not to see sessionstore.js. Anyway, sessionstore.js is going to be empty now.
    Shadow Explorer might already have done this for you, but just in case...
    You could try the previous versions feature. This is harder to get to on Windows 8 and 8.1, but I have read about a roundabout way. I can't test this myself, but here's what you do:
    Let's say you have a Windows Explorer window open to your current Firefox profile folder. This is something like (with your username and semi-random profile folder name):
    C:\Users\''username''\AppData\Roaming\Mozilla\Firefox\Profiles\blahblah
    Click in the address bar and change the C: to
    \\localhost\c$
    to yield (with your username and semi-random profile folder name)
    \\localhost\c$\Users\''username''\AppData\Roaming\Mozilla\Firefox\Profiles\blahblah
    Press Enter to reload the folder contents that way.
    Now when you right-click recovery.js, recovery.bak, backup.js or sessionstore.js and choose Properties, there should be a Previous Versions tab. Usually the most recent previous version dates back to the last time Windows created a restore point (e.g., system update or possibly scheduled on a more frequent basis).

  • ITSmobile service pass system/port/client dynamically in the URL

    Hi all,
        The ITSmobile service we have created redirects to another service in different server using ~redirectURL.
    so the ~redirectURL =  http://splhrd398.baplc.com:8005/sap/bc/gui/sap/its/zdemo_mobile?sap-client=150
    is there anyway to pass
    system : splhrd398.baplc.com ( This is the name of  the different server)
    port no: 8005
    sap-client=150
    dynamically in the URL.
    because when we transport the same to Testing and production. i need to know whether we have to do manually .
    If you have  any option to do  dynamically let me know.
    please throw some light,
    thanks  in advance
    Deepak

    Hi ,
    Create a technical system and bussienss system of type WEB AS ABAP and use this bussiness system for source system in XI and try it.
    Thanks & Regards,
    Sekhar

  • What is the possible impact of running BDLS in wrong client?

    Hello,
    I've been doing a system refresh from PRD to QUA and as a part of post refresh actions I've run BDLS for each client I have in the system. That system has 4 clients (500,600,700,800) so I've run BDLS 4 times (PRDCLNT500 -> QUACLNT500, PRDCLNT600 -> QUACLNT600, PRDCLNT700 -> QUACLNT700, PRDCLNT800 -> QUACLNT800). The problem is that I've run all four reports from the same client (500).
    When BDLS finished and I've been checking the spool reports I found out my mistake - there were over 5.000.000 updates in correct report (PRDCLNT500 -> QUACLNT500) and only 3.000 updates in wrong ones (all other reports).
    After this I've started BDLS for the remaining clients (600,700,800) correctly.
    <b>The question is - could there be any possible impact on data consistency?
    If so - what impact could I expect?
    Would be wise to run the BDLS reports in inverse mode (changing the logical names to the original ones) in client 500?</b>
    Here is some information that can help - tables with amount of modified records:
    BDSX_CON04*                    LOG_SYSTEM                             1                      1
    ROIDOCPRMS*                    SLOGSYS                                1                      1
    ROOSGEN*                       RLOGSYS                                0                      0
                                   SLOGSYS                                1                    201
    ROOSPRMSC*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      3
    ROOSPRMSF*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      4
    RSBASIDOC*                     RLOGSYS                                0                      0
                                   SLOGSYS                                1                      1
    SRRELROLES                     LOGSYS                                 1                  2.040
    TBTCO*                         RECLOGSYS                              1                      1
    EDIDC                          RCVPRN                                 0                      0
                                   SNDPRN                                 1                    780
    EDP21                          SNDPRN                                 1                      3
    EDPP1                          PARNUM                                 1                      1
    T076B                          KONTO                                  1                      1
    T076M                          KONTO                                  1                      1
    T076S                          KONTO                                  1                      1
    I expect that all tables marked with star (client independent tables) have no impact (they would be changed anyway).

    Thanks. I got similar response from other SAP experts I've consulted. But I do not understand what are the changed records? If there would be no changed records - I would agree there is no impact. But when I've by accident changed 3x3000 records - it is hard to belive that there is absolutely no impact.
    Can you please explain?

  • Receiver Determination is using the wrong client

    When testing out a scenario, I get this error with the receiver determination:
    HTTP connection to ABAP Runtime failed. Error: 403 Forbidden URL: http://rommi:8000/sap/xi/simulation?sap-client=001 User: PIDIRUSER
    From this message, I can see that for some reason the sap client is set to be 001, where I really need it to be set to 100.
    I have no idea where such a setting is made. Can somebody please advise me?
    Kind Regards,
    Tony.

    Hi Anthony,
    Can you give some details of your end to end scenario ?
    What is your sender system - XI - receiver system ?
    Please give some details of scenario ?
    Is it file to file scenario  OR  you are using any R/3 System also ?
    Sandeep Kaushik
    Message was edited by:
            Sandeep Kaushik

  • SSPR client installation without registration URL

    Hi,
    My customer is using SSPR without registration portal (users are automatically registered for password reset). So they just need password reset part of client to be installed.
    What is recommended way of installation (Registration portal URL seems to be mandatory)?
    Borys Majewski, Identity Management Solutions Architect (Blog: IDArchitect.NET)

    It is mandatory (put anything there ;) ), but it is used only for SSPR pop up during logon for non-registered users.
    You can hide this popup also via registry:
    [Reference] Suppress SSPR Registration Page at Logon
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

  • Redirect from client provision to origin url

    hello
    Does anyone know if there is a way to redirect a user to home page from client provision portal?
    we using wired solution.
    the client PC have web browser automatically opens to home page when employees log in. and since we have posture configured to check the antivirus, the web browser be redirected to client provision portal. we would like to have the user redirected to the corporate home page after successfully NAC agent check.

    We finally used our custom login module to solve this.

Maybe you are looking for

  • Read Only Element Table Attributes not working since we migrate 3.0.1

    Dear all, I have a page to dispaly the content of a journalling table and highlight the changes in red. To do it, the guy before me use the read only. In the read only condition type he put pl/sql expression. the expression is :P120_OLD_DEADLINE_DT N

  • Material Variant Matching in Sales Order Creation with ref.to Sales Order

    Hi All, We are working in Variant configuration.Our product is defined at PQD(Product, Quality & Dimension). But, Sales Contracts are created at PQ (Product, Quality/Grade ) level only. We have defined Variant Characteristics GRADE(ALLOY CODE),DIMENS

  • Open programatically Crystal Report Viewer XI to display rpt file

    Thank you in Advance!!!    I got the following VBA code. 1) What library do I need to include to access Crystal Report Viewer XI? 2) How do I declare CRViewer11 to open Crystal Report Viewer XI and a created report?     Please look at ***???     Dim

  • No data selected neither transfered

    hi, I am new to owb plz help me out of this. when i am mapping two tables,the source table t_date having date format 'ddmmyyy' and want to have the target table t1_date with date format 'mmddyyyy'. I have used an expression operator then right clicki

  • RE: APP

    Hi Experts, My client is giving advances to vendors using APP (F110) during APP user is unable to give long TEXT. system is picking up from respective field. Please let me know the behind the logic. 1) when we see line item level user wants long text