Want to invoke a UI map with the help of Service script

I am creating UI for MWM MCP- handheld devices and I want to create HTML UI , let's say "First" with button "next" ,which onclicking invokes or opens another UI say "Child". Now when I close this "Child UI", again the "First " UI must open or the control should be passed to it.
I could have done this with BPA script invokeMap but handleld devices don't support BPA scipts and invokeMap can be used only with BPA scripts.
So I thought of using Service srcipt but my concern is how to invoke UI using service script?
Edited by: annapurna.kumawat15 on Jan 10, 2013 4:40 AM
Edited by: annapurna.kumawat15 on Jan 10, 2013 4:40 AM

Hi everyone,
I found the solution. 
Live can be simple, with the smart printers of today.
You have just to create the card in landscape mode en put the paper in porttrait mode into the printer.
The HP Officejet 6500A Plus is so smart that he rotate the print direction so the text is printed correctly on the business card.
So don't do it as I did before, creating in portrait, it won't work that way.
Anyway, this solution works fine for me, hopefully it helps many other users.

Similar Messages

  • Hi We do want to build up a network with the help of one of e new apple server products. Before we do so, I was wondering, who d be able to tv us some good advise? Thank you!

    Hi,
    We were thinking of actually using apple's server products for establishing a worldwide IT network for a small and later on medium sized business to provide everybody a solid and sound environment.
    Hence, before we purchase, we wanted to make sure, whether some of you would be able to recommend us on how to move forward on the followings:
    - which of the servers and which processor would be the best choice and are the most reliable ones
    - would a "normal" Mac pro be sufficient enough for future tasks?
    - a normal server, can also be used as a normal workstation.
    - where can we get the right support in case needed? We had some difficulties in the pt in actually getting hold of the apple support centers.
    - all our products with the exception of a few are apple products
    Appreciate your feedback.
    Thank you and best regards
    Frank

    - which of the servers and which processor would be the best choice and are the most reliable ones
    'most reliable'? I haven't found any reliablity issues or differences between any of the MacPro models - 4-core, 8-core, 12-core all just run and run and run. As for 'best choice' that depends on what you want to do with it, budget, workload, etc., etc., etc.
    - would a "normal" Mac pro be sufficient enough for future tasks?
    How long is a piece of string?
    Seriously. I mean, who can know what 'future tasks' you expect to throw at the machine, and whether one machine or 50 is sufficient for the task. There are even tremendous differences in capacity (e.g. RAM, CPU power, etc.) between 'normal' MacPro models, therefore it's impossible to answer your question since we don't know what 'normal' is, nor do we know what 'future tasks' are.
    - where can we get the right support in case needed? We had some difficulties in the pt in actually getting hold of the apple support centers.
    If you're running business-critical services check out Apple's Enterprise Support offerings, find a local Mac dealership who's willing to help, or hire someone who knows what they're doing.

  • Test -Driven Development with the help of Open Script

    Hi Folks,
    I work on a web application that is based on java and other framework, which is more of an extension of java again.
    In order to have my test scripts code to be more aligned with developers' code, I want to import the jar file for source code into Open script and then develop test scripts and give those test scripts back to developers to run them on JUnit environment before they check in the code to source control. This way, I want to ensure that if any test scripts because of any bugs or regressions.
    And also I want to enable the build team to run these test scripts during build time as part of sanity. This would reduce our testing time a lot.
    What are your ideas and please provide your insights.
    Edited by: OATS Explorer on Mar 16, 2012 12:09 AM

    You need to to javascript and ajax. Generic example below but you'll have to figure out the specifics based on what you are doing.
    Checkbox:
    onclick=do_my_stuff(this);Javascript:
    function do_my_stuff(pObj)
      var get = new htmldb_Get(null,$v('pFlowId'),'APPLICATION_PROCESS=DO_STUFF',0);
      get.addParam('x01',pObj.value);
      ret = get.get();
      get=null;
    }PL/SQL application process, on-demand, named DO_STUFF:
    BEGIN
      do_stuff(apex_application.g_x01);
      commit; -- it's up to you if you need to commit or not if do_stuff is performing DML.
    END;Edited by: gti_matt on Jan 11, 2012 1:01 PM

  • Open discoverer worksheet  from javacript with the help of URL

    i want open my report from javacript with the help of URl to open the report with wbk(workbookid) and the paramenter for that report...
    http://server/discoverer/viewer?cn=connid&event=openWorksheet&wsk=worksheet1
    this url above opens the worksheet
    but if the worksheet have parmeter to be passed if i giv like this
    http://server/discoverer/viewer?cn=connid&event=openWorksheet&wsk=worksheet1&qp_12=101015
    _12 is parameter name and 101015 is the value.
    pls help me to sort out the problem

    i want open my report from javacript with the help of URl to open the report with wbk(workbookid) and the paramenter for that report...
    http://server/discoverer/viewer?cn=connid&event=openWorksheet&wsk=worksheet1
    this url above opens the worksheet
    but if the worksheet have parmeter to be passed if i giv like this
    http://server/discoverer/viewer?cn=connid&event=openWorksheet&wsk=worksheet1&qp_12=101015
    _12 is parameter name and 101015 is the value.
    pls help me to sort out the problem

  • Runtime-Error after deploying a mapping with the generated script

    For example a very easy scenario:
    1. Create a table and a view in a DB-schema, witch ist registered as WB-target-schema with the following scripts:
    create view v1(c1) as select 'a' c1 from dual;
    create table t1(c1 varchar2(1));
    2. Import the table and the view into a OWB-module
    3. Create a mapping ‘m1’
    4. Drag and drop view and table into the mapping
    5. Draw an arrow from the view-column to the table-column
    6. Save and close the mapping
    7. Mark the mapping in the ‘Design Center’ and klick the ‘Generate’-Button
    8. Save the generated script ‘M1.pls’ to file
    9. Run the script in SQL*Plus, connected with the target-schema (without using the Control Center Manager)
    => very easy right now ;-)
    10. Start the mapping with the following script will produce the following error
    SQL> declare
    2 v_status varchar2(100);
    3 begin
    4 m1.main(v_status);
    5 end;
    6 /
    declare
    ERROR at line 1:
    ORA-01403: no data found
    ORA-06512: at "OWB_OWN.WB_RT_MAPAUDIT_UTIL", line 1027
    ORA-06512: at "SCOTT.M1", line 2048
    ORA-06512: at line 4
    If i delete or comment the four WB_RT_MAPAUDIT_UTIL-calls - it work´s fine!
    But is this a good advise?
    What exactly does the wrapped package ‘WB_RT_MAPAUDIT_UTIL do?
    Thanks
    jwehner

    I just ran into the same problem myself. I used the same technique of saving the generated OWB script to file and then compiling it through sqlplus. When I used the "Deploy" option for the mapping, then the problem went away. So when OWB is deploying the code it seems to be setting something internally that doesn't get set when you simple compile the PL/SQL. I don't know of any workaround to this. I will need it eventually, since I don't want to use the UI to deploy to various test environments and production. Maybe the built-in scripting language is the way to go.

  • Issue about Invoking a BPEL Process with the Generic Java API

    I Invoking a BPEL Process with the Generic Java API and apache axis or axis2
    it turn up a error as follow:
    org.apache.axis2.AxisFault: ORABPEL-08021
    Cannot find partner wsdl.
    parnterLink "BPELProcess1" is not found in process "BPELProcess1" (revision "v2008_11_17__38943").
    Please check the deployment descriptor of the process to find the correct partnerLink name.
         at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:512)
         at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:370)
         at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:416)
         at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:228)
         at org.apache.axis2.client.OperationClient.execute(OperationClient.java:163)
         at org.apache.axis2.client.ServiceClient.sendReceive(ServiceClient.java:548)
         at org.apache.axis2.client.ServiceClient.sendReceive(ServiceClient.java:528)
         at wf.Test_axis2_callws.main(Test_axis2_callws.java:41)
    i can't solve it !
    what's problem ???
    anyone use java code to invoke bpel process successfully..can show me some example?
    thanks
    chan

    Hi,
    Check below link may help you solve your problem.
    http://www.activevos.com/cec/samples/content/sample-invoke/doc/index.html
    Regards

  • Not rally a question, just wanted to share my absolute frustration with the update of iTunes...this is, without a shadow of a doubt THE WORST application i have EVER used, Mac or PC! And that's saying something with the amount of PC dross that's out there

    Not rally a question, just wanted to share my absolute frustration with the update of iTunes...this is, without a shadow of a doubt THE WORST application i have EVER used, Mac or PC! And that's saying something with the amount of PC dross that's out there...Apple...PLEASE update and give us back the old version of iTunes...

    Pull down View > Show Sidebar. This will give you back the same functionality of iTunes 10.x.x.

  • With the help of script i want to identify each and every thing in a indesign file

          i want to identify the each and every thing in a .indd file with help of script.and also i have to find totally how many farmes or things present in that file
    kindly guys help me out.
    and also suggest me some ideas.
    thanks in advance
    regards,
    siv 

    thanks ya...
    Actually my recuirment is there will be so many number of frame or text frame will present there in a indd file
    >with the help script im giving number to the script label . it follows the order of Stack
    (the frame designed latest will get the latest script label)
    >in a particular order the frame has to get numbered in script label
    i.e
    either from right to left or left to right.
    hope u got my point
    kindly help me out
    regards siv

  • Hi I replaced my hard drive on macbook and I want to install mac osx10.5 with the CD that came with the macbook. When I run the CD after a while I get the page showing language options for 2 second then a gray screen appears and nothing happens

    Hi I replaced my hard drive on macbook and I want to install mac osx10.5 with the CD that came with the macbook. When I run the CD after a while I get the page showing language options for 2 second then a gray screen appears and nothing happens. I partitioned my hard drive and I tried installing Microsoft windows and that worked just fine.  But I do not understand why it wont install mac os x 10.5?????  PLEASE HELP ME.  Thanks  Hamid

    Try a new post in the 10.5 Installation forum.
    DALE

  • I want to create a second library with the same account on a separate hard drive....

    Hi,
    I am running out of room on my iMac to store all of my iTunes music and video. I want to create a second library with the same account on a separate hard drive. Will iTunes Match match both libraries ? Will I be able to acess both libraries from all my devices? Can iTunes Match merge them together so I can have easy access to everything?
    Thanks for any advice.
    christos

    Unfortunately, you can't.  The primary address for your iCloud account must be a non-Apple email account.  The only exception to this is for former MobileMe subscribers who migrated to iCloud when MobileMe closed, which was 18 months ago.

  • I have a photo of an ice surface and another of a flower. Now I want to create a merged photo with the flower lying under the ice. I understand that I shall use the function "Layer" and have even read in the manual and looked on a video, but that informat

    I have a photo of an ice surface and another of a flower. Now I want to create a merged photo with the flower lying under the ice. I understand that I shall use the function "Layer" and have even read in the manual and looked on a video, but that information is not sufficiently detailed for me. I have tried several options, but I come now way. Generally it seems that your information is only for the ones who can, not for the people who can´t although it is we who really need to learn. Please give me a step by step (click by click) information on how I can get the ice above the flower and then make the ice partly transparent so the flower is seen underneath. Please send me an e-mail Erik Solbu [email protected]

    Open a new document big enough for your image. Then additional open your ice and flower image as well. Copy each and paste it into your blank document. They will be placed on their own separate layers.
    Make sure in your layers panel. (Bottom right) the ice is above the flower, by dragging it in place. In that same layers panel click the ice layer to select in and find the opacity meter above. Drag to the left until you get the effect you desire.

  • Purpose: to create photo galleries to insert or not items: 1) with phocagalery, it works 2) with the transfer via lightroom, I do not see the downloaded files but if I want to create a directory folder with the same name, he said he is already, I see noth

    purpose: to create photo galleries to insert or not items:
    1) with phocagalery, it works
    2) with the transfer via lightroom, I do not see the downloaded files but if I want to create a directory folder with the same name, he said he is already, I see nothing in the media in content management
    Can you help me

    Mahsa21,
    We are glad that we were able to resolve the international calling plan issue for you.  If you need assistance,please  reach out to us.
    thanks,
    Tonya D.

  • TS3988 This product can not proceed with the activation process, service errors go I want you entered will appear this error I am a Korean. Failed to resolve service center in South Korea  Please e-mail response  iPad2 32GB Cellular Version

    This product can not proceed with the activation process, service errors go I want you entered will appear this error
    I am a Korean.
    Failed to resolve service center in South Korea
    Please e-mail response
    iPad2 32GB Cellular Version
    <Email Edited by Host>

    I'm same. Any Update or News?
    Message was edited by: koreasaram

  • I can't activate my programs even though I paid for a subscription.  I did a chat with the help desk and they didn't solve my problem.  I want to cancel my account.  Please contact me since the chat is down

    I can't activate my programs even though I paid for a subscription.  I did a chat with the help desk and they didn't solve my problem.  I want to cancel my account.  Please contact me since the chat is down

    Activating after a Find My iPhone lock bricks the device if you don't know the password used by Find My iPhone.
    Read through this article to find if your device has an activation lock.
    http://www.macworld.com/article/2048739/get-to-know-ios-7-activation-lock.html
    If this is what you have - the news is bad:
    http://www.cultofmac.com/246755/why-ios-7s-activation-lock-is-a-disaster-waiting -to-happen/

  • It wanted to know if xcelsius works with the following elements of Excel:

    Post Author: Leo
    CA Forum: Xcelsius and Live Office
    It wanted to know if xcelsius works with the following elements of Excel:
    Complement Solver, Tools of Analysis, Matríces, dynamic Boards, Limit of anidamiento for formulae in Excel to to be utilized in Xcelsius. 
    I expect to be able to have answers of the requested information, since is of a lot of importance, to be able to do a panel in xcelsius. 
    Greetings

    Post Author: Leo
    CA Forum: Xcelsius and Live Office
    It wanted to know if xcelsius works with the following elements of Excel:
    Complement Solver, Tools of Analysis, Matríces, dynamic Boards, Limit of anidamiento for formulae in Excel to to be utilized in Xcelsius. 
    I expect to be able to have answers of the requested information, since is of a lot of importance, to be able to do a panel in xcelsius. 
    Greetings

Maybe you are looking for