I'm new to SAP Advanced Workflow. I'm developing an application in which I have created a form using the form designer. In that form there needs to be a button on the click of which it should load a new screen with another form. For several days, I'm researching on ways how to do that but not able to find out a convincing way for it. I have created a workflow for my application and designed the form in the create case step of that form. Now where I have to build the second form and how that can be linked with the existing one on a button click? Can anyone please help?
How to navigate to a new screen on a button click in SAP Advanced Workflow
97 Views Asked by Debabrata Mukherjee At
1
There are 1 best solutions below
Related Questions in GROOVY
- No tests found for given includes: [com.bright.TwitterAnalog.AuthenticationControllerSpec.Register user with valid request](--tests filter)
- Groovy - how to read properties from a property file in a jar on the classpath
- How to enter user input in jmeter console (without doing parameterization)
- Post checkmarx scan weblink on the Jenkins Build status page
- Optimal way to replace different parts of a structured string(XML) with random string values of different lengths in a JMeter JSR223 Samper (groovy)
- How to compare two csv files line by line in apachi nifi flow file using groovy script
- Jenkins pipeline map is getting converted to an array but it's too large I think?
- Exception: Unable to start the daemon process. This problem might be caused by incorrect configuration of the daemon
- Passing varible in Groovy script
- Multibranch pipelines not working if it's created by job DSL
- How to fetch more than 50 items when executing nexus rest api get request
- Grails Method is executing asynchronously even when i have not applied any code for asynchronous execution
- Liquibase configuration in Gradle conventions plugin
- Cannot instantiate Groovy class, throwing no signature of getBinding()
- Javascript (asset) missing in browser's sources
Related Questions in WORKFLOW
- Github action Post Run fails workflow
- Github actions set environment on a top level in workflow
- GHA reusable workflow succeeds with workflow_dispatch client but fails with push client
- Failed to create ISE, as i want to use this enable netorking in Logic app
- Post processing queue for Slurm
- Process level view on Flowable
- How to enable a PR originating from a forked repo to cause a GitHub workflow to push to a branch (gh-pages) in the original repo?
- not able to add previous commit into github tag using workflow
- Workflow for quickly building something with a specific non-standard build option
- Extract current running stage from dvc
- 'Workflow' cloud not be added to Xcode Cloud, request is rated limited/you must have 'Admin' permission
- Github action not getting triggered on scheduled time
- Flows sending out emails
- How to cancel a run for a non-existent runs-on member in github workflows?
- Github basic issue automation
Related Questions in SAP-BUSINESS-TECHNOLOGY-PLATFORM
- SAP Cloud Connector
- How to create API to consume SAP B1 Service Layer in SAP BTP using Integration Suite
- Remove dynamic token from SAPUI5 app path when loading from SAP BTP cockpit
- How do I use a SAP BTP Destination in JQuery ajax request in SAPUI5 controller
- GET Call on SAP Build Process Automation
- SAP CAPM Entity select with join not working as expected
- cf push failed due to java runtime version error
- SAP CAPM association modeling
- SAP CAP Service Deployment to Cloud Foundry Fails with "CRASHED" Status and "Exited with Status 1" Error
- No data in SAP BUILD Preview
- Connector tunnel reset between SAP BTP and Cloud Connector
- Ho to show/hide buttons and table controllers based on conditions set in the groovy script in SAP Advanced Workflow
- How to navigate to a new screen on a button click in SAP Advanced Workflow
- Recursively Iterate an API with python until all value are found
- How can parameters be passed between tabs in a tab container in SAP Advanced Workflow
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can design a form using sections in the same create case form and hide the sections accordingly based on click events. For example, section1 will have your initial form/elements with the submit button and section2 with next form/elements which should display after click of submit button. To make them functional, hide the section2 in the before showing form script of create case and in the form event script of submit button, hide the section1 and show the section2.