Capturing response.

Hi All,
         nice to meet you all once again. Here any one can please suggest me the best procedure regarding my scenario. i am handling the File-- to -
Bapi scenario to post the data which i am getting in text file into ECC.
         If it is an asynchronous scenario we can directly handle this scenario with out using BPM. here the requirement is if the data we are getting in file is not valid th BAPI will be failed. i need to carry that incorrect records back to the FTP server.
       I am working on PI7.0 & ECC 6.0.
       i hope you can understand my requirement. please provide a detailed description so that i can clearly understand it. thanks in advance......
Ramana.

Hi,
Refer below links
File to R/3 via ABAP Proxy
/people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - FCC
/people/mickael.huchet/blog/2006/09/18/xipi-how-to-exclude-files-in-a-sender-file-adapter - EOIO - File
http://help.sap.com/saphelp_nw04/helpdata/en/ee/c9f0b4925af54cb17c454788d8e466/frameset.htm - cc
http://help.sap.com/saphelp_erp2005vp/helpdata/en/95/bb623c6369f454e10000000a114084/content.htm - fcc cOUNTER
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/da1e7c16-0c01-0010-278a-eaed5eae5a5f - conversion agent
Thanks
Swarup

Similar Messages

  • File to RFC/BAPI - Async- How to capture response field value

    Hi,
    I am doing File to RFC/BAPI Scenario. I have Two BAPI's. THe same source xml file is mapped to the Two Target BAPI's.
    For the first flow i.e File to BAPI1, I need to capture BAPI Response, field value and pass this value as Input to the BAPI2.
    How do I proceed with the Mapping. I am working on PI 7.1
    Any input would be Appreciated.
    Thanks & Regards,
    Varun

    Hi Varun,
    apparently you need a Business Process:
    XML -> BP (asynchronous), Map to Bapi1 request structure
    BP -> BAPI 1 (synchronous)
    Transformations step with multi mapping merging XML and Bapi1 response to Bapi2 request structure
    BP-> BAPI2
    Regards,
    Udo

  • Passing parameters for a query throught XML and capturing response in the same

    Hi All,
    I have defined a RequestParameters object and i am passing paramerts for a query through XML and trying to capture the result in the same and send back to the source. In this case i am send XML from excel.
    Below is my XML format.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <Insert xmlns="http://tempuri.org/">
    <dataContractValue>
    <dsRequest>
    <dsRequest>
    <SOURCE></SOURCE>
    <ACTION>Insert</ACTION>
    <RequestParams>
    <RequestParams>
    <ACC_NO>52451</ACC_NO>
    <EMP_CITY>HYD</EMP_CITY>
    <EMP_NAME>RAKESH</EMP_NAME>
    <EMP_CONTACT>99664</EMP_CONTACT>
    <EMP_JOM>NOV</EMP_JOM>
    <EMP_SALARY>12345</EMP_SALARY>
    </RequestParams>
    <RequestParams>
    <ACC_NO>52452</ACC_NO>
    <EMP_CITY>HYD</EMP_CITY>
    <EMP_NAME>RAKESH</EMP_NAME>
    <EMP_CONTACT>99664</EMP_CONTACT>
    <EMP_JOM>NOV</EMP_JOM>
    <EMP_SALARY>12345</EMP_SALARY>
    </RequestParams>
    </RequestParams>
    </dsRequest>
    <dsRequest>
    <SOURCE></SOURCE>
    <ACTION>Update</ACTION>
    <RequestParams>
    <RequestParams>
    <ACC_NO>52449</ACC_NO>
    <EMP_CITY>HYD1</EMP_CITY>
    <EMP_NAME>RAKESH1</EMP_NAME>
    <EMP_SALARY>1345</EMP_SALARY>
    </RequestParams>
    <RequestParams>
    <ACC_NO>52450</ACC_NO>
    <EMP_CITY>HYDer</EMP_CITY>
    <EMP_NAME>RAKEH</EMP_NAME>
    <EMP_SALARY>1235</EMP_SALARY>
    </RequestParams>
    </RequestParams>
    </dsRequest>
    </dsRequest>
    </dataContractValue>
    </Insert>
    </s:Body>
    </s:Envelope>
     Where i have a List of dsRequest and RequestParams, where i can send any number of requests for Insert,Update. I have two a XML element defined in RequestParams "RowsEffected","error" where the result will be caputred and is updated
    to the response XML.
    I have 6 defined in RequestParams
    EMP_SALARY(int),ACC_NO(int),EMP_CITY(string),EMP_NAME(string),EMP_CONTACT(string),EMP_JOM(string)
    My Question is:
    When i am trying to build response XML with the following code, the parameters which are not given in the Request XML are also appearing in the Response.
                    ResponseParams.Add(
    newdsResponse()
                        ACTION = OriginalParams[a].ACTION,
                        SOURCE = OriginalParams[a].SOURCE,
                        Manager = OriginalParams[a].Manager,
                        RequestParams = OriginalParams[a].RequestParams
    Where the OriginalParams is dsRequest
    Ex: In my update query i will only send three parameters, but in my response building with ablove code, i am getting all the variables defined as INT in the RequestParameters.
    Is there any way i can avoid this and build response with only the parameters given in the Request ??
    Appreciate ur help..Thanks
    Cronsey.

    Hi Kristin,
    My project is, User will be giving the parameters in the excel, and using VBA, the values are captured and an XML is created in the above mentioned format and is send to web service for the Insert/Update.
    I created a webservice which reads the values from <datacontract> and it consist of list of <dsRequests> where any number of Insert/Upate commands can be executed, with in which it contains a list of <RequestParams> for multiple insertion/Updation.
    //function call
    OriginalParams = generator.Function(query, OriginalParams);
    where OriginalParams is List<dsRequest>
    //inside function
    command.Parameters.Add()// parameters adding
    int
    val = command.ExecuteNonQuery();
    after the execution,an XML element is added for the response part.and it is looped for all the RequestParams.
    OriginalParams[i].Result.Add(
    newResult()
    { ERROR = "No Error",
    ROWS_EFFECTEFD = 1 });
    //once all the execution is done the response building part
    for(inta
    = 0; a < OriginalParams.Count; a++)
                    ResponseParams.Add(
    newdsResponse()
                      Result = OriginalParams[a].Result
    QUEST: When i am trying to build response XML with the following code, the parameters which are not given in the Request XML are also appearing in the Response.
    Ex: In my update query i will only send three parameters, but in my response building with ablove code, i am getting all the variables defined as INT in the RequestParameters.
    Is there any way i can avoid this and build response with only the parameters given in the Request ??
    Appreciate ur help..Thanks
    Cronsey.

  • Enhancement Request 20623991: RFI Buyer Printable View or Supplier Printable View should capture responses from Suppliers / Evaluators

    Reference: SR 3-9765282261 : RFI Buyer Printable View report doesn't capture questionaire responded by Supplier
      The "Buyer Printable View" and "Supplier Printable View" in Oracle Sourcing should capture evaluator's / supplier's responses.  The work around given to view individual responses in each RFI is completely not practical.  If there are 3-5 parties responded to the distributed questionaires, then the buyer has to click each response to download PDF file.  The workaround process is very time consuming especially during audit season where there are tons of RFIs to be extracted.
       ER 20623991 has been logged. Please join me to vote for this enhancement request if you need this functionality too.  Your support is very much appreciated.

    This is standard functionality, as the printed copy is circulated to the suppliers.
    Sent from my iPhone

  • Capturing response from Campaigns

    Hello,
    Any expert worked on the campaigns(internet) for capturing the response from campaigns.
    Running the campaign with HTTP and exposing it to the external customer, therefore how the external customer will make use of CRM application server in filling the surveys.
    Any advise or document is highly appreciated.
    Regards
    Ahmedi

    Hello Dinesh,
    Thanks a lot for the reply, but this is not as simple was metioned.
    As mentioned by you:
    In the questionnaire, you have to enter your web-id in the XML. you will find this setting in the Best practice.
    Apart from that XML, there are two programmes that are required:
    Get Option:This specifies how the survey is sent to the recipient.
    Send Option:This specifies how the results are later sent back when the recipient submits the survey.
    My process starts after this when the customer clicks on the survey and answers the questions, this response we need to capture automatically in CRM by creating an activity at back end.
    In order to achieve this SAP recommend to implement WEBDISPATCHER and the URL which the users are going to generate will be in https:
    The problem I am facing is when i generate the URL and test it, it is giving me the message that the service is not reacheable, kindly see the screen shot below.
    When i am investigating this and asking SAP for help they are asking to install the EXTERNAL CAT server. Dont know about this.
    If you have done an end to end solution for email campaign for the external world with the following steps then can you please provide me the doc.
    1 - User runs the campaign with  Mail Form: Mail form will have the link of questionnaire.
    2- When the customer is clicking on the link from his yahoo or gmail address this will launch the CRM page for the questionaire where the customer should be able to answer the questions and click on SAVE.
    3 - this will be captured in CRM and creates an activity back end(which in turn we can expose it to BIBW).
    I hope this is clear, needs some urgent advise.
    Regards
    AM
    For your information:
    <?xml version="1.0" encoding="UTF-8"?>
    <SurveySystemParam
    Action="https://xxxxxxxxxx.internal:xxxxxx/SAPSVY?cmd=svyResult"
    Method="post" Enctype="application/x-www-form-urlencoded"
    AccessURL="https://xxxxxxxxx.internal:xxxxx/SAPSVY?cmd=svyPresGet"
    ConnectorId="CONNECTOR_xxx"
    IncludeStylesheetInOutput="true"/>
    Screen shot:

  • How to capture OK / Cancel Button response of warning type message in EBS D2K form using Form personalization

    Hi Experts
    We are working on one requirement in which on a standard D2K EBS form based on the response of a warning message we need to perform certain actions using Form Personalization.
    The problem is that we are not able to capture response of OK and Cancel buttons of the warning.
    If any one has come across such scenario, I would request to please share your valuable suggestions. 2898414
    Thank You
    Regards
    Mirza Tanzeel

    Figured out myself that this is mot possible using Form Personalization.
    Only option possible is to try implementing by modifying custom.pll
    Thanks
    Mirza Tanzeel

  • Response capture with campaigns

    Hello - We need to capture response of the customers when we run the campaign and I am facing some problem and one more point which I want to share is its becoming very difficult to understand whether this can be achieved by standard or we need to change our solution and add the development to make it work.
    With the BSP this is working fine where I am trying to launch the hyper link but the same scenario when I am trying to run with the http or https this is giving me problem its not launching the link. basically I am sending an hyperlink where the customer will launch the hyper link and answer the questions given and this will be captured backend of CRM where we create certain activities.
    Kindly advise.
    Regards
    Vani

    Hi Vani,
    whether this can be achieved by standard or we need to change our solution and add the development to make it work.
    Yes, It's possible to achieve by standard functionality.
    for other questions, you can go through link below. May be it's useful to you.
    How to create personalized mail
    Rgds
    Hari

  • Error in response message

    Hi Experts,
      I am doing SAP to Portal system scenario using SOAP. I am sending request to Portal and getting response from their system.
    I need to put the response message in file. While capturing response message i am getting error as below.
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: No such operation 'createDocumentWithAttachmentsRequest'
    I am getting XML string in response message.
    Can anyone please suggest how to capture XML string in the respone message.. if i need to do any java mapping what logic exactly i need to build.
    Appreciate your valuable inputs.
    Thanks,
    Srikanth

    Hi Srikanth,
    >>>Can anyone please suggest how to capture XML string in the respone message.. if i need to do any java mapping what logic exactly i need to build.
    Please see the below link, it will explain you that how to capture SOAP Response.
    SOAP Response Message Capture in PI 7.1
    Regards,
    P.Rajesh

  • Survey response is not getting submitted when sent via campaign

    Hi,
    Currently I have a problem in Campaign survey submission. Please help me with the problem.
    I am using ++  for URL tracking.  There are two scenarios I observe here.
    1) When I send an e-mail via the communication channel test from the
    mail form, and also set the "Test entire process" indicator   the email is sent and I am able to open the URL (within my company
    network) fill the questionnaire and submit the responses.   I can see the responses.
    However when I send it via campaign by assigning a target group, the mails are sent correctly. I am able to open the survey (with in the network)  but when I submit it is showing page cannot be displayed error,
    URL generated when tested via campaign:
    URL when I open the email :
    http://lvs400.******.com:*****/sap(bD1lbiZjPTM2MA==)/bc/bsp/sap/crm_svy_server/Survey.htm?applid=CRM_SURVEY_MARKETING&svyid=SAMPLEREQUEST&vers=0000000002&lang=EN&
    parid=CRM_SVY_BSP_B31_360%2eXML&MIG=4A78718836563E3EE10080030A016467
    URL when I submit :
    http://lvs400.***.com:***/sap(bD1lbiZjPTM2MA==)/bc/bsp/sap/crm_svy_server/Survey.htm
    URL generated when tested directly via mail form:
    URL when I open the email
    http://lvs400.******.com:***/sap(bD1lbiZjPTM2MA==)/bc/bsp/sap/crm_svy_server/Survey.htm?applid=CRM_SURVEY_MARKETING&svyid=SAMPLEREQUEST&
    vers=0000000002&lang=EN&parid=CRM_SVY_BSP_B31_360%2eXML&MIG=4A7893AA342A3E15E10080030A016467
    URL when I submit :
    http://lvs400.*******.com:***/sap(bD1lbiZjPTM2MA==)/bc/bsp/sap/crm_svy_server/Result.htm?sap-params=c3Z5X2NvbnRlbnQ9JTNjaDMlM2VUaGUrVmFsd
    WVzK1dlcmUrU2F2ZWQrU3VjY2Vzc2Z1bGx5JTNjJTJmaDMlM2UlM2NpbnB1dCt0eXBlJTNkJTIyaGlk
    ZGVuJTIyK25hbWUlM2QlMjJzdnlSZXR1cm4lMjIrdmFsdWUlM2QlMjIwJTIyJTNlJTNjaW5wdXQrdHlwZSUzZCUyMmhpZGRlbiUyMituYW1lJTNkJTIyc3Z5TWVzc2FnZS
    UyMit2YWx1ZSUzZCUyMlRoZStWYWx1ZXMrV2VyZStTYXZlZCtTdWNjZXNzZnVsbHklMjIlM2UlM2NpbnB1dCt0eXBlJTNkJTIyaGlkZGVuJTIyK25hbWUlM2QlMjJzdnlW
    R1VJRCUyMit2YWx1ZSUzZCUyMjRBNzlDNTBFODYyMTU1NERFMTAwODAwMjBBMDE2NDY3JTIyJTNlJTNjaW5wdXQrdHlwZSUzZCUyMmhpZGRlbiUyMituYW1lJTNkJ
    TIyc3Z5VlZlcnNpb24lMjIrdmFsdWUlM2QlMjIwMDAwMDAwMDAxJTIyJTNlJnN2eWFwcGxpY2F0aW9uaWQ9Q1JNX1NVUlZFWV9NQVJLRVRJTkcmc3Z5c3VydmV5aWQ9U0
    Could you please let me know what I am missing here.. I want to capture responses when it is sent to a target group via campaigns. Please let me know.
    Thanks and Regards,
    Hemanth

    HI experts,
    I am facing a similar problem. while testing the survey URL i am able to navigate to the result.htm page and it shows SURVEY VALUES WERE SAVED SUCCESSFULLY.
    However while using the same in a campaign ( both with the ## and ++ ) hyperlinks, i am getting a dump and not able to navigate to the result.htm page.
    I have also checked and activated the result.htm under BSP applications but still no help.
    I am getting the following dump:
    The following error text was processed in the system CAD : The current application triggered a termination with a short dump.
    The error occurred on the application server carnation6_CAD_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Function: CRM_SVY_ACTIVITY_PAI of program SAPLCRM_ACTIVITY_SURVEY
    Method: CALLBACK_PAI of program CL_CRM_SVY_RUNTIME============CP
    Method: SET_VALUES of program CL_CRM_SVY_RUNTIME============CP
    Function: CRM_SVY_RESULT_DISPATCHER of program SAPLCRM_SVY_RUNTIME
    Method: ONINPUTPROCESSING of program CLO2E6WQ6K4QYANL2PTD6149OEYAYCP
    Method: %_ONINPUTPROCESSING of program CL_O2E6WQ6K4QYANL2PTD6149OEYAYCP
    Method: DO_REQUEST of program CL_BSP_PAGE===================CP
    Method: ON_REQUEST of program CL_BSP_RUNTIME================CP
    Method: IF_HTTP_EXTENSION~HANDLE_REQUEST of program CL_HTTP_EXT_BSP===============CP
    Method: EXECUTE_REQUEST_FROM_MEMORY of program CL_HTTP_SERVER================CP
    Please guide
    Thanks
    Nitin Sehgal

  • Service Profile Response time values from CRM

    Hi experts,
                       I want to capture RESPONSE TIME from SERVICE PROFILE values defined in CRM system.If you refer CRMD_SERV_SLA transaction then you can find the defined values. In 0CRM_SRV_PROCESS_H Catalog, Code group, Code these values are appearing but I unable to find RESPONSE TIME value.
    Has anybody tried capturing response time value in BW? or is there any other field shows this value in Data Source?
    Regards,
    Priyanka Joshi

    Hi experts,
                        to get these values RESPONSE PROFILE value must be maintained in the Transaction but in our system its not available so I used SAP Exit to get the value and solved the problem.
    Regards,
    Priyanka Joshi

  • EncodingStyle attr not properly ns qualified in SOAP response (7.0 beta)

    It appears that BEA does not properly qualify the
    encodingStyle attribute in its SOAP response message.
    Although the document does specify an encodingStyle, the
    attribute does not come from the SOAP envelope namespace.
    In the captured response message below, encodingStyle
    should be env:encodingStyle to be correct.
    HTTP/1.0 200 OK
    Date: Thu, 28 Mar 2002 21:13:25 GMT
    Server: WebLogic WebLogic Server 7.0 beta Fri Feb 22 10:33:57 PST 2002 166852
    Content-Length: 387
    Content-Type: text/xml
    Connection: Close
    <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header>
    </env:Header>
    <env:Body>
    <m:buyResponse xmlns:m="http://www.bea.com/examples/Trader"
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <result>
    <stockSymbol>BEAS</stockSymbol>
    <numberTraded>10</numberTraded>
    </result>
    </m:buyResponse>
    </env:Body>
    </env:Envelope>

    Hi M,
    First, I see your point (and agree), from a "pristine" point of view ;-)
    But the SOAP spec (or Note, or Comment, or whatever) actually allows this :-)
    Here's the exact paragraph:
    "A SOAP application SHOULD include the proper SOAP namespace on all elements and
    attributes defined by SOAP in messages that it generates. A SOAP application MUST
    be able to process SOAP namespaces in messages that it receives. It MUST discard
    messages that have incorrect namespaces (see section 4.4) and it MAY process SOAP
    messages without SOAP namespaces as though they had the correct SOAP namespaces."
    Kind of "Clintonian", if you know what I mean, but it is there. If your SOAP processor
    were to discard this message, one would have to assume that MAY is synonymous with
    MAY NOT :-)
    Is the glass HALF-FULL, or HALF-EMPTY?
    Anyway, I agree that the env namespace prefix OUGHT TO BE (like that, lol) added
    to the encodingStyle attribute here :-)
    Regards,
    Mike Wooten
    "M Shue" <[email protected]> wrote:
    >
    It appears that BEA does not properly qualify the
    encodingStyle attribute in its SOAP response message.
    Although the document does specify an encodingStyle, the
    attribute does not come from the SOAP envelope namespace.
    In the captured response message below, encodingStyle
    should be env:encodingStyle to be correct.
    HTTP/1.0 200 OK
    Date: Thu, 28 Mar 2002 21:13:25 GMT
    Server: WebLogic WebLogic Server 7.0 beta Fri Feb 22 10:33:57 PST 2002 166852
    Content-Length: 387
    Connection: Close
    <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header>
    </env:Header>
    <env:Body>
    <m:buyResponse xmlns:m="http://www.bea.com/examples/Trader"
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <result>
    <stockSymbol>BEAS</stockSymbol>
    <numberTraded>10</numberTraded>
    </result>
    </m:buyResponse>
    </env:Body>
    </env:Envelope>

  • Response tracking

    HI Friends
    i have excuted a campign through personalized email and i want to capture the response ID i want to capture response for
    external links (which is not loaded in servers such as www.google.com,www.yahoo.com)know i want to add external links to
    the server how it can be done
    where it can be maintained in SAP GUI
    Thanks and regards
    jhansi

    no replies

  • Response tracking---- marketing

    HI Friends
    i have excuted a campign through personalized email and i want to capture the response ID i want to capture response for
    external links (which is not loaded in servers such as www.google.com,www.yahoo.com)know i want to add external links to
    the server how it can be done
    where it can be maintained in SAP GUI
    Thanks and regards
    jhansi

    no relies from users

  • Use 2 Data Acquisiton Cards at the same time

    We are using PXI chasis for developing a test system. We want to use one card (PCI 6713) for analog output to the unit under test (UUT)and want to use the Dig I/O card to capture the response of the Device under test. currently i have two separate VIs for outputting data to UUT and for capturing response.
    can someone suggest a method to integrate this function in one VI. This way we could capture the real time response while the test stimulus is being sent to the UUT.
    Thanks

    Hello Shabu,
    Thank you for contacting National Instruments.
    To obtain real-time response while the test stimulus is being sent to the unit under test (UUT), you should place a single point Analog Output (AO) and Digital Input (DI) in the same while loop. In this configuration, you will be sending an AO to the UUT and reading the resulting DI for each iteration.
    If this doesn�t solve your problem, please respond with more information. I would also be happy to take a look at your existing code and offer further ideas.
    Have a great day.
    Sean C.
    Applications Engineer
    National Instruments

  • Synchronous JDBC scenario

    Hi All,
    The scenario is
    SAP Portal will send data to XI using web service(SOAP Adapter) and then XI will post data in Database using JDBC adapter.
    When above scenario executes it is automatically creating response (Synchronous) once it post data in Database (New message in SXI_MONITOR). I have checked message interface both inbound and outbound are asynchronous. When I ran the same scenario using file adapter instead of SAP portal it is not creating new message.
    Please guide how to avoid creating new message in case of SAP Portal .

    Hi,
    The jdbc response is generated in synchronous cases.
    Make sure the webservice call that you are making is asynchronous.
    In case of file adapter the call you made was asynchronous, hence no response was generated.
    Check this blog for configuration for Capturing response message.
    /people/bhavesh.kantilal/blog/2006/07/03/jdbc-receiver-adapter--synchronous-select-150-step-by-step
    - Deepak

Maybe you are looking for

  • Windows does not recognize ipod touch

    Windows does not recognzie my iPod Touch.  This happened recently as it was recognized previously.  Any suggestions?

  • Nano formatted for Windows won't appear on Mac?

    Rec'd replacment 2GB nano yesterday. Hooked it up to my iMac G4 running OS X version 10.4.7. The nano charged, but does not appear on my Mac and has not synched. I notice that it is formatted for Windows. Cannot restore or update as the computer does

  • Purchase Req to Purchase Order

    Is there a transaction in SAP where a user can both release a purchase requisition AND create a purchase order from that same req without having to leave that transaction and go into another?

  • Trying to turn icloud back on on my iphone 4s

    Hey guys, I can't seem to find an anwer to this on here so if there is already something posted let me know!  Lat night I accidentally turned off my icloud email on my iphone and when I go to turn it back on it says: "create a free @me.com email addr

  • Find the schema which contains all these tables

    In my DB, only SCOTT has all the three tables EMP,DEPT, BONUS. There are schemas which have either one or two of these tables but only SCOTT has all these 3 tables. To find the schema which contains all these *3* tables. I tried the below mentioned q