Interface not visible

I am unable to see my interface under a business service in the recievr determaintion step. Please help.

Hi,
I dont think you have to worry about the SLD configuration as they will be taken care of by the Basis guys. You as a developer dont have to worry about it.
All you have to do is, once you create a BS.
i.e. once you give the name of the BS and click on the create button, you will move to a window "Edit Service"
You can see tabs for reciever and sender. Click on the required tab and add your interface.
(If its reciever BS, add inbound interface
and if its sender BS, add outbound interface.)
if you do this much, i'm sure your interface will be reflected in your reciever determination.
hope i am a bit more clear here.
reward if helpful

Similar Messages

  • Indbound Interface not visible in Receiver business service

    Hello Experts-
    II have created a business service.
    After creating the business service, when try to enter receiver inbound interfaces.
    The message interface which I declared in IR is not visible .
    I am not able to select it as its not visible.
    When I manually input the name system display object doesnt exist. But, In IR I can see its there. Do I have to do any kind of import?
    I am doing a Flat file to RFC scenario.
    Thanks,
    raj.

    Yes. Below is little more detail descripition on what i did.
    In IR design , this is what I have
    MI_filetype (outbound asynchronous) and I have assigned its message type  (mt_filetype) to it.
    In message mapping I have mapped
    mt_filetype to RFC message (ZFILEtype)
    mapped the source interface MI_filetype to Target interface ZFILETYPE.
    I have sucessfully tested interface mapping. .
    Activated the change list.
    In IR configuration,
    I have created a scenario and then Busniess service for sender. and create dit communication channel.
    In next step business service for receiver, I am assuming the receiver inbound interface would be MI_filetype?
    Is that not right?
    Thanks,
    Raj

  • Interfaces not visible in 'Operator' when executed with 'Remote Agent'

    Hi,
    I am new to ODI, and have an issue with running Interfaces/Packages with a Remote Agent.+
    I have setup an agent on the machine on which the Database is installed. I have created a Physical Agent with the details, and on using the 'Test' button in the client, it works fine.
    However, when i try an execute a package with this agent, i get the 'Session Started' pop up, but the interface does not register in the 'Operator' section, and nothing happens.+
    However, this does not happen when i use the 'Local (No Agent)', and the interface runs successfully and is registered in the 'Operator'.+
    I just get this error under the 'Physical Agents' tree in the 'Operator' section for the interface - "ODI-1266: Agent agent_apo13110026 detected Session as stale session and set to error status"
    Would appreciate any inputs.
    Thanks,
    Ab

    Hi,
    Thank you for your response.
    We have actuall just migrated the from DEV to TEST. But in DEV we were only using the local agent, and we have configured the new standalone agent only in TEST.
    The way the migration was done, was that we exported the Master and Work Rep from DEV, and then imported it into TEST.
    Could this have had any impact, and would appreciate any pointers on how i can check if indeed the Agent is interacting with the wrong repository.
    Thanks,
    Ab

  • Audio Interface (Presonus) on Intel iMac - Control software not visible

    I'm trying to use core audio compatible Presonus Inspire 1394 firewire audio interface on my new Intel iMac. My main problem is the only controls for the interface are onscreen, but software for said control panel doesn't visibly open. The icon for the device oscillates side-to-side in my dock, and trying to move the inspire file from the desktop reveals that "the app is open." However, I can not see the control panel or any other evidence the file is open. With the help of Presonus tech, I've discovered a couple of things:
    1. The device syncs with my iMac, as evidenced by its presence in the Audio Midi Setup panel, plus
    2. Play back of a song in iTunes goes through the interface's headphone jack just fine.
    My install procedure has revealed two things, also:
    When I put the software disk in, open the Inspire control panel file, then the control panel is visible. However, when I then plug in the firewire device, I get an eternally revolving beachball and eventually have to force quit (new to mac, but I figure that is my only option at that point.)
    However, if I plug in the firewire first, then try to open the control panel file, I get the open-but-not-visibly-so problem I first mentioned (appears in dock, etc.).
    Does anyone have any suggestions? Has anyone experienced a newly loaded app appearing in the dock but not visibly open?
    I've tried restarting mac, reinstalling sw and device, downloading said software from the Personus web site (vs the disc supplied version), and both repairing and verifying HD permissions. I am at a loss. Presonus said the device is plug-and-play with core audio. a check reveals the device is PowerPC, but they said it should run on intel mac too, based on their assurances from apple personnel and other stuff I didn't understand (it is an OS X issue, not platform...or something).
    Thanks for any suggestions.
    Intel iMac 17 in   Mac OS X (10.4.4)   1 GB RAM

    I got the following message yesterday from Presonus:
    Hello,
    The new Intel Mac's have a proprietary OSX that does not fully support our
    products yet.
    They will, but I have no ETA.
    Check our website from time to time for future posts and available
    downloads.
    Butch Richard
    Interface Technical Support

  • Data in CSV uploads successfully, but it is not visible after upload.

    Hi,
    I am using Apex 3.2 on Oracle 11g.
    This is an imported application for which I am making changes as per my requirements. As I am new to Apex and even SQL, I request forum members to help me with this.
    Please find below the old code for uploading data from CSV. It displays only 6 columns - Database Name, Server Name, Application Name, Application Provider, Critical, Remarks. This was successfully uploading all the data from CSV and that data was visible after upload.
    OLD CODE:_
    --PLSQL code for uploading application details
    DECLARE
    v_blob_data      BLOB;
    v_blob_len      NUMBER;
    v_position      NUMBER;
    v_raw_chunk      RAW(10000);
    v_char           CHAR(1);
    c_chunk_len           NUMBER:= 1;
    v_line           VARCHAR2 (32767):= NULL;
    v_data_array      wwv_flow_global.vc_arr2;
    v_rows           NUMBER;
    v_count           NUMBER;
    v_dbid           NUMBER;
    v_serverid           NUMBER;
    v_sr_no          NUMBER:=1;
    v_last_char          varchar2(2);
    BEGIN
    -- Read data from wwv_flow_files
    SELECT blob_content INTO v_blob_data FROM wwv_flow_files
    WHERE last_updated = (SELECT MAX(last_updated) FROM wwv_flow_files WHERE UPDATED_BY = :APP_USER)
    AND id = (SELECT MAX(id) FROM wwv_flow_files WHERE updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- For removing the first line
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    --removing the new line character added in the end
    v_line := substr(v_line, 1, length(v_line)-2);
    --removing the double quotes
    v_line := REPLACE (v_line, '"', '');
    --checking the absense of data in the end
    v_last_char:= substr(v_line,length(v_line),1);
    IF v_last_char = CHR(44) THEN
         v_line :=v_line||'-';
    END IF;
    -- Convert each column separated by , into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line, ',');
    -- Insert data into target tables
    SELECT SERVERID into v_serverid FROM REPOS_SERVERS WHERE SERVERNAME=v_data_array(2);
    SELECT DBID into v_dbid FROM REPOS_DATABASES WHERE DBNAME=v_data_array(1) AND SERVERID=v_serverid;
    --Checking whether the data already exist
    SELECT COUNT(APPID) INTO v_count FROM REPOS_APPLICATIONS WHERE DBID=v_dbid AND APPNAME=v_data_array(1);
    IF v_count = 0 THEN
    EXECUTE IMMEDIATE 'INSERT INTO
    REPOS_APPLICATIONS (APPID,APPNAME,APP_PROVIDER,DBID,SERVERID,CRITICAL,LAST_UPDATE_BY,LAST_UPDATE_DATE,REMARKS) VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9)'
    USING
    APP_ID_SEQ.NEXTVAL,
    v_data_array(3),
    v_data_array(4),
    v_dbid,
    v_serverid,
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8);
    END IF;
    -- Clearing out the previous line
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    ==============================================================================================================================
    Please find below the new code (which I modified as per my requirements) for uploading data from CSV. It displays 17 columns - Hostname, IP Address, Env Type, Env Num, Env Name, Application, Application Component, Notes, Cluster , Load Balanced, Business User Access Mechanism for Application, Env Owner, Controlled Environment, SSO Enabled, ADSI / LDAP / External Directory Authentication, Disaster Recovery Solution in Place, Interfaces with other application.
    This is successfully uploading all the data from CSV, But this uploaded data is not visible in its respective tab.
    _*NEW CODE:*_
    --PLSQL code for uploading application details
    DECLARE
    v_blob_data      BLOB;
    v_blob_len      NUMBER;
    v_position      NUMBER;
    v_raw_chunk      RAW(10000);
    v_char           CHAR(1);
    c_chunk_len           NUMBER:= 1;
    v_line           VARCHAR2 (32767):= NULL;
    v_data_array      wwv_flow_global.vc_arr2;
    v_rows           NUMBER;
    v_count           NUMBER;
    v_dbid           NUMBER;
    v_serverid           NUMBER;
    v_sr_no          NUMBER:=1;
    v_last_char          varchar2(2);
    BEGIN
    -- Read data from wwv_flow_files
    SELECT blob_content INTO v_blob_data FROM wwv_flow_files
    WHERE last_updated = (SELECT MAX(last_updated) FROM wwv_flow_files WHERE UPDATED_BY = :APP_USER)
    AND id = (SELECT MAX(id) FROM wwv_flow_files WHERE updated_by = :APP_USER);
    v_blob_len := dbms_lob.getlength(v_blob_data);
    v_position := 1;
    -- For removing the first line
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    EXIT;
    END IF;
    END LOOP;
    -- Read and convert binary to char
    WHILE ( v_position <= v_blob_len )
    LOOP
    v_raw_chunk := dbms_lob.substr(v_blob_data,c_chunk_len,v_position);
    v_char := chr(hex_to_decimal(rawtohex(v_raw_chunk)));
    v_line := v_line || v_char;
    v_position := v_position + c_chunk_len;
    -- When a whole line is retrieved
    IF v_char = CHR(10) THEN
    --removing the new line character added in the end
    v_line := substr(v_line, 1, length(v_line)-2);
    --removing the double quotes
    v_line := REPLACE (v_line, '"', '');
    --checking the absense of data in the end
    v_last_char:= substr(v_line,length(v_line),1);
    IF v_last_char = CHR(44) THEN
         v_line :=v_line||'-';
    END IF;
    -- Convert each column separated by , into array of data
    v_data_array := wwv_flow_utilities.string_to_table (v_line, ',');
    -- Insert data into target tables
    --SELECT SERVERID into v_serverid FROM REPOS_SERVERS WHERE SERVERNAME=v_data_array(2);
    --SELECT DBID into v_dbid FROM REPOS_DATABASES WHERE DBNAME=v_data_array(1) AND SERVERID=v_serverid;
    --Checking whether the data already exist
    --SELECT COUNT(APPID) INTO v_count FROM REPOS_APPLICATIONS WHERE DBID=v_dbid AND APPNAME=v_data_array(1);
    IF v_count = 0 THEN
    EXECUTE IMMEDIATE 'INSERT INTO
    REPOS_APPLICATIONS (APPID,HOSTNAME,IPADDRESS,ENV_TYPE,ENV_NUM,ENV_NAME,APPLICATION,APPLICATION_COMPONENT,NOTES,CLSTR,LOAD_BALANCED,BUSINESS,ENV_OWNER,CONTROLLED,SSO_ENABLED,ADSI,DISASTER,INTERFACES) VALUES(:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,:16,:17,:18)'
    USING
    APP_ID_SEQ.NEXTVAL,
    v_data_array(1),
    v_data_array(2),
    v_data_array(3),
    v_data_array(4),
    v_data_array(5),
    v_data_array(6),
    v_data_array(7),
    v_data_array(8),
    v_data_array(9),
    v_data_array(10),
    v_data_array(11),
    v_data_array(12),
    v_data_array(13),
    v_data_array(14),
    v_data_array(15),
    v_data_array(16),
    v_data_array(17);
    END IF;
    -- Clearing out the previous line
    v_line := NULL;
    END IF;
    END LOOP;
    END;
    ============================================================================================================================
    FYI, CREATE TABLE_ is as below:
    CREATE TABLE "REPOS_APPLICATIONS"
    (     "APPID" NUMBER,
         "APPNAME" VARCHAR2(50),
         "APP_PROVIDER" VARCHAR2(50),
         "DBID" NUMBER,
         "CRITICAL" VARCHAR2(3),
         "REMARKS" VARCHAR2(255),
         "LAST_UPDATE_DATE" TIMESTAMP (6) DEFAULT SYSDATE NOT NULL ENABLE,
         "LAST_UPDATE_BY" VARCHAR2(10),
         "SERVERID" NUMBER,
         "HOSTNAME" VARCHAR2(20),
         "IPADDRESS" VARCHAR2(16),
         "ENV_TYPE" VARCHAR2(20),
         "ENV_NUM" VARCHAR2(20),
         "ENV_NAME" VARCHAR2(50),
         "APPLICATION" VARCHAR2(50),
         "APPLICATION_COMPONENT" VARCHAR2(50),
         "NOTES" VARCHAR2(255),
         "CLSTR" VARCHAR2(20),
         "LOAD_BALANCED" VARCHAR2(20),
         "BUSINESS" VARCHAR2(255),
         "ENV_OWNER" VARCHAR2(20),
         "CONTROLLED" VARCHAR2(20),
         "SSO_ENABLED" VARCHAR2(20),
         "ADSI" VARCHAR2(20),
         "DISASTER" VARCHAR2(50),
         "INTERFACES" VARCHAR2(50),
         CONSTRAINT "REPOS_APPLICATIONS_PK" PRIMARY KEY ("APPID") ENABLE
    ALTER TABLE "REPOS_APPLICATIONS" ADD CONSTRAINT "REPOS_APPLICATIONS_R01" FOREIGN KEY ("DBID")
         REFERENCES "REPOS_DATABASES" ("DBID") ENABLE
    ALTER TABLE "REPOS_APPLICATIONS" ADD CONSTRAINT "REPOS_APPLICATIONS_R02" FOREIGN KEY ("SERVERID")
         REFERENCES "REPOS_SERVERS" ("SERVERID") ENABLE
    ==============================================================================================================================
    It would be of great help if someone can help me to resolve this issue with uploading data from CSV.
    Thanks & Regards
    Sharath

    Hi,
    You can see the installed dictionaries and change between them by right-clicking and choosing '''Languages''' inside a live text box eg. the box you are in when replying or right-clicking on the '''Search''' box on the top right corner of this page and choosing '''Check Spelling'''.

  • BPM TASK IS not visible in UWL  Inbox

    Hi  BPM Expert,
      I am facing the big issues in BPM process Triggered problem. earlier i used  to BPM start using Web service with Two entity as ID and Username  but its was  working fine .but i have some requirement to  adding one element in Existing WSDL entity as casename  , i have added that element and execute the web service using WEBDYNPRO application ,but Task is not visible in UWL inbox but earlier it was working perfectly,  after adding that field ,BPm tax is not visible UWL inbox ..
    Please guide me ,Its urgent...Plz plz..
    Its showing error as
      Technical issues is triggered during the process creation..
    Thanks
    sudhir

    Hi ,
      I am executing the WEbservice using WSNAVIGATOR but its not execute , its getting HTML log error as  below..
    1-Web service returned error. Fault Code: "(http://schemas.xmlsoap.org/soap/envelope/)Server" Fault String: "Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE"
    2-
    HTTP/1.1 500 Internal Server Error
    server: SAP NetWeaver Application Server 7.20 / AS Java 7.20
    content-type: text/xml; charset=utf-8
    date: Sat, 26 Nov 2011 11:40:56 GMT
    transfer-encoding: chunked
    Set-Cookie: <value is hidden>
    2e4
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE</faultstring><detail><yq1:com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException xmlns:yq1='http://sap-j2ee-engine/error'>Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE</yq1:com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
    0
    Thnaks
    Sudhir

  • RAID 0 is not visible

    hi *
    [OS:Centos 5; Intel ICH10R SATA RAID; 5 SATA harddrives on board]
    I've got a question - what the reason could be that RAID 0 made up this way:
    vol0 = sdb+sdc
    vol1 = sdd+sde
    (and sda is left for OS)
    configured in BIOS-like interface before OS boot,
    is not visible when OS is started (fdisk shows plain disk as if they were never configured in a RAID):
    # cat /proc/mdstat
    Personalities :
    unused devices: <none>
    # fdisk -l
    Disk /dev/sda: 320.0 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 13 104391 83 Linux
    /dev/sda2 14 37368 300054037+ 83 Linux
    /dev/sda3 37369 38913 12410212+ 8e Linux LVM
    Disk /dev/sdb: 320.0 GB, 320071851520 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    Disk /dev/sdc: 320.0 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    Disk /dev/sdd: 320.0 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    Disk /dev/sde: 320.0 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk /dev/sde doesn't contain a valid partition table
    Edited by: g777 on 2010-06-18 07:39

    ok, I've found the answer by myself - this RAID system is destined for Windows only (both drivers and console). So I'll do it on OS level. Bye.

  • Imported Archive not visible

    Hi Guru,
    I have imported into XI a XSLT Mapping in IMPORTED ARCHIVE; now I have to use thi mapping in my Interface Mapping, but the imported Archive (the XSLT Mapping...) is not visible! How is it possible?
    Thanks to all!

    hi,
    1. Make sure that the XSLT program .zip or jar format.
    2. If the mapping program it' not showing then forceble you need to push your interface mapping.
      If the mapping program it is not showing mean particular source message particular target message couldn't defind the mapping program..this is not complesary any mapping program we can push through forceble .
    Regards,
    Venu.

  • New item category not visible in CRM WebUI

    Hi,
    I am working on CRM 7.0, Leasing Contracts component BT114H_LAM.
    I created a new item category for the contract however this is not visible in the WebUI screen. the moment i enter the item it dissappears from the screen. It is available in the item details.
    Same item is visible in the Backeng SAP GUI.
    Can anyone suggest some solution for the same.
    I have done all the customizing required for the new item category in SPRO-Financial Services->Basic Functions->User Interfaces->CRM Web client UI
    Waiting for some quick reply
    Regards,
    PP

    Thanks fo ryour input.
    There was somethng else that was missing from customizing.
    regards,
    PP

  • Why don't PDF attachments not visible in mail.

    Mail is not displaying PDF's that are attached in the body of the email.  We have been dragging and dropping pdf and jpeg images into emails for years. The images are visible
    in the anders email but not to the receiver.  What changed?  Why are they not visible. We shouldn't have to down load or use quick view to see them.  The image files are under 1 mb.

    Hi,
    Similar problem here with me.
    Also this thread - http://discussions.apple.com/thread.jspa?threadID=1997630
    Hopefully we can find a solution.
    I've rebuilt mailboxes and re-added accounts to no avail.
    Attachments are working fine in the web interface but when syched with IMAP to Mail - no worky.
    I get a winmail.dat file instead.
    Cheers

  • Custom attributes added to user objects not visible in OWA address book

    Hi,
    I am using Exchange 2013 and recently added a new custom attribute in the user object properties using the details template editor to be visible in the GAL  The new attribute is correctly getting displayed in the GAL from outlook clients but not visible
    in OWA address book. Is there a way to update the display of user objects in OWA address book to include the new custom attribute?
    Thanks!

    Hi Abu,
    Please see following link:
    Customize Details Templates
    http://technet.microsoft.com/en-us/library/ms.exch.toolbox.detailstemplate(v=exchg.150).aspx
    It says, Use the Details Templates Editor to customize the client-side graphical user interface (GUI) presentation of object properties that are accessed by using address lists in Microsoft Outlook.
    My understanding is this setting only visible in Outlook.
    Please correct me if there is any misunderstanding.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Filters Section is not visible in Mobile App???

    I added few filters in my report in Power BI Preview Web but its not visible in Mobile App.
    Anybody has any idea??
    Atul, 

    Hi
    Please cross check once these:
    01. In Login path ( above) CV details, check - in to which Application you've created BPF.
    02. Select your BPF name among the list,
    03. If you do not find the BPF name, please give the Full Member access to the BPF.
    04. Close the Application totally and again relogin in to application and go through Excel Interface duly selecting your BPF
    Hope this help you.
    regards
    ukraghu

  • INterface not viisble in sxi_monitor

    Hello Everyone,
    I have created a  JDBC to IDOC scenario. .. All the configurations are made and i tested the xi objects  as well..
    I could see that in QX1, i have the successful message in SXI_MONITOR . However,. when i try to check the message in QE1 (ECC) box i dont see my interface and namespace in SXI_MONITOR.
    Dont know why my interface  is not visible in input deatils .
    Regards,
    Ravi

    HI,
    However,. when i try to check the message in QE1 (ECC) box i dont see my interface and namespace in SXI_MONITOR.
    In ECC go to t-code WE02 to check if the idoc is posted successfully.
    In PI check in the t-code IDX5 for the idoc monitoring.
    Regards,
    Pranav

  • View of Component Is Not Visible. Navigation Is Not Possible

    Hi All,
    I have copied Window1 into Window2 and when I try to navigate from view1 to view2 in the copied window(window2),the dump "View of Component Is Not Visible. Navigation Is Not Possible " is thrown.
    I have tried recreating the navigation links in the second window as well,but no luck.
    Can any one please help me out,this is very uregnt...
    Thanks,
    Salma

    Hi Salma,
    Are you trying to navigate between the views of 2 different windows? If that's the case then you can proceed as follows:
    Create 2 views and 2 windows and assign first view to first window and second view to second window. Also create an [exit plug|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/ca3351508f04e7e10000000a42189c/frameset.htm] for window1 with parameter URL of type string.
    Note:
    when you create windows automatically an interface view will also create with same name.
    Now create application1 for window1(nothing but give interface1 ) in the same way create another application and assign corresponding interface view.
    Then write your logic in the onAction method of view1,call the exit plug of window1 then pass the URL of second application.
    Regards,
    Uday

  • Enterprise keywords not visible to users in SP2013

    Hello Friends,
    Enterprise keywords are visible to me, but not visible to some of my colleagues, though they can see the list items clearly, but the under the column heading "Enterprise Keywords", it's all blank.
    Any thoughts please....
    Many thanks,
    Prajwal

    It can be permission issues.
    1. Navigate to the list TaxonomyHiddenList, for eg- http://serverName/sites/Lists/TaxonomyHiddenList
    2. Click on List Permissions in the ribbon interface
    3. Grant Permissions for the specific users
    It should be done now.

Maybe you are looking for