Reports from structures....is this possible?

Hi,
is correct the following statement?
If I have to create a report, is better work on table fields instead of structure fields and only
if I don't find the tables I need I can create my report with values contained in a structure.
I'm asking this 'cause when I ask to an ABAPER a report giving him the related fields of a structure
he immediately tell me that is not possible working taking data from fields of a structure.
Yours truly

hi
good
you can use both table and structure to create  a report, but the issue here is a strucutre doesn't contain any value and table contain table, yes if you r using a strucuter and you can take referance of a table and using that you can get your data display in the output of the report.
thanks
mrutyun^

Similar Messages

  • Calling Forms 6i from Reports 6i. Is this possible. Run Product in Reports

    Re: Calling Forms 6i from Reports 6i. Is this possible?
    Hello,
    I have need programming in Oracle 9.x and using Forms and Reports for about 1.5 years. My ERP application calls a report from a form. I DO NOT have source code for the FORM. But, I DO have source code for the Report. So, from the Report 6i, I would like to call an Oracle Form 6i. Note: Not WEB based. My question is, IS THIS POSSIBLE. I can not find a command like Run Product in Report for calling a Form Application. Can someone please help me. I am under the gun to have this ready in a couple of days. Can I call an Active X Application from Reports..if Oracle Forms DOES NOT WORK. This needs to be a Form Application because of the nature of this request.
    Thank you
    Dennis

    Thank you
    ...the ERP vendor based on a form icon button will call a report. They will pass a TAG_NUMBER from a database record (that they just inserted) to the report. This tag_number will link to other tables and will display the report. The problem is ??..there is additional information that the user needs to scan into the database BEFORE the report runs. This is part of the business work flow.
    I have options.
    1) Get the ERP Vendor to call a FORM based on the name I provide to them.(Not really an option since they are unwilling to make custom mod changes.)
    2) Have the user key into the REPORTS PARM FORM. And I will update the tables...
    3) Call an Active OCX popup FORM from Reports and then update tables. Is this possible from Reports???..I am not sure if I like to introduce ms vb into an oracle application. It just does not seem to be a correct solution/procedure.
    4) Pay the ERP Vendor as a custom mod to make the changes for us. (unlikely because they do not like making custom mod changes)
    5) ....any more ideas/comments please let me know..
    Thank you Again
    Dennis Aubrey

  • How to generate a MSDS report from status GP (Generation possible) to RE

    Hi EHS Goeroes,
    I'm struggling with the Generation of the MSDS. I have done the following procedure and settings:
    a) Create MSDS report (CG42)
    b) Edit Generation Variant (CG2B)
    Settings:
    (I have assigned my template to the Generation Variant)
    Generate manual request automatically: marked
    Change Marks: 0
    Initial release status: RE (released)
    Version requirement: unmarked
    Set historical automatically: unmarked
    c) EHS > Specification Workbench > Report from Template (to test the design - display is correct and all phrases can be found)
    d) EHS > Specification Workbench > Create new report
    (report has been created succesfully and appears in Report Management).
    e) EHS > Specification Workbench > Report Management:
    MSDS_29 Material Safety Data Sheet for China World
    Chinese Not Relevant Generation Poss. => generation possible.
    Feedback affter clicking on Accept: You tried to carry out action 'Accept' on a report with status GP. However, this action is not allowed for reports with this status.
    Feedback after clicking on Generate: You tried to carry out action 'Generate' on a report with status GP. However, this action is not allowed for reports with this status.
    d) SE38 I have no jobs scheduled yet, so I run the following two programs to start the worklist manually, RC1AVGE1 and RC1AVGE2.
    RC1AVGE1 - gave allot of feedback information regarding to changes and so on (first time I run it).
    RC1AVGE2 - feedback: EHS: 'Worklist Generation for Reports - Selection for Check. - 0 reports to be checked were found'
    From my understanding program RC1AVGE2 - should generate the MSDS.
    e) WWI - monitor display (CG5Z):
    100 @03\QNo background processes in client@ 5 SBR WWI-00000000000000000002 FREE RMDERKS
    110 @03\QNo background processes in client@ 5 SBR WWI-00000000000000000063 FREE A132645
    xxx SV001 @5B\QWWI server is active@ @02\QNo background processes on WWI server@
    xxx SV003 @5C\QWWI server is inactive@ @02\QNo background processes on WWI server@
    I checked if I had any jobs running in the background or has been finished, but it seems like it goes wrong here, the system does not generate a job for the generation of the MSDS_29. To be able to get the status of MSDS_29 to RE (Released).
    Does anybody has an idea what I do wrong, or which settings might be incorrect? Futhermore, what are the further steps to issue the report in the SD module - report shipping?
    Help is much appreciated!
    Roy Derks

    Hi Roy,
    Check and activate the QWWI server for the second job wwi - 110. Try once to generate the MSDS.
    I will revert back if i get information.
    regards,
    mahesh.

  • Error in abap query sq03,02,01(to get data from structure) it is possible?

    hi
    experts,
    i am developing a report using abap query .(stand t code is s_alr_87012277 it contain more fields but i want only 4 fields , i found 2 but remaining 2 are from structure)
    my problem is that debit and credit amount is in structure
    how  i can get data from structure(FAGL_S_RFSSLD00_LIST )
    solbm = debit.
    habbm  = credit.
    report is like
    op.
    gl acc no, discription, credit amount,debit amount.

    Hi ajay,
    try to use with  logical database  SDF.
    assign the logical database name in info set.
    gl acc no    -               SKA1-SAKNR
    debit.         -     Field: um02h
    credit.        -     field:  um02s 
    discription  -               SKAT-TXT20
    regards,
    sateesh.

  • I Need to Return Two values or more from Function, Is this possible?

    Below is the offending query, I am trying to pass v_bu and v_po to this function, and after validations then return v_count and v_action is this possible in a function? I am having problem returning two values.
    see below code
    function po_edi_func(v_bu purchase_order.business_unit_id%type,
         v_po purchase_order.purchase_order_number%type)
         return number as pragma autonomous_transaction;
         v_count               number;
         v_ctdel               number;
         v_action          varchar2(1);
    begin
    select count(*)
    into v_count
    from sewn.purchase_order
    where business_unit_id=v_bu
    and purchase_order_number =v_po;
    if v_count > 0 then
         select count(*)
         into v_ctdel
         from sewn.purchase_order
         where business_unit_id=v_bu
    and purchase_order_number =v_po
         and purc_orde_status = 1;
         if v_count <> v_ctdel then -- ALl PO's Cancelled--
         v_action := 'U'; -- - NOT ALL PO DELETED --
         else
         v_action := 'D'; -- DELETED ALL PO--
         end if;
    else
         v_action := 'I';-- New PO INSERT--
    end if;
    commit;
    return v_count;
    end;

    Paul,
    This is becoming a nightmare to me, can you look at the below and tell me where I am having a problem
    This is the Function below
    CREATE OR REPLACE function po_edi_func(v_bu sewn.purchase_order.business_unit_id%type,
         v_po sewn.purchase_order.purchase_order_number%type,v_action_out OUT VARCHAR2)
         return number as pragma autonomous_transaction;
         v_count               number;
         v_ctdel               number;
         v_action          varchar2(1);
    begin
    select count(*)
    into v_count
    from sewn.purchase_order
    where business_unit_id=v_bu
    and purchase_order_number =v_po;
    if v_count > 0 then
         select count(*)
         into v_ctdel
         from sewn.purchase_order
         where business_unit_id=v_bu
    and purchase_order_number =v_po
         and purc_orde_status = 1;
         if v_count <> v_ctdel then -- ALl PO's Cancelled--
         v_action := 'U'; -- - NOT ALL PO DELETED --
         else
         v_action := 'D'; -- DELETED ALL PO--
         end if;
    else
         v_action := 'I';-- New PO INSERT--
    end if;
    commit;
    v_action_out := (lpad(v_count,8,'0')||lpad(v_action,1,' '));
    return v_action_out;
    end;
    and this is how I am calling it from my trigger which has to pass the v_bu and v_po values to be used in extracting data and returning the records
    see below
    if po_edi_func(v_bu,v_po) <> '' then;
    v_count:= (substr(v_action,1,8));
    v_action := substr(v_actione,9,1);
    else
    v_count:=0;
    v_action := 'I';
    end if;
    I need the extracted values of v_count and v_action for my app to reset some values

  • Alert message before report is generated - is this possible?

    Hi all,
    I have a report that is produced using already-retrieved records. It contains a number of parameter entry fields that pop up before report generation... but before the user fills out the parameter fields, I want to make sure they have remembered to enter data in a particular database field for all the retrieved records.
    I thought this would be a "report alert" but that doesn't seem to fit the purpose.
    Essentially, once the  user clicks on the "Report" button, but before they enter parameters, I want the report to pop up a reminder message that says (for example) "PLEASE MAKE SURE YOU HAVE ENTERED THE OTHER DATA BEFORE CONTINUING WITH THIS REPORT".
    I could just make this a parameter, however that isn't really what I want... I would prefer a hard popup message.
    Any ideas?
    -Kaz

    Hi again Ido,
    I should note that the main purpose of this alert is to tell the user that if they haven't filled in the necessary data in the database, that they shouldn't continue with the rest of the parameters (because they will get annoyed if they have to enter them all again - there are several more parameters than what is shown in my example image at the link above).
    You mention record selection formula... however, this also won't stop the user from uneccessarily filling in all the other parameter fields, only to find that there is still work they have to do.
    The main gist of what I want is an alert that pops up either before or at the beginning of the parameter entries, warning them to do the database entries first, before continuing with the report.
    If this alert still points them towards filling out the rest of the parameters, then I may as well stick with what I've got because it at least clearly states that they should stop right now if they havent done the necessary prep work.
    What I have now essentially does that, but I'd prefer if it didn't have an input field displayed with it.
    many thanks for your time!
    -Kaz

  • I am thinking about buying an iPad 3 with WiFi + 4G whilst I am in New York, but I would be using it in the UK and wanting to use a microsim from o2, is this possible?

    I understand the difference between WiFi and WiFi + 4G iPads, but I have been able to find very little information on whether I could buy the WiFi + 4G iPad in the US and use an o2UK microsim as I read somewhere that the at&t carrier iPad doesn't work with a verizon microsim. So I was wondering whether the iPad has a universally microsim card slot or whether they are catered to the specific carrier you choose when purchasing. However, I've also read that all iPad 3's are carrier unlocked anyway, so I am confused with the information I have found.
    If anyone could shed any light on this topic for me, I'd be very grateful, thanks

    The iPad has a micro-SIM card slot - nothing special or unique about it.
    The iPad is not sold as carrier locked.

  • Help in fetching data from structure

    Hi All
           I have a requirement wherein I need to show date field DATUM from structure PTK10 .This is related to trip reporting. Now I don't see this particular field in any DB Table. How can I show this date in my report? any clues..
    is there any way out..?
    Pls respond .
    Thanks & Regards
    Babita Sharma

    Hi
        I am using following tables in my program.
    TABLES : ptrv_head,     "General Trip Data
             ptrv_scos,     "Trip Statistics-Cost Assignment
             ptrv_perio,    "Period Data of a Trip
             pa0001,        "HR Master Record:Infotype 0001(Org.Assignment)
             t706b5,        "Names for Travel Expense Types
             v_ptrv_head,
             "Join to Tables PTRV_HEAD & PTRV_SHDR & PTRV_PERIO
             v_ptrv_srec.   "Join to PTRV_SREC & PTRV_SADD
    Also , as suggested by Mrutyunjaya, direct access of structure in select
    query is not possible.
    any clues..
    Thanks & Regards,
    Babita Sharma

  • Printing a report from forms

    I would like to print a report from forms without opening reports first. Is this possible and if so how?

    From a command-line or .BAT file (assuming Windows and Developer6i) run the following (on a single line). It will go to your default printer.
    <ORA_HOME>\bin\rwrun60 <report>.rdf userid=<user>/<pw>@<hoststring> destype=printer batch=yes
    null

  • How to create a variant to a report from another program at run time

    Hi experts,
                   when i am using FM  :  /OSP/REPORT_CREATE_VARIANT to create a report variant from a program then i am getting  an error 'For object /OSP/ERPNR , number range interval 01 does not exist ', how should i avoid it or can any one help me out to create a report variant from another program at run time with the results of the program.so that i can execute the report from here with this variant

    If i understand you,
    - You can use a FM like [RS_CREATE_VARIANT|https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=rs_create_variant+&adv=false&sortby=cm_rnd_rankvalue] to create a variant and then use it in the [SUBMIT|http://help.sap.com/erp2005_ehp_03/helpdata/EN/fa/096d67543b11d1898e0000e8322d00/frameset.htm] statement USING SELECTION-SET.
    - But you may also use SUBMIT with WITH parameters which doesnt require variant creation and with much less programming efforts.
    - You can mix the two solutions also.
    So what is you actual requirement, also look at some documentation like [ Scheduling a Job: Full-Control Method|http://help.sap.com/erp2005_ehp_03/helpdata/EN/fa/096ce5543b11d1898e0000e8322d00/frameset.htm]
    Regards

  • I need to secure a pdf so it cannot be edited, except for the first page.  Is this possible?

    Can you secure all but one page of a pdf?  I would like the first page to be able to be edited, but the rest of the document to be protected from editing, is this possible?  If so, how?
    c

    What do you mean by editing PDF? If you have a PDF form and want to make some form fields, in your case pages other than the first page, non-editable, you can lock the form fields on all pages other than first. You can write a JavaScript that does that, include it in the original PDF form and activate it at some point in time (like when a certain button is clicked, or certain form field gets focus). If you mean other ways of editing, like changing text on a page, you cannot protect only part of the document from that.

  • BOMGR 0070 message in a Full Client report from webintelligence

    Hi, I have a problem with a FullClient report from Webi. This report run very well in fullClient, but when I try to run it from webintelligence. It sends me the following error message:
    "System error   COM error during call to BusinessObjects server process. (Error: BOMGR 0070)   The remote procedure call failed.   no error message to display "
    I'm working with BO 6.5 over windows, wiht IIS.
    I have a condition in this report, it asks me for a date interval. If I have 4 years in this interval, I don´t have any problem, but if I have more than 4 year, like 8 year, the message appear and stop the report
    I have to two queries in this report, only one of them have the condition, then in report I link the information by a key column
    I've cheked the log files, but they haven't given additional information. BOMgr log for example say:
    "2009/04/13 15:42:40.677|>>|E| | 4376|5868| |||||||||||||||CATCH  :# BO Manager returns a COM error to the client!
    2009/04/13 15:53:32.843|==| | | 4376|5868| |||||||||||||||### Create SessionManager smart proxy ...
    2009/04/13 15:53:32.858|==| | | 4376|5868| |||||||||||||||LOG    :  DocContext file deleted [ dc#=1, docid='wi00000001', doc name='AD-HOCProd.rep', path name='D:Program FilesBusiness ObjectsBusinessObjects Enterprise 6
    odesmxwin11002mycluster     empsessions876_1039265889$es33B53903211A44FB385726F9QT6wi00000001xy_name.rep' ]
    2009/04/13 15:53:32.858|==| | | 4376|5868| |||||||||||||||LOG    :  DocContext destroyed
    2009/04/13 15:53:33.187|==| | | 4376|5868| |||||||||||||||LOG    :  DocContext file deleted [ dc#=2, docid='wi00000002', doc name='Líneas Personales.rep', path name='D:Program FilesBusiness ObjectsBusinessObjects Enterprise 6
    odesmxwin11002mycluster     empsessions876_1039265889$es33B53903211A44FB385726F9QT6wi00000002xy_name.rep' ]
    2009/04/13 15:53:33.187|==| | | 4376|5868| |||||||||||||||LOG    :  DocContext destroyed
    2009/04/13 15:53:33.187|==| | | 4376|5868| |||||||||||||||DeleteTempDirectory(D:Program FilesBusiness ObjectsBusinessObjects Enterprise 6
    odesmxwin11002mycluster     empsessions876_1039265889$es33B53903211A44FB385726F9QT6)"
    Some one help me. Thanks in advanced.

    Thanks for your input, Laura. The only name that is longer than 8 characters in the URL is the server name, 9 letters. I tried mapping a drive to the location, to connect to X:\grpwise\po instead, but I am getting the same error. In case the servername is the problem, I am going to clear some space on another server, restore there, and see what happens.

  • Regarding tutorial of how to call Oracle Reports from APEX

    Hi,
    I'm trying to call Oracle Reports from APEX using this tutorial.
    http://www.oracle.com/technology/products/database/application_express/howtos/howto_integrate_oracle_reports.html
    But in the step of 'Create the Oracle HTML DB Application', 'OE' doesn't appear in the LOV of Existing Schema, even though the sample schema exists in the schema and they are unlocked. And when I type 'OE' directly without using LOV, and press Next, the message 'Schema is reserved or restricted' appears.
    How can I create the workspace based on OE schema?

    Hello Shohei,
    I know your following the tutorial, but if you want to call oracle reports from apex it is quite easy though if your working with oracle reports 9i or higher. Just create an html region and put in the source the html code for referencing an url like to_report
    Or reference the same url from a button placed on the HTML region
    (you can create a package that would create the whole URL and returns it as a string, easier for scalability)
    Hope this can help you to (tutorial is good but try and learn from scratch is also good ;-) )
    Erwin

  • How to create a new report from an information structure?

    Dear gurus,
    My customer wants to have a sales report by product hierachy. I want to create an information structure for product hierachy and create a report from this info structure like a standard report. I dun know which steps to do. Pls tell me how to do. Your help are highly appreciated.
    Thank you!
    Rgds,
    Nghi Do

    Hi,
    Steps in LIS EXTRACTION:
    T.code - :MC18 u2013 create field catalog
    1. Characteristic Catalog
    Application-01-Sales and Distribution, 02-Purchasing, 03-Inventory Controlling, etc..
    Catalog category 1. Characteristic catalog, 2. Key figures catalog 3. Date catalog Select characteristic catalog and enter, click on characteristic select the source table and it will be display the relevant source field and select the source field, copy + close, copy.
    Save, similarly create key figures catalog
    T.code : MC21 u2013 create infostructure
    Example u2013
    Inforstructure : S789
    Application u2013 01
    Choose characteristic select the catalog, select the fields, copy + close Choose key figures catalog select the key figures ,copy + close, save and generate
    T.code u2013 MC24 u2013 create updating
    Infostructure : S789
    Update group : 01- Sales document, delivery, billing document ,enter Select the key figures click on rules for key figures give suggest rules, copy save and generate Click on updating (activate updating) Select the infostructure set periodic split 1. Daily, 2. Week, 3. Month, 4. Posting period Updating u20131)No updating,2)Synchronous updating (V1), 3)As synchronous updating (V2), 4)As synchronous updating (V3),
    T.code u2013 LBW0 - Connection of LIS Information structures to SAPBW Information structure : S786 Select the radio button-Setup LIS environment and Execute.
    Select the radio button-Generate data source and Execute.
    For Delta update:
    Select the radio button-Generate updating and Execute Select the radio button -Activate / deactivate and Execute.
    T.code u2013 SBIW u2013 Display IMG (implementation guide) Setting for applications specific data source u2013 logistics u2013 Managing transfer information structure u2013 setup of statistical data u2013 applications specific setup of statistical data u2013perform statistical setup u2013 sales.
    Choose activity
    Setup u2013 Orders, deliveries, billing
    Choose the activities enter the infostructure (S789), give name of the run, date of termination, time of termination, No. of tolerated faulty documents. Then execute
    T.code u2013 RSA3 u2013 Extractor checker
    Give the data source name eg. 2LIS 01S789 and execute, result will get some records Go to BW side replicate data source u2013 Assign infosource u2013 Create infocube u2013 Create update rules u2013 create infopackage and schedule the package with initialize delta process.
    For delta update :
    In R/3 side
    T.code u2013 MC25, set update (V1) or (V2) or (V3)
    T.code u2013 LBW0, choose generate updating and execute then choose activate / deactivate and execute
    BW side - create infopackage and schedule the package with delta update.
    First time if your scheduling the infopackage -in R/3 side T.code :MC25 -Udating set to No update,insted of selecting the update V1,V2,V3.
    If your doing the Delta update:in R/3 side T.code :MC25-Updating set to either V1 or V2 or V3. and the to T.code :LBW0 -Select the radio button Active/deactivate and Execute.
    and schedule the infopackage with delta update.
    Modules for LIS : SD,MM, PP,QM.
    Deltas for LIS:
    After setting up the LIS environment, 2 transparent tables and 1 extract structure is generated for this particular info structure. Within transaction SE11 you can view the tables u2018SnnnBIW1u2019, u2018SnnnBIW2u2019 and the structure u2018SnnnBIWSu2019 and the InfoStructure itself u201ASnnnu2018
    The tables S5nnnBIW1 & SnnnnBIW2 are used to assist the delta update process within BW.
    Extract structure u2018SnnnnBIWCu2019 is used as an interface structure between OLTP InfoStructure and BW
    The OLTP system has automatically created an entry in the control table u2018TMCBIWu2019. Within transaction u2018SE16u2019 youu2019ll see, that for your particular InfoStructure the field u2018BIW activeu2019 has the value u2018Xu2019 and the field u2018BIW statusu2019 is filled with value u20181u2019 (refers to table SnnnBIW1).
    The orgininal LIS update program u201ARMCX#### will be enhanced within the form routines u201Aform Snnnbiw1_update_....u2018 and u201Aform Snnnbiw2_update
    With the transaction u2018SE38u2019 youu2019ll see at the end of the program starting at line 870 / 1006, that the program is enhanced within a u2018BIW delta updateu2019 coding
    Within the flag u201AActivate/Deactivateu2018 the update process into the delta tables (SnnnBIW1/Sn5nnBIW2) is swichted on/off. In the table u201ATMCBIWu2018 is defined, which table is active for delta update.
    Note: The delta updating is client dependent !
    Regards,
    Ram Pedarla
    Edited by: RamPedarla on Apr 1, 2010 10:35 AM
    Edited by: RamPedarla on Apr 1, 2010 10:35 AM

  • OBIEE: REPORT FROM 2 FACTS WITH ONE SHARED AND ONE UNSHARED DIM; POSSIBLE??

    Hi All,
    We have a typical scenario to build a report from 2 subject areas(ideally from 2 facts)
    Here is the Scenario: Creating a report which based on two facts(2 Subject Area's) and one common dimension and one unshared dimension.
    Example
    ======
    Dimension Date is common between Fact Transaction and Fact Credits.
    Dimension Credit Type is applicable only for Fact Credit.
    We have to build a report with the below mentioned attributes/metrics
    Dim Date. Attribute (*Common Dimension*)
    Fact.Transaction.Metric
    Fact. Credit .Metric
    Dim.Credit Type. Attribute (*Unshared Dimension*)
    Is this is possible in OBIEE..?
    Thanks,
    Govardhana

    Yes, you must use measure levels. Set the column level of each measure from the Transaction Fact to Total for the Credit Type dim.

Maybe you are looking for

  • Not so sure I want to keep my DINC :(

    I am so disappointed in the Droid Incredible.  I did buy it knowing that there were problems with the battery, but for pete's sake I couldn't even get a days worth or a night out with it.  I feel having to spend even MORE money to get a bigger batter

  • Is it possible to re-download my lost itunes?

    Dear Apple:      Unfortunately I have not been diligent enought to back up all my music. i regret to announce that for some odd reason my iphone got restored and lost all the music that I had purched via Iphone that I never got a chance to transfer t

  • 11g - InvalidSecurity : error in processing the WS-Security security header

    In 11g, I am calling a service which has the username_token_service_policy attached. In the partnerlink, I have the username_token_client_policy & have also set the binding properties for the username & password. I get the remote fault, InvalidSecuri

  • Connection for the Oracle9iAS Containers for J2EE Failed.

    I tried to Create a Connection to Oracle9iAS Containers for J2EE Provided by Oracle9i JDeveloper and received an Invalid username/password for default (admin) upon testing my connection. My Oracle9iAS Containers for J2EE are started. I used the follo

  • Subtracting in Adobe 9 Pro

    I read all the solutions in previous posts re subtracting functions and subtracting is just not working. Users said to use in the form simplified field notation: Field2-Field1 Which I inserted Let's say Field 3 needs to calculate subtraction of Field