Does Classic report provide facility to make report total to be hyperlink

Hi ,
Does Classic report in apex provide provision to make the report-total row editable(hyperlinked) ? if so how to implement that.
Acq     WIP     Closed
Abc     1     3
Def     2     5
report total :     3     8
Also is it possible to provide more than 2 downloadable options for classic report :
For eg: now i have provided options to export a report to csv and excel format, along with these two can i provide pdf option!!!!
Thanks in advance

You didn't mention what version of Apex you are using. If you are on 4.0, this can be done easily using dynamic actions.
Here is an example http://apex.oracle.com/pls/apex/f?p=24317:92
One DA that looks like this http://screencast.com/t/djyAG6F4WFM
The first TRUE action (fire on page load) changes the cursor style to indicate that the row is clickable http://screencast.com/t/Z3YIXo6c
The second one actually does the redirect http://screencast.com/t/jHMtyDwK8lM in the example it just shows an alert message but you can modify it to pass in whatever parameters you need and construct the location.href to redirect to.

Similar Messages

  • Does SAP system provide 3 way matching report from PO up to payment in AP

    Dear expert,
    Would like to seek for your help to advise, does SAP system provide 3 way matching report from PO up to payment in AP  with the following information?
    Vendor Number
    Vendor Name
    AP Document Number
    AP Document Date
    Payment Document Number
    Payment Document Date
    Payment Amount
    PO reference Number and Date
    Item Description
    Please help.
    Regards,
    KH

    Hi Atif,
    Thank you for the prompt reply, however I have a few question to seek for your advise as below:
    a)I would like to know does  SAP system have any standard report which have the information of 3 way matching report from PO up to payment in AP module?
    b) I have find one report using T-code:FBl1N (vendor line item) is able to display the report with information of invoice,payment and there is one field purchasing document in the report however this field do not have any po number refer to the invoice.
    I would like to know what the field purchasing document mean for (i.e what are the information capture on the column purchasing document)?
    Please help.
    Regards,
    KH

  • Deploying a custom reporting provider in Oracle Service Bus

    Hi All,
    I am new to OSB. From the reporting documentation I understand that we can register a custom reporting provider which will be called by the Report actions in the service bus. I have written a reporting handler which implements "com.bea.wli.reporting.ReportingDataHandler" and a listener class which extends "weblogic.application.ApplicationLifecycleListener" class. In the listener class I register my report handler class with the ReportingDataManager.
    I understand that the listener class has to packaged and deployed in the WLS. Can someone help me explaining how this should be done.
    I tried deploying it as a jar but my tests do not reveal that the Report action in OSB did call my report handler. I have followed the instructions as given in http://edocs.bea.com/wls/docs90/programming/lifecycle.html yet I am not successful. I have also disabled the default JMS reporting provider.
    What needs to be done after deploying the listener? How does the OSB make use of the new listener?
    Any pointers in right direction will help me a lot.
    Thanks,
    Abarajithan.
    Edited by: user5120225 on 27-May-2009 21:00

    What needs to be done after deploying the listener? How does the OSB make use of the new listener?Did you enable reporting in your application/OSB? operational settings for the proxy contains check box (in sbconsole) Reports which should be enabled
    and also we have to put reporting action in our pipeline. Is the reporting provider not receiving events/reports even after this ?
    thanks
    Manoj

  • How to Provide Mailing/fax  Facility from a report Pg

    Hi all, We are trying to provide a mailing/fax facility through a report pg. We got following Error messages in "Procesing logs"
    1.No communication type from strategy 1 could not be used.2.Communication type cannot be used
    following is what we have done in report pg
    1-set nast-nacha = 5 (mail/fax facility in output type)
    2-created a Z-table for storing sender/recepiant Address
    3-following is the code
    IF NOT NAST-TCODE IS INITIAL AND NAST-NACHA EQ '5'.
      ... use stratagy to get communication type
        CALL FUNCTION 'ADDR_GET_NEXT_COMM_TYPE'
             EXPORTING
                  STRATEGY           = NAST-TCODE
                  ADDRESS_NUMBER     = ADDR_KEY-ADDRNUMBER
                  PERSON_NUMBER      = ADDR_KEY-PERSNUMBER
             IMPORTING
                  COMM_TYPE          = LVS_COMM_TYPE
                  COMM_VALUES        = LVS_COMM_VALUES
             EXCEPTIONS
                  ADDRESS_NOT_EXIST  = 1
                  PERSON_NOT_EXIST   = 2
                  NO_COMM_TYPE_FOUND = 3
                  INTERNAL_ERROR     = 4
                  PARAMETER_ERROR    = 5
                  OTHERS             = 6.
        IF SY-SUBRC <> 0.
          retcode = sy-subrc.
          SYST-MSGTY = 'E'.
          perform protocol_update.
        ENDIF.
      ENDIF.
    convert communication data
      MOVE-CORRESPONDING NAST TO LVS_SNAST.
      MOVE SY-REPID           TO LVF_PROGRAM.
      CALL FUNCTION 'CONVERT_COMM_TYPE_DATA'
           EXPORTING
                PI_COMM_TYPE              = LVS_COMM_TYPE
                PI_COMM_VALUES            = LVS_COMM_VALUES
                PI_SCREEN                 = US_SCREEN
                PI_COUNTRY                = US_COUNTRY
                PI_REPID                  = LVF_PROGRAM
                PI_SNAST                  = LVS_SNAST
           IMPORTING
                PE_ITCPO                  = LVS_ITCPO
                PE_DEVICE                 = LVF_DEVICE
                PE_MAIL_RECIPIENT         = LVS_RECIPIENT
                PE_MAIL_SENDER            = LVS_SENDER
           EXCEPTIONS
                COMM_TYPE_NOT_SUPPORTED   = 1
                RECIPIENT_CREATION_FAILED = 2
                SENDER_CREATION_FAILED    = 3
                OTHERS                    = 4.
      IF SY-SUBRC <> 0.
        RETCODE = SY-SUBRC.
        SYST-MSGTY = 'E'.
        PERFORM PROTOCOL_UPDATE.
      ENDIF.
      check retcode eq 0.
    if there is a communication strategy used ...
      IF NOT NAST-TCODE IS INITIAL AND NAST-NACHA EQ '5'.
    Title of the mail
        LVS_ITCPO-TDCOVER = 'X'.
        Clear  LVS_ITCPO-TDTITLE .
      To get the text
          gv_DOMNAME = 'VBTYP'.
          gv_VALUE = GV_VBTYP.
          CALL FUNCTION 'DD_DOMVALUE_TEXT_GET'
               EXPORTING
                    DOMNAME       = gv_DOMNAME
                    VALUE         = gv_VALUE
                    LANGU         = Nast-spras
              IMPORTING
                   DD07V_WA      = W_DD07V.
    For order
        IF GC_TYPE = 'ORDER'.
          Concatenate 'adidas' W_DD07V-DDTEXT GV_VBELN
                      into LVS_ITCPO-TDTITLE SEPARATED BY SPACE.
          Select single * from Ztable
              where vkorg = gv_vkorg and
                    vbtyp = gv_vbtyp and
                    type = 'S'.
        SWC_CONTAINER LT_CONTAINER.
       Create sender using sender mail address from new table
        SWC_CLEAR_CONTAINER LT_CONTAINER.
        SWC_CREATE_OBJECT L_SENDER    'RECIPIENT' SPACE.
        SWC_SET_ELEMENT LT_CONTAINER 'AddressString'
                                         Ztable-SENDER.
        SWC_SET_ELEMENT LT_CONTAINER 'TypeID' 'B'.
        SWC_CALL_METHOD L_SENDER    'CreateAddress' LT_CONTAINER.
        IF SY-SUBRC NE 0.
             MESSAGE ID SY-MSGID TYPE 'E' NUMBER SY-MSGNO
                     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4
                     RAISING SENDER_CREATION_FAILED.
        ENDIF.
        SWC_OBJECT_TO_PERSISTENT L_SENDER LVS_SENDER.
      ENDIF.
    When we use Tcode SOST we find the 'order sent by report pg is "waiting in queue for communication service"(it is a warning message)with the sender and receiver name present.
    What is that we are missing out. help required..!!

    Hi,
      Try this.
      In SOST goto <b>UTILITIES-->Start send process</b>
      In the Pop up select the <b>Trans.Method</b>.
      This should work.
      If not then there might be some settings missing to
      send mail.
    Regards,
    GSR.

  • How to Provide Zoom-in/out Facility in SmartForms Report?

    hi all,
    can someone tell me how to provide Zoom-in/out facility in a smartforms report? We have a report with very small font and we hardly read contents in preview screen. can someone provide some help on this?
    thanks in advance,
    sid

    This will take in your spool request and download a PDF file to your PC where you can view it in Acrobat:
    REPORT zpdf MESSAGE-ID zc LINE-SIZE 255 NO STANDARD PAGE HEADING.
    PARAMETERS: spoolid LIKE tsp01-rqident OBLIGATORY.
    DATA BEGIN OF pdf_table OCCURS 0.
            INCLUDE STRUCTURE tline.
    DATA END   OF pdf_table.
    DATA pdf_fsize TYPE i.
    CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
         EXPORTING
              src_spoolid   = spoolid
              no_dialog     = 'X'
         IMPORTING
              pdf_bytecount = pdf_fsize
         TABLES
              pdf           = pdf_table
         EXCEPTIONS
              OTHERS        = 0.
    CALL FUNCTION 'DOWNLOAD'
         EXPORTING
              bin_filesize = pdf_fsize
              filetype     = 'BIN'
         TABLES
              data_tab     = pdf_table.
    Rob

  • Does service reporting provide usage data of Virtual Machine NICs ?

    Hello Guys,
    Does Service reporting provide usage data of Virtual Machine NICs ? if yes how can I fetch that data.
     awaiting reply
    Thanks
    NM-BG

    Hi,
    Thank you for reaching out to us.  From a support perspective the way forward would be to open up a support ticket. Please refer to
    this documentation on how to open a support ticket. Hope this helps.
    Warm Regards;
    Prasant

  • What kind of security does crystal report provides?

    <span style="font-size: 10pt; font-family: Verdana">What kind of security does crystal report provides</span>

    <p>What security are you asking about?</p><p>Crystal Reports is a report design tool.  If you need to secure reports so that only certain groups within your organization need can have access to them, Business Objects provides a few options:</p><p>Business Objects Enterprise</p><p>CR Server</p><p>Crystal Reports.com</p><p>I&#39;d suggest going to www.businessobjects.com to learn more about those products. </p>

  • WebI does not return failed when scheduling a report which only holds parti

    WebI does not return failed when scheduling a report which only holds partial results.
    We have scheduled reports which take some time to run. When they are scheduled they sometimes show successful even though the report only holds partial results. The only indication is when you open the report as webi report you see the warning that it holds partial results.
    When running the report manually, it works file.
    The issue is not in the no of rows in the universe settings because we this unselected. The issue is that it times out.
    The reason that it times out is that a lot of resources are used for loading and processing data when the report is scheduled. When running it manually, it works because at this time the serverload is less. the time in the universe is set to 10 min.
    The version we have is BOXIR2-SP4.
    Ok. Issue identified.
    The question is - why is the report successful when it holds partial results? If this is normal behavior, noone can really trust the scheduled reports, especially when you save it to excel and send it by mail.
    Is there a solution for this except increasing the allowed query time which would not solve the issu but only allow more reports to complete?
    Edited by: Karlgren Michael on Sep 17, 2009 1:22 PM

    Hi ,
    Currently this problem exists in XI R2. This feature will be part of thenext Service Pack i.e XI R2 SP6.
    This CER will be delivered from IDC Webi and BIP Platform as part of Jupiter Sp6.
    Problem Statement:
         Scheduled WebI Reports which are partially refreshed are distributed to the destinations for Users to View and make decisions. These users arenu2019t usually aware that these reports have u201CPARTIAL RESULTSu201D
    Recomended Solution:
        Allow the Schedule Creator / Modifier to set a parameter to stop the distribution of the u201CPARTIALLY REFRESHEDu201D WebI report.
    Thanks
    Salini

  • Date parameter does not work in SharePoint 2010 report using SQL 2008 Server Reporting Service

    Here is the settings:
    SharePoint 2010 with SQL server 2008 reporting services configured
    When create a report for a SP list using SQL server report builder (3.0) the date parameter does not work.
    The data parameter is set as "date and time" type and field name equals the col name in the SP list
    When run the report, the whatever dates I select, the result is always the same, so the parameters do not take any effect.
    Is any step missing?
    Thanks for any advice !

    Hi ,
    How did you configure you "date and time" type parameter and field name equals the col name in the SP list?
    Have you tested if other type parameter worked?
    Have you tried typing the date format as 20140722 in your date parameter filed before run the report?
    http://whitepages.unlimitedviz.com/2012/02/using-sharepoint-filters-with-reporting-services-parameters-for-personalized-reports/
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Trying to make Reporting Services Configuration Manager work. Or, SQL Server Reporting Services.

    Under Start > Programs > Microsoft SQL Server 2008, I have the following:
    SQL Server Management Studio
    Configuration Tools
    Integration Services
    Import and Export Data
    Under Configuration Tools, I have the following:
    SQL Server Installation Center
    SQL Server Configuration Manager
    SQL Server Error and Usage Reporting
    Reporting Services Configuration Manager
    I tried to enable Reporting Services through 'Reporting Services Configuration Manager' but I don't seem to have much control from this view.  I see two boxes, one named Server Name (and it shows my server name) and the other is named Report Servicer Instance (and this is grayed out).  If I click on the Find box next to Server Name, I get this message:
    Report Server WMI Provider Error: Invalid Namespace
    Details
    Invalid Namespace
    To get the Server Name I right-clicked SQL Server > Properties > General
    Any ideas on how to make Reporting Services Configuration Manager work?  Or, can you please give me more details on how to access "System control" => "Services"?  I'm not seeing it anywhere and I'm not seeing any way to find "Sql Server Reporting Services".  Basically, I'm trying to activate my SQL Server Reporting Services.
    I am using SQL Server 2008 Express Management Studio.  Is SQL Server Reporting Services included in Express Management Studio?  I read, online, that it is, but I can't find it anywhere.
    Thanks again!
    Ryan--
    <input id="gwProxy" type="hidden"><!-- Session data--></input> <input id="jsProxy" onclick="jsCall();" type="hidden" />

    Thanks Jerry Nee!!  This may be exactly what I’m looking for!  I went to this link:
    http://www.microsoft.com/downloads/details.aspx?FamilyID=B5D1B8C3-FDA5-4508-B0D0-1311D670E336&displaylang=en#filelist  
    At the top of the page it says, ‘Microsoft® SQL Server® 2008 Express with Advanced Services’, which seems like this is what I’m looking for, so I downloaded the file named ‘SQLEXPRADV_x86_ENU.exe’
    Then, I cut that from my desktop and pasted it in my C-drive and I get a message that says, ‘this folder already contains a file named ‘SQLEXPRADV_x86_ENU.exe’, would you like to replace the existing file?’
    I’m thinking…what the heck?  Do I already have this thing?  If so, why can’t I see SQL Server Reporting Services?  Maybe I have it now, and I just don’t know how to access the reporting Services features…
    Couple quick questions:
    What’s the difference b/w these two files: 
    ‘SQLEXPRADV_x64_ENU.exe’ and ‘SQLEXPRADV_x86_ENU.exe’? 
    Also, my current version of SSMS, Help > About shows this:
    Microsoft SQL Server Management Studio
    10.0.1600.22 ((SQL_PreRelease).080709-1414 )
    Microsoft Data Access Components (MDAC)
      2000.085.1132.00 (xpsp.080413-0852)
    Microsoft MSXML
    2.6 3.0 5.0 6.0
    Microsoft Internet Explorer
    8.0.6001.18702
    Microsoft .NET Framework
    2.0.50727.3603
    Operating System
    5.1.2600
    Should Server Reporting Services be included in this version?  I think so!!!
    Under Start > Programs > Microsoft SQL Server 2008 > Configuration Tools > Reporting Services Configuration Manager, I see this:
    Connect to a report server instance:
    Server Name: 
    Report Server Instance: 
    My server name is ‘'EXCEL-4J2W8KYNP', which I got from Control Panel > System Properties > Computer Name > Full Computer Name;
    However, when I put that server name in the box, and hit ‘Find’ I get this message: ‘Report Server WMI Provider error’ Invalid namespace
    Details: Invalid Namespace.
    I have no idea what this means…
    Thanks for everything!
    Ryan---

  • How to make Reports 9i display Danish national characters?

    I am running Oracle9i Reports and cannot make Reports print the Danish national characters f, F, x, X, e and E. I have a development machine with Developer Suite 9.0.2, where I can run the report in Paper Design, where the characters displays correctly, but as soon as they are uploaded to the Application Server (9.0.2), all of the national characters are replaced with some very mysterious characters. The dev. machine and the Oracle9iAS machine both connect to the same database, and when I make a boilerplate object just containing "FXE", the problem is still there, so it does not seem to be a database issue.
    I read some articles on MetaLink about adding some lines in uifont.ali, but they do not seem to apply, since the article only mention East-European languages (Polish and Czech). The font used is Times New Roman. The dev. machine has NLS_LANG set to AMERICAN_AMERICA.WE8MSWIN1252, and the Oracle9iAS machine is running DANISH_DENMARK.WE8MSWIN1252 - ie. the same character set. I tried to generate the report both to HTML and PDF, but that did not make any difference regarding this issue.
    How do I make Oracle9i Reports Services display the Danish national characters correctly?
    Thanks in advance!

    Thanks for your suggestions.
    However, here's what I've done, and it did not make any difference.
    1. Changed the NLS_LANG parameter to match on both server and dev. machine and recompiled and saved the RDF - no difference.
    2. Installed the same model printer on the server, as the one on the development machine, and rebooted the server - no difference.
    3. Checked uifont.ali on both systems - they're exactly the same...
    What else might be causing this?

  • OSB Custom Report Provider Sample - in Eclilpse

    I am writing a custom report provider in OSB based on the example here: http://ias.us.oracle.com/portal/page?_pageid=33,2462026&_dad=portal&_schema=PORTAL
    I downloaded that and compiled it fine using ant.
    Now I am trying to bring the code into Eclipse and modify the custom report provider for my needs.
    I can't jar files to add to my project to resolve the following imports:
    import org.apache.xmlbeans.XmlOptions;
    import org.apache.xmlbeans.XmlObject;
    import org.apache.xmlbeans.XmlTokenSource;
    import com.bea.wli.reporting.ReportingDataHandler;
    import com.bea.wli.reporting.MessagecontextDocument;
    I looked at the build.xml and this is what it has in the compile target:
    <target name="compile">
    <echo message=">>>>>> compile >>>>>>"/>
    <echo message="debug = ${debug}, optimize = ${optimize}, deprecation = ${deprecation}"/>
         <javac srcdir="${custom.report.provider.src.dir}"
    destdir="${build.custom.report.provider.dir.classes}"
              classpath="${sb.lib.common.dir}/reporting-api.jar
              :${sb.lib.dir}/alertfwk.jar"
    deprecation="${deprecation}"
    debug="${debug}"
    optimize="${optimize}"
    source="1.5"/>
    <copy file="${custom.report.provider.dir}/custom_provider.properties"
              todir="${build.custom.report.provider.dir.classes}/com/bea/alsb/fileprovider"
    overwrite="true"/>
    <echo message=">>>>>> Done compile >>>>>>"/>
    </target>
    I think that means it's using these:
    classpath="${sb.lib.common.dir}/reporting-api.jar
              :${sb.lib.dir}/alertfwk.jar"
    but I cannot find those in my OSB directories.
    I'm sure this is something simple, but I'm a little confused right now as to how the ant build works when I can't find these jars. Glad it does but I was hoping to work on this and compile my version in eclipse.
    any advice or insight is appreciated.

    Thanks. It resolved the com.bea.wli.reporting.* imports fine once I added the alsb.jar.
    I had to add the weblogic jar from my D:\Oracle\Middleware\wlserver_10.3\server\lib for it to resolve the imports for XmlBeans and the imports in the ApplicationListener.java file.
    Now everything compiles fine in Eclipse.

  • Facility into Oracle report 9i for Calendar

    Is there any facility into Oracle report builder 9i for Calendar object?

    Hi,
    there is no any opition in oracle report 9i for Calendar if u wanna add Calandar object in ur report 9i then make report parameter form in form9i then add calandar object in forem 9i then call ur report from that parameter form bcoze in form 9i u have opition to add calendar object
    Rizwan

  • Trying to makea report run when clicking a button on a form

    I am trying to run a report by clicking a button on a form (Forms 9i)
    I have modified the registry settings for FORMS90_PATH and REPORTS_PATH to include my development directory, and now at last the report is generating. However the command to display the form in a window is not doing anything at all - no error even. Can someone please help, the trigger code for my button is displayed below:
    DECLARE
         rep_result VARCHAR2(30);
    BEGIN
         SET_REPORT_OBJECT_PROPERTY('INVENTORY_REPORT', REPORT_FILENAME, :GLOBAL.project_path || 'Inventory.rdf');
         SET_REPORT_OBJECT_PROPERTY('INVENTORY_REPORT', REPORT_DESNAME, :GLOBAL.project_path || 'Inventory.htm');
         rep_result := RUN_REPORT_OBJECT('INVENTORY_REPORT');
         --MESSAGE('Rep result: ' || rep_result);
         WEB.SHOW_DOCUMENT('file:///' || :GLOBAL.project_path || 'Inventory.htm', '_blank');
         --WEB.SHOW_DOCUMENT('file:///C:\Temp\Dev\Inventory.htm', '_blank');
    END;
    thx
    adam

    Hi,
    may be this could be helpful for you:
    You have to include the following code to execute a report:
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status Varchar2(20);
    BEGIN
    repid := find_report_object(report_name);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,report_server_name);
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := report_object_status(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    if rep_status = 'FINISHED' then
    WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    else
    error report not exists
    end if;
    END;
    Also you have to create the report server with the command:
    "rwserver - install service_name autostart=yes
    report server name must be the same that appears in the code above
    You must add the report to run in the REPORT object type in your .fmb and put there with the same name
    The report server to install ought to be the one and only in you network to avoid mistakes...

  • How does one pass import parameters to a report within a method?

    Hello all,
    Well how does one  pass import parameters to a report which is within a method ...end method.
    for example :
    method 123
    SUBMIT reportname using selection '1000'
    endmethod .
    Here we need to pass values into the selection screen and run the report for those values.
    The values are say 'ABC'   (  tablename "DEF" and field name "HIJ" ).
    I hope the question is clear, awaiting your response 
    Thanks and Regards,
    Sandeep.

    Go to SE24
    Parameters: Give the Parameter name, Typing method is "Type" is the domain type that u are selecting, say for e.g :  Parameter is "P_CONT" , its associated type "CHAR32" etc
    For Select Options:  Parameter name say "S_CUST", Type"importing". For this you need to give an associated type which must be created as "TABLE TYPE " in SE11. That table type needs to have a "LINE TYPE" .
    LINE TYPE is a Structure created with components "SIGN, OPTION, LOW & HIGH" for select-Options.
    NOTE: for a Table type related to Customer data fields "say KUNNR", the line type created must have the Component Type and data Type corresponding to the Data Element associated with "KUNNR" ;i.e: "CHAR" etc.
    See if this is clear to you or revert back in case of any Confusion.

Maybe you are looking for

  • Portal Problem:  Workaround for NOT alphabetizing paramters in portal form?

    Hello all, In Portal, I am defining 6i reports. Portal has forms that pass these parameters to 6i reports but they keep showing up in alphabetical order. So, the rep_end_date is appearing before the rep_start_date. These are the steps: 1. Go to Navig

  • Not updating G/L account and cost center with BAPI BAPI_PO_CREATE1

    Hello Friends, The two fields G/L ACCOUNT and Cost Center is not updated using BAPI BAPI_PO_CREATE1. I am unable to understand why? This is what i am passing to account assignment structure( POACCOUNT). Filled POACCOUNTX structre as well. I have pass

  • Permitted characters 'ALL_CAPITAL'

    We need to accept a large number of unusual characters, and hit the limit on the number of characters we can enter.  Note 173241 explains that you can use ALL_CAPITAL (on its own) to get round the limit.  This seems to work fine, but I'd like to know

  • Error accessing transaction SOLMAN_WORKCENTER in SAP Solution Manager

    I get the error below when I try to access workcenters in SAP solution Manager ehp1 via transaction SOLMAN_WORKCENTER Error while processing your query What has happened? The URL call http://sol.test.com:8000/sap/bc/webdynpro/sap/ags_workcenter was t

  • Apply GPO only when logon

    Hi All, This is my case: My customer has several Access 2013 frontend files. Based on the membership of a security group will be the correct frontend file copied to the desktop of the user. This file is copied by a GPO (file preferences). In the pref