Answered - Workflow editor, left pane, container elements & step type hidden

Hello,
How do I restore the workflow container & step types to the left pane of the workflow editor?  Looking at the attached screen print, you can see that they are missing.  Obviously, if can't see step types, I can't drag a step type into the editor pane.
We are on Basis version 702, patch 11.
Thanks
Bruce
ANSWER:
Clicking on the thin yellow line at the bottom of the "Navigation area" displayed a drop down list, from which the different options can be selected.

Thanks for the detailed feedback. There's a lot of stuff here. I'm watching the video and we'll try and see if I can reproduce any obvious bugs. For the other things I'll log and review against other customer feedback to see what changed make the most sense. The more people that give us feedback the easier it is to know what to work on next. Currently working on improving the elements panel and will try to get some general bug fixes in on the way. Thanks again for the feedback and thanks for using Reflow!
Chris

Similar Messages

  • Help - Editor does not contain a main type error (Eclipse)

    Hello,
    I'm trying to run a Text input program out of the Eclipse program and I keep getting this Editor does not contain a main type error - can someone help me
    here's the code
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.text.DecimalFormat;
    import java.util.Scanner;
    import uwcse.io.Input;
    public class FileInputExample {
         public static void main(String[] args) {
              // Create a Scanner to read the input file
              String fileName = new Input().readString("Input file name? ");
              System.out.println();
              Scanner scan;
              try {
                   scan = new Scanner(new File(fileName));
              } catch (FileNotFoundException e) {
                   System.out.println(fileName + " doesn't exist!");
                   return;
              // Read the file and count the number of occurences of A, B, ...
              int[] count = new int[26];
              while (scan.hasNextLine()) {
                   String line = scan.nextLine();
                   line = line.toLowerCase();
                   for (int i = 0; i < line.length(); i++) {
                        char c = line.charAt(i);
                        if (c >= 'a' && c <= 'z') {
                             count[c - 'a']++;
              scan.close();
              int length = 0;
              for (int i = 0; i < count.length; i++) {
                   length += count;
              // Display the statistics (as an histogram)
              DecimalFormat df = new DecimalFormat("0.00");
              for (int i = 0; i < count.length && length > 0; i++) {
                   double percent = count[i] * 100.0 / length;
                   String display = "" + (char) ('a' + i);
                   display += "(" + df.format(percent) + "%):\t";
                   for (int j = 1; j <= Math.round(percent); j++) {
                        display += "X";
                   System.out.println(display);
    }Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    First, note that your program uses a non-standard class, "uwcse.io.Input" which is not available to us. Normally that is a show stopper - in this case, it's not, as I was able to eliminate its use.
    Your program runs fine, so the error is an Eclipse error unrelated to Java.
    You need to ask for help at an Eclipse support site, not here, as these forums are Java language forums.

  • Container element value does not display

    Hi,
    I am facing a strange issue.
    There is one step in my custom workflow which sends sap mail. The subject of the e-mail has a container element &notif&. When I check the workflow log this container element gets set with a value just before this step and so I expect it to be displayed in the e-mail .
    But the issue is i am getting the mail in my inbox which says ....&notif& ......
    i.e Instead of displaying the value of this container it displays the text &notif&.
    The same container element is used in the same e-mail message body where it displays correctly.
    has anyone faced this kind of an issue before?
    Thanks,
    Simmi

    Yes it is set to Expression.
    This mail step was not created from scratch.
    I just changed a few texts in the subject of this Mail step in an already existing workflow without touching the container element in the subject. But after i did this change and tested teh workflow, the container element no longer displayed any value in the subject, but it does continue to show value in the message body.
    Any suggestions to solve towards this issue will be extremely helpful.
    Thanks,
    Simmi

  • Use Multiline Container Element in User Decision

    Hi Gurus,
        I have a Multiline Container in my User Decision Task. I am able to pull the data in a Standard Text to the Multi Line Container Element if type RSTXT-TXLINE. But how do I display the total data in all the lines in that element to the User Decision Workitem Text.
    Thanx & regards,
    Kan

    You cannot insert all the table entries in the Decision step workitem Text. it wont allow you to display, one of the possible ways to fix it is please check this [blog|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417500)ID1574174750DB11406479040085832269End?blog=/pub/wlg/15666]

  • Container element in BPM of type integer

    if i make a container element of type integer in my BPM, does it initiallize to some value

    Hi Pankaj,
    Check this out,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/78/62373f58502e48e10000000a114084/content.htm
    Go to Assigning Values
    <i>At runtime, you can assign a value to a container element, for example to increase a counter or to append a message to a list of messages.</i>
    Also refer this
    http://help.sap.com/saphelp_nw2004s/helpdata/en/59/e1283f2bbad036e10000000a114084/frameset.htm
    <i>[Reward if useful]</i>
    Regards,
    Prateek

  • Container Element

    Hi Guys
    What is use of container element in Work flow(swdd).I used it for small scenario,but which scenarios we use it.
    Appreciate your answers.
    Thanks

    Hi,
    The main advantage of the STD_TEXT object is that it can print container elements as text symbols.
    Each container element can be printed as follows:
    &ContainerElement&
    If the container element is an object, each attribute can be printed as follows:
    &Object.Attribute&
    If you want to print employee data, a container element of type EmployeeT must be included. This element enables each employee data record (defined as an attribute of EmployeeT) to be printed. If the documents are country-specific, it is a good idea to define the container element as EmployeeXX (ISO country key = personnel country grouping), which includes all of the international and country-specific attributes.
    STD_TEXT can make distinctions between object attributes up to a third level, which means you must define utility objects in the container if higher levels are needed to make more distinctions.
    STD_TEXT cannot make distinctions for the following expression:
    Employee.PersonnelArea.LegalPerson.ActivityText.
    For this reason, you must define a utility container element of the type PersonnelArea:
    PersonnelArea<==Employee.PersonnelArea
    Using this container element, the activitytext attribute can be printed in the text as follows:
    PersonnelArea.LegalPerson.ActivityText.
    If the document requires additional information from other object types, you must define the elements as container elements in the standard task.
    Reward if useful.
    Regards,
    Pranathi.

  • In While step type

    how can i specify the condition in 'While' step value...?
    say i maintain a counter variable in workflow container and i increment each time in 'container operation' step type.....
    how shud i specify the value in comparison basis and comparison values in 'While' step type...?!?!
    i got it in 'loop until ' step type with same case....

    Hi Divya,
    If i understood your question correctly, you are interested to know how to define your condition for 'While' / 'Loop Until' Step.
    When we create a 'Loop Until' step, when you double click on 'Condition' creation area, you will go to 'Conditon Editor' where you can write your condition.
    In the condition editor, you will be able to access all workflow container elements. Your conditon can be in the following format
    &var1& &relational operator& &var2&
    you can also mention some constant value for var2. In general var1, var2 can be anything from workflow container elements.
    So, when your condition is met, loop will end and flow will follow to the next step after 'Loop Until' block. If your condition is not met, you will loop again.
    In general, may be you can have 'Total_No_of_Iterations' container element to store the value how many times the loop should run and 'Iterator' to refer to loop count. When your 'Iterator' value equals to 'Total_No_of_Iterations', may be you can come out.
    Hope this helps you to go ahead with Loop Until step in your workflow !!
    Thanks and Regards
    Krishna Mohan Dubbak
    PS: your terms 'Comparison Basis' 'Comparison Values' are more relevant to 'Mutliple Condition' type. Please note that using Loop Until you can have only 2 possibilities either loop end or loop continue, you can not have any other option.
    Reward points if this helps to solve your problem !!

  • Creating a step type "launcher" that would insert the appropriate built-in or custom step type at edit time

    Hi everybody,
    I'm looking for tips, pointers,directions... to be able to perform this operation in TS 4.0 sequence Editor, if it's even possible...
    I'm managing a test system with a "home-made" virtual instruments abstraction Layer complementary to IVI classes for instruments which do not have classes defined, customizing the sequence editor accordingly for developpers of my department.
    So basically when the instrument is IVI, the developper uses the built-in IVI step-type type and when it is not, he uses the the custom step types that I developped for this particular class of instruments.  
    However there are classes where I do have both IVI and specific drivers available and I do need to use both in the test sequence.
    For example let's say there are two sources of DC power available in the testbench, one being a programmable IVI compliant DC power supply, and the other one composed of fixed "blocks" of DC power supply managed by externals relays and you need to use them both in the test sequence.
    What I would like to be able to do in the sequence editor is inserting the appropriate step type at edit time just by selecting the source of power supply (by a ring or enum for eg), and if the first ressource is selected, it inserts IVI step type, and if the second ressource is chosen, it inserts the appropriate custom step type.
    Any Ideas on how to accomplish this ?
    Regards,
    Cyril
    Cyril Bouton
    Active LabVIEW Developper
    Solved!
    Go to Solution.

    Hello Cyril,
    Here is an idea that could be done:
    You could create a dynamic step by having a step that holds all the properties for both configurations (the superset of the necessary variables) and an extra one that indicates which 'mode' the step is in.  Then you create the main Edit substep in whichever language you desire.  That substep window will then have a box/dropdown/etc. at the top you can use to choose between modes A & B.  When the user changes the value, you would dynamically change the rest of the window to contain the appropriate properties for mode A or B.  You then copy the property values in that window to the Step properties, and copy the mode to your variable and you can run the step in that mode.  When the step then runs, it checks the mode variable, and depending on its value, it will run the step in mode A or B.
    Now we could add a dialog that allows us to choose when we put a step down but we should still allow the user to change later via the Edit substep we create.
    I don't think we can create something that inserts a completely different step, but we can have one step that has the ability to do both and we can pick which one we execute.  Also note we still don't have the ability to edit the Panels for a step, so we have to use a new window that we call from our Edit substep to complete the step.
    Hope this helps.
    Regards,
    Olivier L. | Certified LabVIEW Developer

  • Custom step type Export and Import

    Hi,
       I have created custom step types similar IVI for all my HAL drivers.
    I need help in sharing it with my team in different locations.
    I am looking at exporting and importing of the custome step types similar to templates.
    Could anyone help me with this.
    Thanks in advance
    Anna

    Anna,
    when creating the step type definition, you have picked a location for it. By default, it is "MyTypes.ini".
    You can create your own custom ini-file containing your specific step types in the type editor.
    When distributing your step types, you have to pass the ini-file containing the type definition(s) AND all sources connected to that types (substep modules).
    On the target machine, you have to include that ini-file in the system for type definitions in the type editor.
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Custom Step Type: Sequence Call

    OK, I'm primarily a LabVIEW programmer, but in TestStand I understand how to:
    * Create a Custom Step Type
    * Link a LabVIEW Module for execution, post substep, edit substep, etc.
    * Prevent the user from selecting a different module for an instance of my Custom Step Type.
    All good stuff.
    Now here's what I want to do: the exact same thing, except that I want the custom step to call a subsequence instead of a LabVIEW VI during execution. Yes, I want to use a LabVIEW VI for the edit substep (to set certain parameters for this instance of the subsequence call. Yes, I want to use a LabVIEW VI for the post substep.
    Can this be done?

    Hi,
    Short answer, yes.
    When you create your step type, for the Specify Module you would use a SequcenceCall Adapter instead of your labview adapter.
    You would have to have your sequencefile with your sequences already created seperately and you would set the sequencefile not to use a process model in the sequencefile properties.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • ECC 6.0 - WS20000050 - Container Elements from Workflow to Rule in step 172

    Hello Guys/Gals,
    Hope you all are doing good.
    Greatly appreciate if you could help on this with some tips.
    We are under the process of the upgradation to ECC 6.0. Decided to use the std WF WS20000050  for travel request.However work flow ended in error at step 372(Approve Travel request) saying
    "Source (expression '&TRIP.EMPLOYEENUMBER&') of binding assignment is not available" and
    "Source (expression '&TRIP.TRIPNUMBER&') of binding assignment is not available" and
    Error in the evaluation of expression '<???>&TRIP.TRIPNUMBER&' for item '1'..etc.
    Can anyone tell what is are the container elements need to be passed and possible errors.
    Good Day.
    Raj

    Hello,
    Check in SWO1 if the BO related to the TRIP container element has those attributes (EMPLOYEENUMBER and TRIPNUMBER) and if so then check in the workflow log if they have a value.
    regards
    Rick Bakker
    Hanabi Technology

  • How to create a container element in workflow container

    Hi,
    I am learning WF by a Tutorial. In which absence of notification was considered as example. As per tutorial, I created two task for creating a Notification and checking a absence
    In the next step it ask to create a container element(approver) to workflow container. How i can create the same.
    Also, please clarify me on the binding between task container and workflow container....with this example
    Thanks
    Suresh

    Hi,
    On the workflow builder LEFT side below the navigation area u can see this <Double-Click to Create>.
    Double click and create the container.
    During binding it looks as follows.
    Workflow  -
    >   Task
    Workflow <----
    Task
    What happen here is from workflow the data passed to task and it is used for processing, after that it returned back to the workflow. Now u can create the container on bothside and bind the data. ie Variables.
    Creating container u can refer : http://www.****************
    Reward for useful answer.
    Richard A

  • Error while using container element _WF_PARFOREACH_INDEX in workflow

    Hi All,
    I am using internal container element WFPARFOREACH_INDEX in internal table so that i can use it as index to read table row one by one..but in binding i am getting error "Container element '_WF_PARFOREACH_INDEX' does not exist" in form of an example.
    Can someone tell me that how to get rid of this error in binding? I am using this element variable to achieve parallel branching in workflow.
    Regards,
    Sumit

    Hi AA,
    You would probably need to create more than one containers.
    In workflows, we have following types of containers:
    1. Workflow container
    2. Task Container
    3. Event Container
    Now, since you need the element VBELN, try the following:
    1. Create a WF container for VBELN. Make it as both input and output parameter.
    2. Create a container for the Mail Step, again with VBELN field as an input parameter.
    3. There would be a button for binding in the mailstep. Bind the Field VBELN from Work flow container to the Mail Step container.
    Once binding is done, save it and Activate the Workflow.
    Hope this helps.
    Do get back in case of any issues.
    Regards,
    Sonal

  • Multiline container element in workflow

    Dear all,
    I am using a multiline container element in workflow container.  Can anybody suggest how I can see the values of that element?  After workflow execution is COMPLETED and I go to SWI1, it shows only simple elements.  It doesn't show any of my multiline elements.
    Please help.
    Thanks in advance,
    Regards,
    Pranav.

    Hi Pranav,
    It does work in 6.20. I am not sure about 4.6C.
    Display Technical Details from the Workflow log for your WF instance. You can examine the Container values for each of the steps. See if the values show up (are you certain your multiline container has been populated?). If you are populating the multiline container from an object method, verify by testing your object method that the parameter are correctly defined and it is getting populated.

  • Step Container Element not getting updated

    Hi,
          I have created a step container element for handling comments with the same ABAP dictinary structure & import export       parameter of a existing workflow conatiner element  & binded with the WF container & step conatiner & i have the saved & activated the WF template sucessfully.but when action is being taken from portal on a Workitem then comments are being  passed to the WF container but the step container that i created is not getting updated . i checked in SWI6 , it's showing not set.
    can any help me on this regard.?
    Thanks & Regards
    Rohan Kumar Das

    Actually, I believe the problem is related to binding.
    When called in the foreground, object references (and data references) are present in memory for all subsequent processing.
    You probably need to make the CONTAINER "Persistent".
    In your code, call the macro SWC_CONTAINER_TO_PERSISTENT <container name here>.   For example:
    SWC_CONTAINER local_container.
    SWC_CREATE_CONTAINER local_container.
    "  Set you Container elements
    " SWC_SET_ELEMENT local_container 'Element01' lv_element01.
    " SWC_SET_TABLE local_container 'Element02' lt_table02.
    SWC_CONTAINER_TO_PERSISTENT local_container.
    " Start your workflow passing local_container.
    Something like this...
    Hope this is relevent . . . Apologies if not . . .
    Regards,
    Tom Carruth

Maybe you are looking for

  • SAP B1 Client closes in AR Invoice

    Hi experts, We need your help in the following issue. When trying to add a Sales Invoice in client SAP 9.0 (PL5), we choose a Customer and an Item code and then after few seconds SAP closes and error message appears:Unhanced Exception "SAP Business O

  • Adding More Than 2 Internal Hard Drives

    Anyone have any help they can give me on upgrading my power supply? I've read on other threads that this is a power supply issue when adding more drives. G5 Jive mounting kit: http://eshop.macsales.com/item/Sonnet%20Technology/ENCG53HD/ with this Ser

  • APEX PDF

    Is there any way to use Oracle Report server to generate PDF from APEX? Coz, we already have license for Oracle Forms and Reports Server 10g. Also our company doesn't want to invest on BI publisher or plpdf jus for pdf reports. Any inputs on the abov

  • Activation lock after iOS8 Upgrade

    I regrettably upgraded my OS to 8 tonight and it immediately crashed my iPad mini. After several tries, I was able to restore the iPad using iTunes on my PC. However, I am now getting the message "[appleID] cannot be used to unlock this iPad." This i

  • SuperDrive on iMac Keeps Ejecting Discs

    I've been having trouble with my early 2009 iMac's SuperDrive.  Recently I'd been having trouble reinstalling a 3rd party app after ML upgrade, and the install CD was getting stuck.  I did have to pop it out manually using a card to gently make it co