Can't submit manual column link

Hi to all,
</br>
I've searched many an hour in the forum but could't find a solution for my problem.</br>
When I click on the column link the page will not submit</br>
and an after submit process will not be executed.
</br>
</br>
here my sql-query for the report
</br>
</br>
SELECT
</br> CASE
</br> WHEN status = 1 THEN
</br>     '&lt;a href="'
</br>   || 'f?p=&APP_ID.:400:&SESSION.::&DEBUG.::'
</br>   || 'P400_AUFTRAG,P400_POS,P400_STATUS:'
</br>   || nr || ','||to_char(pos)','|| status
</br>   || '"&gt;'
</br>   || '&lt;img src="#IMAGE_PREFIX#selbst/greenbal.gif"&gt; entfernen'
</br>   || '&lt;/a&gt;'
</br> ELSE
</br>     '&lt;a href="'
</br>   || 'f?p=&APP_ID.:400:&SESSION.::&DEBUG.::'
</br>   || 'P400_AUFTRAG,P400_POS,P400_STATUS:'
</br>   || nr || ','||to_char(pos)','|| status
</br>   || '"&gt;'
</br>   || '&lt;img src="#IMAGE_PREFIX#selbst/redball.gif"&gt; zufügen'
</br>   || '&lt;/a&gt;'
</br>END
</br>  slitter,
</br>  liefdat,
</br>  nr ||'_'||to_char(pos) auftrag,
</br>  audat,
</br>  erfasser,
</br>  menge,
</br>  me,
</br>  artikel,
</br>  werk,
</br>  status
</br>FROM oa_edit_vw
</br>
</br>
an here the process syntax (after submit)
</br>
</br>
</br>IF nv('P400_STATUS') = 0 THEN
</br>  INSERT INTO oa_edit_t(id_oaed,nr,pos,erdat,erfasser,status)
</br>  VALUES (
</br>     oaed_seq.nextval,
</br>     v('P400_AUFTRAG'),
</br>     nv('P400_POS)',
</br>     trunc(sysdate),
</br>     v('APP_USER'),
</br>     1);
</br>ELSE
</br>   DELETE FROM oa_edit_t
</br>    WHERE nr = v('P400_AUFTRAG')
</br>     AND pos = nv('P400_POS');
</br>END IF;
</br>COMMIT;
</br>
</br>
please help me!
</br>
</br>
lothar

Hi,</br>
</br>
doesn't work either. But in the meantime I found a diffrent way.
</br>
</br>I added a sql-query to find out if the record is
</br>still in the database or not.</br>
</br>Depending on that result I can control the process.
</br>
</br>
</br>DECLARE
</br>   result VARCHAR2(20);
</br>BEGIN
</br>  SELECT COUNT(*) INTO result
</br>    FROM oa_edit_t
</br>   WHERE nr = v('P400_AUFTRAG')
</br>    AND pos = nv('P400_POS');
</br></br>
</br>IF (result = 0 AND nv('P400_STATUS') = 0) THEN
</br>  INSERT INTO oa_edit_t(id_oaed,nr,pos,erdat,erfasser,status)
</br>  VALUES (
</br>     oaed_seq.nextval,
</br>     v('P400_AUFTRAG'),
</br>     nv('P400_POS)',
</br>     trunc(sysdate),
</br>     v('APP_USER'),
</br>     1);
</br>ELSIF (result > 0 AND nv('P400_STATUS') = 1) THEN
</br>   DELETE FROM oa_edit_t
</br>    WHERE nr = v('P400_AUFTRAG')
</br>     AND pos = nv('P400_POS');
</br>ELSE null;
</br>END IF;
</br> COMMIT;
</br>END;
</br>
</br>Now everything works fine.
</br>Vikas, many thanks for your help. It did the very most.
</br>
</br>
lothar

Similar Messages

  • Can I submit a jsp link to provide the XML feed from a dabase?

    Will a .jsp file that querries our database to provide formatted & tagged iTunes XML be allowed as a valid podcast link through iTunes? We are trying to provide our clients with multiple-title XMLs. This would be a great way for us to manage/schedule the data. Are there any alternative methodologies for database-driven XML that iTunes can accept? I think we can do .php as well.
    Thanks in advance.

    Throw this open to the community to chip in, but off the top of my head.... thinking of something along lines of:
    Create 3 web apps,
    Product (Fields Product Name & ProductID)
    Zipcode (Fields Area Desc & Zipcode)
    Freight Rates (Fields FreightRateID (made up of ProductID_ZipCode), Freight Rate)
    Create a web app search form for Web App Freight Rates with:
    Product select, with options drawn from web app 1 using ProductID for value.
    Zipcode select, with options drawn from web app 2 using Zipcode for value.
    Hidden FreightRateID field.
    Once a visitor has selected their product and zipcode, using javascript concatenate the selected ProductID with selected Zipcode.
    This will produce a FreightRateID (e.g. PROD1_4567), which can be loaded into the hidden FreightRateID field.
    When submitted, it will perform a web app search for a Freight Rate that matches the chosen product and zipcode, ie. FreightRateID.
    To make entry of the freight rates easier, maybe add 2 datasource fields to the Freight Rate web app for Product and Zipcode.
    Then create a front end web app add/edit (via a secure zone) to allow entry to be done by:
    Select product, select zipcode then enter freight rate.  (FreightRateID can be created and populated in same way as search above)

  • Column Link page as a pop up window instead of full page.

    I have set up a column link to pass some variables and see a nice result as a page.
    I would rather see that page show up as a pop up window rather than as a full screen page. Where can I tell my column link to show the page as a smaller version than full screen page please?
    Thanks in advance !
    JMM.
    Edited by: metropoj on Nov 16, 2010 10:43 AM

    Hi Tarun,
    Is this code set at the URL TARGET of the button?
    Have you already tried with another browser?
    Try once this way: javascript:popUp2('f?p=&APP_ID.:3:&SESSION.::&DEBUG.:::',400,300)PS*: When you're going to post any code use as delimiter.
    Regards,
    Alan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Column link to  populate a form on the same page

    Hello all,
    Can anyone tell me how I can use a report column link -- that when the link is clicked will populate all of the text fields of my form which is on the SAME page? The form has about 10 fields, and their is only (3) Name/Value associations for a column link.
    Thanks,
    Jeff

    Great! Thanks for the advice. It appears that when you do that, it changes the column link attributes to a URL and puts the name/values in the URL -- when I first clicked on the link, it would not work -- said that it could not find item P6_FAX. I looked at the URL and then I deleted some of the spaces after the commas in the URL and it works great.
    Thanks!
    Jeff

  • Submit Action and Redirect page in Tabular form Column Link

    Hi All,
    I have a scenario to submit the current page and redirect to another page with the arguments, when i clink on the link which is created using column link in Report Attributes.
    I can able to perform the submit action, but redirection is not happening.
    Created a column link on non database column by providing
    Link Attribute :     <a href="#" onclick="doSubmit('SAVE')">#FAM_DET#</a>
    Target : Page in this application
    Page : 7
    Item name : P7_TRAVEL_REQ_ID
    item Value: #TRAVEL_REQ_ID#
    Item name : P7_TRAVEL_REQ_LINE_ID
    item Value: #TRAVEL_REQ_LINE_ID#
    Can anyone help me out to resolve this.

    811598 wrote:
    Please update your forum profile with a real handle instead of "811598".
    When posting a question here, always include the following information:
    Full APEX version
    Full DB/version/edition/host OS
    Web server architecture (EPG, OHS or APEX listener/host OS)
    Browser(s) and version(s) used
    I have a scenario to submit the current page and redirect to another page with the arguments, when i clink on the link which is created using column link in Report Attributes.
    I can able to perform the submit action, but redirection is not happening.
    Created a column link on non database column by providing
    Link Attribute :     <a href="#" onclick="doSubmit('SAVE')">#FAM_DET#</a>
    Target : Page in this application
    Page : 7
    Item name : P7_TRAVEL_REQ_ID
    item Value: #TRAVEL_REQ_ID#
    Item name : P7_TRAVEL_REQ_LINE_ID
    item Value: #TRAVEL_REQ_LINE_ID#
    Remove the link attribute (what you have used there is not the correct way to use this property anyway).
    Change the target page to the same page as the report.
    Set the Column Link Request property to BRANCH_TO_PAGE_ACCEPT|SAVE.
    Create an On Submit: After Processing (After Computation, Validation, and Processing) branch to page 7, conditional on the SAVE request.
    If the SAVE request can be triggered by something other than the report link (e.g. a Save button) then use another request value that will trigger the required page process in the link request and branch condition, e.g. BRANCH_TO_PAGE_ACCEPT|APPLY and APPLY respectively.
    Note that there is a bug in BRANCH_TO_PAGE_ACCEPT processing in APEX 4.2.3 and a patchset exception must be installed for this approach to work on this APEX release.

  • How can I add encoding code before column link works?

    Hi, guys:
    I have a question that may be silly. I want to pass multiple parameters of a row in an interactive report to another page through column link by specifing URL. It works OK. However, I found some of the parameters such as address in the report including character "#" or ".", parameters behind these characters cannot be passed by APEX. I know I need to encode it, and I know how to encode it. But I do not know where to add PL/SQL code so whenever user click the column link, the address can be encoded at first then to pass to another page?
    Thanks in advance.
    Sam

    Always post code wrapped in tags<tt>\...\</tt> tags to preserve formatting and special characters.
    lxiscas wrote:
    I am using such a query in page 211, Offender_id is primary key, In the column of MAP, I add URL as follows to pass values to page 3006 to generate a google map (I am using APEX 4.1):
    f?p=&APP_ID.:3006:&SESSION.::&DEBUG.::P3006_H_OFFENDER_NAME,P3006_H_OFFENDER_ID,P3006_H_ADDRESS_LATITUDE,P3006_H_ADDRESS_LONGITUDE,P3006_H_PHYSICAL_LATITUDE,P3006_H_PHYSICAL_LONGITUDE,P3006_H_ADDRESS,P3006_H_PHYSICAL_ADDRESS:#Offender Name#,#Offender ID#,#Address Latitude#,#Address Longitude#,#Physical Latitude#,#Physical Longitude#,#Address#,#Physical Address#The problem is Address and Physical Address canot passed successfully.
    select distinct 'MAP','Detail',so.doc_number as "DOC Number", so.offender_id as "Offender ID", so.first_name||' '|| so.middle_name||' '||so.last_name as "Offender Name",
    so.date_of_birth as "Date of Birth",
    (select sc1.description from sor_code sc1 where sc1.code_id=so.race) as "Race",
    (select sc2.description from sor_code sc2 where sc2.code_id=so.sex) as "Sex",
    nvl2(sl.address1, sl.address1||' '||sl.address2 ||' '||sl.city ||' '||sl.county||' '||(select sc3.description from sor_code sc3 where sc3.code_id=sl.state)||' '||sl.zip, 'Unkown Address')  as "Address",
    nvl2(sl.physical_address1,sl.physical_address1||' '||sl.physical_city ||' '||sl.physical_county||' '||(select sc4.description from sor_code sc4 where sc4.code_id=sl.physical_state)||' '||sl.physical_zip, 'Unkown Address')  as "Physical Address",
    sl.status as "Status",
    sl.jurisdiction as "Jurisdiction",
    to_char(sl.ADDRESS_LATITUDE) as "Address Latitude",to_char(sl.address_longitude) as "Address Longitude",
    to_char(sl.physical_address_latitude) as "Physical Latitude",to_char(sl.physical_address_Longitude) as "Physical Longitude",
    decode(rox.habitual, 'Y', 'Habitual', '') as "Habitual",
    decode(rox.aggravated, 'Y', 'Aggravated', '') as "Aggravated",
    rox.status as "Registration Status",
    rox.registration_date as "Registration Date",
    rox.end_registration_date as "End Registration Date"
    from sor_location sl, sor_offender so, sor_code sc, registration_offender_xref rox, sor_last_locn_v sllv
    where rox.offender_id=so.offender_id
    and sllv.offender_id(+)=so.offender_id
    and sl.location_id(+)=sllv.location_id
    and rox.status not in ('Merged')
    and rox.reg_type_id=1
    and upper(rox.status)='ACTIVE'
    and nvl(rox.admin_validated, to_date(1,'J'))>=nvl(rox.entry_date, to_date(1,'J'))
    and ((so.first_name is not null and so.first_name like '%'||:P21_TF_FIRST_NAME||'%')
    or (:P21_TF_FIRST_NAME is null)
    and ((so.last_name is not null and so.last_name like '%'||:P21_TF_LAST_NAME||'%')
    or (:P21_TF_LAST_NAME is null))
    and ((sl.address1||sl.address2 is not null and sl.address1||sl.address2 like '%'||:P21_TF_ADDRESS||'%')
    or (:P21_TF_ADDRESS is null))
    and ((sl.city is not null and sl.city like '%'||:P21_TF_CITY||'%')
    or (:P21_TF_CITY is null))
    and ((sl.county is not null and sl.county =:P21_SL_COUNTY)
    or (:P21_SL_COUNTY is null))
    and (((select sc5.description from sor_code sc5 where sc5.code_id=sl.state and sc5.description=:P21_SL_STATE) is not null )
    or (:P21_SL_STATE is null))
    and ((sl.zip is not null and sl.zip =:P21_TF_ZIP_CODE)
    or (:P21_TF_ZIP_CODE is null))
    I'd suggest passing <tt>sor_offender.offender_id</tt> and <tt>sor_location.location_id</tt> to items on page 3006. Retrieve the derived values for <tt>P3006_H_OFFENDER_NAME, P3006_H_ADDRESS_LATITUDE, P3006_H_ADDRESS_LONGITUDE,P3006_H_PHYSICAL_LATITUDE, P3006_H_PHYSICAL_LONGITUDE, P3006_H_ADDRESS, P3006_H_PHYSICAL_ADDRESS</tt> using queries in a Before Header process.

  • Can Not Find "Submit a Podcast" link

    I have a podcast which is available through iTunes but it not listed in the iTunes store. I have reviewed the instructions on how to this but can not find the "submit a podcast" link which is supposed to be on the "podcasts" page of the iTunes store.
    Can someone help me please. Thanks!

    You will need to be logged in to the iTunes Store. Enter this URL in your browser: https://phobos.apple.com/WebObjects/MZFinance.woa/wa/publishPodcast.
    This will open iTunes to a pane where you can submit the podcast: again, enter the feed URL, not the URL of the media file. iTunes does not store your media, it just uses the contents of the feed file to provide the details and access on the iTunes Store. (None of this will cost you anything).
    It may take some days before the podcast is accepted, since each new podcast has to be checked. You may be rejected for unauthorized use of copyright material, bad language and sexual content, libel, or racist comments - but of course you would never do any of those things, so you should be OK.
    When your podcast is accepted, iTunes will give you a URL which will open iTunes to your podcast. You will also eventually be able to search on its title, though this can take some time to become available. However searching just on the category in the iTunes Store is most unlikely to throw up your podcast. There are thousands of podcasts out there, and it would be quite impossible to display on one page the entire list for any category. What you see are 'featured' podcasts, chosen by Apple as being special; please see this Tech Note: note that there is no way you can influence the selection other than making your podcast really special (bribery won't work).
    When you want to add an episode, upload it and amend and reupload the feed file as described above (new episodes above the old ones). It usually takes at least 48 hours for the new episode to appear, though subscribers see the changes immediately (since they are accessing the feed directly, not through the Store). Regrettably the iTunes Store provides no way of monitoring the number of people who visit your podcast.

  • How can you Keep column links when using export CVS

    I am exporting a report using Report Template of export: CVS. This report is a copy of a report that have column links that work. However, when I export the report using export: CVS the excel file no longer has the links in the columns.
    How can I get the link to be transferred to excel?
    Thanks

    446336,
    When you export anything as CSV type it is a plain ordinary text file - MS Excel opens it because it has knowledge of this type of file (ie text delimited by comma/tab).
    You seem to need a bit more than that - best if you search the forum for ¨excel¨ or maybe ¨report exports¨. I believe there are some threads here that may help - I think it needs java or some fancy PL/SQL to do it.
    Greg

  • Can't get column link in report to work

    I'm trying to get a column link in a report to work and I keep on getting the error "Query cannot be parsed, please check the syntax of your query. (ORA-00972: identifier is too long)" The code looks like this:
    SELECT IDDR_NAME AS EDIT, IDDR_NAME AS VIEW_DETAILS, IDDR_NAME,
           IDDR_VINTAGE_YEAR, DATE_DUE, DATE_SUBMITTED,
           SUMMARY_DESCRIPTION, RSTATUS, SSTATUS,
           '<a href='"'||:APP_ID||':287'||:APP_SESSION||'">'||link||'</a>'
    FROM IDDRI've tried the above and other variations of link syntax that I found in other posts on the forum but everything seems to give me an error. I need to put think link into the code because it will eventually be a conditional link.
    Thanks
    - Brian

    Thanks for the replies.
    After I posted, I tried something a little different that is sort of working. I tried making my link like so:
    '<a href=''f?p=&APP_ID.:287:&SESSION.::&DEBUG.">LINK</a>'(The '#' is really a double quote but I had to make it like that for the forum...)
    When I use the above link syntax with a SQL query it works. The problem is, I need to use a PL/SQL function returning n SQL query. When I try the same link syntax with that, it seems to think :287 is a bind variable.
    I get the error message:
    (ORA-20001: Unable to bind :287 verify length of item is 30 bytes or less. Use v() syntax to reference items longer than 30 bytes. ORA-01006: bind variable does not exist)
    Thanks again
    - Brian

  • Can submit buttons or links associated with post or get requests work on iPad's Adobe Reader?

    Hi,
    I'm trying to call a JSPs from a PDF file using submit buttons and links created dynamically in a Java (iText) code.
    All buttons and links work fine in my PC but no buttons or dynamically generated links work in my iPad (Adobe Reader 11.0.1).
    Could anyone please let me know in case a workaround exists for this problem?
    Thanks in advance,
    Marcelo 

    Michael,
    Thank you for your comment.
    I know it is not supported. But I’m wondering whether a workaround solution was implemented somewhere. I’m sure people are trying to submit PDF’s data or even the full documents from their iPads without sending them as an e-Mail's attachement.
    Regards,
    Marcelo

  • How do you pass more than 3 items to another page via a Column Link?

    I know this is a simple question, but I don't see it covered in the manual.
    I have a report on page 1, when the user clicks on a column link, I'd like to pass 4 items to the page that is called.
    The Column Link area allows you to specify 3 items. How do people normally accomplish this?
    Do you somehow use page zero? Do you use Application Items for this purpose?
    Also, can someone recommend a good APEX book to supplement the manuals?
    Thanks

    hI
    Oh Varad I didnt know this, Thanks for a new tip ;)
    Just change the target to URL and enter a simple statement
    in the URL section
    f?p=&APP_ID.:50:&SESSION.:10:&DEBUG.::P50_item1,P50_item2,P50_item3,P50_item4:value1,#column_name2#,#column_name3#,#column_name4#
    Use value when u know a fixed value to be passed
    and column names on the same report can be passes by using #column_name#
    Hope this helps
    Thanks
    Ashri
    Edited by: Ashri on Nov 14, 2008 8:34 AM

  • Display the second report as modalform and filter with primary key value of first report when you click on first report column link

    Hi All,
    I have two reports.
    1. order report
    2. order detail report
    when you click on the order report column it display the order detail report as a modal form.
    i was done below steps.
    1. In page header i was written the below code
    <link rel="stylesheet" href = "http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/
    redmond/jquery-ui.css" type="text/css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"> </script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.js"> </script>
    <script type="text/javascript">
    $( function() {
    $('#ModalForm1').dialog(
    autoOpen : false ,
    width :470,
    height: 500,
    resize :false,
    function openForm1()
    $('#ModalForm1').dialog('open');
    function closeForm()
    $('#ModalForm1 input[type="text"]').val('');
    $('#ModalForm1').dialog('close');
    </script>
    2. order report.
    3. order detail report
       select * from order_details where order_id = p_order_id;
    region header
    <div id="ModalForm1" title="Ordered Items" style="display:none">
    <p class="msg"></p>
    footer
    </div>
    4. created the hidden item in order detail report.
    5. in order report column attributes i was given link like below.
    javascript:$s('p_order_id','#order_id#');openForm1();
    when i click on the order report column link it passing the row primary key value to hiddent and open the report as modal form. however it is not filter the report with hidden item. it showing the no data found.
    problem is hidden item value is not submitting. once we submit that value it showing the 2nd report with filter data.
    can any help me to achieve above requirement.
    apex: 4.2
    oracle 11g
    Regards,
    Vijay.

    Vijay,
    Issue 1: Your usage of $s() JavaScript API seems to be wrong. For the first parameter, you need to use the name of the hidden page item and not p_order_id.
    javascript:$s('P1_ORDER_ID','#ORDER_ID#');openForm1();
    Issue 2: Seems like you are not setting the hidden page item's value in session state. Assuming your hidden page item is called P1_ORDER_ID, Under "Region Definition" tab of your "Order Detail Report" under "Source" tab, for page items to submit, enter the name of the hidden page item P1_ORDER_ID.
    Thanks!
    JMcG

  • Execute a DML process after user selects a column link in a report

    APEX 3.2 / RDBMS 10GR2
    I have written a non IRR report that displays several rows of data. The first column of each row has a defined column link uniquely identifying the row. When a user selects one of the rows via the column link, a "hi fidelity" report is generated for that displayed row using a (RTF) report layout created in the shared components section of APEX.
    This is working well but I also need to execute a DML process after the user selects a row but prior to displaying the hi fidelity report using the selected column link value of the displayed row.
    As a URL is used to call hi fidelity report via the column link, it does not appear that the process section of the APEX page component is available to execute the DML prior to displaying the report.
    Any ideas on where to define the DML process?
    Thanks in advance.
    Barry D

    Hi Barry,
    Not knowing exactly what your URL calls, this is what I do for PL/SQL procedures that create HTML output:
    Create a blank page with no template and call the procedure inside a PL/SQL region with no template.
    Alternatively, if your URL opens in a new window:
    run some javascript for your link and pass a unique request through.
    The javascript needs to find the ApEx form, update it's target attribute and submit it with the unique request, then set the target back to blank.
    The form will submit into a new window.
    You can then have a process and branch allocated to this unique request to do what you want.
    Hope this helps
    Regards
    Michael

  • Column Link - how to get back to the same row on previous form

    Using Apex 3.2.1
    I've created a column link on an updateable report which opens up another page for data entry. This is working fine but when you return to the originating page, is there a way to get back to the same row you were on before linking.
    The user enters a number in the AMOUNT field. A validation trigger says they need to enter an EXPLANATION. They link to the EXPLANATION page. But when they return to the first page, they don't know which row they were on AND the value they originally entered in AMOUNT is back to the database value. So is there a way to preserve the AMOUNT value and rowid from the originating page?
    Hope this makes sense and appreciate any and all help!
    Sandie

    Hi Sandie,
    I may not be understanding the requirements completely, but one thing that strikes me off the bat is it sounds like what you need isn't really a "validation" per se. The data the user is entering may be perfectly valid, it's just that in certain circumstances additional information is required. I only mention this because an ApEx validation by definition shouldn't allow changes to be made to the database - but in your case it sounds like the information entered up to that point can be saved (as long as it satisfies actual data validation rules), but then additional information for certain rows is required.
    One thing you might consider is having the Explanation page pop-up in a new window. So user is on tabular form with current row visible - user clicks on explanation link which pops up a new page - user enters explanation and clicks "submit" - pop-up page disappears leaving user right where he/she was.
    Hope this helps,
    John
    If you find this information useful, please remember to mark the post "helpful" or "correct" so that others may benefit as well.

  • How to create a column link to a SQL update

    Hello all, it's me again!
    I'm trying to make a column link execute a update in that line and refresh the report.
    How can I do this?
    Just to be more explicit, this is the page http://tinypic.com/jsboeg.jpg when the user clicks Pause or Resume I want to update the column PAUSE_EXECUTION.
    Message was edited by:
    Reise

    I was thinking something similar, Chet. I think the page will have to be submitted to reflect the new value after the update. Therefore, I think you'd want the process to be "On Submit - After Validations and Computations"
    To the original poster, Chet is saying either make your SQL literally generate the achor tag which specifies the value for REQUEST or set the value for REQUEST by drilling down on the Report Attribute page for the linked column.
    Once the request is set, the process will fire if the condition for firing it is set accordingly.
    -Joe

Maybe you are looking for

  • How to download files from Application Server of Unix o.s to local director

    Hi All, I am trying to download files from Apllication server of Unix operating Systems to local file in excel sheet format using a z-program.but whenever I am trying to use OPEN dataset ........ it is showing sy-subrc = 8. Can I have any clew please

  • How do I reset my password?

    I stupidly thought my admin account either didn't have a password or still had my mother's (because it was her's before mine) so I logged out and went to the guest account so that I can at least attempt at focusing on writing my stories. Now, I forgo

  • Automatically send out shared review files from hotfolder?

    Hi - I haven't been able to find an answer so I hope you can help me. Basically, I have a group of 10 people who always needs to review PDF files. Currently one of them is taking care of sending out for shared review but I would like to eliminate tha

  • Workflow install time-out error

    hi, i get a time-out error during wf configuration assistant. i believe that is has something to do with a database/workflow language conflict. the ca aborts just after setting and resetting env var 4(?) nls_lang/wf_nls_lang. any thoughts? thanks, kp

  • Windows Live mail also has firefox doc attached

    When I receive emails in Windows Live, a firefox document icon also appears. If I click on the icon, it is the same email opening in firefox. How do I get rid of the icon?