Getting report in a proper format

Hi all,
I have some doubts in getting my ans in a proper format.
I am not sure if it is possible.
I have 2 tables with the foll desc
desc table1
loc varchar2
name varchar2
desc table2
user number
locn varchar2
My intention is
to list out all locn of table1
with the locn name and the user who is authorised for tht locn
along with all other locns the user is authorised to.
Assuming the tables have foll recs
Table1
~~~~~~
Loc Name
103G OH
122A LA
146Q TX
Table2
~~~~~~
User Locn
79 103G
100 122A
100 142A
100 130B
120 146Q
120 146R
120 146S
120 146T
I am able to get the output as shown below.
Loc Name User Locn
103G OH 79 103G
122A LA 100 122A
122A LA 100 142A
122A LA 100 130B
146Q TX 120 146Q
146Q TX 120 146R
146Q TX 120 146S
146Q TX 120 146T
I would like to know if I can achieve the report
in either of the following way.
1, all locns tht an user is authorised should appear in the same row
Loc Name User Locn
103G OH 79 103G
122A LA 100 122A,142A,130B
146Q TX 120 146Q,146R,146S,146T
2, or something like this which would improve the readability.
Loc Name User Locn
103G OH 79 103G
122A LA 100 122A
-------------------142A
-------------------130B
146Q TX 120 146Q
-------------------146R
-------------------146S
-------------------146T
(actually I don't want hyphens to be displayed there I need spaces)
If any of you have solns pls reply
Thanks
Shyam.S

Hi Shyam,
A combination of the SQLPlus break command and an outer join should do it. Here is exactly what you are looking for:
SQL> create global temporary table Dec7Table1(c1 varchar2(4), c2 varchar2(2)) on commit delete rows;
Table created.
Elapsed: 00:00:00.00
SQL> create global temporary table Dec7Table2(c1 number, c2 varchar2(4)) on commit delete rows;
Table created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table1 values ('103G', 'OH');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table1 values ('122A', 'LA');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table1 values ('146Q', 'TX');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table2 values (79, '103G');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table2 values (100, '122A');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table2 values (100, '142A');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table2 values (100, '130B');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table2 values (120, '146Q');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table2 values (120, '146R');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table2 values (120, '146S');
1 row created.
Elapsed: 00:00:00.00
SQL> insert into Dec7Table2 values (120, '146T');
1 row created.
Elapsed: 00:00:00.00
SQL> break on code;
Elapsed: 00:00:00.00
SQL> select t1.c1 as code, t1.c2, t2.c1
2 from Dec7Table1 t1, Dec7Table2 t2
3 where t1.c1(+) = t2.c2;
CODE C2 C1
103G OH 79
122A LA 100
100
100
146Q TX 120
120
120
120
8 rows selected.
Elapsed: 00:00:00.00
SQL> spool off;
HTH.
-Raj Suchak
[email protected]

Similar Messages

  • How to get Report Output in csv format

    Hi,
    How can i get report Output in csv format, can any one tell me the word used for output type to get output in csv format.
    i have used XLS output type but it opens in excel format.
    conc.addLayout(appCode,concReqCode,"en-US","US",XLS);
    Thanks
    Babu

    Hi Babu,
    Till now in xmlpublisher there is no method to create file in csv format ,you have to create Excel file and then save it in .csv format.Unless and until ur using BI Publisher in which some work around are possible.
    Thanks

  • Not getting Tupples in the proper format in Syndicator

    Hi,
    I am working on SAP MDM 7.1 SP04. When I am trying to open a repository which contains 2 main tables in syndicator, the tuples does not show me the fields available in them. I mean tuples are just showing up as a single field (with pink flower indication and no plus sign). But tuples contain several fields.
    Has anyone experienced this problem before?
    Regards,
    Indraveer

    Hi,
    This is a know bug by SAP in SP04.
    Please use the following workaround.
    As a temporary workaround, please try the following steps:
    1. After choosing non-default main table in the Syndicator UI, you need
    to save that map despite the child items still being placed under wrong
    parents. Don't do any other change to the map, just save it right after
    switching the source table.
    2. Close the map.
    3. Then, load the saved map. The map validation code will fix it
    automatically.
    Now you can modify the map as necessary (create/modify destination
    items, change properties, map items, etc).
    Thanks,
    Priya.

  • How to get report in excel format instead of pdf from oracle forms.

    Hi,
    How to get report in excel format instead of pdf from oracle forms.
    Form & Report developer 10g
    report format .rdf

    create a report using report builder.
    call the report from form using the following procedure
    DECLARE
         RO_Report_ID REPORT_OBJECT;
         Str_Report_Server_Job VARCHAR2(100);
         Str_Job_ID VARCHAR2(100);
         Str_URL VARCHAR2(100);
         PL_ID PARAMLIST ;
    BEGIN
    PL_ID := GET_PARAMETER_LIST('TEMPDATA');
         IF NOT ID_NULL(PL_ID) THEN
    DESTROY_PARAMETER_LIST(PL_ID);
         END IF;
         PL_ID := CREATE_PARAMETER_LIST('TEMPDATA');
         RO_Report_ID := FIND_REPORT_OBJECT('RP2RRO');
         Add_Parameter(pl_id,'P_SUPCODE',TEXT_PARAMETER,:CONTROL.S_CODE);
    Add_Parameter(pl_id,'P_INVOICE_NO',TEXT_PARAMETER,:CONTROL.IN_NO);
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_FILENAME, 'INVOICE_REG_DETAILS.rep');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_EXECUTION_MODE, BATCH);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESTYPE, FILE);
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_DESFORMAT, 'SPREADSHEET');
         SET_REPORT_OBJECT_PROPERTY(RO_Report_ID, REPORT_SERVER, 'rep_dbserver_frhome1');
         Str_Report_Server_Job := RUN_REPORT_OBJECT(RO_Report_ID, PL_ID);
         Str_Job_ID := SUBSTR(Str_Report_Server_Job, LENGTH('rep_dbserver_frhome1') + 2, LENGTH(Str_Report_Server_Job));
         Str_URL      := '/reports/rwservlet/getjobid' || Str_Job_ID || '?server=rep_dbserver_frhome1';
         WEB.SHOW_DOCUMENT(Str_URL, '_SELF');
         DESTROY_PARAMETER_LIST(PL_ID);
    END;

  • Getting text/html message in proper format

    i want to send a message in html format by setting the message content as:
    msg.setContent(messageText, "text/html");where
    String messageText="hello";
    messageText="<html><body><font color=red>"+messageText+"</font></body></html>";
    if i do this i get it in proper format in red color.
    Now,i want it in the format below:for ex:
    " Dear xyz,
    How are You?
    I am fine.
    bye "
    but my problem is that if i am getting the content in the messageText variable by using request.getParameter() method from another page,then i get it as:
    " Dear xyz,How are You?I am fine.bye "
    please tell me the solution to my problem of getting in the proper format.
    thanx
    geeta

    i htink u can go in for pre formatting..
    <pre> Message Text </pre> ....This will output the messagein the same way as it was written..
    i did not try this..please tell me whether this solves ur problem.
    sriram

  • How to get report with following format

    Hi
    For tax reporting purpose, our company has to get a report in the following format so that they can export it to excel file.
    Customer    -       Name   -    address  -   sales/purchases
    The last column is the one we get from fd10n by entering customer number.
    Please let me know the easiest way to obtain it.
    Thanks
    PrinceofLight

    HI,
    Please consult your technical team they can easily  prepare zreport for that particular fields.
    K.satish

  • I get the following error when formatting a external hard drive. Partition failed with the error:  POSIX reports: The operation couldn't be completed. Cannot allocate memory

    I get the following error when formatting a external hard drive.
    Partition failed with the error: 
    POSIX reports: The operation couldn’t be completed. Cannot allocate memory
    I have a Macbook pro 13" A1278. I purchased it around december 2010. I have a HHD 3.5" drive desktop select II 1.5TB. I purchased it around Febuary/March 2011 to use with my Macbook pro. I formatted it and moved all my files to there, I got it so my macbook's hard drive wouldn't brake and I lose everything on my macbook.
    Is there any fixes?

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."

  • Print Report Output in PDF Format

    :-) Hiee E'body
    I generated the output of a Report(developed in Report Builder 6i) in PDF format.
    The output file is created properly and the PDF file gets displayed on the screen in proper format but when i try to print the PDF file it gets printed across the page instead of printing
    it straight.
    I have checked all page and printer settings but cannot find the reason for this.
    If anybody is aware of the solution to this problem please guide me for the same.
    Have a nice day !!
    Thanking You ..
    Vivek Kapoor

    hello,
    sounds like you have a problem with portrait/landscape orientation of your document.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                   

  • Unable to Export to CSV in a proper format using powershell

    Hi,
    I used below power shell command for retrieving all subsites and lists in a given site collection.
    Get-SPWeb  -site http://ingrtdev01:14444/sites/abc  -Limit All |
      Select -ExpandProperty Lists |  Export-Csv -NoTypeInformation -Path "D:report\Document.csv"
    The CSV file is generated,but it is not in proper format.It is having html controls.I need a proper report which shows all subsites and list names.Can any one please help.
    Regards,
    Praveen

    You're pulling back EVERYTHING. Select what you want e.g.:
    Get-SPWeb -site http://site -Limit All | select-object Title, URL | Export-Csv -NoTypeInformation -Path "C:\temp\test.csv"
    If this is helpful please mark it so. Also if this solved your problem mark as answer.

  • Would Like to Get Report of Daily Emails In and Out from Members to a DL Exchange version : 2007 I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity is it possible ?

    Would Like to Get Report of Daily Emails In and Out from Members to a DL
    Exchange version : 2007
    I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity
    is it possible ?

    Well, distribution groups don't really have a concept of "in" or "out". They only serve to distribute messages sent to them -- unless you're asking to know who was a member of the distribution group at the time a message was sent to the DL.
    Message tracking logs hold the information you want, though. You'd have to look for EXPAND events that reference the distribution group and take the sender's e-mail address from that event. If the DL is a simple one that's not a member of any other groups
    you could also look for RECEIVE events sent to the e-mail address of the group and get the sender's name from that event.
    You can use Powershell extract the rows of data from the logs, but you'll have to write the code to get the data out of those rows and into a format you want. Perhaps LogParser could be useful in place of Powershell?
    --- Rich Matheisen MCSE&I, Exchange MVP

  • Xml report output in excel format without using options tab in EBS

    How to get xml publisher report output in excel format without using options tab in EBS?
    I am getting XML Publisher report output in excel format by using options tab while submitting the concurrent request .
    But i want to get excel output automatically.
    Can anyone give idea to get XML publisher Report output in excel without selecting options tab.
    Thanks in advance
    Sandeep V

    Hey Sandeep,
    I am working on a similar format for a report and if possible can you please give me some guidelines. I have initially created reports using XML Publisher, but for those , the output preview format was PDF. So, if I select the preview format as EXCEL will it give me output in Excel and for this to happen, how do I define the rtf template. I believe the working will be same as for PDF, create a rdf report, get output in XML and apply the template to get the data in Excel or there is something different to this.
    Thanks,
    Sunil

  • In fnd_request.add_layout how to get the layout in EXCEL Format

    Hi All,
    After applying the patch (5688014), in WSH_DOCUMENT_SETS package fnd_request.add_layout is getting called as below. I am getting the output in PDF format, when called from Document sets.
    But my requirement is i want the report to be in EXCEL Format. Is there any other patch is available to get the report in EXCEL when called from Document Sets/ Or any other alternative solutions to acheive this..
    Can any body help me on this...
    l_print_pdf := 'N';
    IF(l_output_file_type = 'XML' ) THEN
    IF l_debug_on THEN
    WSH_DEBUG_SV.logmsg(l_module_name, 'template' || l_template_code);
    END IF;
    IF (l_template_code is not NULL) then
    IF l_nls_lang.COUNT <> 0 THEN
    select iso_language,iso_territory into l_language, l_territory
    from fnd_languages
    where language_code = l_nls_lang(l_nls_count).lang_code;
    ELSE
    select iso_language,iso_territory into l_language, l_territory
    from fnd_languages
    where language_code = userenv('LANG');
    END IF;
    IF l_debug_on THEN
    WSH_DEBUG_SV.logmsg(l_module_name, ' language ' || l_language || ', territory ' || l_territory);
    END IF;
    l_ret_status :=fnd_request.add_layout(l_appl_short_name,
    l_template_code,
    l_language,
    l_territory,
    'PDF');
    IF l_ret_status THEN
    l_print_pdf := 'Y';
    ELSE
    IF l_debug_on THEN
    WSH_DEBUG_SV.logmsg(l_module_name, 'Error returning from fnd_request.add_layout :'||x_return_status);
    END IF;
    wsh_util_core.add_message(x_return_status);
    END IF;
    ELSE
    IF l_debug_on THEN
    WSH_DEBUG_SV.logmsg(l_module_name, 'No template was specified for this report. Hence could not generate the pdf output' );
    END IF;
    fnd_message.set_name('WSH', 'WSH_NO_DEFAULT_TEMPLATE');
    fnd_message.set_token('CONC_PROG_NAME', document.user_concurrent_program_name);
    x_return_status := wsh_util_core.g_ret_sts_error;
    wsh_util_core.add_message(x_return_status);
    END IF; --} If template_code is not null
    END IF; --} If l_output_file_type = 'XML'
    Thanks in Advance..

    Hi,
    I tried your approach and got the following error..
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 14808954 on node FAHQSNA09SFTD07 at 24-JAN-2012 04:13:08.
    Post-processing of request 14808954 failed at 24-JAN-2012 04:13:09 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    After analysing the log i found there is some issue in OPP Service log.
    Below is the service log error..
    It says there is 'No corresponding LOB data found' in below query
    SELECT l.file_data file_data, DBMS_LOB.getlength (l.file_data) file_length,
    l.LANGUAGE LANGUAGE, l.territory territory,
    b.default_language default_language,
    b.default_territory default_territory,
    b.template_type_code template_type_code,
    b.use_alias_table use_alias_table, b.start_date start_date,
    b.end_date end_date, b.template_status template_status,
    b.use_alias_table use_alias_table,
    b.ds_app_short_name ds_app_short_name,
    b.data_source_code data_source_code, l.lob_type lob_type
    FROM xdo_lobs l, xdo_templates_b b
    WHERE l.application_short_name = :1
    AND l.lob_code = :2
    AND l.application_short_name = b.application_short_name
    AND l.lob_code = b.template_code
    AND (l.lob_type = 'TEMPLATE' OR l.lob_type = 'MLS_TEMPLATE')
    AND ( (l.LANGUAGE = :3 AND l.territory = :4)
    OR (l.LANGUAGE = :5 AND l.territory = :6)
    OR ( l.LANGUAGE = b.default_language
    AND l.territory = b.default_territory
    But i see the data for this query.
    Please let us know is there any setups that needs to be done to achieve this..
    below is the OPP log error...
    Thanks in Advance.
    [1/24/12 4:13:09 AM] [710131:RT14808954] Executing post-processing actions for request 14808954.
    [1/24/12 4:13:09 AM] [710131:RT14808954] Starting XML Publisher post-processing action.
    [1/24/12 4:13:09 AM] [710131:RT14808954]
    Template code: EMP_DETAILS
    Template app: EMP_DETAILS
    Language: en
    Territory: US
    Output type: EXCEL
    [1/24/12 4:13:09 AM] [UNEXPECTED] [710131:RT14808954] java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA,DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.DS_APP_SHORT_NAME DS_APP_SHORT_NAME, B.DATA_SOURCE_CODE DATA_SOURCE_CODE, L.LOB_TYPE LOB_TYPE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE L.APPLICATION_SHORT_NAME= :1 AND L.LOB_CODE = :2 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND (L.LOB_TYPE = 'TEMPLATE' OR L.LOB_TYPE = 'MLS_TEMPLATE') AND ( (L.LANGUAGE = :3 AND L.TERRITORY = :4) OR (L.LANGUAGE = :5 AND L.TERRITORY = :6) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ))
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.initStream(TemplateInputStream.java:402)
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.<init>(TemplateInputStream.java:235)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.getTemplateFile(TemplateHelper.java:1163)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3450)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3547)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:290)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)

  • To arrange in a proper format in SAP script

    Hi all,
    I have to display the text in the below format:
    Column 1                                                                                Column2
    Remit info                                                                               ACH/ info
    Alexandra Technopark                                                           Bank Of America, Singapore
    I have maintained this in window bank_details:
    IF &NEXTPAGE& = '0' AND &BSID-BUKRS& EQ '0729'
    POSITION XORIGIN '2,0' MM YORIGIN '+158' MM
    BOX HEIGHT '30' MM FRAME 10 TW INTENSITY 15
    BOTTOM
    INCLUDE F_0729_HEADER_A OBJECT TEXT ID ADRS
    INCLUDE F_0729_FOOTER OBJECT TEXT ID ADRS
    ENDBOTTOM
    ENDIF
    And getting in the below format:
    Remit info:
    Alexandra Technopark
    ACH/ info
    Bank Of America, Singapore
    Please suggest me how to arrange it in proper format.
    Appreciate your help.
    Thanks,
    Kiran
    Edited by: kiran162 on Feb 3, 2012 2:30 AM

    Hi Kiran,
    I did not mean you choose the tag column for the 2nd include in the sapscript editor. I meant you should edit your text of the 2nd include in the tcode for standard text SO10 with the given object text name and text ID. But this is just applicable if each of your include text as only 1 line.
    Here's the details:
    + Go to tcode SO10, enter the text name as ' F_0729_FOOTER' and text ID as 'ADRS' and your language (I guess EN).
    + Go inside, choose the tag column for the text as continuous text ( yah, blank indicator again).
    But each of you include text has more than 1 line, so this is not applicable. You can ignore my third suggestion. I have another suggestions for you here:
    + No1: you can present like in the followings in your sapscript editor:
       Remit info:
                 ACH/ info      // blank inditor means continuous text
           /:   INCLUDE F_0729_HEADER_A OBJECT TEXT ID ADRS
           /:   INCLUDE F_0729_FOOTER OBJECT TEXT ID ADRS      // in SO10 for this text, leave the tag column blank
    This means you should hard-code the name of the address info.
    + No 2:   - You can create 2 global text variables in the printing program.
                  - Use FM 'READ_TEXT' to read your address from the text pool. Store in 2 text table.
                  - Loop at the text table, transfer data from the text table to the 2 global text variable above, and write the window and the element here as well.
                  - You can use some wrapping FM to wrap the text in each variable.
                  - Then in the sapscript form, you just put the 2 global variables in the same line.
    Hope you can complete the requirement.
    Thanks,
    Paul

  • Any way to generate trace report from the TKPROF formatted trace file?

    As titled.
    Is there any automatically way to make a report on SQL tuning report from the TKPROF formatted trace file(or from the dynamic performance views)
    Paul

    Dave,
    That's what report queries are for, take a look at shared components. Walk through the create report query wizard, and on the final page, you'll get a URL that you can use to integrate this with your page. You'll find the same URL when editing your report query afterwards.
    Alternatively, suppose you already have you report page, but don't want to always go there, you can just copy that report region print link (reference my answer to your previous question), and make that the target of a branch or from another page.
    Regards,
    Marc

  • Printing report output in PDF format

    Hi,
    I want to know what are the settings needed to print a report output in PDF format, while executing the report from Oracle applications (Ver 11.5.6).
    Report is executed as a concurrent request from Oracle applications.
    Normally when we run the report from Oracle applications, output will be opened in a internet browser(IE) in HTML format. But I want the output to be opened in PDF format instead of HTML.
    OS: Sun Solaris 2.8.
    Thanks & Regards,
    Sarish

    Hi Sarish
    Please contact Oracle Support for an answer or to customise your application so that it prints a report output in PDF Format.
    To get PDF output you must run report/job with DESFORMAT=PDF in the command line instead of DESFORMAT=HTML/HTMLCSS.
    Regards
    Sripathy

Maybe you are looking for

  • Error - Variant &0000000000000 does not exist in Job Logs

    Hi All, We have job SWWDHEX running under two different Ids at exactly same time and similar varaint in SAP system: Job                              CreatedB Status          Start date Start time SWWDHEX           BASISBATCH   Canceled        12/13/2

  • VLC crashes on KDE

    So i've had this problem for a while and i'm assuming it's Qt related. Whenever i open VLC and click open > file or directory, it hangs, and i have to force close it. I've tried --reset-config and i've also tried numerous versions from the aur, inclu

  • I can't download apps from my app store

    I can't download apps from my app store. Every time I try to download an app it tells me an error has occurred

  • Problem Playing DVD after I build it?

    When I preview everything works great. When check project there is no problems or errors. There is no errors when it build the DVD. When it is done building the DVD, I put the DVD back in to make sure it works and nothing happens, the DVD dosen't eve

  • Appropriation Request Workflow

    Hi, I would like to know if users will be able to change the data in the appropriation request if it is already with the approver for approval.  I want to know if the system will actually "lock" the Approriation Request object when it is in for appro