KE30 - Form Based Report - TDD not appearing

Dear COPA Experts,
I am facing one strange issue with reporting of Top Down Distribution of Actual Data.
After executing Top Down Distribution of Actual Data, i have checked T-Code : KE30 - Form Based Report but it does not shows me distributed data then i have created one more PA report without Form, and this basic report shows me distributed data.
I have checked T-Code : KE24 and found data is accurately posted via TDD :
   But is not showing in Form Based Report :
However, it shows in Basic Report :
Please guide me how to get distributed data on Form Based Report ???
Thanks in Advance for your time !!!
Regards,
Zain Bashir

Hello Zain,
I often face similar problems when using form based reports.
The layout which is part  of your report (and where the lines and columns are defined)
includes the selections (e.g. within a column) also.
Example:
User does not find values posted on a cost center within the report.
The FI-document shows the cost center but also an SD-order item.
Result: The CC-posting is just a statistical one.
If the layout does not include the statistical posting the report does not present them.
Therefore: I advise to check the layout and the
column-, line- and general selections.
Hope it helps (and that you evaluate).
With kind regards
Thomas

Similar Messages

  • Tcode for form based report

    dear sap gurus:
    can any one tell me the all t code for form based report like ke86 and other and why it is diffrent from report painter

    Dear Makrand,
    Please look into the following:
    I brought profit center in selection criterion:
    For this I have changed my Form T Code:  KE35:
    General Data Selection :
    Included Profit center along with the controlling Area.
    Then I changed my report:
    KE30:
    Variables Tab:
    Givn Profit center as entry at execution.
    Hope this will helps you......
    Regards,
    Pavan Kumar Arvapally

  • Characteristic Name of Sales Employee in COPA report is not appear

    Characteristic Name of Sales Employee in COPA report is not appear, it is just the a Code of Sales Employee
    1.I created Characteristic Derivation t.code KEDR Table lookup PA0001 using condition Origin GLOBAL USERTEMP1 until USERTEMP6
    2.During Test Analyze Derivation there was result “Derivation was not carried out. Reason: Not fulfilled” in Field USERTEMP6
    How to solve this problem?
    Thanks & Regards,
    Cyrenia

    You need to use Characteristic Derivations for this to work.
    In transaction KEDR, maintain a "look-up" and provide your Reference table as VBPA and your target field will be the COPA Characteristic that you defined for the Partner Function Sales Employee.
    Select the Characteristics that will allow you to determine the Sales Employee (Partner Function = "VE") and then map the KUNNR field to the COPA Value Field.
    This will allow the flow of Sales Employee Values into COPA and hence the description as well.
    Hope this helps.
    Cheers.

  • Update control report did not appear

    Dear Experts/Gurus,
    I am confusing after upgrade database version 2004A SP 00 PL 41 to SBO 2005A SP 01 PL 29, the update control report did not appear but when I upgrade database SBO 2004A SP 00 from PL 20 to PL 41, it appears after logon. Why could it be happened ? I appreciate your answer. TIA
    Rgds,
    Steve
    "ratify kyoto protocol"

    Steve,
    Not sure why that may happen.  You may want to enter a message with SAP Technical Support on this issue as you may get a quicker response as this forum is for questions related to the Business One SDK.
    Eddy

  • Option to email a pdf from an access report does not appear.

    I upgraded to windows 8, and now the option to email a pdf from an access report does not appear.

    Hi anne,
    Could you please let me know what Acrobat and OS version are you using.
    Does this happen in case of any particular PDF or all PDF files?
    Try repairing Acrobat and then again check.
    Hope to get your response.
    Regards,
    Anubha

  • KE30 - Characteristic in layout does not appear description

    Hi all,
    I have a query on my KE30 report where by the description of the characteristic does not appear as selection in change layout for object list display. For example, charateristic "customer" only appear value but there is no field in the selection to appear the customer name. I've checked in KEA5 and ALL characteristics has been set as "Not assigned" in display option at 'further properties' work area.
    Appreciate your assistance on this.

    Hi
    Once you have run the report in object list, click on the choose fields (the third last icon on the 3rd bar)
    Select the text for each of the characteristics.
    You can save the layout for future use
    Hope this helps
    Kind regards
    Dawn

  • Report 10.1.2.0.2 - DESFORMAT=spreadsheet - Report does not appear

    We use Report 10.1.2.0.2 - DESFORMAT=spreadsheet
    RDF Report try to appear for 1 second and then disappear.
    In the report there isn't image or particular object.
    There is only one grid from db table.
    The form coll the report with this procedure:
    PROCEDURE RUN_REPORT_OBJECT_PROC
    ( rep_fileobj VARCHAR2,
    rep_filename VARCHAR2,
    rep_server VARCHAR2,
    rep_desformat VARCHAR2,
    rep_desname VARCHAR2,
    rep_destype NUMBER,
    rep_paramlist PARAMLIST ) IS
    -- Local var
    rep_id REPORT_OBJECT;
    rep_message VARCHAR2(100);
    rep_status VARCHAR2(100);
    vjob_id VARCHAR2(100);
    choice NUMBER ;
    BEGIN
    -- Estrae il report_id
    rep_id := find_report_object(rep_fileobj);
    -- Impostazione parametri RUNTIME del report
    SET_REPORT_OBJECT_PROPERTY(rep_id,REPORT_SERVER,rep_server);
    SET_REPORT_OBJECT_PROPERTY(rep_id,REPORT_DESFORMAT,rep_desformat);
    SET_REPORT_OBJECT_PROPERTY(rep_id,REPORT_DESTYPE,rep_destype);
    -- SET_REPORT_OBJECT_PROPERTY(rep_id,REPORT_DESNAME,rep_desname);
    SET_REPORT_OBJECT_PROPERTY(rep_id,REPORT_FILENAME,rep_filename);
    -- Lancia RUN_REPORT_OBJECT con o senza lista parametri
    IF ( NOT Id_Null( rep_paramlist ) ) THEN
    rep_message := run_report_object( rep_id, rep_paramlist );
    ELSE
    rep_message := run_report_object( rep_id );
    END IF ;
    -- Attesa processo asincrono di generazione del report termini
    rep_status := 'RUNNING' ;
    WHILE rep_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
    rep_status := report_object_status( rep_message );
    END LOOP ;
    -- Estrazione JOB_ID
    vjob_id := SUBSTR( rep_message, LENGTH( rep_server ) + 2, LENGTH( rep_message ) ) ;
    -- Visualizzazione report sul WEB
    IF rep_status = 'FINISHED' THEN
    web.show_document( '/reports/rwservlet/getjobid' || vjob_id ||
    '?server=' || rep_server, '_blank');
    ELSE
    message ( 'Creazione report fallita. Errore : ' || rep_status );
    END IF;
    END;
    and the parameter passed to the procedure:
    run_report_object_proc( 'MG_CAUSALI_MOV', :GLOBAL.rep_path_name||'\MG\mg_causali_mov_excel.RDF',
    :GLOBAL.REP_SERVER_NAME, 'SPREADSHEET', '', CACHE, pl_id ) ;
    The parameter :GLOBAL.... are correct: the PDF report run correctly.
    Where is the problem ?????
    The application server control show report SPREADSHEET terminated succesfully and
    in the report cache the htm file are present and is correct for Excel (we opened the fil ewith excel).
    Thanks in advance
    Umberto

    Hi dmars,
    report runs perfectly if I call it directly from Reports Server, from browser, using reports server URL.
    When I call it from the form, it opens Excel file, but it's just empty.
    As I understood, there is no way to call excel-compatible report wit run_report_object.
    Also, what I learned after browsing internet,- to get nice and neat excel report one has to start with making excel layout first, save it as HTML, open this file in Reports as web report and manually update the code with java script lines.
    So, as a matter of fact, SPREADSHEET format was sort of dead-end feature of Reports10G/9i.

  • Oracle Report: Header not appearing in spreadsheet

    Header section is not appearing in spreadsheet when I am running the report to print in spreadsheet

    I am having a same issue. It skips the healer in Spreadsheet output. The reports server is 10g.
    Do you have any workaround or solution for this?
    Thanks,
    Dean.

  • PO Form print out is not appearing correctly

    Hi All,
    I have an issue in PO print.
    I am trying to print the PO with item text. But in print preview the text is appearing and it is not appearing when I take print out.
    Could you please help me in resolving the issue.
    Thanks & Regards,
    DSaya

    Hi All,
    Thanks for your replay.
    We have identified the issue. When the PO is created with reference to PR the TEXT should be adopted (Functional people can explain what is TEXT adoption) then it will create an entry in the table STXH. Once entry is created in the table then data will appear in the Form output as in print preview.
    Steps:
    1.ME21N- Create Purchase  order by reference pf purchase requisition
    2.The Item Text from Purchase requisition is copied to purchase order item text
    3.Click on the icon given below; this will adopt the text from purchase requisition to purchase order
    4.Click on the icon given below; this will adopt the text from purchase requisition to purchase
    5.You will get the text adoption message as "Text adopted from PR".
    Thanks again.
    DSaya

  • Report MPs not appearing

    hi
    i have installed SCSM 2012 datawarehouse server with Reporting services in the same server.
    In SCSM console, reporting tab is not appearing and it says reporting services unavailable error.
    When i see Management packs under Datawarehouse, only two management packs are shown for the query "Report"
    SErvice manager linked reports
    service manager reporting presentation pack
    Other than these two, no other report related mp are shown.
    If i go to properties of MPSync job, there is nothing MP status shown as pending or failed. All says associated.
    This means no reporting MP has been deployed.
    If i see Operations manager event viewer, it gives the below event id
    Cannot connect to SQL Reporting Services Server.  Message= An unexpected error occured while connecting to SQL Reporting Services server: System.Web.Services.Protocols.SoapException: The item '/SystemCenter' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException:
    The item '/SystemCenter' cannot be found.
       at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at Microsoft.EnterpriseManagement.Reporting.ReportingService.ReportingService2005.FindItems(String Folder, BooleanOperatorEnum BooleanOperator, SearchCondition[] Conditions)
       at Microsoft.EnterpriseManagement.Reporting.EnterpriseReporting.FindItems(String searchPath, IList`1 criteria, Boolean And)
       at Microsoft.EnterpriseManagement.Reporting.EnterpriseReporting.FindItems(String itemPath)
       at Microsoft.EnterpriseManagement.Reporting.EnterpriseReporting.FindItem(String itemPath, ItemTypeEnum[] desiredTypes)
       at Microsoft.EnterpriseManagement.Reporting.EnterpriseReporting.GetFolder(String path)
       at Microsoft.EnterpriseManagement.Reporting.EnterpriseReportingGroup.Initialize()
       at Microsoft.EnterpriseManagement.Reporting.ServiceManagerReportingGroup..ctor(DataWarehouseManagementGroup managementGroup, String reportingServerURL, String reportsFolderPath, NetworkCredential credentials)
       at Microsoft.EnterpriseManagement.Reporting.ServiceManagerReportingGroup..ctor(DataWarehouseManagementGroup managementGroup, String reportingServerURL, String reportsFolderPath)
       at Microsoft.EnterpriseManagement.UI.SdkDataAccess.ManagementGroupServerSession.TryConnectToReportingManagementGroup()  Remediation
    I was able to connect to the Reporting services url which i have mentioned during SCSM DW installation. The service also started and running.
    What could be the reason for not deploying the reporting MPs?
    regards Sundaresan.C

    Cannot connect to SQL Reporting Services Server. Message= An unexpected error occured while connecting to SQL Reporting Services server: System.Web.Services.Protocols.SoapException:
    The item '/SystemCenter' cannot be found. --->
    Can't find the System Center Folder in SSRS. possible it was manually deleted before deployment was complete?

  • Form sends but does not appear to send

    Hello
    I have a small problem with the online form I have. When the
    site visitor sends the form (by clicking submit) the form is
    received by the Webmaster, but it does not
    appear to have been sent to the site visitor. That is, all
    the details, name, email, etc remain in place in the online form
    after the submit button has been clicked.
    I am posting this here because I think the form processing
    aspect of my query works fine, so I assumed this was a Flash
    problem. I am using Flash MX 2004.
    This the relevant part of my AS:
    var serverLang:String = "asp";
    var email_lv:LoadVars = new LoadVars();
    email_lv.onLoad = function(success) {
    if (success) {
    if (email_lv.server_mes == "ok") {
    status_txt.text = "Thank you, " + name_txt.text;
    } else {
    status_txt.text = "Sorry, your message was not sent";
    submit_btn.onRelease = function() {
    email_lv.sendAndLoad("fla.asp", email_lv, "POST");
    Thanks.
    Steve

    At the moment your code is only set up to display a message
    and not to blank out any input fields etc.
    I presume some onChanged handlers for the input fields change
    the values in email_lv or perhaps some enterFrame loop etc.
    You would normally do things either in the submit_btn handler
    or email_lv.onLoad handler to hide or remove the input fields.
    So you would need code to do that part.
    If you mean something else, for example that the
    if (success) { (etc)
    part of your code is not executing after the form has been
    successfully processed on the server (And the message "Sorry your
    message was not sent" is being shown instead)
    In that case, perhaps your server script is not returning the
    expected value. All you need do in that case is have the asp script
    return "server_mes=ok" in the body of the response. That will give
    the LoadVars a return value to work with instead of nothing and
    then the (success) branch of your code should execute .

  • PDF'd Fillable Form / Checked Boxes do not Appear in E-Mail

    Acrobat Pro 8.1.2, Windows XP, Word 2003
    I made a doc in Word, created a form, added check boxes, all good. I fill out the form as needed, check specific boxes as needed, and submit via email to vendors to place orders.
    Everyone gets the check boxes themselves, but several have said that none of the boxes are physically checked (X). All other entered info is present.
    Thanks for any help.
    KE

    I'm sorry. I made the Word doc, then used Adobe Pro to convert the Word doc into a fillable form. Using Designer I added the check boxes. Saved and closed.
    I open the form, fill it out, select certain check boxes, and email. The selected check boxes do not appear on some computers.
    KE

  • Oracle Forms 11g Login Screen Not Appearing

    Environment:
    1 PC running RHEL5 (Red Hat Enterprise Linux version 5) Operating System 64-bit with Oracle Database 11g (64-bit)
    1 PC running RHEL5 (Red Hat Enterprise Linux version 5) Operating System 32-bit with Oracle Fusion Middleware 11g (64-bit), plus Oracle WebLogic Server 32-bit
    1 PC windows (work PC) is the client so just using any browser to connect to the application
    Trying to run a sample form, and have all processes started (nodemanager, weblogic, opmn, emagent, emctl), database listener, database started up, but when the Oracle Forms Services splash screen display comes up, it just hangs and the default Oracle login screen does not appear. I'm at a loss. I moved my 3 pcs thus got new IP addresses via the DHCP network. Setup the TNSNAMES.ORA with the IP address of the db machine in the file of the webserver machine. Can connect directly on the machine, can connect via TOAD, SQL+ but not when launching a form. Any clues?
    Thanks,
    GJ

    FormsEleven wrote:
    Did you start Managed servers like WLS_FORMS .. Well when I go to the AdminConsole for the FormsDomain, I see 3 servers with a status of "RUNNING": AdminServer, WLS_FORMS, WLS_REPORTS. Then when I go to the Enterprise Manager for the FormsDomain I see all domains with all the servers (AdminServer, WLS_FORMS, WLS_REPORTS), in a green status up and running (100%).
    I made sure I started the NodeManager, WebLogicServer scripts.
    FormsEleven wrote:
    What is the ports you are using to run the form.?8888
    FormsEleven wrote:
    Did the test Form came up fine?No. I even created a simple form to look at the default Oracle "emp" table, and nothing comes up.

  • OPEN FORM, Device 'TELEFAX ' does not appear in SAPConnect

    Hi,
    i have a SapScript i want to send via fax to supplier
    Therefor i set
    device = 'TELEFAX'
    </b>   in FM OPEN_FORM.
    Everything looks fine
    - fax was created (message TD459)
    - in SAP office i have new entry in folder "exit"
    BUT !!!
    - status in SAP Office = wait for communication service (yellow)
    - in SAPConnect there is no entry for this fax
    What is wrong here?
    regards
    Jörg

    Hi Erwan,
    our SCOT (SAPConnect) is working properly in all other cases,
    means:
    YES - (TELE)FAX node is setup
    YES - works via RFC (SAPCONNECT_FAX_100 in SM85)
    Another mystery is, that if i go to SAP Office, open folder "exit" i found all my created faxes and if i mark them and click on send and enter faxnumber - this forwarded fax appears in SCOT.
    So the SCOT is working properly, but i don't like to open SAP office and forward all my created fax. This should be the job of FM
    OPEN_FORM
    So why the hell does the fax created via OPEN_FORM not appear in SCOT automatically???
    Any hints welcome
    regards
    Jörg

  • Changes in the report are not appearing

    Hello All,
    I have the following command
    Run_Product(REPORTS, 'tpd_subst_rep', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL) in the form.
    I have changed the report tpd_subst_rep but I am not able to see the changes. Can any one please explain from where the old report is appearing?
    I have senn the documentation which is telling that it will look tpd_subst_rep in a default path, but how to see what is the default path?

    Hi,
    I'm using a later version so I am unsure as to whether the layout etc. will be the same.
    I don't know if it helps, but I may have misled you. Do you have the Object Navigator? If I condense all my options, I'm left with Forms, Menus, PL/SQL libraries, Object Libraries, Built-in packages, Database Objects.
    Go into 'Forms' (1st option), your module will be listed, open that using the + next to it and in the list that is displayed, one of the options will be 'Reports'. Then open that using + and follow my instructions as before to find the filename path. This will tell you whether it is referencing your .rdf or your .rpt. Presumably it should be .rpt, so it will tell you where that is being saved.
    I then opened my .rdf and just used 'Save As' to save it with a .rpt extension, using the address path taken from the Forms property palette of your report. That should then save your changes and update the file in Forms.

Maybe you are looking for