Agentry: Edit Property from List View when scanning

Hallo,
i have a detail screen with a list view. The List View shows a collection with orders. The order properties are orderNumber, orderStatus and some other details. In the List View i create a single match action for the list view scanner. The property column orderNumber is set to scanner can filter on this column. So if i scan a orderNumber from the List View my match action starts.
In the action i want to set the orderStatus from the matched order to a new status. Example: i scan the order with orderNumber 001 and his orderStatus is "new". Then the orderStatus should set to "in process".
I try to create a SubActionStep for the single match action that have a transaction step and a apply step. In the transaction step i want set the orderStatus object. But i don't know how i can set a new value to the orderStatus property.
Please help me with this.
André
PS: my TransactionStep:
and my transaction: 

André,
In your transaction you will need to also have a property that maps to the Object -> OrderStatus property.  For the initial value of the property you will select Rule - Before Data Entry and then create your rule to return what the status should be set to when the transaction runs. 
Then when you Apply the transaction in your Scan Match action the value will be updated on the client.  If you also want to update the status in the Backend system you will also need an Update rule as Emanuel mentions to change the status of the Order in the backend system.
Hope this helps!
--Bill

Similar Messages

  • Event Receiver to get folder Names from List View Web Part

    Hi,
    We have a requirement i.e.
    On one of the page,there are some folders on the list view web part.
    Now through event receiver i should pick the folder names from list view web part and
    update the same in the list.
    If that names already exists in the list then we should leave without updating,if not we have to add folder name in the list.
    Please share your ideas regarding the same.
    Regards,
    Naga Sudheer M
    Thanks & Regards, Sudheer

    Hello,
    LVWP is just for displaying content of site so you need to associate your event receiver with actual list/library. You can create ItemAdded event receiver to check existing folder and create new if not existing. "sk2014" links are good to start.
    http://sharepoint.stackexchange.com/questions/59788/change-name-in-itemadding-event-receiver-or-create-a-new-item
    Let us know in case any doubt
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • APEX 4.2.3 Bug: Cascading Style Sheets cannot edit from list view

    APEX Builder page 4000:37
    List view shows name, notes and download columns. The name column should link through to CSS Edit page (39), but instead downloads the file.
    Workaround: Switch to the icon view, and click on the icon which takes you to the CSS edit page.
    Can the APEX team correct this, as switching to icon view is not intuitive.
    Regards
    Mark

    Hi,
    Austin, after reminding me what I knew - That it was an issue with the application - I had a further think, and thought maybe that it is something to do with the settings of the application.
    It turns out that it was a globalization setting.
    I had to go to Shared Components > Globalization Attributes, and change the Application Primary Language from "English (Australia) (en-au)" to "English (US) (en-us)".
    This fixed the problem and now I can view the data from the Oracle Financials Views.
    Thanks for assisting - this had me going for days.
    Amanda.

  • Days missing from list view if no event entered in iCal

    if i have no event entered on a particular day, the list view of iCal doesn't display the day. how can i still see the day in list view?

    The List view reveals the day/days with an event scheduled only. If there isn't an event scheduled for a particular day, that day will not be shown when using List view.
    The List view is a list of scheduled events only.

  • Files access report from List View Web Part

    Hi,
    I have a list,inside the list there are some folders and inside the folders there are some files.
    This list has been added to the aspx page as a list view web part.
    Now our requirement is to generate report on monthly basis of logged in user who accessed folders/files from the webpart.
    Is this possible through OOB/customisation please let me know.
    Regards,
    Sudheer
    Thanks & Regards, Sudheer

    Hi, 
    Did you check this link? If not please refer it. They are talking exactly what do you want in your requirement. 
    http://office.microsoft.com/en-in/sharepoint-server-help/view-audit-log-reports-HA102039795.aspx
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Still no way to remove stripes from list view finder windows?

    Is there really still no way to do get rid of these horrible stripes in list view finder windows? After all the complaints about them? Or has anyone found a way? (Or has apple granted one in one of the last updates?)

    esa ceduti wrote:
    What is green bar paper?
    moin, moin from hamburg
    JGG

  • How can I set the OS to show list view when I open a file in an application.

    So I know you can chose view options in Finder to always show files in list view there. But how do you set the OS to do the same when opening files in an application.

    Okay, cheers, so I guess it's stored in the application prefs. I just installed Snow L last week and it bothered me that everytime I opened a document I had to set my pref again. I wasn't aware that it was storing it for that particular app though cause I'm using so many differnt apps. But you are right, it does store for the individual app. Cheers for the answer!

  • Suddenly Genres column disappeared from List view

    Hi guys,
    I'm still running 8.0.2, and I can't figured out what happened; Genres column is disappeared from the list view and I couldn't find anyway to show it again.
    I also tried to reinstall iTunes 8.0.2, but nothing changed.
    Anyone know how to solve the problem?
    Thanks!

    Ok, just to make sure that I understand. In the list view in iTunes 8.0.2, you see artist & album column. In iTunes, just as the list starts it indicates what is listed in a gray bar. Right click on the bar & a menu should appear. From that list choose what you want to have displayed. The genera should be one of those options.
    If you are still experiencing issues at that point try the following article on Apple's support page:
    http://support.apple.com/kb/HT1224
    This will show you how to properly remove iTunes from your computer. After trying all of that with out any luck, call the support number & I know that an agent will be happy to help!

  • How to switch from different views when a common button is clicked on using View states concept

    Hi
    i have  made a single form for both Login Screen and Registration screen with two states :
    1. BaseState which is the curret state of  state of My application
    2.registrationstate 
    I have a common button for changing from one view to another view .(Not related to any of the state)
    At first the Login screen is loaded , and when the common  button is clicked , i want to switch to Registration Screen .
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
        <![CDATA[
    // Logic for common button needed .
        public function handleMe(event:MouseEvent):void
        ]]>
    </mx:Script>
        <mx:states>
            <mx:State name="registrationstate">
                <mx:SetProperty target="{formitem1}" name="label" value="Email"/>
                <mx:SetProperty target="{button1}" name="label" value="Change state to Login"/>
            </mx:State>
        </mx:states>
        <mx:Form x="248" y="158">
            <mx:FormItem label="User Name" fontWeight="bold" id="formitem1">
                <mx:TextInput/>
            </mx:FormItem>
        </mx:Form>
    <!-- This is my coomon button-->
        <mx:Button
            click="handleMe(event)"  
            x="297" y="261" label="Change state to Registration" id="button1"/>
    </mx:Application>

    Originally I could not get that to work, but now I have it working:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
      <mx:Script>
        <![CDATA[
          import mx.controls.Alert;
          public function handleMe(event:MouseEvent):void{  
            trace(this.currentState); 
            if(currentState=="" || currentState == null){
              mx.controls.Alert.show("base state");
              currentState = "registrationstate"; 
            }else if(currentState=="registrationstate"){
              mx.controls.Alert.show("registrationstate");
              currentState = ""; 
        ]]>
      </mx:Script>
      <mx:states>
        <mx:State name="registrationstate">
          <mx:SetProperty target="{formitem1}" name="label" value="Email"/>
          <mx:SetProperty target="{button1}" name="label" value="Change state to Login"/>
        </mx:State>
      </mx:states>
      <mx:Form x="248" y="158">
        <mx:FormItem label="User Name" fontWeight="bold" id="formitem1">
          <mx:TextInput/>
        </mx:FormItem>
      </mx:Form>
      <mx:Button click="handleMe(event)" x="297" y="261"
        label="Change state to Registration" id="button1"/>
    </mx:Application>
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • Property Inspector list view?

    In Dreamweaver 8 Help, under the topic "Making HTML
    attributes dynamic," it says:
    "If the attribute you want to bind does not have a folder
    icon next to it, click the List tab (the lower of the two tabs) on
    the left side of the inspector. The Property inspector’s List
    view appears."
    I can't seem to find any sort of List tab -- or any tab, for
    that matter -- on the left side of the Property Inspector. Is this
    Help topic wrong?
    (I thought initially that maybe it meant to say Tag Inspector
    instead of Property Inspector, but the Help topic then goes on to
    mention the List view's "(+) button"; there's no such button in the
    Tag Inspector's List view, so that's not it either.)

    You add it in the pageDef:
    <taskFlow id="forummain1"
    taskFlowId="/oracle/webcenter/collab/forum/view/taskflows/main-task-flow.xml#forum-main"
    activation="deferred"
    xmlns="http://xmlns.oracle.com/adf/controller/binding">
    <parameters>
    <parameter id="categoryId" value="2"/>
    <parameter id="forumId" value="2"/>
    <parameter id="showRecursiveForums" value="true"/>
    <parameter id="isCategoryView" value="true"/>
    </parameters>
    </taskFlow>
    Venkat

  • Removing stripes from list view in Finder not possible?

    I was just informed by the makers of Cocktail that you can no longer disable those nasty stripes in list view. Can anyone else confirm this? And if so why is there still an entry to disable it in the finder .plist file?
    J

    I agree 100%. Why would Apple insist in stuffing down our throat such an ugly background is beyond me.
    I "looked" around in the finder resources and there is this:
    /Volumes/Leone/System/Library/CoreServices/Finder.app/Contents/Resources/English .lproj/ListView.nib
    it's a compiled .nib, so it's not easy to look at it. The funny things is that if you read it as an xml file and compare it with a view brand new list view that has a striped background it seems that the bit for stripes is turned OFF by default. So maybe the stripes are changed procedurally not as a resource and maybe there is a way to change it.
    I'm not good enough unfortunately to look in the Finder code to see if that is true

  • Remove buttons (edit/delete) from bizcard view of ess application

    Hi,
    Can anybody tell me how to remove buttons (edit/delete) from the bizcardview of ess apllications? I am using JDI/developer studio for the changes in source code.
    Thanks,
    Sameer

    Hello Sameer,
    I am working on EP7.0 ,NW04s . I am also looking to modify the Bizcard screen for Family Members overview . I want to hide the Edit and Delete button for Divorsed Spouse ...Were you able to hide the buttons?
    Please let me know how can that be achieved ..
    Any help would be highly appreciated.

  • I cannot change from grid view to list view when i contol click on the downloads folder on the dock am i doing something wrong? if so how do i change the ?view in the dock

    when i contol click on the downloads icon in the dock i get the gris view . I thought if you control click, you are able to change the view to fan or list. am I doing something wrong.? Icheck to make sure the contol key is working by doing a screenshot and it works there. What am I doing wrong?

    Needs to be a Stack ?

  • ITunes 10 switches from Album List view to List view when clicking arrows

    I believe this issue existed at some point in iTunes 9 history before, but now it's showing up again with iTunes 10. What gives?

    It's not a problem, it just saves space.
    If a group of songs can't display an image without wasting space, it won't display the image. You'll find that the ones that do show images have space to allow it. Otherwise you'd end up with a lot of wasted space.
    Try sorting by album and see what happens.

  • How to disable elasticity property of list view in Windows Phone 8.1..?

    Hi,
    I am using the ListView control of Windows Phone 8.1. I am using data binding to populate the list items. It works fine. But I am able to pull the list down from the top( ie..When we pull down the list, fist item comes down and  the background color
    can be seen, and when released it goes back to normal view). As of I understand this is the default behavior of ListView. 
         How can I change this behavior..?
         It should not be rigid but scroll should end where the list item ends, not more than that...
        In shot I don't require any  elasticity property for the List 

    Use a custom control.
    Windows Phone/Windows Store

Maybe you are looking for

  • Right Justification in File Content Conversion

    I have a requirement where the data should be right justified in File content conversion of a Receiver Adapter . For example  it should be coming as   "      5864"  instead of "5864     ". Please help in completing this requirement.

  • Problem about tdp for sap

    I installed tdp for sap and scheduled a online backup ,  after the backup finished, I checked the log. all data files were backuped successfully.  but there is an error about rman.  I do not know how to do about that?  Could you help me?    I think t

  • TutWD_EmailInteractiveForm_Init.zip password protected

    Hi, I am trying to start with a tutorial on offline interactive form based on sending and receiving emails and in this tutorial there is a reference to TutWD_EmailInteractiveForm_Init.zip that can be used as a starting point (it is a predefined web d

  • Flash Download File will not open - Multiple tries

    Hello Folks, I've searched this site high and low and haven't found a solution to my problem. Trying to Download the newest version of Flash. My Vista(64bit) system shows it as a "File" that's 2,089KB in the downloads list. If I click on the file as

  • When I try to use ExportPDF, a box shows up that reads "retrieving current session status"

    When I try to use ExportPDF, a box shows up that reads "retrieving current session status" and I am unable to continue.