Problem when testing ITS (IAC) iView

Hi all,
I have created a service for a T-Code:SMEN.When I test this service I am able to see the 'SMEN' screen, but in the command box if I type any t-code, say "SE38".
The entire screen refreshes but it is not taking me to "SE38"..
I have complete authorizations for all t-codes.
In this service I have the below parameters:
Parameter Name value
~TRANSACTION smen
~GENERATEDYNPRO 1
I have created a IAC iView with this service and even in the preview of this iView, same thing happens.
Can any one give some direction in solving this ..
Thanks in advance
sethu

Michael is right - you should not be using an IAC iView, but a SAP Transaction iView with the SAP GUI type set to "Web GUI".
- Darren
<a href="http://www.fortybeans.com/">blog</a>

Similar Messages

  • Port problem when testing bsps (sso)

    Hi Forum,
    I am facing a problem when testing bsps or wd4a.
    When testing an app, first of all the sicf service "myssocntl" gets called. This service listens under port 50077. But when testing the bsp app port 57700 gets called.
    Any ideas, where I can customize these ports?
    Thank you!

    hi,
    check your instace profile and chage the icm/server_port_0 value u can change.
    thanks
    ajai

  • Close sessions on ITS IAC iview

    Hello Gurus!
    i have a technical problem.
    I'm working with portal 7.3 and SAP ECC6
    I made some IAC iview in my portal but i notify that session is not closed when i navigate or when i close portal.
    So if i have 3 IAC iview and i navigate through all, on the end i have 3 pluginhttp sessions open.
    i tryed to add ~DISCONNECTONCLOSE parameter but no result.
    I notify the problem start from ITS, because when i test transation from SIFC, and i close browser, the session remains open.
    Any suggestion?
    Thanks in advance
    Alessandro

    hello Fabio!
    thanks for suggestion but i not solved problem:
    in note 1660720 the suggest me only how to use DMS logger and where investigate or move focus. In my case i can see the session open in Session Release Agent. So i need check ths problem in R3 .
    note 1599643 explain how to configure GroupCleanup.groupExpiration paramenter, but is not my case.
    note 596698 is more and less similar to 1660720
    in note 1331353 suggest to deactivate popup blocker. I tried but without result
    I checked also the kernel release in R3 and is the last version
    I think the problem is in R3 side. Maybe a parameter or a configuration? a custom code to add somewhere?

  • Message mapping problem when testing

    Hi guys,
    I'm having a tiny little problem with a message mapping.
    When I'm testing a message mapping I'm getting the following error:
      12:28:35 Start of test
        Cannot produce target element /ns1:MT_Encomenda/Num_doc. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd
      12:28:36 End of test
    I'm importing a xml file for testing, but if I fill in the files at hand using the xml instance i get no problems.
    Any ideas?

    hi,
    make sure the target field  /ns1:MT_Encomenda/Num_doc is getting populated from the source message.
    you would see this error if a required field in the target structure is not populated.
    cheers,
    naveen

  • Urgent ! Problem when test Application Moudule with a customer JSP FIle!!

    I got these two errors:
    oracle.jbo.common.ampool.ApplicationPoolException: JBO-30003: The application pool, ETicket_UserSystem_UserSystemAppModule, failed to checkout an application module instance.
    JBO-25002: Definition of ETicket_UserSystem_UserSystemAppModule of type......
    Here is my JSP file code:
    <%@ page language = "java" errorPage="errorpage.jsp" import = "java.util.*, oracle.jbo.*, javax.naming.*, oracle.jdeveloper.html.*, oracle.jbo.html.databeans.*" contentType="text/html;charset=ISO-8859-1" %>
    <HTML>
    <HEAD>
    <META NAME="GENERATOR" CONTENT="Oracle JDeveloper">
    <title>Business Components JSP Application</title>
    </HEAD>
    <%oracle.jbo.html.jsp.JSPApplicationRegistry.registerApplicationFromPropertyFile(session, "UserSystemJSP_ETicket_UserSystem_UserSystemAppModule");
    %>
    <BODY>
    <jsp:useBean id="viewer" class="oracle.jbo.html.databeans.ViewCurrentRecord" scope="request">
    <%
    viewer.initialize(application, session, request, response, out, "UserSystemJSP_ETicket_UserSystem_UserSystemAppModule.UserRecordView");
    RowSet rs = viewer.getRowSet ();
    Row r = null;
    rs.setCurrentRow (rs.first ());
    r = rs.getCurrentRow ();
    while (rs.hasNext ()) {
    out.println (r.getAttribute ("loginname"));
    r = rs.next ();
    viewer.setReleaseApplicationResources(true);
    %>
    </jsp:useBean>
    </BODY>
    </HTML>
    Here is the properties file UserSystemJSP_ETicket_UserSystem_UserSystemAppModule.properties
    ApplicationModuleName=ETicket.UserSystem.UserSystemAppModule
    #ConfigName=ETicket.UserSystem.UserSystemAppModule.UserSystemAppModuleEJB
    #in 8i mode this is an IIOP connection name to travel user.
    #in LOCAL mode this is a JDBC COnnection Name to travel user.
    ConnectionName=etdbcon
    # used only if password not provided by connection definition in the config
    Password=etpg1
    #CSS File Name
    CSSURL=/webapp/cabo/images/cabo_styles.css
    #Root Image Directory
    ImageBase=/webapp/jsimages
    #only used in 8i mode
    JndiPath=test/etpg1/ejb/ETicket.UserSystem.UserSystemAppModule
    #Defines if application is stateless or not
    IsStateLessRuntime=false
    Here is the bc4j.xcfg file:
    <BC4JConfig>
    <AppModuleConfigBag>
    <AppModuleConfig name="UserSystemAppModuleLocal">
    <ApplicationName>ETicket.UserSystem.UserSystemAppModule</ApplicationName>
    <DeployPlatform>LOCAL</DeployPlatform>
    <JDBCName>etdbcon</JDBCName>
    <jbo.project>UserSystem</jbo.project>
    </AppModuleConfig>
    <AppModuleConfig name="UserSystemAppModuleEJB">
    <DeployPlatform>LOCAL</DeployPlatform>
    <JDBCName>etdbcon</JDBCName>
    <IIOPName>iiopcon</IIOPName>
    <jbo.project>UserSystem</jbo.project>
    <ApplicationName>ETicket.UserSystem.UserSystemAppModule</ApplicationName>
    </AppModuleConfig>
    </AppModuleConfigBag>
    </BC4JConfig>
    Any error in above files or other place??
    I only run it in JDeveloper, no deploy and test in Application Server.

    Akira,
    Here's what I would recommend:
    1. Generate a BC4J JSP web application based on one of your view objects. This will give you the 'factory' code that we use to connect to the app module and iterate through a rowset. If this JSP works, you can compare the code generated by our wizards with the one you have included.
    2. Your properties file looks like a hybrid of 3.1 and 3.2. In 3.2, the properties file contains just an entry for the ConfigName, and the password. The JSP then looks at the BC4J.xcfg at runtime for all the other connection information.
    The error you are reporting sounds connection related, so I would recommend cleaning up your properties file to be more 3.2-like. If this is an app you have upgraded from 3.1, then see the online help topic 'About Upgrading a JSP Project in 3.2'. This topic can be found under the Creating JSP Pages folder, and then under About JSP Applications.
    null

  • ESS Bus. Pkg EP 6.0 SP19 to R/3 4.7 ext.2 - IAC iView Problem

    Given the above components, I've deployed the ESS business package to the Portal. All components deployed successfully... no errors. I'm creating a new Role (custom, not from BP) and I'd like to use one of the iViews from the Business package in this role. I'm using the "Enrollments" iView which seems to be an IAC iView calling PZ14.
    Now the problem... when I access this iView via the Portal, ITS is called and the iView loads but only shows me the Easy Access Menu (SMEN). PZ14 never loads. I can enter PZ14 in the transaction field and it will load but it doesn't come up on its own. I also created a SAP GUI for HTML transaction iView to test PZ14 and that one works fine. To meet the customer's requirements though it must look "pretty" ... like the IAC iView does.
    The only thing I changed on the iView was the system alias. Changed it from SAP_R3_HumanResources to SAP_R3 (this is the proper name of the system I'm using to test).
    Any ideas?
    -Kevin

    This has been resolved. Oddly enough, I inadvertantly added /webgui/! to the end of the ITS Path definition in the system object. This was causing the afore mentioned behavior. Once removed, the iView behaved as expected.
    -Kevin

  • IAC iview doesn't run when change to another and come back

    Hi,
    I've defined an IAC iview tha calls an ITS services (parameters ~webgui = 1, ~generatedynpro = 1, ~simpletransaction = 1, ~transaction = ).
    First time I run this iview, it runs well. I run another iview and when I come back to the first one (IAC iview), it doesn't run, it shows me a r/3 screen that let me access r/3 menu, so it doesn't run my ITS service.
    I'm using ECC (ITS integrated) and I'm not using SSO.
    Any idea. All contributions will be appreciated.
    Thanks a lot.
    Best regards,
    Iván.

    Hello Iván,
    I think you meant ~singletransaction right?  If so please remove this parameter and try again. 
    Edgar

  • Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem net ti

    Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem next time it launches".  Except that it doesn't, I keep getting the same message and the program closes.  Does anyone know what I  can do to repair it?  Can't back up, can't do anything.

    There are dozens of threads in this forum that describe the fix

  • Ipod 4th gen volume buttons not working. Volume bar not showing in music or video apps, not a speaker problem as this works fine when testing built in alarm tones???

    Ipod 4th gen volume buttons not working. Volume bar not showing in music or video apps, not a speaker problem as this works fine when testing built in alarm tones???

    Have you tried the standard fixes:
    - Reset:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restore the iPod from backup via iTunes
    - Restore the iPod to factory defaults/new iPod.
    If still problem you likely have a hardware problem and an appointment at the Genus Bar of an Apple store is in order.

  • Problem when open external link (Adobe LiveCycle ES2 workspace) with iView

    Dear all,
    I would like to know what EP doing when I use the iView to open a external application link.
    We setup the link to open in a new windows, but we find that the application behaviour is difference compare to input the link into the brower directly.
    The application is Adobe LiveCycle ES2 workspace
    Any idea?
    Regards
    Bill

    Hi all,
    It is because my iView also contained in a page, and that page affected the result.
    Problem fixed by link the iView to the role directly.
    Regards
    Bill

  • I keep losing entire catalogs. I put in 30,000 images and cannot get to them. Put in 3,000 images and get error message "LR encountered error when reading its previous cash and needs to quit. LR will fix this problem the next time it loads.' I  have loade

    I keep losing entire catalogs. I put in 30,000 images and cannot get to them. Put in 3,000 images and get error message "Light room encountered error when reading its previous cash and needs to quit. light room will fix this problem the next time it loads.'
    I  have loaded light room several times and even exited computer for 8 hours. Still get error message

    A search of this forum shows lots of threads where this issue of "error reading cache" is solved

  • HT201415 actually i am use iphone5 in bangladesh. But i am facing some problem , when i am useing the internet over cellular data network. when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device pr

    actually i am use iphone5 in bangladesh. But i am facing some problem , when i am useing the internet over cellular data network. when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device problem or Carrier ?

    Hafizur Rahman wrote:
    when i am open the cellular data on but no icon E display but when Enable 3G on-of then E is aviable.its a device problem or Carrier ?
    Problem? I'm not even sure what your problem is, much less whether it's a problem with the phone or the carrier.

  • Portal Theme for IACs iViews (ITS Theme Generator)?

    Hi guys,
    it's me again I got another question / issue (i didn't post it at the other thread, cause this is another issue):
    We deployed the SRM BP 5.0 to the Portal EP 7.0 SP14 and now i want to change the look and feel of the SRM iViews.
    I allready customized the Portal Theme via the "Theme Editor".
    But the IACs iViews are staying SAP standard.
    I got the hint to use the ITS Theme Generator, so I did. But now i come to the point where i am trapped:
    I specified at the ITS Theme Generator the following entries:
    The ITS URL : <ITS Server>:<port>/sap/bc/gui/sap/its/
    UserID : ####
    PW: ****
    Service: bbpsc02
    Theme: MyTheme
    Then the new page opens and the transaction is displayed. At the upper side the transaction is previewed. at the lower side the images of the transaction is displayed.
    AND Now here comes the big Questionmark:
    How do i change e.g. the background color of this transaction or the text font? i can't find any section which would offer me this functionality!
    The only thing i can "customize" are the images...what about the rest? What if i want to have my buttons grey instead of Yellow?
    Or  am i completely wrong? does this customization has to be done in the R/3 itself?
    Any help or hint is warmly welcome and of course will be rewarded by points.
    Thanks a lot ....
    best wishes
    Stefan

    Hi Guys,
    actually we made an OSS message.
    The result was that there is no standard portal way to customize the IAC themes for the BP SRM witht the tool "ITS Theme Generator".
    To my knowledge the only way how to adapt the theme of these iViews is to customize them directly at the SRM back end via the transaction SE80.
    Well that's the end of the story...
    Greetz to all of you
    and see you soon in an other question /post
    Kind regards
    Stefan

  • I have a problem, when I execute an mapping from Desing Center, its frezeen

    I have a problem, when I execute an mapping from Desing Center, its frezeen, this doesnt send error can you help me plis
    Ali

    If I would be you, I will check mapping activity from backend using (TOAD/SESSION-BROWSER) your map should be under JDBC THIN CLIENT. Also check if your target table is locked by running this query (select
    c.owner,
    c.object_name,
    c.object_type,
    b.sid,
    b.serial#,
    b.status,
    b.osuser,
    b.machine
    from
    v$locked_object a ,
    v$session b,
    dba_objects c
    where
    b.sid = a.session_id
    and
    a.object_id = c.object_id;).

  • Encounter problem when running test.fmx in Oracle form 11g

    I am new to Oracle form 11g and encounter a problem regarding testing the Form Services.
    I have Oracle form 11g (deployment mode) on my app server.  I opened 'Run a form on the web' and clicked 'Run form' to conduct a test with default values suggested by the screen.  Then I got the below screen showing 'An add-on for the website failed to run'.
    Is the problem in relation to IE setting? or is my set up of Oracle form 11g not OK?

    Hi ,
    This community is to discuss Weblogic Server specific issues, you can post this query Forms in for better response in the below link:-
    Oracle Forms (MOSC)
    Regards,
    Prakash.

Maybe you are looking for

  • Report for ifile extraction

    Hi Experts,                 I have requriment for ifile extraction . I have report which will extract the ifile for HSBC using code F110 which is used to generate  automatic payment. I have requriment for part or full payments made before due date wi

  • Adobe requirements for use with Mac OS 10.6

    I own Adobe's Creative Suite 2 Premium and currently run it on Mac OS 10.5.8. Will that same program function if I update my Mac to OS 6 (Snow Leopard)?

  • Photoshop In A Day

    Hi there, I just purchased Photoshop and I'm wondering if anyone has used the manual, Photoshop In A Day (see link: http://www.watchya.com/photoshop-in-a-day.html). I'm brand new to Photoshop and I'm starting out from point zero in terms of experienc

  • Persona rollover dosent work using Win 7 and firefox 3.6.4

    I am running Windows 7 Home Premium 64 bit and firefox 3.6.4 but the rollover feature of the persona dosent work on my machine, i also use Windows XP professional i dont know the service pack but while running firefox 3.6.4 the persona's rollover fea

  • How to remove red X status from the WSUS console

    We have one machine which is unable to install update KB2847077. After many unsuccessful attempts we decided to simply hide it on the user's laptop Windows Update screen, as it is not a crucial update to install. My question is, now that we told Wind