Trouble pulling data out of a table

Ok having problem pulling infromation from a table
We are trying to add the amount of discount to our line items on our quote (which is a smartform)
I tried using both sets of code but I can't seem to pull any data from table KONV
first i tried this
SELECT SINGLE KNUMV FROM VBAK INTO L_KNUMV WHERE VBELN = is_vbdka-vbeln.
SELECT * FROM KONV INTO TABLE IT_KONV WHERE KNUMV  =  L_KNUMV AND KPOSN  =  wa_vbdpa-posnr.
LOOP AT IT_KONV INTO WA_KONV WHERE KWERT NE 0.
IF WA_KONV-KSCHL = 'ZK04'.
  m_disc =  ( WA_KONV-KWERT * -1 ).
ENDIF.
IF WA_KONV-KSCHL = 'ZK07'.
  c_disc = WA_KONV-KWERT.
ENDIF.
ENDLOOP.
item_discount = m_disc + c_disc.
I get a value for L_KNUMV and KPOSN but it never enters the loop so I thought I'd try to pull it directly with
SELECT SINGLE KNUMV FROM VBAK INTO L_KNUMV WHERE VBELN = is_vbdka-vbeln.
select single * from konv into wa_mkonv where knumv = l_knumv and kposn = wa_vbdpa-posnr and kschl = 'zk04'.
m_disc =  ( wa_mkonv-kwert * -1 ).
select single * from konv into wa_ckonv where knumv = l_knumv and kposn = wa_vbdpa-posnr and kschl = 'zk07'.
c_disc = ( wa_ckonv-kwert * -1 ).
item_disc = m_disc + c_disc.
But still didn't get any data from KONV
Is my code wrong or am I trying to pull data from the wrong area.  If i go into table se16  and I place the values in for KNUMV and the KPOSN and can see the information for KONV-KWERT but my smartform isn't pulling it in.

Israel Edmiston wrote:
Ok having problem pulling infromation from a table
>
> We are trying to add the amount of discount to our line items on our quote (which is a smartform)
>
> I tried using both sets of code but I can't seem to pull any data from table KONV
>
> first i tried this
>
> SELECT SINGLE KNUMV FROM VBAK INTO L_KNUMV WHERE VBELN = is_vbdka-vbeln.
>
> SELECT * FROM KONV INTO TABLE IT_KONV WHERE KNUMV  =  L_KNUMV AND KPOSN  =  wa_vbdpa-posnr.
>
In Debug Mode check if IT_KONV tab is filled.....
> LOOP AT IT_KONV INTO WA_KONV WHERE KWERT NE 0.
>
> IF WA_KONV-KSCHL = 'ZK04'.
>   m_disc =  ( WA_KONV-KWERT * -1 ).
> ENDIF.
>
> IF WA_KONV-KSCHL = 'ZK07'.
>   c_disc = WA_KONV-KWERT.
> ENDIF.
>
> ENDLOOP.
>
> item_discount = m_disc + c_disc.
>
> I get a value for L_KNUMV and KPOSN but it never enters the loop so I thought I'd try to pull it directly with
>
> SELECT SINGLE KNUMV FROM VBAK INTO L_KNUMV WHERE VBELN = is_vbdka-vbeln.
>
> select single * from konv into wa_mkonv where knumv = l_knumv and kposn = wa_vbdpa-posnr and kschl = 'zk04'.->
'ZK04'
>
> m_disc =  ( wa_mkonv-kwert * -1 ).
>
> select single * from konv into wa_ckonv where knumv = l_knumv and kposn = wa_vbdpa-posnr and kschl = 'zk07' ->
*'ZK07'*
>
> c_disc = ( wa_ckonv-kwert * -1 ).
>
> item_disc = m_disc + c_disc.
>
>
> But still didn't get any data from KONV
>
> Is my code wrong or am I trying to pull data from the wrong area.  If i go into table se16  and I place the values in for KNUMV and the KPOSN and can see the information for KONV-KWERT but my smartform isn't pulling it in.

Similar Messages

  • Best Practices for pulling data out of Documentum (w/Crystal and Universe)

    I was curious to see if we had any best practices to see if we can pull data out of Documentum.
    Thanks
    Ian S

    None, use what works.

  • Having total brain fart - pulling data from two differnt tables

    Good morning,
    I am completely having a blonde moment here.
    My main select statement can pull all the data I need from one table however I need to define my result set by date range and the date data is held in another table. I am trying to remember how to write my statement to pull data from two tables in the same database.
    I haven't written query in a couple of years and was self taught previously - I need data our report management program cannot produce.
    Any help would be fantastic! Thank you :-)
    Dez
    Edited by: user10773439 on Jan 8, 2009 8:12 AM

    Here is the pseudo sql.
    select columns_from_table_a, columns_from table_b
    from table_a a,
    table_b
    where a.common_column = b.common_column
    and b.date_column > = <startdate>
    and b.date_column < <end_date>+1;
    --Dont forget to_date your date values                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Confirmed Dimensions. OBIEE Not able to pull data from two fact tables.

    Hi Experts,
    I have a very simple set up of Star Schema with two fact tables and 1 dimension. Both fact tables joined to the dimension at the same level.
    When i pull a column from both fact tables and the dimension table in OBIEE, it has to create simple SQL like below:
    select FACT1.column1,
    Fact2.Column1,
    Dim.Column1
    from FACT1, FACT2, DIM
    where FACT1.ID = DIM.ID and FACT2.ID = DIM.ID
    but instead it creating a query in a very complex way:
    select case  when D1.c2 is not null then D1.c2 when D2.c2 is not null then D2.c2 end  as c2,
         D1.c1 as c3,
         D2.c1 as c4
    from
         (select FACT1.Column1 as c1,
                   DIM.Column1 as c2
              from
                   DIM T1287863,              
                   FACT1 T1287945              
       where  (DIM.ID = FACT1.ID)
           ) D1 full outer join (
            select FACT2.Column1 as c1,
                   DIM.Column1 as c2
              from
                   DIM,              
                   FACT2
              where  ( DIM.ID = FACT2.ID)
         ) D2 On isnull(D1.c2 , '1') = isnull(D2.c2 , '1') and isnull(D1.c2 , '2') = isnull(D2.c2 , '2')
    I even tried setting the levels for both the fact tables and it still creates the query in avove way. Any thoughts on this will be vary helpful.

    Subramanian,
    see below the code we're using for the RFM.
    on the ct_containers table i'm passing a line, and its getting updated after the call.
    on the ct_errors table i just want to receive the errors and i only receive the line, we add manually there ('Serious error with validation code').
    kr, achim
    FUNCTION zbapi_ra_validations .
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(IS_RA_SCREEN) TYPE  ZBAPI_S_RA_SCREEN
    *"  CHANGING
    *"     VALUE(CT_ERRORS) TYPE  ZRA_T_ERRORS
    *"     VALUE(CT_CONTAINERS) TYPE  ZRA_T_CONT_IP
      DATA:
        lo_badi_handle TYPE REF TO zra_validation_rule,
        ls_error       TYPE zra_s_error.
      GET BADI lo_badi_handle.
      TRY.
          CALL BADI lo_badi_handle->validate_rules
            EXPORTING
              is_screen_flds = is_ra_screen
            CHANGING
              ct_containers  = ct_containers
              ct_errors      = ct_errors.
        CATCH zcx_ra.
          ls_error-message = 'Serious error with validation code'.
          APPEND ls_error TO ct_errors.
      ENDTRY.
    ENDFUNCTION.
    if i call this rfm in SE37 the ct_errors table is populated with all errors and the manually created line.
    Message was edited by: Achim Hauck

  • How to pull data out of a text field?

    How could I accomplish the following.?
    Current data in the column.
    PREOPERATIVE DIAGNOSES:   1.  Right shoulder rotator cuff tear.   2.  Right shoulder biceps tendon disease with superior labral tearing.      POSTOPERATIVE DIAGNOSES:   1.  Right shoulder rotator cuff tear.   2.  Right shoulder biceps tendon disease with superior labral tearing.      SURGEON:  Jane, Doe, MD      ASSISTANT:  Jane, Doe, PA-C and Bob, Doe MD, orthopedic resident.  The assistance of a physician's assistant was required for limb positioning and placement of anchors.      ANESTHETIC: Interscalene block plus general.      DRAINS:  None.      COUNTS: Sponge and needle count were correct.      MATERIAL FORWARDED TO THE LABORATORY:  None.      OPERATION PERFORMED:   1.  Right shoulder arthroscopic rotator cuff tear.   2.  Right shoulder open subpectoral biceps tenodesis.   3.  Right shoulder subacromial decompression with acromioplasty.   4.  Right shoulder extensive glenohumeral debridement.   
    I would like the following in MS Excel.  I would like to pull the header out into a separate column.
    Header
    NOTE_TEXT
    PREOPERATIVE DIAGNOSES: 
    1.  Right shoulder rotator cuff tear.  2.  Right shoulder biceps tendon disease with superior labral tearing. 
    POSTOPERATIVE DIAGNOSES:
    1.  Right shoulder rotator cuff tear.  2.  Right shoulder biceps tendon disease with superior labral tearing. 

    The entire field of data is below.  I highlighted the header in Red where the data stopped being accurate.
    5/7/2014
    LINE
    Split_Text
    1
    PREOPERATIVE DIAGNOSES:   1.  Right shoulder rotator cuff tear.   2.  Right shoulder biceps tendon disease with superior labral tearing.      POSTOPERATIVE DIAGNOSES:   1.  Right shoulder rotator cuff tear.   2.  Right shoulder biceps tendon disease with superior labral tearing.      SURGEON:  Bob, Doe  MD      ASSISTANT:  Jane, Doe  PA‑C and Jane, Doe , MD, orthopedic resident.  The assistance of a physician's assistant was required for limb positioning and placement of anchors.      ANESTHETIC:  Interscalene block plus general.      DRAINS:  None.      COUNTS:  Sponge and needle count were correct.      MATERIAL FORWARDED TO THE LABORATORY:  None.      OPERATION PERFORMED:   1.  Right shoulder arthroscopic rotator cuff tear.   2.  Right shoulder open subpectoral biceps tenodesis.   3.  Right shoulder subacromial decompression with acromioplasty.   4.  Right shoulder extensive glenohumeral debridement.      INDICATIONS:  Mr.XXXXX is a 71‑year‑old male with symptomatic right shoulder rotator cuff tear and degenerative tearing of his labrum and biceps tendon symptoms.  His AC joint is asymptomatic.  I had a long conversation with Bob regarding options.  We discussed nonoperative and operative options.  He would like to proceed with surgical intervention.  I explained the risks and this is well documented in my Clinic note.  On the day of surgery, I met with Bob Doe and his wife.  I reviewed the procedure and answered their questions.  They understand and agree to proceed.      OPERATIVE FINDINGS:  Reveal symmetrical range of motion.  The diagnostic arthroscopy reveals degenerative tearing of the anterior superior and posterior superior labrum.  There was thickening of the biceps tendon.  Minimal fibrillation of the superior subscapularis.  The subscapularis is intact.  There was high grade partial‑thickness tearing of the entire
    2
    supraspinatus and anterior infraspinatus.  The more posterior rotator cuff was normal.  There is chondral thinning of the articular cartilage of the humeral head and glenoid, but no significant chondral loss.  Within the subacromial space was a significant anterior spur off the acromion.      IMPLANTS:  Arthrex 4.5 mm PEEK corkscrew anchor x2, Arthrex 4.75 mm BioComposite SwiveLock x2.      DESCRIPTION OF PROCEDURE:  After in ["V12.72","V13.89","V10.05"] was counseled and plans, alternatives and risks were discussed, consent was obtained.  The correct operative extremity was marked in the preoperative holding area and preoperative antibiotics were administered.  An interscalene block anesthetic was administered without difficulty.  The patient was brought back to the operating suite and administered a general anesthetic.  The examination under anesthesia was performed and the findings are noted above.  The patient was placed in the beach chair position with bony prominences well padded.  The right upper extremity was prepped and draped in the usual sterile fashion.  A timeout process was completed.  A standard posterior arthroscopy portal was created followed by an anterior portal for the working instruments.  A thorough diagnostic arthroscopy was undertaken and the findings are noted above.  Attention was now turned to the extensive glenohumeral debridement.  The motorized resector was used to debride the frayed labrum anteriorly, superiorly and posteriorly.  The biceps tendon was transected.  The stump of the biceps tendon was debrided back to a stable margin.  The arthroscopic instruments were removed.      A 3‑4 cm incision was made in the mid axillary fold.  Hemostasis was obtained with electrocautery.  Dissection was carried down to the pectoralis major fascia, which was opened bluntly, exposing the underlying bicipital groove.  The long head of the biceps tendon was retrieved.  A #2
    3
    FiberWire was placed in the tendon 2 cm away from the musculotendinous junction.  A Cobb was used to remove soft tissue from the bicipital groove.  A 7 mm unicortical socket was placed in the shaft of the humerus.  The long head of the biceps tendon was placed within this socket and held in position with a 6.25 mm BioComposite SwiveLock achieving excellent purchase.  The sutures from the tendon and implant were tied together.      The arthroscope was reinserted into the subacromial space.  A standard lateral portal was created.  A thorough bursectomy was undertaken.  Motorized resector was now used to debride and freshen the end of the torn rotator cuff.  A combination of a motorized resector and ring curet were used to abrade the greater tuberosity.  A second lateral portal was created.  A 4.5 mm PEEK corkscrew anchor was placed in the posterior aspect of the tear 5 mm away from the articular cartilage.  All 4 of these sutures were brought up through the rotator cuff in a mattress fashion.  A second anchor was now placed in the anterior aspect of the cuff tear.  One set of sutures was brought through the cuff in a mattress fashion and the far anterior set was brought to the far anterior aspect of the supraspinatus tear as a simple suture construct.  This knot was tied.  The remaining sutures were tied as mattress sutures.  One limb of suture from each set was then positioned into a 4.75 mm BioComposite SwiveLock and impacted 1 cm lateral to the greater tuberosity creating an excellent double‑row suture bridge equivalent repair.  This was repeated with a second BioComposite SwiveLock and the remaining 3 sutures more anteriorly.  The tear was then inspected.  Range of motion revealed no gapping.      Attention was now turned to the acromioplasty.  The CA ligament was recessed off the anterior acromion with the radiofrequency device.  A bur was then used to flatten the anterior acromion.  Bone was removed until
    1
    5/7/2014
    PAT_NAME
    LINE
    Split_Text
    DAMROW,NEIL ARTHUR
    4
    the acromion was flat from posterior to anterior.  Bony debris was then removed and the subacromial space was copiously lavaged.  The arthroscopic instruments were removed.  Portal sites were closed with nylon.  The anterior incision was closed with 2‑0 Vicryl and Monocryl.  Sterile dressing was applied followed by a shoulder immobilizer.  The patient was extubated on the operating table and taken to the recovery room in good condition.  He tolerated the procedure well and there were no complications.  Estimated blood loss was minimal.      DISPOSITION:  The patient will be discharged home through Same Day Surgery per protocol.  He may remove his dressing on postoperative day #3 and shower and redressing incisions with Band‑Aids and gauze.  He will wear a sling for 6 weeks.  He may start some very gentle closed chain range of motion exercises in the next 7‑10 days with physical therapy at the Clinic.  The patient will follow up with me on postoperative day #12 at  for suture removal.  He was given oxycodone, MS Contin and Vistaril for postoperative pain.  He may have a refill of oxycodone or Vicodin in the first month postoperatively.         Jane,Doe, MD             D: 08/09/2013 12:51   T: 08/09/2013 13:37   MT: ag      Name:     DAMROW, NEIL   MRN:      0000‑00‑00‑00        Account:        0   DOB:      07/01/1942           Procedure Date: 08/09/2013      Document: E4204056
    2

  • Query to pull data from 2 different tables

    Hi so currently I am using VS2008 and am using a DNN module to pull information based on a specific Article on our website. On the home page I am currently displaying the Title, Summary, Date and Author of the article. Currently under our feature Stories section of the site http://prepsonthenet.com/dnn/Home/tabid/386/Default.aspx the Title, Summary and Date, Author are being displayed for the top 8 articles that contain images. I was able to combine the 'Author' and Article table to display the 'AuthorName' for the first 8 images. That code is below:
    strQueryArticleFirst.Append("select top 4 ArticleID,Title,Summary,[Text],");
    strQueryArticleFirst.Append("(SELECT NAME FROM AUTHOR AU WHERE AU.AUTHORID = Article.AUTHORID) AS AUTHORNAME, ");
    strQueryArticleFirst.Append("Convert(varchar(50),date,110)as [Date] from article");
    strQueryArticleFirst.Append(" WHERE CategoryID=27 AND State='WI' AND deleted is null ");
    Within this we have a strQueryArticleSecond which displays the next 6 stories without images: http://prepsonthenet.com/dnn/Home/tabid/386/Default.aspx
    The code is a bit different here though and I can't seem to figure out how to link this back up to grab the 'AuthorName'
    strQueryArticleSecond.Append("SELECT * FROM(");
    strQueryArticleSecond.Append("select top 4 * from( ");
    strQueryArticleSecond.Append("select top 8 * from article ");
    strQueryArticleSecond.Append("where CategoryID=27 AND State='WI' and deleted is null ");
    I get what the strQueryArticleSecond and how it is grabbing all the fields that were used in strQueryArticleFirst. I am just wondering how to re-link the AuthorName is this strQueryArticleSecond. Any help is appreciated. Thanks!

    Sarangan,
    Is there a way to get these data in a single
    select query.Yes, use the "union" operator. See the "Oracle SQL Reference" for more details. It is available from here:
    http://tahiti.oracle.com
    Good Luck,
    Avi.

  • How to improve performance by pulling data instead of BSEG table?

    Hi,
    We are facing issue in which we have to pull material no for some non copa postings.
    But if we use BSEG table then serious performance issues are coming up..
    so are there any other tables / combination of tables that we can look for instead of BSEG?

    Hi,
    BSEG is Cluster table, you can only select with key fields.
    if you have a select:
    select belnr budat wrbtr from bseg
              into table it_bseg
               where bukrs = bukrs
                   and belnr = belnr
                   and gjahr = gjahr
                   and bschl = 31.
    it's much better to select of this way:
    select belnr budat wrbtr from bseg
              into table it_bseg
               where bukrs = bukrs
                   and belnr = belnr
                   and gjahr = gjahr.
    delete it_bseg where bschl ne '31'.
    Regards,
    Fernando

  • Need XML table data out of Oracle Tables

    I have an application running using Java/XML technology. My database source is completely HOST and I communicate with HOST to get the data or to save/update the data through XML only. Here I have a situaion, I have my information in metadata (xml tables fromat) and I need to get some of the information from other application which is in Oralce. So I need to get the daily based updated information from Oracle database and that inturn should update my xml tables ( When I say update xml tables, whenver there is change in the Oracle database data my xml tables should also have that changed data).
    Can any one help me how to get this done.
    Regards,
    Sriram Peri
    Work: 919-382-5672
    Home: 919-402-0207
    [email protected]

    Which version of the database...

  • Getting Data out of MM tables

    hello everyone,
    I need to gather the following material details into one internal table and loop through them.
    I have declared the following internal table:
    tables: MARA, MAKT, MARC, STXH.
    data: begin of matl_details occurs 0,
    prod_id type mara-matnr,
    order_unit type mara-bstme,
    price type mara-vpreh,
    prod_group type mara-prdha,
    base_uom type mara-meins,
    mnfctr_id type mara-mfrnr,
    mnfctr_part_no type mara-mfrpn,
    sh_desc type makt-maktx,
    delvry_time type marc-plifz,
    end of matl_details.
    I need PURCHASE ORDER TEXT as well. How can I get it and put it in my internal table?
    I tried using BAPI_MATERIAL_GET_DETAIL to get all material detail and get ORDER_UNIT, DELIVERY_TIME, and PURCHASE ORDER TEXT with BAPI_PO_GETDETAIL. But somehow I don't know how to link them so that i can get all my details into one internal table.
    Would it be easier to use 'select' statement instead? How would I be able to do it?
    Your help will be rewarded.
    Thanks in advance.
    Regards,
    Eddie.

    how about something like this:
    data: begin of matl_details occurs 0,
    prod_id type mara-matnr,
    order_unit type mara-bstme,
    price type mara-vpreh,
    prod_group type mara-prdha,
    base_uom type mara-meins,
    mnfctr_id type mara-mfrnr,
    mnfctr_part_no type mara-mfrpn,
    sh_desc type makt-maktx,
    delvry_time type marc-plifz,
    ebeln type ekko-ebeln,
    end of matl_details.
    data t_ITEM_TEXTS type  BAPIEKPOTX.
    select maramatnr marabstme maravpreh maraprdha marameins maramfrnr mara~mfrpn
    maktmaktx marcplifz ekpo~ebeln
    from mara
    join marc on marcmatnr = maramatnr
    join makt on maktmatnr = maramatnr
    and spras = sy-langu
    join ekpo on ekpomatnr = maramatnr
             and ekpowerks = marcwerks
    into table matl_details
    where.......
    delete adjacent duplicates from matl_details comparing ebeln.
    loop at matl_details.
    CALL FUNCTION 'BAPI_PO_GETDETAIL'
      EXPORTING
        purchaseorder                    = matl_details-ebeln
       ITEM_TEXTS                       = 'X'
    TABLES
       PO_ITEM_TEXTS                    = t_item_texts
    process here.......
    endloop.

  • Pulling data out of an xml document

    i'm sure many of you have had this problem before but i haven't been able to come up with a solution yet. here is the problem:
    i am recieving
    ERROR at line 1:
    ORA-19025: EXTRACTVALUE returns value of only one node
    ORA-06512: at line 35
    when attempting to use extractvalue because of multiple instances of the same element.
    i can build the extractvalue string dynamically but i first need the number of nodes that exist. the xml is in a queue. i tried using the following to get the count but it's not working properly:
    SELECT COUNT(*) into lCount
    FROM AQ$WS_Q_TABLE a
    WHERE existsNode(xmltype(a.USER_DATA.ECMPS_FILE),'/MonitoringPlan/MonitoringLocationData/UnitData/UnitFuelData/UnitFuelIDKey') = 1
    and a.MSG_ID = '0861C8ADB0CC018DE040A8C0492A37CB';
    it always returns 1.
    i'm obviously not constructing the sql properly.
    any ideas?
    thanks for any help.

    right but in order to get all the nodes loaded. i need to find out how many nodes there are.
    that's what i'm trying to do with the query i posted but it always returns 1 and i'm not sure why.

  • Formula to pull data out of one record

    Post Author: ralph.devlin
    CA Forum: Formula
    I am looking at writing a formula that would read one numeric field and then look for that number in a different field in the database and when it finds it, it would then read another field and return that back to the report, IE WO_NUM is read and it is looking for that number in PARENTWOID once it finds it, it returns the RESPONS field of that record. Also there may be multiple records with the same number in the PARENTWOID field. I will need to retrieve all of them that exist, so I was thinking a loop may need to be entered as well to keep doing it until it has found all of them, etc and then return them to the report, I may also need some formating added so they are spaced out evenly, etc.
    thanks
    Ralph

    Post Author: ralph.devlin
    CA Forum: Formula
    Thanks, since we may multiple matches, does a "loop" statement need to be added?
    I just tried that statement but it says I need to enter a number range with my second field after the IN statement

  • Using Microsoft SSIS to pull data from APEX

    Just curious...is it possible to pull data out of APEX using SSIS? Has anyone done it? How do I establish the connection?

    You would pull data out of an Oracle database, APEX is just the development tool like .nyet and Forms... What exactly are you looking to do?
    Thank you,
    Tony Miller
    Webster, TX
    You can get more with a kind word and a two-by-four than you can with just a kind word
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Extracting Data Out of BW

    Hi,
    I'm researching what other companies are doing with regards to extracting data out of your BW data warehouse.
    Do you allow data to be extracted out of BW?
    If so, do you push data out to them?  Or do the external systems pull the data out?
    There's no right answer here.  I'm just trying to get a feel for best practices as to whether external clients should pull data out or have it pushed to them.
    By PUSH, I mean that BW initates the data extraction.  And by PULL, I mean that external systems initiate the data extraction.
    THANKS!

    Hi,
    Does anybody know that is it possible created an infospoke on a multicube/multiprovider?
    When creating a infospoke you can only choose between
    Datasource types: Basicube, Infobject (x2) & ODS, if you choose Basicube option and then do the f4 dropdown  the drop down does not contain a list  of Multiprovisers.
    However if you type the name of the multiprovider straight into the field the system will accept it, and the spoke will activate.
    I have tried to execute the spoke and it does generate a few data packets before  erroring. I am unclear if the error is because the spoke is based on a Multiprovider or a different issue. Error message provided below:
    System error: RSDRC / FORM AUTHORITY_CHECK RSDRC / FORM AUTHORITY_CHECK R
    System error: RSDRC / FUNC RSDRC_BASIC_CUBE_DATA_GET RSDRC / FUNC RSDRC_B
    System error: RSDRC / FORM DATA_GET RSDRC / FORM DATA_GET RSDRC / FORM DA
    Thanks
    Tony

  • Reporting On Classification Data Out Of Material Master Inquiry (MM03)

    I have a question for anyone who can help.  Getting classification data out of SAP table is not straight foreward as most other data in MM03.  Has anyone ever extracted classification data ??  If so, how  ??
    Thank-You
    Jeff

    hello there,
    were you able to obtain any information on your query? I have a similar requirement and I'd be grateful if you could help.
    Thanks,
    Yusuf

  • Restrict number of rows to be pulled from PeopleSoft's PS_LEDGER table while importing data in FDMEE

    Hi,
    We need to know if FDMEE 11.1.2.3.520 product supports restricting number of rows to be pulled from PeopleSoft's PS_LEDGER table.
    All the records fetched from PS_LEDGER is getting loaded into TDATASEG table.
    Currently, it is trying to pull all the records based on the given "period", "version" and "year" combination. We are looking to restrict rows based on specific account/entity/program/subprogram combination.
    If this is can be done, will it be an out-of-the-box functionality or does it require any customization/import scripts/api.
    Admin guide does say we can use Jython to filter rows using import scripts. However, it seems to be limited to file not a table as a source.
    I have attached a document with the screenshots so that the issue is better understood !
    Thanks,
    Hari

    1)
    When you set a column to hidden in a classic report using the method I described, it creates hidden form elements for that column.
    <tt><input type="hidden" name="f01" value="" id="f01_0002"></tt>
    You should inspect the source to figure out the name value.
    Since this belongs to the wwv_flow form, we can therefore get this data with: wwv_flow.f01
    Alternatively, you could have used the apex_item API to achieve the same result, which probably gives a bit better control.
    http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_item.htm#CHDBFHGA
    select apex_item.hidden(1, col) || col col
    from table
    Set that column to a standard report column so it doesn't escape the html.
    You can also reference the data in these fields using PL/SQL using the apex_application API:
    http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35127/apex_app.htm#CHDGJBAB
    2)
    As above, setting the column to hidden creates hidden elements on the page. It is simply f01 because that is the only hidden field I would have on my page. With four reports on the page, you would need to be careful not to do the same on the other reports, as you would get inaccurate data. For each report, setting columns to hidden always starts with f01. In that, you would be best to use the apex_item API.
    I actually initially ran into this issue when i had a tabular form on the same page as a report with hidden fields, which was causing conflicts in the page processes.
    Hope it helps.

Maybe you are looking for

  • Error in Step 4.5 of the create page

    Hi all, In running the CREATE PAGE applications... At Step 4.5 On debugging at this step the Search page opens but on clickin on the Create Employee details it returns an error page as follows..... Can any one pleae help me out in solving this issue?

  • Acrobat X & Outlook: Create PDF's that show time SENT

    Hi I am creating PDF's from emails in Outlook using Acrobat X. When I create PDFs the PDFs show the time the email was received. I need the PDFs to show the time the email was sent (i.e. the same way it is displayed in Outlook). How do I do this? Can

  • Embedded fonts not showing?

    I've embedded fonts in my swf for users. On my computer, which contains the font, it works locally and online as it shoud. However, on user's computers without the font it defaults to the device font, why? Isn't the font supposed to be embedded in th

  • Ovi Suite 3.0.0.284 not recognizing N8

    After I updating to new version of Ovi Suite, N8 device is not recognized. I did re-install/re-boot my windows 7 64-bit. No use.  I did try to revert back the Ovi install, funny thing is it is not allowing me to use the older version.  I doubt that N

  • Error message when watching movie

    I am watching a rented movie on apple tv and the message "an error occurred loading this content"  this also happens when i try to watch a movie rented first on my mac computer and watching on  tv.  Not sure what to do.