How to make a service available in SICF?

Hello all,
I'm looking to set up a demo showing some of our existing ITS functions in integrated ITS. For example I want to make IAC iViews of PZ07 & PZ14. I didn't see them available in sicf so I went to se80 and found/published both. I then expected to see them available in SICF for activation. They are still not there. I'm obviously missing a key step. When I try a Start Service in SE80 I get "http://hostname:port/sap/bc/gui/sap/its/pz07/ call was terminated because the corresponding service is not available."
I have activated the SYSTEM , WEBGUI & SHUFFLER services and can get available services to test properly. I just need to be able to publish/activate the ones I need.
Thanks,
Doug

Thanks Deepak,
I have created a service using those instructions and have it working as an IAC iView in the portal using the configurations below. It works but is missing styles, and generally looks rough compared to testing the service in SICF. I don't know why. I'm still confused as to why I can't run the out of box PZ07. It's in SE80. I have published it, but when I go to test it in se80 or run it in a portal IAC iView it fails with the following
"URL http://shrcin02.america.apci.com:8304/sap/bc/gui/sap/its/PZ07 call was terminated because the corresponding service is not available."
I also don't see it in sicf. Shouldn't this be available as a service in sicf once I publish it in SE80? Some PA** services are available though not activated. I know we've not used them. What dictates which services are available and which ones are not. Anyone have any idea what I am missing?
Thanks
Doug
This does work however though missing the webgui styles.
New Service
ZPZ07
~transaction=pz07
~GENERATEDYNPRO=1
Handler=CL_HTTP_EXT_ITS
System
ITS Description: Integrated ITS
ITS Host Name:hostname.america.apci.com:8304
ITS Path: /sap/bc/gui/sap/its
ITS Protocol:http
IAC iView
System=SAP_R3_HumanResources
Internet Application Component (IAC)=ZPZ07

Similar Messages

  • How to make a service available at boot.

    Can someone tell me how to make a service available at boot time via smf ? The question is for a generic service ( network/telnet for example ) and for a site one.
    Is it enough to enable it via svcadm ?
    Thanks.

    yeah all you need to do is
    svcadm enable /network/telnet
    this will enable the service then and next time when you boot the system
    (or i.e. svcadm disable apache2 if you want to disable the httpd)
    have you tried man on svcadm?
    Sharif

  • How to make saved IR available for all users

    Hi,
    I've created IR and saved it to several tabs based on search conditions.
    But they're only visible for developers.
    How to make these tabs available for all end-users ?
    Does version 4.0 support this option ?
    Thank you!

    Hi
    At present this feature is not included, although I believe it may be in 4.0. Many people have provided workarounds for this. None of which I have tried. I cannot find the original thread but here is a solution from a chap called Ruud
    >
    One way to share your saved reports with others is to 'Publish' your report settings to a few intermediate tables in your application and have other users 'Import' your settings from there. The reason for using intermediate tables is so that not all your saved reports need to be 'visible' to other users (only those that you've chosen to publish).
    Basically you have available the following views and package calls that any APEX user can access:-
    - flows_030100.apex_application_pages (all application pages)
    - flows_030100.apex_application_page_ir_rpt (all saved reports - inclusing defaults and all user saved reports)
    - flows_030100.apex_application_page_ir_cond (the associated conditions/filters for above saved reports)
    - wwv_flow_api.create_worksheet_rpt (package procedure that creates a new saved report)
    - wwv_flow_api.create_worksheet_condition (package procedure that creates a condition/filter for above saved report)
    The way I've done it is that I've created 2 tables in my application schema that are straightforward clones of the 2 above views.
    CREATE TABLE user_report_settings AS SELECT * FROM flows_030100.apex_application_page_ir_rpt;
    CREATE TABLE user_report_conditions AS SELECT * FROM flows_030100.apex_application_page_ir_cond;
    ( NB. I deleted any contents that may have come across to make sure we start with a clean slate. )
    These two tables will act as my 'repository'.
    To simplify matters I've also created 2 views that look at the same APEX views.
    CREATE OR REPLACE VIEW v_report_settings AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_rpt r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND r.session_id IS NULL
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    CREATE OR REPLACE VIEW v_report_conditions AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_cond r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    I then built 2 screens:-
    1) Publish Report Settings
    This shows 2 report regions:-
    - Region 1 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT apex_item.checkbox ( 1, report_id ) " ",
    page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY page_name,
    report_name
    Each row has a checkbox to select the required settings to publish.
    The region has a button called PUBLISH (with associated process) that when pressed will copy the settings from
    V_REPORT_SETTINGS (and V_REPORT_CONDITIONS) into USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    - Region 2 - Shows a list of already published reports in table USER_REPORT_SETTINGS (again filtered for your user)
    SELECT apex_item.checkbox ( 10, s.report_id ) " ",
    m.label,
    s.report_name
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user = :APP_USER
    AND ( s.page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY m.label,
    s.report_name
    Each row has a checkbox to select a setting that you would like to delete from the repository.
    The region has a button called DELETE (with associated process) that when pressed will remove the selected
    rows from USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    NB: P27_REPORT is a "Select List With Submit" to filter the required report page first.
    Table MENU is my application menu table where I store my menu/pages info.
    2) Import Report Settings
    This again shows 2 report regions:-
    - Region 1 - Shows a list of all published reports in table USER_REPORT_SETTINGS (filtered to show only other users saved reports)
    SELECT apex_item.checkbox ( 1, s.report_id ) " ",
    m.label,
    s.report_name,
    s.application_user
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user :APP_USER
    AND ( s.page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY m.label,
    s.report_name,
    s.application_user
    Each row has a checkbox to select the setting(s) that you would like to import from the repository.
    The region has one button called IMPORT that when pressed will import the selected settings.
    It does this by using the 2 above mentioned package procedure to create a new saved report for you
    with the information form the repository. Be careful to match the right column with the right procedure
    parameter and to 'reverse' any DECODEs that the view has.
    - Region 2 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY page_name,
    report_name
    This is only needed to give you some feedback as to whether the import succeeded.
    A few proviso's:-
    a) I'm sure there's a better way to do all this but this works for me :-)
    b) This does not work for Computations! I have not found an API call to create computations.
    They will simply not come across into the repository.
    c) If you import the same settings twice I've made it so that the name is suffixed with (2), (3) etc.
    I did not find a way to update existing report settings. You can only create new ones.
    d) Make sure you refer to your saved reports by name, not ID, when matching APEX stored reports and the
    reports in your repository as the ID numbers may change if you re-import an application or if you
    auto-generate your screens/reports (as I do).
    Ruud
    >
    To me this is a bit too much of a hack and I personally wouldn't implement it - it's just an example to show it can be done.
    Also if you look here in the help in APEX Home > Adding Application Components > Creating Reports > Editing Interactive Reports
    ...and go to the last paragraph, you can embed predicates in the URL.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)
    Edited by: Munky on Jul 30, 2009 8:03 AM

  • How to make iPhotos library available to other users

    how to make iPhotos library available to other users

    To give others selective access to your iPhoto library, you have the option of using iCloud Photo Sharing, if the privacy implications don't bother you. The images will be stored temporarily on Apple servers.
    If you want to give full read/write access to more than one user, see the support article linked below.
    iPhoto: Sharing libraries among multiple users
    There is a way to share the library without moving it to a secondary volume. If you really need to do that, ask for instructions.

  • How to measure Lync Service Availability?

    Hi there
    I need to understand how others measure Lync service availability? I have following setup in my environemnt where I have:
    1x Lync front end server
    1x Lync Persistent Chat server
    1x SQL instance
    2x Lync Edge server (redundant)
    1x Lync Mediation server (not yet in place)
    There are many values monitored over the monitoring but does anyone have any idea how to bring all these unstructured data into a meaningfull service availability?
    Your help/proposals are very welcome.
    Regards
    agmah

    Hi AGMAH,
    If you want to see service status of computers run Lync Server in your topology, you can check it in Lync Server Control Panel.
    For how to view the status of computers, see
    http://technet.microsoft.com/en-us/library/gg520987.aspx.
    Best Regards,
    Lisa Zheng
    Lisa Zheng
    TechNet Community Support

  • How to make Steam library available for all users

    Hello!
    Can someone tell me - how to make my Steam library available to ALL users of my iMac without sharing a password?
    Or any other program of my account?

    Hard drive level Users/Sharing - Do a Get Info on the folder (command - I) and set permissions to everyone read/write, then click the gear at the bottom - Apply to Enclosed Items.

  • How to make database instances available in the SAP MMC

    Hello,
    I have been trying to figure out on how to make a database instance, which I installed on the MSSQL Server, available in the SAP Management Console in order to start the instance. I am able to view the instance over the Enterprise Manager of the MSSQL Sever, but I cannot start it from there (this is only possible from the SAP MMC). I have the SAP MMC installed on my computer, but just cannot figure out on how to control the instance from there because I cannot see it.
    I hope someone can help me on this matter!
    Thanks....
    Katharina

    Hello Katharina,
    Run SAP MMC and right-click to SAP R/3 Systems.
    Choose properties and go to Fixed tab.
    In 'System' field enter Your SID (e.g. EBP)
    In 'Instance' field enter hostname<space>instance number (e.g. epb01 10) Remember, there is space between ebp01 and 10.
    Click on 'Add' button and then OK.
    Best Regards,
    Marcin Gajewski

  • How to make some computers available on the Internet? Remote Desktop.

    We have 12 computers (VMs) that are used for training. They are configured with the software to be trained on and are set up just the way we want them. We are looking for a way that we can make these computers available to the internet so that someone can Remote into the VMs to go through some training courses. We do need to be able to control who can get onto these machines so we don't have random people logging into them. We handle training through a GotoTraining type system and would provide a link to each of the attendees.Does anyone know if a way to do this?It could be as simple as a list of 12 links that we tell each person to click a link. It could be as fancy as having the person click the link and having them put into any machine that doesn't already have someone in it.This could involve installing some sort of 3rd party...
    This topic first appeared in the Spiceworks Community

    Hi,
    Beforing answering your Q....How the dashboard will get the data....how it will display??
    See to diplay any Grid,charts,bar..... it need to fetch the data from the database servers that means if your in netcafe also .......it need to be connected to the netwrok were it can fetch the data from.
    so having the link is not sufficient ....... you need to have the authorization to the xMIIserver from Net cafe.
    Regards,
    Phani

  • How to make the portal available on default port 80

    Hello
    We have installed 9iAS 9.0.2 with portal.
    I'm trying to make the portal available on http port 80 via webcahce
    I've managed to get the webcache answer requests that comes on port 80, but all the url's that is delivered out is pointing on port 7779.
    If i copy the url's and remove :7779 from it, i still get the page that it points to.
    I don't want to open for any ports except for 80 in our firewall.
    How can i configure webcache not to deliver url's that points to port 7779?
    Regards
    Per-Jarle Sfther

    Refer :
    7 Component Configuration Dependencies
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/core.902/a92171/compdep.htm#1008620
    Web Cache
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/core.902/a92171/compdep.htm#1016697
    3.2.2 MIDTIER OPCA Mode
    http://portalcenter.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/CONFIGHTML/cgbasic.htm#1008246
    - Senthil

  • How to make business content available for reporting

    The business content is loaded.The version is 3.5.3 SP2 which we have and BW version is 3.5
    I can see the business content going thru RSA1 for e.g for Sales 0SD_O01 etc
    Now how can i make the content available for reporting.When I go in modeling and click on infoprovider, infoobject it doesnt show me anything.Its blank.
    Do i have to connect R/3 to BW for reporting or load data to BW from R/3 and do reporting.Why the content is not showing in modeling?How can i make it available for reporting

    Hi,
    First you need to install the Businesscontent object first...right side window in the business content will give you the option.once it is installed then u can view it in modeling then load data and do reporting...
    If you need any details..feel free to post..If u satisfied upto some level..exibhit it by awarding points..

  • How to use Enterprise Services available in workplace

    Hello Friends,
    We have found some Enterprise Services to use for our existed business scenarios in ES Workplace.
    My requirement here is: There are some interfaces which are running through websphere from source to destination. Now, we wanted to migrate those interfaces using PI 7.1, for which Can I use SAP provided Enterprise Services in ES Workplace? If so, how can I use those? What is the approach? Is there any process for this?
    Kindly provide us blogs, pdfs or step by step procedure how to use?
    Regards
    PM.

    Hello PM,
    It depends on the exact scenario and best fit of usage of ESs. The ESs listed out in the ES workplace are the different functionalities and specific to business scnearios.
    So in your case, it is not a good idea to directly use the services available from ES workplace. You need to understand/analyse the exact functionalities etc
    wrt your query on how to use ES from ESworkplace: All ESs are coming as EhPs.. so you need to import those EhPs in your SAP backend, and publish the services into ES Registry.. then you can consume without PI.
    You can use PI, to have new developments or extending the existing ES using outside in approach. Otherwise PI is not required to execute the ES.
    Following URLs will help you to understand these better
    Simple use cases :
    http://esworkplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?sap-unique=045503&sap-params=aWQ9RjZDRkMwRUEzRUYxNEJDOTg0MUM1MjgyNzJFRTg1ODMmcGFja2FnZWlkPURFMDQyNkREOUIwMjQ5RjE5NTE1MDAxQTY0RDNGNDYyJm1vZGU9
    ES configuration: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20b723f8-a422-2c10-aca5-fe64eeda1ff2
    Specific to using PI or migrating to PI, need to have more details to respond. Because we can not just replace with ES..
    Hope it helps
    Regards, Moorthy

  • How to make new jars available globally on the portal to all projects?

    Hello,
    I have downloaded few jar files which are needed for few projects and aren't comming with the portal by default.
    I would like to make these jars available globally to every project I will write in the future. What is the exact procedure I need to do on the portal server in order to acheive this?
    Regards,
    Roy

    I've been playing around with this as well (in combination with NWDI).
    You need to consider what should happen if you ever have an update of the "common" jar-files that you are adding. They might break some of the portal apps that use them, so it's not a good solution to use a J2EE Library DC if you know there will be updates in the future. If you're sure there will be no updates, this is indeed the simplest way to implement this. All you need to do is to specify a PrivateSharingReference for the portal apps as explained here: http://help.sap.com/saphelp_nw04/helpdata/en/88/bdfc3f48ecc742e10000000a1550b0/content.htm
    The 2nd available option (based on NWDI) is to create an External Library DC and add your jars to that. Create an extra public part for assembly (next to the existing public part for compilation called ExternalLibs). Then, for each portal app DC add the External Library DC as a used DC, create an assembly public part and add an Entity Reference to the assembly public part of the External Library DC. This way the jars will be assembled in the PAR file for each portal app. The nice thing is that you are still maintaining the jar files in one central place, but that you have the option to update and test the portal apps individually.

  • How to Make Wage Types Available in Drop Down

    Hi,
    I need to make a particular wage type available for a particular Infotype(14,15 to be precise.).
    I tried entering using the v_t512z maintenance. In that when I entered (actually copied from an existing WT), it gave an error that key already exists.
    Now, I would like to know is this the way to make a WT visible in <b>drop down </b>of IT0014/15 ?
    Answers would be appriciated.
    Thanks,
    Vivek

    Hi sarika, amit, and santosh..
    Your answers were quite helpful. but my situation is still unanswered :(.
    The thing is that a particular WT(WT1) is present for a particular molga(M1). Now I need to make this WT1 available in the drop down for another molga(M2).
    When I went in view maintenence of <b>V_52D7_B</b>, for molga M1, it showed the existence of the WT, but when I was in molga M2, and the same wage type group(14/15) and copied an existing wage type, and renamed it to what I want, it gave an error saying that this wage type doesnt exist.
    I hope I have made my problem a bit more clear. I would appriciate if any of u can tell me what am I missing in my process.
    Is it that I <b>need to create a wage type for molga M2 </b>and only then what I am trying to do is possible?
    Being a rookie in the field, please do not mind my basic querries.
    Regards,
    Vivek

  • How to make OBIEE reports available during the DB tables data refresh?

    Experts,
    We have our production ETL run for 2.5 days every month. OBIEE reports will not be available during the run. We have a requirement to make the reports available all 24 hrs 365 days. So, what we are trying is to copy all the fact/Dim tables to the new schema running in the same or different DB server and amend the connection pool to point this schema during the run. Here are my questions. Is this a workabale solution (or) is there better approach for meeting our requirement
    Regards,
    Sarvan

    I would suggest this option:
    Store the following connection pool values in a table and call them in your connection pool using Connection Pool Scripts
    Data Source Name
    User ID
    Pwd
    when ever you want to change db just you need to edit these values that would help your bi with no downtime.
    You might have to tweak it little bit if needed.
    More or less we have use sometime back to a client where they want to switch dbs dev to test to etc
    Try it out.
    BTW: 2.5 days load time for Full load or Incr?
    Edited by: Srini VEERAVALLI on Feb 1, 2013 8:40 AM

  • How to make the workflow available for Contract Template ? CLM

    Hi expert,
    It seems that no workflow can be defined in the Library Item Phase Configuration .
    The customer needs the approval workflow for the contract template also ,so does anyone know how to make it
    possible with configuration or Dev ?
    Your help is highly appreciated !
    Thanks a lot !
    Regards,
    Lilian

    Refer :
    7 Component Configuration Dependencies
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/core.902/a92171/compdep.htm#1008620
    Web Cache
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/core.902/a92171/compdep.htm#1016697
    3.2.2 MIDTIER OPCA Mode
    http://portalcenter.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/CONFIGHTML/cgbasic.htm#1008246
    - Senthil

Maybe you are looking for