Navigation problem in using ITS

I have one created one module pool program for goods movement.
its having 6 screens.
in order to get this program in the mobile divice i have configured ITS.
I have created Internet Service is se80 and in SICF.
Now i am getting the first screen in the internet explorer.
the problem which i am facing now is that when i click on any button its not navigating to any screen.
actually nothing is happening.
Is thr any thing i need to do while creating the template or any other configuration need to be done.
please respond if you know the reason

Dear Ivan,
Thanks for replying.
I have given these many parameters in GUI Configuration (SICF - Service data tab)
~THEME     =99
~TRANSACTION=     ZBSRWM
~ITSMOBILE=     1
~SOURCES=     ZBSRWM,itsmobile
~GENERATEDYNPRO=     1
But still its not working. The actual problem is that i am not able to go to next screen.
When i gave ~webgui its throwing an error (403 forbidden).
Is there any thing else i need to do.
Regards,
Pradeep Alex

Similar Messages

  • Navigation problem while using Adobe interactive form in web dynpro

    Hi frds,
    I have a 2 views..
    1st view contains an ADobe from and a button to navigate to the  2nd view..
    No problem with the first view.. displays everything...
    The Problem is when i click the button to nsvigate to the 2nd view, its not loading...
    Wait symbol is coming...
    Please Help me friends...

    hi ,
    pls use  the ZCi layout for the adobe interactive form .
    Need to Insert the web dynpro script to the form.
    Note: Make sure to upgrade the Adobe Interactive for ZCI type using SFP_ZCI_UPDATE transaction
    Subsequently, check whether the update of the ZCI was successfully completed. To do this, open your form in the Adobe LiveCycleDesigner and check the version information of the ZCI script. The ZCI script is available on the "Hierarchy" tab page under the "ContainerFoundation_JS" name. The version must be800.20080513120641.469612.469346.
    You can also have a look at this e-learning.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20029530-54ef-2910-1b93-c41608ae0c90
    Refernce thread : adobe online interactive form
    regards ,
    amit

  • Navigation problem when using tiles with JSF

    Hi all,
    I m using tiles with JSF. i have included all the libraries and jsp page is rendered properly. but when i use <h:commandLink> in the body part of the JSP , i cannot go to the specified link. when we use tiles, what changes need to be done in faces-config file?? i mean what navigation rule we need to specify ??

    Hello, I have the same problem; JSF+Tiles = No navigation.
    One basic question is should I reference the parent jsp or the included body jsp in the faces-config.xml file.
    For example: The login.jsp is a main tiles page that includes a menu.jsp, header.jsp & a loginBody.jsp.
    Hence the faces-config could have this rule;
    <navigation-rule>
    <from-view-id>/login.jsp</from-view-id>
    <navigation-case>
    <to-view-id>/catalog.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    (I've left the outcome tag out to simplify this post)
    Or, I could refer loginBody.jsp in the navigation rule;
    <navigation-rule>
    <from-view-id>/loginBody.jsp</from-view-id>
    <navigation-case>
    <to-view-id>/catalog.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    The loginBody.jsp has a commandbutton which a user clicks which starts the navigation.
    Neither seems to work unfortunately & I'm a stuck.
    Thanks

  • Navigation problem while using filter

    hai,
    I have a requirement that I use filter settings for my table.. when I use 2 or 3 checks in filter and sorting
    I need to navigate to the previous check  with the use of button above the table...
    kindly help

    hi ,
    pls use  the ZCi layout for the adobe interactive form .
    Need to Insert the web dynpro script to the form.
    Note: Make sure to upgrade the Adobe Interactive for ZCI type using SFP_ZCI_UPDATE transaction
    Subsequently, check whether the update of the ZCI was successfully completed. To do this, open your form in the Adobe LiveCycleDesigner and check the version information of the ZCI script. The ZCI script is available on the "Hierarchy" tab page under the "ContainerFoundation_JS" name. The version must be800.20080513120641.469612.469346.
    You can also have a look at this e-learning.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20029530-54ef-2910-1b93-c41608ae0c90
    Refernce thread : adobe online interactive form
    regards ,
    amit

  • Navigation problem while using c:import

    i have 3 files
    i have TEST.jsp which is imported in 2 files(untitled1.jsp,untitled2.jsp)
    TEST.jsp
    <f:subview id="bhanu123">
    <h:form binding="#{backing_TEST.form1}">
    <h:inputText binding="#{backing_TEST.inputText1}"/>
    <h:commandButton value="button0" binding="#{backing_TEST.commandButton1}"
    action="#{backing_TEST.goToNext}" immediate="true"
    id="button0"/>
    </h:form>
    </f:subview>
    untitled1.jsp
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
    <title>
    untitled1
    </title>
    </head>
    <body>
    <h:form binding="#{backing_untitled1.form1}">
    <c:import url="/TEST.jsp"/>
    <h:commandButton value="goto"
    binding="#{backing_untitled1.commandButton2}"
    action="#{backing_untitled1.GoodBye}"/>
    </h:form>
    </body>
    </html>
    </f:view>
    untitled2.jsp
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
    <title>
    untitled2
    </title>
    </head>
    <body>
    <h:form binding="#{backing_untitled2.form1}"/>
    <c:import url="/TEST.jsp"/>
    </body>
    </html>
    </f:view>
    faces.config.xml
    <managed-bean>
    <managed-bean-name>backing_untitled1</managed-bean-name>
    <managed-bean-class>view.backing.Untitled1</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <from-view-id>/untitled1.jsp</from-view-id>
    <navigation-case>
    <from-action>#{backing_TEST.goToNext}</from-action>
    <from-outcome>success</from-outcome>
    <to-view-id>/untitled2.jsp</to-view-id>
    <redirect/>
    </navigation-case>
    </navigation-rule>
    <managed-bean>
    <managed-bean-name>backing_untitled2</managed-bean-name>
    <managed-bean-class>view.backing.Untitled2</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <managed-bean>
    <managed-bean-name>backing_TEST</managed-bean-name>
    <managed-bean-class>view.backing.TEST</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    <managed-bean>
    I ran my unttiled1.jsp in browser and clicked a button in import part
    It is not going to untitled2.jsp as specified
    Any help will be appreciated

    Double post:
    http://forum.java.sun.com/thread.jspa?threadID=5205818&tstart=0

  • Guys i have a problem, I used to download apps from one of my friends apple id, now i created my new account, but when i was about to update my apps its asks for my friends id and password. now how could i update my old apps from my new apple id?

    Guys i have a problem, I used to download apps from one of my friends apple id, now i created my new account, but when i was about to update my apps its asks for my friends id and password. now how could i update my old apps from my new apple id?

    The_Tonmoy wrote:
    I have no communication with my that friend :/ So it means i need to delete those apps? There's no other solution to update those apps?
    No.  purchases are forever tied to the apple ID used to buy them.  Delete them and buy your own copies.

  • I bought an Apple TV and used its yesterdary all the day...when I rented a film, its spend about 4 hours to charge... I think it isn't normal... Did Apple had some problem in their network yesterday? Do you have some clue to me? Tks and Rgds

    I bought an Apple TV and used its yesterdary all the day...when I rented a film, its spend about 4 hours to charge... I think it isn't normal... Did Apple had some problem in their network yesterday? Do you have some clue to me? Tks and Rgds

    Download time is mostly related to your internet connection speed.  Beside, there's no need to wait for the entire movie to download before you start watching it; only some buffer needs to be downloaded.  When the buffer is filled, you should get a message that your rented movie can now be watched which usually happen within a minute of the purchase on standard cable connection.

  • Ive just opened up my brand new 5th gen, 32g, blue Ipod Touch. I turned on the power and started to use it until the battery went off. The problem is that its not charging. Im really starting to get frustrated please help!

    ive just opened up my brand new 5th gen, 32g, blue Ipod Touch. I turned on the power and started to use it until the battery went off. The problem is that its not charging and i wouldnt know if it was charging or not because the screen

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable                     
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar              
    ANd
    Not Charge
    - See:    
    iPod touch: Hardware troubleshooting
    iPhone and iPod touch: Charging the battery
    - Try another cable. The cable for 5G iPod (lightning connector) seems to be more prone to failure than the older cable.
    - If a 5G iPod               
    Iphone 5 lightning port charging problem - SOLUTION!
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar

  • Still having navigation problems and need help with how to debug

    Hi,
    I've been porting over a servlet project to JSF and I'm still having navigation problems. I thought the problem might have been because the original project used HTML frames and so the "from-view-id" JSP defined the frame/framesets and the specific JSP that does the submit (and so is named in the "from-view-id" is never defined in a "to-view-id" attribute). I've now switched to using an IFRAME, and that resolves that problem. So now the JSP is defined in a "to-view-id" attribute and it includes an named IFRAME that can be used as a target. I press the submit button and I get not the JSP expected butinstead the same JSP displayed inside its own IFRAME.
    Here is the code for the submit. I've simplified it as much as possible with a static action (originally it was a call to a method) just to try and get things to work. This is the current version:
    <h:commandButton value="View Alias" action="foo" styleClass="select" type="submit" />Here is the navigation rule in faces-config.xml. Again, the problem is that SelectManager get redisplayed in the IFRAME instead of display.jsp.
    <navigation-rule>
       <from-view-id>/SelectManager.jsp</from-view-id>
       <navigation-case>
          <from-outcome>foo</from-outcome>
          <to-view-id>/display.jsp</to-view-id>
       </navigation-case>
    </navigation-rule>I have also tried it without the "from-outcome-value" which I presume means that the "to-view-id" gets displayed unconditionally and it still fails. Any ideas on how I can debug this? (I'm using GlassFish if that's important to know)
    Rob Tanner
    Linfield College

    Raymond, The real trick is avoid doing technical things when coming down with the flu (I should also add that I'm a JSF newbie). Reading your original message this time I see what you're suggesting and found a conversion error although I don't understand it. Here's the code (including the <h:message/>):
                <h:selectOneMenu value="#{members.dcodes}"
                  style="color: #7f0000" id="selector">
                  <f:selectItems value="#{members.departmentList}" />
                </h:selectOneMenu> 
                <h:message for="selector" style="color:white"/>And here's a snippet of the generated HTML:
    <select id="j_id_id26:selector" name="j_id_id26:selector" size="1" style="color: #7f0000">
             <option value="aad" selected="selected">Academic Advising</option>
         <option value="aaf">Academic Affairs</option>
         <option value="adm">Admission</option>
         <option value="up">Upward Bound</option>
    </select>If I select "Admission" for example, the error I get is:
    Conversion Error setting value 'adm' for 'null Converter'.Since everything is a String value, I don't get the error. Could someone please enlighten me.
    Thanks.

  • Navigation Problem in Next/Previous Record

    Hi,
    I have a Master (have 20 fields) and Four its Detail block visible on same screen but each block have its own Canvas and Window. Now master table have 1700 records with its detail tables. So after Query when I press the Next_Record button it will no response some time I have to press it twice or thrice then it will respond and some time on fist click it gives the response.
    So I want to navigate through Next Records or Previous Record buttons on single click.??????????
    Kindly send me the solution of this problem on urgently basis.
    Best Regard,

    Hi,
    It's very difficult to suggest something by readingyour post. There are many reasones for navigation problem. Validation is one of them. Be sure that validation triggers written on any level are working properly. What code you have written on the buttons that you are using for navigation. In which blocks you have put your buttons. It is recommended that you put all your non-database items in a non-database block. Check this also.......

  • Problems in using the driver coming with application in Crystal Report

    Post Author: StrongWare
    CA Forum: Data Connectivity and SQL
    Hi! All,
    I used the ADORecordSet to fetch data from tables, and pass it to ther report at runtime using AddADOCommand.
    I got the ActiveConnection and ActiveCommand from ADORecordSet and passed them as parameters of AddADOCommand, it seems the AddADOCommand opens an addional connection, which can be told from the ODBC trace, instead of using the ActiveConnection I passed in.
    Is that true?
    It causes the big problem for me, since the ActiveConnection I passed in was opened using our OEM DataDirect driver and I assumed the AddAdoCommand uses it directly, but it is not the case!! The AddADOCommand just uses the connection information from ActiveConnection and opens an additional one. Since the connection string contains the driver name, so this connection is also opened via our OEM DataDirect Driver. But the Crystal Report tries to unlock it using its own license/password {qecr.lic,brahmabrahmabrahmabrahma} to unlock our OEM driver, which of course raises the license warning from DataDirect Driver 5.2!! After a certain grace period, any sql operations under the cover of AddADOCommand fail and thus causing the failure of AddADOCommand.
    Now what is the solution?
    1. how to avoid open an additional connection? or any other API I should call to avoid this?
    2. How Crystal Report works with the driver coming with the application, and this driver needs to be unlocked before being used.
    Thanks
    Strong

    I don't have the any driver's source code (such as ividcpwr.dll source code), how can I modify the specific driver through labwindows.
    Follow your advice I use I/O trace to get trace as follows:
    1 IviDCPwr_InitWithOptions ("ke2303", VI_FALSE, VI_TRUE, "", 0x0C913064) VI_SUCCESS 14:45:10.675
    2 IviDCPwr_ConfigureVoltageLevel (ke2303, "CHANNEL1", 3.8) VI_SUCCESS 14:45:11.405
    3 IviDCPwr_ConfigureCurrentLimit (ke2303, "CHANNEL1", 0, 3) VI_SUCCESS 14:45:12.104
    4 IviDCPwr_ConfigureOutputEnabled (ke2303, "CHANNEL1", VI_TRUE) VI_SUCCESS 14:45:12.824
    5 IviDCPwr_Measure (ke2303, "CHANNEL1", 1, 0) VI_ERROR_TMO 14:45:16.207
    6 IviDCPwr_GetError (ke2303, -1073807339, 0, "") 0x00000037 14:45:32.991
    7 IviDCPwr_GetError (ke2303, -1073807339, 55, "Primary Error: ..................") VI_SUCCESS 14:45:32.991
    8 IviDCPwr_close (ke2303) VI_SUCCESS 14:45:33.847
    I cannot see any GPIB command in the trace but some IviDCPwr functions.
    Besides, if I know any bug (eg. some wrong GPIB command) in ividcpwr.dll, how can I modify it before I get it's source code.
    Pls teach me anytime in your conveneince.
    thanks!

  • After updating iphone 4s to 6.1 version my battery percentage stood at 1 percent. Does anyone has same problem? Or its update bug?

    After updating iphone 4s to 6.1 version my battery percentage stood at 1 percent. Does anyone has same problem? Or its update bug?

    THIS is "quite a few": https://discussions.apple.com/thread/3391947
    As are these:
    https://discussions.apple.com/thread/3391947?tstart=0
    https://discussions.apple.com/thread/3484755?tstart=0
    https://discussions.apple.com/thread/3481668?tstart=0
    https://discussions.apple.com/thread/3518760?tstart=0
    https://discussions.apple.com/thread/2755090?tstart=0
    https://discussions.apple.com/thread/3507356?tstart=30
    https://discussions.apple.com/thread/3482083?tstart=60
    https://discussions.apple.com/thread/3492588?tstart=60
    https://discussions.apple.com/thread/3397244?tstart=90
    And older ones:
    Battery Meter/Life Problems with 4.0.2
    4.0.2 guzzling my battery. Your's too?
    4.0.1 battery life
    Battery runs out very quicky in iOS 4.0.1
    Battery nearly nonexistant after 4.0 upgrade
    Dead battery after few hours on standby using 4.0 software
    3.1.3 battery problem
    OS 3.1.3 battery issues
    3.1.3 upgrade - shortened battery life?
    Battery life cut after 3.1.3 update on iPhone 3G
    3.1.3 Firmware is a battery killer - how do I back out this upgrade?
    Poor battery life with iPhone 3G running 3.1.2
    3.1.2 EXTREME battery drain - what gives?
    3.1 Battery nightmare
    iPhone 3GS with fw 3.1 – battery life gets even worse
    Battery Issues with 3.0.1
    BATTERY drain with 3.0
    upgrade to 3.0 drains my battery
    Battery Drain after Update 2.2.1
    Battery Life Radically Decreased after 2.2.1 Firmware Update
    As you can see, battery issues have been common since the first iphone, frequently reported after an upgrade, but not always. So to blame a specific version doesn't describe the problem sufficiently to find a resolution.

  • "The drive is not ready for use; its door may be open. Please check drive \

    3G IPOD problems which are driving me mad and i can see others have had the same problem but i can't find any solution written down.
    Basically my IPOD either freezes after a couple of songs or it downloads about 6Gb (of 40) and the freezes with the following message:
    "The drive is not ready for use; its door may be open. Please check drive \Device\Harddisk2\DR6 and make sure that a disk is inserted and that the drive door is closed"
    I've tried re-setting, installing etc but no luck. Any suggestions/solutions?
    Laptop - Packard Bell Notebook   Windows XP  

    Hmmmm. I'm not sure how to explain this.
    You need to change the Drive Letter for your iPod.
    You should be able to connect your iPod then open Windows Explorer and right click on your iPod(which seems to be Drive E:) and change it to a different letter (like H).
    If you haven't enabled disk use for your iPod it probably won't appear in Windows Explorer.
    To enable disk use: connect iPod, open iTunes. Open Preferences and select the iPod tab. Choose "enable disk use."
    Once you've done all that, try resyncing.

  • I am having problem while using ms word with anjal( OS X Lion 10.7.5 (11G63))

    i am having problem while using ms word with anjal  is not working properly but its working in facebook and other areas.i need and  its very important to using tamil fonts for my job.can anyone help me out from this problem.
    thanking you
    by
    moses

    Those who are knowledgable in this area (myself not among them) say that Word's support for Asian languages is faulty. The best word processor for that use is "Mellel."

  • Problem in using SAX parser.

    Hai All,
    I have got a problem in using SAX parser.
    My XML looks like this:
    <authorizer>
    <first-name>HP</first-name>
    <last-name>Services</last-name>
    <phone>800-22-1984</phone>
    </authorizer>
    <destination>
    <first-name>John</first-name>
    <last-name>Doe</last-name>
    <company>John Doe Enterprises, Inc.</company>
    <department>Manufacturing</department>
    <phone>800-555-1234</phone>
    <address>
    <street-one>1654 Peachtree Str</street-one>
    <street-two>Suite Y</street-two>
    <city>Atlanta</city>
    <province>GA</province>
    <country>US</country>
    <postal-code>30326</postal-code>
    </address>
    </destination>
    my part of SAX parser code is:
    public void startElement (String name, AttributeList attrs)
    throws SAXException
    accumulator.setLength(0);
    public void characters (char buf [], int offset, int len)
    throws SAXException
    accumulator.append(buf, offset, len);
    public void endElement (String name)
    throws SAXException
    if (name.equals("first-name") )
    firstname=accumulator.toString().trim();
    if (name.equals("last-name"))
    lastname=accumulator.toString().trim();
    My problem is that i have to store the values of first-name and last-name.
    but i have that in both
    <authorizer> </authorizer> Tag and
    <destination> </destination>
    I need to retrive authorizer's firstname,lastname and
    destination's firstname and lastname.
    what i mean is i need to store authorizerFirstName,authorizerLastName
    destinationFirstname and destinationLastname.
    Pls let me know how to do that.
    Thanks in advance.
    Pooja.

    hi pooja,
    I think you are using DataHandler for parsing. Its deprecated. try using contentHandler . You can get the value of the element at the beginning. say for example
    <firstname>sdfs</firstname>
    the startElement will be firstname
    the next method that it invokes will be characters method which has the text associated with the element. I am sending a sample code for your problem. try using it .
    boolean m_boolinAuth = false;
    boolean m_boolinDest = false;
    boolean m_bAuthFName = false;
    boolean m_bAuthLName = false;
    public void startElement(String namespaceURI, String elementName, String qName, Attributes atts)
    //does the logic for startElement
    if(qName.equals("Authorization"))
    m_boolinAuth = true;
    m_boolinDest = false;
    else if(qName.equals("Destination"))
    m_boolinDest = true;
    m_boolinAuth = false;
    if(qName.equals("firstname"))
    m_bFirstName = true;
    if(qName.equals("lastname"))
    m_bLastName = true;
    public void characters(char[] ch, int start, int length)
    //does the logic for characters.
    String str = new String(ch,start,length);
    if(m_bFirstName)
    if(m_boolinAuth)
    m_strAuthFirstName =str;
    else if(m_boolinDest)
    m_strDestFirstName = str;
    m_bFirstName = false;
    if(m_bLastName)
    //same as first name case;
    }

Maybe you are looking for