Skip to main content

PRPC - Where Am I

Hi all,

From today onwards, every day i would like to discuss about some rule of PRPC.

Today i am discussion about the "Where am I" icon and its functionality .

WHERE AM I 
"Where Am I" Icon will be found on your Work list or on a Work Object. Its functionality is to display the Current processing flow with a Big Arrow mark on the currently processing assignment.

To use this functionality you need have Work.-Perform privilege

When you click on this icon, a window name "You are here" will be popped up. This window shows the current Flow Stack. The Flow Stack contains the list of flow rules in process for the current task only. Completed Flows and other executions operating on the current work object in parallel to the current execution (parallel in flows) will not included.

On the top of this window, the flow-sub flow relationship is maintained from Left To Right. By Clicking on them, you can navigate to corresponding Flow/Sub Flow.

The Flow at bottom left is the sub flow that contains an incomplete assignment.

Below it You can two buttons, Open Flow (which opens the flow) and Show all Steps (will show all assignment details on right panel).

On Left panel, you can have the image of currently selected Flow diagram in Microsoft Visio. On this diagram, you will find, "Tick Marks" on completed assignment and an "Arrow mark" on the currently processing assignment.

By clicking the Tick Marks, you can have the details of those Assignment on Right hand side of the window.

On Right panel, you can have the history of the current work object. Depending on the history options in flow rule, these details will vary.

If you want to Turn off golden arrow feature, override the Assign-.pyAssignmentStatus with an HTML Property or choose the Assignment Status as "Default"

Note
1. "You are here" window shows the stack of incomplete flow executions in progress that lead to a specific assignment or other incomplete task. It does not show the entire work object history, which may involve other flow executions now completed.

2. This "Where am I" functionality will be available to flows with "Draftmode" also.

3. While processing a Flow, if it creates a "Temporary Work Object", the this feature will not be available.

4. From 5.4 onwards, for a Work User, this functionality is not available in the status column of the report generated for the work list items assigned to the operator.

Hope you enjoy this content. Will come up with something else tomorrow..... Keep posting your comments

Comments

Unknown said…
Hey my name is Prasant. I am using PRPC application, want to know if we can create macros in PRPC and how to increase the spped of the application.

Popular posts from this blog

Netbeans 6.0 - Code generation

The Java editor is capable of generating often used constructs for you automatically. Press Alt+Insert to invoke the code generation menu and pick what you want to generate To add import statements: Use error hints : Click on the error mark with the light bulb or press Alt+Enter . It will offer you a list of possible classes to import. Pick the proper hint and you are done Use the import class dialog : Put the caret into the name of an unimported class and press Alt+Shift+I . A list of possible classes to import will appear. Use the smart fix import : Press Ctrl+Shift+I . You will get a dialog that lists all unresolved identifiers in the source. If there is more than one option for resolving the identifier you may choose using the combo box. Classes shown in gray do not fit for some reason. Method exit points : Putting the caret on the return type of a method definition will highlight all places where the method can exit Exception throwing points : Putting the caret on an...

Artist got automated

Here is my first Tensorflow run to convert images to different styles of famous painters I am using the code that is available at  https://github.com/lengstrom/fast-style-transfer It uses specific versions of below libraries !apt install ffmpeg !pip install tensorflow==0.12.1 !pip install numpy==1.11.2 !pip install scipy==0.18.1 !pip install pillow==3.4.2 I started with latest version and that triggered failure after failure. If you are like me, add below changes to their respective files #This is to make tensorflow behave as if it is in v1 File : evaluate.py and ./src/transform.py import tensorflow.compat.v1 as tf tf.disable_v2_behavior() #Image functions are removed from scipy.misc module. so use imageio instead import imageio scipy.misc.imsave(out_path, img) --> imageio.imwrite(out_path, img) img = scipy.misc.imread(src, mode='RGB') --> img = imageio.imread(src, pilmode='RGB') Refer this post on more details on imageio changes Here is the ...

OnePlus 6T - Android 10 (OOS 10)

Its been more than 3 months since August security patch update. Out of curiosity I checked Oxygen Updater. To my surprise, Oxygen OS v 10 (based on Android 10) is available. Since this is a stable release, i went head and updated it. Its ended up being a buggy release. For those of you, who didnt get update over OTA, its better to wait for OOS 10.1. Here are the list of issue and the workarounds. Issue #1 :  Phone randomly restarts and then goes to boot loop Workaround : when the phone stuck in boot loop (with OnePlus logo animation), Press Power Button and Volume Down button to restart it Issue #2 : Google play wont work Work Around : Booting to recovery and clearing cache is expected to fix this. will update after testing To booting to recovery, Firstly, turn off your phone: press and hold the Power button for a while or press the Power key once and choose ‘power off’. Once the switch off process is completed start pressing and also holding down the Volume Dow...