How to create a workflow (not a wizard)

Hi,
In apex itself a lot of pages have at the left side a workflow: indicating the steps to fullfill a task.
How a workflow (like these) has to be build?
Are examples available?
Any reaction will be appreciated.
Leo

List entries can be the steps in your workflow.
For example, lets examine the "Create LOV" wizard from Apex. It has 3 steps (Source, Name and Type, Query or Static Values).
Lets assume that each step of this workflow is on a separate page, lets say p. 1 - Source, p. 2 - Name and Type, p. 3 - Query or Static Values.
Now you can create a List with these 3 entries and properties:
1) Name: Source, Target: page 1, Current list entry (List entry current for Condition): page 1
2) Name: Name and Type, Target: page 2, Current list entry (List entry current for Condition): page 2
3) Name: Query or Static Values, Target: page 3, Current list entry (List entry current for Condition): page 3
Include this list on all 3 pages and you're done. If you don't like the looks of the list, edit/create a new list template.
Jure

Similar Messages

  • How to create a single 'not null ' validation for all the items in a page ?

    Hi everyone ,
    how to create a single 'not null ' validation for all the items in a page ? I have many textfields . Instead of creating 'not null' validation for each item , I would like to create a a single validation control that will serve the purpose
    Thanks & Regards
    Umer

    Nice1 wrote:
    bob , as u said I have done the following :
    1) under create button , there are 9 items and for each item I have set Required to 'Yes'
    2) under delete button , there is 1 item and have set Required to 'Yes' for the item
    3) defined page validation for 9 items under 'create ' button and have set it to fire when 'create ' button clicked
    4) defined page validation for 1 item under 'delete ' button and have set it to fire when 'delete ' button clicked
    now , when I click 'create' button it even shows for the item under 'Delete ' button that it is a required itemSorry, I didn't see this note. The required template won't work, there is no way to attach it to the button.
    The best solution is as the reply a couple replies up
    Create 2 page type validations as a PL/SQL with code
    1st validation
    :P1_ITEM1 IS NOT NULL and :P1_ITEM2 IS NOT NULL ...... and :P1_ITEM9 IS NOT NULL  include all 9 items
    Set the When Button Pressed to the CREATE button
    2nd validation
    :P1_ITEM10 IS NOT NULL
    Set the When Button Pressed to the DELETE buttonI think that's going to be the easiest way to do it.
    Edited by: Bob37 on Apr 27, 2012 12:02 PM

  • How to create and share notes in icalendar

    how to create and share notes in icalendar
    i have created a reoccuring all day event for monday thru friday throughout the month.
    Each day I write notes in the event. I do not want the notes to duplicate each day.
    Now do I set up so notes for that day is only in that day.
    thank you
    angelscott1

    Hi Parga,
    You need to declare the variable at Interface controller and need to map this at the context level.
    Like a variable declared at web dynpro component context level can be used among all views.
    every web dynpro component have an Interface component. this can be used in other components where this perticular component is used it is also have a Context.
    For more info Take Usage of Component Controller Examples.
    [Check this thead|http://help.sap.com/saphelp_nw70/helpdata/en/3a/165da11551994db913f56829f8f3f1/frameset.htm]MPUSAGE
    WDR_TEST_CMPUSAGE_CI1
    WDR_TEST_CMPUSAGE_CI2
    WDR_TEST_CMPUSAGE1
    WDR_TEST_CMPUSAGE2
    WDR_TEST_CMPUSAGE3
    WDR_TEST_CMPUSAGE4
    WDR_TEST_CMPUSAGE5
    WDR_TEST_REF_CMP_USAGE_CI
    WDR_TEST_USAGE_GROUPS_CI
    WDT_COMPONENTDETAIL
    WDT_COMPONENTUSAGECheerz
    Ram

  • How to create a workflow dealing with customizing program(Add-on program)

    Dear ALL,
    I am new to workflow and I was assigned to create a workflow related to an customizing program(Dynpro screen).
    I know we can refer to some std. template for workflow developing.
    However, I don't know how to create a brand new workflow to deal with the add-on program and table.
    My major difficulty is how to create a new object:
    --How to create the new event to track the operation of add-on program, for example, push 'submit' button.
    --How to create method to update the add-on table.
    I do hope someone could give me some guidance.
    Thank,
    Gary

    This is a Function Module that triggers an event ob Business Object tht you will create by making a subtype of Business Object. Use Transaction Code SWO1 to do so.
    FUNCTION zwf_process_trip.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_EMP_NUMBER) TYPE  PERNR_D
    *"     VALUE(I_EMP_TRIP) TYPE  REINR
      INCLUDE <cntn01> .
      DATA:i_emp_details TYPE STANDARD TABLE OF p0001,  "Employee Details
           wa_request    TYPE p0001,                    "Workarea for Employee details
           v_country_grp TYPE molga,                    "Country SubGrouping
           v_object_key  TYPE sweinstcou-objkey.        "Key for the buisness object ZWOBUSTRIP
      CONSTANTS: c_bo_trip     TYPE swo_objtyp VALUE 'ZWOBUSTRIP',
                 c_event_trip  TYPE swo_event  VALUE 'TripCreate',
                 c_infy_type_1 TYPE infty      VALUE '0001'.
    Event Container declaration
      swc_container i_event_cont.
      swc_create_container i_event_cont.
    Reading the INFO TYPE 0001 to obtain the
    Employee details
      CALL FUNCTION 'HR_READ_INFOTYPE'
        EXPORTING
          pernr           = i_emp_number
          infty           = c_infy_type_1
          begda           = sy-datum
          endda           = sy-datum
        TABLES
          infty_tab       = i_emp_details
        EXCEPTIONS
          infty_not_found = 1
          OTHERS          = 2.
    SY-SUBRC check is not required as the error
    handelling will be done by WorkFlow rule
    resolution.
      CLEAR wa_request.
      READ TABLE i_emp_details INTO wa_request INDEX 1.
      IF sy-subrc = 0.
      Retrieving the Country SubGrouping for the employee
        SELECT SINGLE molga
          FROM t001p
          INTO v_country_grp
         WHERE werks = wa_request-werks
           AND btrtl = wa_request-persk.
      ENDIF.
    Sending the relevant data to event container
      swc_set_element i_event_cont 'EmpId'     i_emp_number.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'PersonnelArea'    wa_request-werks.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'CountryGrouping' v_country_grp.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'EmpSubGrp'       wa_request-persk.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'EmpTripId'       i_emp_trip.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
    Raising the event to trigger the workflow
      v_object_key = i_emp_number.
      CALL FUNCTION 'SWE_EVENT_CREATE'
        EXPORTING
          objtype           = c_bo_trip
          objkey            = v_object_key
          event             = c_event_trip
        TABLES
          event_container   = i_event_cont
        EXCEPTIONS
          objtype_not_found = 1
          OTHERS            = 2.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      COMMIT WORK.
    ENDFUNCTION.
    SWEL Transaction Code is used to track event linkage.
    SWUS is used to test Workflow manually with single test.
    <b>Please reward points if useful</b>
    Thanks
    Arghadip

  • How to create custom workflow for document library?

    Hi All,
    I have a document library with a custom  people picker column "assign to". Need to create approval workflow using designer, approval must send to person who is selected in "assign to" column. I tried with designer workflow,But finally
    facing "The e-mail message cannot be sent. Make sure the e-mail has a valid recipient". How to fix and achieve my scenario? Thanks in advance!

    I would suggest you to firstly print the assign to value using "Log to history" action. Moslty it could be of three reasons,
    1. Assign to value is not getting populated correctly in your SPD workflow
    2. Email server is not configured properly, If alerts and other emails are workfing in your server then this would not be a reason for issue
    3. The user your trying to send an email does not have valid email
    do let us know if can get the user email in your workflow.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if the reply helps you

  • How to create a Credit Note to the client for purchasing of an Asset last y

    Hi,
    I have an issue in Asset Accounting as it showed bellow:
    Assets depreciation start date is 1st October 2007.
    We have run the depreciation up to November 2007.
    Than we sold the asset in December.
    However, after the end closed year 2007, client returned the asset in 1 st January 2008.
    So i need to create a Credit Note to the client for purchasing of an Asset last year, but we don't know how to create it?
    We thinks that correct movement should be debit in extraordinary cost / profits account, debit in asset account, credit in accumulated depreciation account and credit in client account.
    Plz help. I will assign full points for any useful answer.
    Thanks
    Edited by: Ricardo Pedro Rodrigues Ferrão on Dec 20, 2007 10:09 AM

    How did you sell the asset?
    You can just reverse the sale transaction by going to transaction AB08.
    Hopefull this may work for you.
    Regards,

  • How to Create a Workflow Criteria

    Hi,
    I am planing to create a workflow to assign some tickets to particular analyst.My requirement is more than one items in description should pass the criteria.
    Ex:
    Priority 3
    Ungency : Low
    Category : XYZ
    Sender :[email protected]
    All given examples are from the description and all should be pass the criteria then only incident should be assign to
    particular analyst.
    Thanks in advance.

    Could you please check the workflow status: SCSM console -> Administration -> Workflows -> Status -> Name of your workflow.
    Is the workflow triggered and ran in an issue/error? Is the workflow not started?
    Also you can run a SQL query on the Servicemanager database (You have to modify the
    'DOMAIN\WORKFLOW_ACCOUNT' before you run the SQL query):
    select
    job.TimeScheduled,
    job.TimeStarted,
    job.TimeFinished,
    job.ErrorCode,
    job.ErrorMessage,
    convert(xml,job.Output),
    job.Status,
    Disp.DisplayName from JobStatusView Job
    join DisplayStringView Disp
    on job.TaskId = disp.LTStringId
    where SubmittedBy = 'DOMAIN\WORKFLOW_ACCOUNT' and disp.LanguageCode = 'enu'
    order by TimeScheduled desc
    Andreas Baumgarten | H&D International Group

  • How to create a named not null constraint

    Hi All,
    How to create a table with a named not null constraint?
    and how to add a named not null constraint to a table?
    Thanks for the help.

    Hi,
    I guess you are asking for a column inside a table, having a named not null constraint. Am I correct? Try the following.
    SQL> create table checktab (col1 varchar2(30)  constraint NN_const not null);Is this what you required?
    Please post technical questions in respective forums.
    Hope that helps.
    Savitha.

  • HOW TO CREATE SAP OSS NOTES ID

    I am SAP FI certified and i have my certificate but i have only my SUID as written on certificate. now i want to create my OSS NOTES is , along with SUID i need to give password to create ID. please guide me how create oss id

    Hi,
    Login on sap market place then go to Data Administration------>User Data -
    >Request new users.Then give authorization to this user.
    Regards,
    Pankaj

  • How to create CPO workflow..training video

    Does anyone has training videos for understnading of CPO workflow or how to create Prsocess ........????
    Thank you

    I have done lots of content in regards to training.
    Refer to the video section on this site @ https://supportforums.cisco.com/community/netpro/data-center/intelligent_automation/teo?view=video
    In particular, this video talks to process authoring: https://supportforums.cisco.com/videos/2150
    Since you are a cisco employee, I would suggest you check out our TAC's wiki page @ http://wikicentral.cisco.com/display/IABUS/PROAUTO+Queue and check out the "TEO Support Training" link. There are a ton of VODs I've done over time there.
    -Shaun Roberts
    CPO/CIAC Support Lead
    [email protected]

  • How to create a workflow for personnel data?

    Dear All,
                  I want to create a workflow for entering personnel data and submitting it to the immediate senior.I had created a workflow for leave approval.Can anyone tell me steps for creating the workflow for personnel data.
                               Pratighya Jain
    Message was edited by: Pratighya jain
            Pratighya Jain

    Check this documentaion on SAP Business Workflow, which is built in HR:
    http://help.sap.com/saphelp_46c/helpdata/en/a1/172437130e0d09e10000009b38f839/frameset.htm
    Things that can be done are eg:
    Application forms and everything for handling them
    Absence approvals, travel requests, expenses
    Time
    Pls don't forget to reward points and close the question if you find the answers useful.

  • How to create a workflow for a date field if the date is approaching?

    Hi Experts,
    I have to create a workflow on the basis of delievery date entered for the Record type opportunity.
    Like, if the user have entered the expected delievery date while Closing the Opportunity a mail should be triggered to concerened persons before 10 days of that "Expected Delievery Date".
    If anybody can help in this regard,Thanking in anticipation.

    Configure wait action field Until When with the expression [<Delivery Date Filed Name>] - Period("10D")

  • How to create a workflow in SharePoint 2013 that modifies the Modified By field?

    Hello,
    I like to create a workflow that updates the "modified by" field in a list.  Is this possible? 
    Thanks,
    Paul

    the built-in audit fields (Created, Created By, Modified, Modified By) are managed internally by SharePoint. Workflows can edit metadata, but those changes will be made using the user who started the workflow, or by the author (if the workflow is set to
    impersonate the author).
    You cannot change the audit data.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • How to create a workflow item?

    I want to create a workflow item. So that it shows up in the workflow folder of business workplace.

    HI,
    Check this <a href="http://www.****************/Tutorials/Workflow/Workflow.htm">Workflow tutorial</a>
    Thanks
    Mahesh

  • How to create a workflow for e-mail adrress entered in a particular record?

    HI Experts,
    I have to create a workflow in which a mail is triggered to the e-mail ID entered for the record type "Complaint".
    Like, if there is a field called as "E-mail ID of customer" in the Complaint page layout and the user creates a complaint and a workflow is created for WNRS the mail should be triggered to the e-mail address which is mentioned in the field "E-mail ID of customer".
    I have tried by using Relative user on record but there is no Option to select that kiind of a field.
    If any one can help.
    Thanks in anicipation.

    You need to choose "Specific Email Address" and over there you can select the field from the Complaint.
    Regards, Tim

Maybe you are looking for

  • Pricing procedure in mm

    hi all what is functionality of required key like 17 for cash discount 42 for normal pricing , 6 condition exclusion in pricing procedure m/08. please tell me in layman language with some examples

  • IR during the invoice creation moment - TAXBRA

    Gentlemen, good afternoon, We are using the TAXBRA. IS necessary to make the IR is retained in the issuance of the note. Along with the FI consultant we did this parameter did not work. The ISS has the same characteristics (retained in the issuance o

  • How do I install camera raw 8 update?

    I just realized that I don't have the Camera Raw 8 update for my Photoshop CC. I was watching some tutorials on using it as a filter and realized I have an earlier version, but not sure which one? I checked for updates in photoshop help but only an u

  • IPhone slow to wake!

    My iPhone has been like this for two months (see link for video). Its extremely slow to wake (this video shows it waking faster than it usually does) and it has a powerpoint-esque windowshade animation looking animation when it wakes (visible in vide

  • Imposs to upload with iWeb - use iPhoto Photocast & play with Homepage

    I found a way to get pics visible, publishable or visible with eBay etc... It's not enough for most people but it'll work for some... Go to iPhoto and Photocast your pics... They ZOOM online... (Mine did anyway...) Then move the whole folder(s) on iD