Problem in mapping GP parameters and process completion

Hi,
I have a block which is sequential and it contains:
1. action ( the first screen of the process)
2. an alternative block ( 4 actions)
3. when i run the process, following happen:
    a. the first screen opens up with proper details
    b. on click of button, second screen as well opens up. But the data that gets passed is only the gp single attributes. Any tabular structure data doesnt get passed.
    c. on second screen, if i click reject, it displays the last screen as per the result state set, but again no data gets passed ( in this not even the single attributes)
    d. on second screen, if i click accept, it goest to the third screen as per the result state set, but no structure data gets passed. Only single attributes are displayed.
    e. on the second screen, when i click next button, it doesnt display the thrid screen, just a message that action is completed. Whereas, ideally it should take the user to the fourth screen.
4. i have mapped all the attributes in the alternative block.
5. when i created sequential block, in that as well, all the attributes of first action and alternative block were grouped. ( whats the difference between group and propose consolidation functionality)
6. i have set the targets in the result states of second and third screens.
Second screen has 2 conditions: if approved, goes to third screen, and if rejected, it goes to the last summary screen.( both happening, but data not getting passed)
Third screen has only one result state - success. for this also , i have set the target as fourth screen, but it doesnt appear.( not happening)
Can anyone please help in this regard.
Thanks  & regards,
Anupreet

Hi,
    I think your process flow is like that
      Process
         Sequential block
               Action
               Alternative block
                    Action 1
                    Action 2
                    Action 3
                    Action 3
   The Hierachy of Action in Sequential block and Action in Alternative block is different.
use the process flow like this
        Process
           Sequential block
                Action
           Alternative block
                Action 1
                Action 2
                Action 3
                Action 4
  create the Sequential block and Alternative block in the process level and u map the Attributes in the process level.The Attributes will be mapped in the Process Level.The Attributes will be mapped both in Process level and in Block level if it is in same Hierachy level.
Regards,
Satheshkumar.R

Similar Messages

  • Problem from Difference betw Thread and Process.

    Hi,
    my app create new Process and execute subtask. So, Main Process wait for the sub process to finish. Like follow.
    Process child= Runtime.getRuntime().exec(cmds);//run java ClassName cmdArrays..
    try {
    child.waitFor();
    } catch (InterruptedException e) {
    //when error ocurrs it return error message
    return "Running Process error :\n "+
    e.getMessage();
    In this case if sub process run swing application, parent process seem to freeze.
    It will wait forever.
    I try to create new Thread to create new Process. But, the problem is child process is created by parent process. But, Parent is Thread not process.
    So, waitFor still make parent process freeze. Is this right?
    How can I solve this problem?

    waitFor() becasue I need input/errorStream You do not need to call waitFor() first in order to get the input/error streams of the child process!
                            Runtime         rt=Runtime.getRuntime();
                            Process         proc=rt.exec(command);
                            InputStream is=proc.getInputStream();
                            LineNumberReader lnr=new LineNumberReader(new InputStreamReader (is));
                            sRet=lnr.readLine();
                            String line;
                            while((line=lnr.readLine()) != null) {
                                    if (DEBUG1) System.out.println(line);
                                    InputStream is2=proc.getErrorStream();
                                    LineNumberReader lnr2=new LineNumberReader(new InputStreamReader (is2));
                                    while((line=lnr2.readLine()) != null) {
                                            System.err.println(line);
                            iRet=proc.waitFor();

  • Illustrator crashes when I use the move tool. No help here in the forums. Ridiculous problem that is so basic and that completly ruins workflow.

    Illustrator (CS6, Creative Cloud) crashes when I use the move tool. No help here in the forums that I can see.
    As far as I'm concerned this is a ridiculous problem that is so basic - it should not happen for the price Adobe charges.
    Completely ruins workflow.
    Please help.

    Emily,
    Just to make sure, are all the faces of the Verdana and Tahoma fonts installed and enabled/activated through the OS (not font mangement) as TTF (not OTF)?

  • Problems with mapping the BOM and ROUTING

    Hi.
    in my business process for manufacturing one finished product.it needs 2 operations. in the first operation  there are 4 raw materials. the first operation produces a material x. and this material x goes in to the 2nd operation and  and there the material again under goes some manufacturing. there are four more raw mterials involved in the operation.I get my finished product there.but my business wants to track material x. which is a non stock material. it gets manufactured in operation 10 and gets consumed in operation 20. how to track this material.
    so will this bom be a multi level bom, lower level to manufacture material x and higher level for manufacturing the finished product.

    Hi,
    If you want to track the consumption of material "X", then you need to go for multilevel BOM. This calls for different production order for material "X" also. This needs seperate routing also.
    Regards,
    V. Suresh

  • Problem in calling Java Script and Process at the same time

    Hi Frenz,
    I have a requirement like this. when i press the button a page level process(Not Application level Process) and java script function has to happen. i wrote the Java script function to close the child window and reload the Parent window. I wrote the Process for the Parent window to get the updated screen.
    But the Process is not happening and the only the java script function is achieved.
    Can you suggest any idea to achieve both of the things at the same time?
    Thanks in Advance.....

    See this example:
    http://apex.oracle.com/pls/otn/f?p=31517:93
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Intellisense and code completion

    Hi all,
    this is maybe not WDA question, but I think all WDA developers have to deal with this problem and I want to know your opinions. The problem is something like intellisense and code completion in abap editor. I'm coming from .NET and Visual Studio world, where this features are implemented and they are very very useful.
    Now when I'm programming something in SE80 I type some_class_instance-> and I want to from editor to show me all methods with description, then I choose some method and editor fill in all method parameters. Now I have to memorize methods and parameters or search for them, which cost a lot of time.
    Example: http://www.fileguru.com/images/b/editor_net_development_microsoft_net-8526.gif
    Best regards Jiri

    Hi
    Check this video
    http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/90db53c4-812d-2c10-0789-dc18f6c9c725&overridelayout=true
    Regards
    Manas Dua

  • Problem with passing date parameters in cursor

    Is there any problem in passing date parameters and like clause as below
    CURSOR eftcursor(start_date DATE, end_date DATE, where_clause varchar2) IS
    select * from r_records
    where created_date between start_date and end_date and description like where_clause;
    and in the open statement
    select to_date('01/06/2010 00:00:00', 'dd/mm/yyyy hh24:mi:ss') into startDate from dual;
    select to_date('01/07/2010 00:00:00', 'dd/mm/yyyy hh24:mi:ss') into endDate from dual;
    str := '%something%aaaaa%';
    open eftcursor(startDate ,endDate , str);
    Do i need to do any kind of conversion in the cursor where clause or when i am passing the parameter in open statement.

    Almora wrote:
    Do i need to do any kind of conversion in the cursor where clause or when i am passing the parameter in open statement.No, your code looks correct -- ou're passing a date to the cursor.
    You might consider whether you really need an explicit cursor though. An implicit cursor is easier to code and performs better.

  • Facing problems while mapping fields in LSMW.

    Hi Friends,
           i got a requirement to upload the address. Address is in
    flat file.requirement is to use LSMW with object 0602 and the
    standard report program is RSADRLSM02.This standard report
    program uses the structures for uploading are ADR_LSM0 to
    ADR_LSM6.But i have some fields in the source structure are
    not at all related to the fields in destination structure(i.e ADR_LSM0 to ADR_LSM6)therefore i am facing problem while
    mapping the source and destination fields.is there any other
    way to map the fields.Please help me it's very urgent.
    Thanks in advance.
    Regards,
    Sumiti Gupta.

    Thanks for the reply santosh.
    GIS FIELD                                      SAP LOCATION
    ADDR_GID(10char)                     EXADR-KUNNR
    STR_NO(10)                               ADR_LSM0-STRT_CODE
    STR_NAME (42)                         ADR_LSM0-STREET
    ADDRESS_UNIT(7)                     ADR_LSM0-HOUSENUM_H
                                                          and
                                                     ADR_LSM0-HOUSENUM_L
    ADDRESS_UNIT_TYPE(5)           EVBSD-VBSART
    POST_CODE (10)                       ADR_LSM0-POST_CODE
    MUNI_NAME (40)                        EXADR-APPLDATA
    MAILING_CITY(60)                      ADR_LSM0-CITY_NAME
    MAP_PAGE(4)                           EADRSTRTGRID_GRID_ID
    EVAC_ZONE(1)                          EVBSD-ZEVAC
    PIN_NUM (18)                            EHAUD-PLTXT
    in the above fields the structure with ADR_LSM0 are found with the other fields i m not able to find the similar fields in the destination structure.Please help me.
    Regards,
    Sumiti Gupta.

  • Forms: object and process

    We have two kind of forms. Object and process.
    An object form is associated with a resource and a process form is associated with a process.
    But, I still have a few doubts.
    But what is the difference between them in functionality point of view. Where exactly does process form come into picture. Can we display it?
    Where should we use which form?

    Each resource has an associated object and process form.
    Object form is basically used when requesting a resource for provisioning for accepting data from user. Now before provisioning activity gets triggered, this data is passed to process form to execute provisioning tasks. The data flow/mapping between object and process form is done thr' Data Sink tab in process definition.
    The permissions for both object and process form can be set in Form Designer->Object permissions tab.
    Besides, the process form data can be "editted" for re-try process tasks that have failed/rejected.
    Note: you can also have data pre-populated in process form thr' access policies. The same holds true for object form but having data pre-populated in process form makes more sense. This holds good when having provisioning of resources being triggered thr' role based access policies.

  • In downloading a TV show from iTunes to my PC the file is stuck in processing and never completes the download

    When downloading a purchased TV show from the Itunes store to my PC (Windows 7) the file is stuck in processing and never completes the download.

    The EXACT same thing happened to me last night!  Rented a movie; it had barely started and then froze.  When I touch the video app icon, all I get is a blank, dimly lit screen.  None of the other videos I own will display either.  Was your problem ever resolved?

  • MORNING HAVING A PROBLEM WITH MY Z10 WHEN I SWITCH ON IT SHOWS THE LOADING LOGO AND NEVER COMPLETES .YOUR HELP WOULD BE APPRECIATED THANKS

    MORNING HAVING A PROBLEM WITH MY Z10 WHEN SWITCH ON IT SHOWS THE LOADING LOGO AND NEVER COMPLETES THE LOADING PROCESS.YOUR HELP WOULD BE APPRECIATED

    Checkout this thread: http://supportforums.blackberry.com/t5/BlackBerry-Z10/Z10-stuck-on-loading-logo-on-starting-up/td-p/2517909

  • Problem with ssh and bash-completion

    I and a co-worker are having a weird problem with ssh and bash-completion. We have a local config in .ssh/config with hosts we connect everyday. An example:
    host foo
    hostname foo.org
    user foobar
    host foobar
    hostname foobar.org
    user foobar
    When we try to type
    ssh foo<tab><tab>b<tab>
    the console just freeze and we can't type anything, everything we type is ignored, but after about 30 seconds the host is completed.
    This works a some time ago, so some upgrade make this happen. Anyone can reproduce this?

    quigybo wrote:
    Actually thinking about it, rather than using the semi-dodgy fix posted on the bug tracker, we can just test if the daemon is running since we are not on MacOS X. It is cleaner and 250 ms quicker.
    --- bash_completion.orig 2010-09-14 05:33:22.000000000 +0930
    +++ bash_completion 2010-09-14 05:45:04.000000000 +0930
    @@ -1316,10 +1316,12 @@
    # contains ";", it may mistify the result. But on Gentoo (at least),
    # -k isn't available (even if mentioned in the manpage), so...
    if type avahi-browse >&/dev/null; then
    - COMPREPLY=( "${COMPREPLY[@]}" $( \
    - compgen -P "$prefix$user" -S "$suffix" -W \
    - "$( avahi-browse -cpr _workstation._tcp 2>/dev/null | \
    - awk -F';' '/^=/ { print $7 }' | sort -u )" -- "$cur" ) )
    + if [ -n "$(pidof avahi-daemon)" ]; then
    + COMPREPLY=( "${COMPREPLY[@]}" $( \
    + compgen -P "$prefix$user" -S "$suffix" -W \
    + "$( avahi-browse -cpr _workstation._tcp 2>/dev/null | \
    + awk -F';' '/^=/ { print $7 }' | sort -u )" -- "$cur" ) )
    + fi
    fi
    # Add results of normal hostname completion, unless
    This is the same test as was used in bash-completion 1.1.
    Thanks  quigybo, I use your patch, the issue is gone
    Why does so many packages depends on Avahi? Maybe make it optdepends is
    enough?
    my laptop $ pacman -Qi avahi
    Required By : gnome-disk-utility gnome-vfs libcups mpd sane

  • Hello apple guys, i can't open app store, reminders, contacts, mail(crash), maps, Image Capture, and other apps that comes with Mavericks OS, how i can solve this problem?

    hello apple guys, after installing OS X Mavericks, i can't open app store, reminders, contacts, mail(crash), maps, Image Capture, and other apps that comes with Mavericks OS, how i can solve this problem?

    So is this the way Apple works now? Not solving customers problems? I'm sure so many users have had this problem. I've had, and I reinstalled Mavericks 3 times. Works fine for some days and then several Apple Apps stop working. Is that a way to force us ti update to Yosemite? (I don't want to) and then pay to update some third party programs (i.e. Pro Tools). Also, there are so many 15" MacBooks Pro with graphic problems and of course the guys at the Apple Service Centers always say: "It's the logic board, you can have it replaced, but it's so expensive I would recommend a new Mac".  I really, really miss Steve Jobs!

  • The problem is when we create and then publish to ibooks review it can not be shown completely. How can I solve this problem?

    The problem is when we create and then publish to ibooks review it can not be shown completely. How can I solve this problem?

    If you are saying, that you published the book to  the iBooks review team and cannot be seem in the store.
    Use your iTunes Connect account > Manage your Books to check on its status. It takes time so you need to allow a few days.
    If its a problems viewing on your iPad Follow  the above advice and another option is is export your  book, open iBooks on your  Mac and drag the  book into  iBooks.
    You can iTunes > add to libray and sync to your iPad.

  • I have a 2009 Macbook Pro with 1T hdd 8GB Ram and ran Maverick without problem...Yosemite installation has me completely frozen, nothing works but the spinning ball...I had to force shutdown last night, and haven't turned it on again...what do you ad

    I have a 2009 Macbook Pro with 1T hdd 8GB Ram and ran Maverick without problem...Yosemite installation has me completely frozen, nothing works but the spinning ball...I had to force shutdown last night, and haven't turned it on again...what do you advise?  During installation emptied cache, etc. Backed up using time machine, fortunately.

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    4. Reinstall Yosemite: Reboot from the Recovery HD. Select Reinstall OS X from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.
    5. Reinstall Yosemite from Scratch:
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    How to Clean Install OS X Yosemite
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

Maybe you are looking for