Aging is not appear ar RFKORD11

Hi,
I m running report at RFKORD11. But aging is not appearing. How it will appear.
can anybdy suggest me..
Regards,
Venkat....

Hi  Venkat,
This program prints customer statements and open item lists as letters for customers and vendors. The customer statement is a special type of account statement.
Execute the report..
Now in selection screen press Shift + F1 ==> It will give you documentation for the program...
You will have to provide correct data in Selection Screen to get the right output..
Some of the details you need to specify is as below... apart from these you can give some other parameters as well.. i have kept the values as example... you can choose the values as per your requriement....
Key dates for acct statement      25.07.2007               19.08.2009
Sort Var. for Correspondence ==> eg K1
Sort Var. for Open Item List  ==> eg   P1
Sort Var. for Clearing Trans.  ==> eg    P1
Correspondence              ==>    SAPR3
Hope it will solve your problem..
Thanks & Regards
ilesh 24x7
ilesh Nandaniya

Similar Messages

  • Vendor ref. no. not appearing in print preview of vendor aging report

    Dear all,
    Vendor reference number is not appearing in print preview of vendor ageing report,we have
    customized template AGE3 collection report,we have taken print outs before a month,vendor
    reference number get printed in report,now it is not appearing
    What could be problem ?
    Any one faces this issue ?
    We are using SAP Business One 2005 B (7.40.252)  SP: 00  PL: 41.
    Latest patch upgrade to PL:46 will solve the issue ?
    Jeyakanthan

    hi all,
    Thru a workaround i brought up vendor reference number in print preview/print,
    Applied formatted search in  journal remarks of ap invoice thru query
    SELECT $[OPCH.NumAtCard]
    ,this will populate vendor ref. no in journal remarks
    which can be displayed in details in aging report.
    Is there any solution other than above to bring vendor reference number in print ?
    Jeyakanthan

  • After installing FF 6.02 on Windows 7, the icon does not appear on the desktop and the program does not appear in the All Programs menu

    I just received a new laptop running windows 7 home premium and wanted to install Firefox on it. I tried to install the most recent version. When i installed 6.0.2, the icon did not appear on my desktop (it was a hidden file in my desktop folder) and the program group does not appear in the start menu's All Programs list. The program *does* run though, at least it did a few times. This happened whether i installed as administrator or not. Installing firefox 3.6.22, though, DID create the program group and desktop icon, and upgrading from there removed them again. installing other programs (e.g. vlc, trillian, etc.) did not cause this behavior. I also tried this both with and without McAfee's realtime protection running.

    Some people have found that an app (usually iBooks for some reason) hasn't appeared on a homescreen until after the iPad has been reset and has restarted : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    Also depending on what the app is have you got an age rating set in Settings > General > Restrictions that is hiding it ?

  • Reg : ALV Grid Refresh - Output not appearing

    Hi All ,
    Am calling a screen 100 at 3 different places.
    Though i use refresh_table_display , The value in the output table, say i_final changes, but while displaying the output , the whole screen is blank , even the container is not appearing in the output .
    Can you please help me with your inputs .
    Regards,
    Chitra

    yes it is good ...see the example...for your requirement..
    REPORT yztest .
    TYPE-POOLS: slis.
    Tables
    TABLES: mara.
    TYPES: BEGIN OF ty_name,
           name  TYPE char10,
           age   TYPE i,
           END OF ty_name.
    TYPES: BEGIN OF ty_marks,
           sub1   TYPE i,
           sub2   TYPE i,
           total  TYPE  i,
           END OF ty_marks.
    TYPES: BEGIN OF ty_phone,
           phnum TYPE char10,
           END  OF ty_phone.
    TYPES: BEGIN OF ty_addr,
           address TYPE char20,
           END  OF ty_addr .
    Output internal table
    DATA: itab TYPE TABLE OF ty_name,
          wa   TYPE ty_name,
          itab1 TYPE TABLE OF ty_marks,
          wa1  TYPE ty_marks,
          itab2 TYPE TABLE OF ty_phone,
          wa2  TYPE ty_phone,
          itab3 TYPE TABLE OF ty_addr,
          wa3  TYPE ty_addr.
    ALV Grid
    DATA: r_grid  TYPE REF TO cl_gui_alv_grid,
          r_grid1 TYPE REF TO cl_gui_alv_grid,
          r_grid2  TYPE REF TO cl_gui_alv_grid,
          r_grid3  TYPE REF TO cl_gui_alv_grid,
          g_dock TYPE REF TO cl_gui_docking_container,
          g_dock1 TYPE REF TO cl_gui_docking_container,
          g_dock2 TYPE REF TO cl_gui_docking_container,
          g_dock3 TYPE REF TO cl_gui_docking_container,
          g_dock4 TYPE REF TO cl_gui_docking_container,
          it_fieldcat  TYPE lvc_t_fcat,
          it_fieldcat1 TYPE lvc_t_fcat,
          it_fieldcat2 TYPE lvc_t_fcat,
          it_fieldcat3 TYPE lvc_t_fcat,
          wa_fieldcat TYPE lvc_s_fcat.
    DATA picture TYPE REF TO cl_gui_picture.
    DATA url(255).
    CLEAR url.
    DATA  init.
    START-OF-SELECTION.
      wa-name = 'test01'.
      wa-age = '1'.
      APPEND wa TO itab.
      wa-name = 'test02'.
      wa-age = '2'.
      APPEND wa TO itab.
      wa-name = 'test03'.
      wa-age = '3'.
      APPEND wa TO itab.
      wa1-sub1 = '11'.
      wa1-sub2 = '22'.
      wa1-total = wa1-sub1 + wa1-sub2.
      APPEND wa1 TO itab1.
      wa1-sub1 = '22'.
      wa1-sub2 = '33'.
      wa1-total = wa1-sub1 + wa1-sub2.
      APPEND wa1 TO itab1.
      wa2-phnum = '99999999999'.
      APPEND wa2 TO itab2.
      wa2-phnum = '888888888888'.
      APPEND wa2 TO itab2.
      wa2-phnum = '777777777777'.
      APPEND wa2 TO itab2.
      wa3-address = 'HItech City'.
      APPEND wa3 TO itab3.
      wa3-address = 'Secunderabad'.
      APPEND wa3 TO itab3.
      wa3-address = 'Hyderabad'.
      APPEND wa3 TO itab3.
      PERFORM display_image.
      CALL SCREEN 100.
    *& Module STATUS_0100 OUTPUT
    text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'LISTOUT1'.
      SET TITLEBAR 'LIST1'.
      wa_fieldcat-fieldname = 'NAME'.
      wa_fieldcat-seltext   = 'NAME OF THE STUDENT'.
      wa_fieldcat-coltext =   'NAME OF THE STUDENT'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR wa_fieldcat.
      wa_fieldcat-fieldname = 'AGE'.
      wa_fieldcat-seltext   = 'AGE OF THE STUDENT'.
      wa_fieldcat-coltext =    'AGE OF THE STUDENT'.
      APPEND wa_fieldcat TO it_fieldcat.
      wa_fieldcat-fieldname = 'SUB1'.
      wa_fieldcat-seltext   = 'SUBJECT1'.
      wa_fieldcat-coltext =    'SUBJECT1'.
      APPEND wa_fieldcat TO it_fieldcat1.
      wa_fieldcat-fieldname = 'SUB2'.
      wa_fieldcat-seltext   = 'SUBJECT2'.
      wa_fieldcat-coltext =    'SUBJECT2'.
      APPEND wa_fieldcat TO it_fieldcat1.
      wa_fieldcat-fieldname = 'TOTAL'.
      wa_fieldcat-seltext   = 'TOTAL'.
      wa_fieldcat-coltext =    'TOTAL'.
      APPEND wa_fieldcat TO it_fieldcat1.
      wa_fieldcat-fieldname = 'PHNUM'.
      wa_fieldcat-seltext   = 'PHONE NO'.
      wa_fieldcat-coltext =    'PHONE NO'.
      APPEND wa_fieldcat TO it_fieldcat2.
      wa_fieldcat-fieldname = 'ADDRESS'.
      wa_fieldcat-seltext   = 'ADDRESS'.
      wa_fieldcat-coltext =    'ADDRESS'.
      APPEND wa_fieldcat TO it_fieldcat3.
      IF g_dock IS INITIAL.
        CREATE OBJECT g_dock
                      EXPORTING
                      repid     = sy-repid
                      dynnr     = sy-dynnr
                      side      = g_dock->dock_at_left
                      extension = 300.
        CREATE OBJECT r_grid
                  EXPORTING
                  i_parent = g_dock.
      ENDIF.
      IF g_dock1 IS INITIAL.
        CREATE OBJECT g_dock1
                      EXPORTING
                      repid     = sy-repid
                      dynnr     = sy-dynnr
                      side      = g_dock1->dock_at_right
                      extension = 300.
        CREATE OBJECT r_grid1
                  EXPORTING
                  i_parent = g_dock1.
      ENDIF.
      IF g_dock2 IS INITIAL.
        CREATE OBJECT g_dock2
                      EXPORTING
                      repid     = sy-repid
                      dynnr     = sy-dynnr
                      side      = g_dock2->dock_at_top
                      extension = 100.
        CREATE OBJECT r_grid2
                  EXPORTING
                  i_parent = g_dock2.
        IF g_dock3 IS INITIAL.
          CREATE OBJECT g_dock3
                        EXPORTING
                        repid     = sy-repid
                        dynnr     = sy-dynnr
                        side      = g_dock3->dock_at_top
                        extension = 100.
          CREATE OBJECT r_grid3
                    EXPORTING
                    i_parent = g_dock3.
        ENDIF.
        IF NOT itab[] IS INITIAL.
          CALL METHOD r_grid->set_table_for_first_display
            CHANGING
              it_outtab       = itab
              it_fieldcatalog = it_fieldcat.
        ENDIF.
        IF NOT itab1[] IS INITIAL.
          CALL METHOD r_grid1->set_table_for_first_display
            CHANGING
              it_outtab       = itab1
              it_fieldcatalog = it_fieldcat1.
        ENDIF.
        IF NOT itab2[] IS INITIAL.
          CALL METHOD r_grid2->set_table_for_first_display
            CHANGING
              it_outtab       = itab2
              it_fieldcatalog = it_fieldcat2.
        ENDIF.
        IF NOT itab3[] IS INITIAL.
          CALL METHOD r_grid3->set_table_for_first_display
            CHANGING
              it_outtab       = itab3
              it_fieldcatalog = it_fieldcat3.
        ENDIF.
    if   g_dock4 is initial.
        CREATE OBJECT g_dock4
                      EXPORTING
                      repid     = sy-repid
                      dynnr     = sy-dynnr
                      side      = g_dock4->dock_at_bottom
                      extension = 100.
        CREATE OBJECT picture
                          EXPORTING parent = g_dock4.
        CALL METHOD picture->load_picture_from_url
          EXPORTING
            url = url.
        init = 'X'.
    endif.
      ENDIF.
    ENDMODULE. " STATUS_0100 OUTPUT
    *& Module USER_COMMAND_0100 INPUT
    text
    MODULE user_command_0100 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    *&      Form  display_image
    FORM display_image .
      DATA query_table LIKE w3query OCCURS 1 WITH HEADER LINE.
      DATA html_table LIKE w3html OCCURS 1.
      DATA return_code LIKE  w3param-ret_code.
      DATA content_type LIKE  w3param-cont_type.
      DATA content_length LIKE  w3param-cont_len.
      DATA pic_data LIKE w3mime OCCURS 0.
      DATA pic_size TYPE i.
      REFRESH query_table.
      query_table-name = '_OBJECT_ID'.
      query_table-value = 'ENJOYSAP_LOGO'.
      APPEND query_table.
      CALL FUNCTION 'WWW_GET_MIME_OBJECT'
        TABLES
          query_string        = query_table
          html                = html_table
          mime                = pic_data
        CHANGING
          return_code         = return_code
          content_type        = content_type
          content_length      = content_length
        EXCEPTIONS
          object_not_found    = 1
          parameter_not_found = 2
          OTHERS              = 3.
      IF sy-subrc = 0.
        pic_size = content_length.
      ENDIF.
      CALL FUNCTION 'DP_CREATE_URL'
        EXPORTING
          type     = 'image'
          subtype  = cndp_sap_tab_unknown
          size     = pic_size
          lifetime = cndp_lifetime_transaction
        TABLES
          data     = pic_data
        CHANGING
          url      = url
        EXCEPTIONS
          OTHERS   = 1.
    ENDFORM.                    " display_image
    *&      Module  EXIT  INPUT
          text
    MODULE exit INPUT.
      CALL METHOD g_dock->free.
      CALL METHOD g_dock1->free.
      CALL METHOD g_dock2->free.
      CALL METHOD g_dock3->free.
    ENDMODULE.                 " EXIT  INPUT

  • Monitoring info not appearing in console for one of the managed server

    Monitoring info not appearing in console for one of the managed server though server is running fine. It happens some times. I tried to get these info from executruntimeMBean, but that is also not returning any info for that server. The entry for that server get erased from running-managed-server.xml after some time. Any idea why?

    hi Arun,
    Please find the below diagnostic module config fom the condig.xml
    <server-diagnostic-config>
    <data-retirement-enabled>true</data-retirement-enabled>
    <wldf-data-retirement-by-age>
    <name>DomainHealth_WLDFRetirePolicy_m2ap5</name>
    <enabled>true</enabled>
    <archive-name>HarvestedDataArchive</archive-name>
    <retirement-time>2</retirement-time>
    <retirement-period>6</retirement-period>
    <retirement-age>1</retirement-age>
    </wldf-data-retirement-by-age>
    </server-diagnostic-config>
    This configuration was present earlier also, but it looks like the logs statrted accumulating recently due to some other changes made to console. There is nothing coming under the WLDF console extension in server admin console.
    Other than changing the start script, will it be fine to go the file location ./server/data/store/diagnostics/WLSDIAGNOSTIC**.DAT and delete the older file while the server is running now?
    Incase not posisible , an example on the change in startscript and the config.xml will b helpful
    thanks
    JZWL

  • Downloaded app did not appear on iphone

    I have downloaded the At&T app for my iphone ios7. In app store it shows downloaded but it has not appeared on my phone or my list of apps on my macbook.

    If it's not hidden by any restrictions that you might have set on Settings > General > Restrictions (e.g. age ratings for apps) and you've checked all your homescreens, then have you tried a reset to see if it appears after the iPad has restarted ? Press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Camera icon does not appear when use Google Image Search

    Hello,
    I am working on a much older macbook pro (2006) running OS 10.6.8 and Safari 5.1.10.
    Just the other day I reinstalled Safari, as some things appeared to not be working properly. However, there was nothing wrong with Google. SInce then, when I try to search by Google Image, the camera icon does not appear in the search bar. I have tried reinstalling Safari twice, but nothing changes. I have checked in Firefox and it shows up as expected.
    I have cleared the cache, deleted cookies, and cleared browser history. None of these steps have produced any changes.
    Also, I seem to have reverted to some earlier version of Google, since the search tools now appear on the top left, as show below.
    Can you please assist me in sorting this out so that Safari and Google perform as expected.
    Thank you very much.
    Val

    I posted that work around on the google forums and it actually came from the Apple forums from users 'Society Girl' and refined by 'spiza' from this thread.
    Google Reverted to Old Layout
    I called a friend at a tech magazine and he *cough* unofficially* cough* said via contacts it was a very deliberate move by Google... nothing to do with their upgrades or a hack coincidentally not working as a by product with old browsers.
    oh boy...
    'Google flushes out users of old browsers by serving up CLUNKY, AGED version of search'
    'Ad giant: Yeah, we did that deliberately'
    In a separate thread, as spotted by a Reg reader who brought this sorry affair to our attention, user MadFranko008 was able to show that even modern browsers - including the current version of Chrome - were apparently spitting out glitches on Apple Mac computers.
    Google then appeared to have resolved the search "bug" spotted in Chrome.
    http://www.theregister.co.uk/2014/08/31/google_search_browser_support/
    and on the BBC website...
    Google 'discourages' users of old browsers
    Google has started showing old versions of its search page to people using out-of-date versions of some web browsers.
    The problem was most pronounced among those using variants of Safari 5.1 and Opera 12.
    A Google message posted to the forum said the change was made to "encourage" people to upgrade their browser
    http://www.bbc.co.uk/news/technology-29012038
    Google and Apple are not the best of friends...
    I expect this will run a little longer 

  • After installing an App, the icon does not appear on the desktop?

    After installing an App, the icon does not appear on the desktop? Where would I find it?

    Some people have found that an app (usually iBooks for some reason) hasn't appeared on a homescreen until after the iPad has been reset and has restarted : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    Also depending on what the app is have you got an age rating set in Settings > General > Restrictions that is hiding it ?

  • Ipod shuffle 4th gen device does not appear in latest version iTunes

    ipod shuffle 4th gen device does not appear in latest version iTunes

    Mine is not recognized by PC-Windows, nor Itunes, and not by the "Mass Storage Device" removal Icon.  I've done all the diagnostic tests, Uninstalled Itunes then reinstalling, etc.etc to no avail. Yet never had a problem with old generation Ipod, (died of old age) and Gloria's Ipod after two plus years is going strong with never an issue.  I belive Apple is having significant problems with the 3/8 inch shorter newest Ipod generation.  If your Ipod is still under warranty you need to call Apple support.  

  • Residual payment in F-58 not appearing in table BSIK

    Good day,
    I noticed that if I made payment to vendor through residual process in F-58 the remaining outstanding payable using the new document number does not appear in table BSIK
    I have customized AP Aging report that I need to consider this document which only gather data from BSIK table.  How can I be able to consider those document that are still open but does not appear in table BSIK.
    Appreciate your help
    Thanks,
    Rod

    Hi,
    When you clear any invoice the invoice line item will disapper from the BSIK table and creates two items in the BSAK table.
    In BSAK table, for all clearing line items the field BSAK-XZAHL updates with the "X".
    If you find any entry in the BSIK table with "X" in the BSIK-XZAHL field, then that entry refers the residual item.
    and the clearing document number will be the residual document number.
    e.g.,
    1) Normal case
    Document 1001 (amoun rs.1000/-)- INVOICE
    Document 2001 (amoun rs.1000/-)- PAYMENT - here the clearing document is 2001
    2) Residucal case
    Document 1002 (amoun rs.1000/-)- INVOICE
    Document 3001 (amoun rs. 600/-)- RESIDUAL PAYMENT - here the clearing document is 3001 & also the residual invoice document is 3001
    SKS

  • Apple configurator - chrome app installs but icon does not appear

    Using AC 1.4, created profile, downloaded 14 apps including Google Chrome
    All apps appeared to install according to AC, got ding bell after signaling all tasks complete but
    When I go to the ipad and scroll to app page only 13 apps are present AND no chrome app icon
    No matter what I do to try and uninstall or reinstall the Chrome app does not appear, All other apps are OK and icon is on Ipad
    Thank you

    I belive that Chrome is an age restricted app. If you have any age restrictions set with a Configurator profile, MDM profile or on the iPad itself, Chrome will not be displayed.
    hope that helps.

  • I am trying to set up Sharing amongst several computers on my home network.  I have followed all the setup instructions but after completion Sharing does not appear in my iTunes window (on any of the computers I've set up).  There is no explanation why.

    I have been trying to set up Sharing between two computers on my network. I did this once and it worked.  However, when I try to set this up now the Sharing feature does not appear on the left side of the iTunes window (on either computer).  There is no explanation as to why not.  Is this a configuration problem, a network problem or what?   Can it be fixed?  I have tried turning sharing off and back on on both computers but to no avail.  What am I missing?  Thanks for any help you can provide.

    Hey innerev2003,
    Thanks for the question, and welcome to Apple Support Communities.
    If, while searching through your past purchases, items are unavailable to download and show a "Purchased" button, they are still on your computer. It may be best to search your iTunes library by clicking Music, then use the search bar at the top right.
    If you are completely sure the items are no longer in your library, try signing out of the iTunes Store, and then back in.
    iTunes 11 for Windows: Manage your iTunes Store account
    http://support.apple.com/kb/PH12507
    Thanks,
    Matt M.

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • External Hard Drive does not appear in finder

    We purchased a 1 TB G Drive Q from the Apple Store. It is connected to my wife's iMac running the most current update of Leopard by 800 firewire and appears on her desktop and works flawlessly with time machine. I am connected to the same drive intermittently with my MacBookPro also running the most current update of Leopard. i connect with 400 firewire. Initially the drive would not appear in the finder. for the initial backup, i turned the hard drive off and on and then it would appear and i did the backup but now when i connect to the 400 firewire port, it still doesn't appear in the finder. i would much prefer not to need to turn my back up drive off and on each time i want to use time machine. i should also mention that when i connect any of my garmin training devices or my power meter by USB it is recognized very quickly as a device in finder. any ideas? i understand this may be one of the problems fixed with SnowLeopard. thanks.

    I am not sure what you are attempting to do. I assume that you are not trying to connect two computers to the same external drive at the same time. That will definitely be problematic. In order to effectively use Time Machine with two Macs, you should partition the drive into two partitions. Also make sure that the drive is using a GUID partition scheme.
    bd

  • BPM Application Link does not appear in BPM Workspace (11.1.1.7)

    I spent huge amount of time to reveal why does that happens.
    All that follows further is valid for BPM Suite 11.1.1.7.
    The scenario.
    You developed a simple BPM process with Initiator pattern (maybe by following the "Quote Request" tutorial).
    But the application link did not appear in BPM Workspace.
    Here i'm skipping any kind of mistakes as "oh, incorrect swimlane", "oh, i did not include the user to the app role" and so on.
    At first, you should know about the "feature" - You have to attach task form to the Initiator Human Task to see the App Link.
    The simplest way to do that is to AutoGenerate task form (and deploy it, of course).
    Else the Appication Link will not appear.
    One exception to this rule - If your Task HAS NO PAYLOAD (no parameters) the Task Form is not required (to appearing of the Application Link).
    The second find is a bug (is think so).
    If you edited the Role that Attached to the swimlane of Initiator Task, you will not see the Application Link.
    If you look to organization.xml you will see something like this:
            <ns1:applicationRole id="StartTask.InitRole" isProcessRole="true">
                <ns5:name>StartTask.InitRole1</ns5:name>
                <ns1:processRole id="InitRole" name="InitRole1"/>
            </ns1:applicationRole>
    The Application Link will appear ONLY IF THE "applicationRole id", "applicationRole name" and "processRole id" have the same value.
    When you edit name of the application role in Organization Editor you change "applicationRole name" and "processRole name" values.
    After that "applicationRole id" != "applicationRole name" and the Link does not appear.
    How to fix?
    Just edit organization.xml (with external editor) - change the "applicationRole name" to the value of "applicationRole id".
    That allows to have value of "processRole name" something like "The Initiator Role" - that value appears in the BPMN diagram of process.
    Also you can edit organization.xml with Organization Editor and set the Name to the value of "applicationRole id".
    In that case the associated swimlane will have the same name as the "applicationRole id".
    Hope this helps somebody
    Oleg

    Flash Player is a browser add-on, not an executable program.
    If you need to open a local SWF file you will need the standalone player (Projector) from http://www.adobe.com/support/flashplayer/downloads.html
    Note that the download is the player, not an installer, so you will need to make the file association manually.

Maybe you are looking for