Genric datasource using FM to extract quantity with out unit fields

Hi All,
I have a situation where i need to extract data from one custom table with 5 fields. one filed is quantity but i created structure and also the refernce fields for quantity in it. i wrote a program also which is fine. but while creating a datasource it is giving error that particular field in the extractor is hide and unable to craete the datsource. could someone tell me how to proceed further.
Regards,
sekhar
Edited by: Sekhar Reddy on Oct 21, 2008 4:40 PM

HI,
The structure you created for DataSource is wrong, because genarally this kind of error will come for Qty and Currency unit, so take ABAPer help and create structure.
I also got the same error, but that table was designed by ABAP team, so I informaed to that team then they corrected that table.
Thanks
Reddy

Similar Messages

  • Using Planned order Change BAPI with out changing date

    Hi
    I have a planned order with start date in future.
    With in a program, I want to call the planned order using the FM BAPI_PLANNEDORDER_CHANGE to re-explode the order BOM.
    I find that only if I change the order start date to system/current date, the planned order BOM gets updated/re-exploded. Else there is no change in the order BOM.
    My requirement is to re-explode the BOM with out changing the order dates. In the function module I am maintaining "X' against BOM_EXP_FIX_IND.
    But when I do it manually using MD12 and explode BOM with out changing the future start date, the order BOM gets updated.
    Please help on this. Or is there any other FM/BAPI for this purpose.

    Dear Pradeep,
    you could try to set DET_SCHEDULE = X with out
    FIRMING_IND  --> No
    BOM_EXP_FIX_IND   --> No
    Let me Know if it modification setting have solved your problem and i have useful for you,
    Daniele

  • Sender file adapter Adapter with out Key field

    Hi All
                 i do have have a requirment ,Sender file adapter , for FCC but file is  with out Key field
    HEADER>
    <DATA1>
    <DATA2>
    <DATA3>
    <HEADER>              file structure
    <ITEM>
    <ITEM1>
    <ITEM2>
    <ITEM3>
    <ITEM
    and the file si
    '10001,20081902,US
    10,soda,1
    30,soda,4
    40,soda,5
    10002,20081902,US
    10,steel,1
    30,steel,4
    40,steel,5
    , and i need to identify the Header and Item using there lenght only , please anyone as idea abt this help me

    Why to post the same question TWICE... in 30 min ? you don't like the answers ?
    File content Conversion Issuse for a Sender File Adapter

  • Can we create table maintence generator with out key field

    Hi,
    I have created a ztable in that client is the primary key as I don't want any other field as primary key.
    For this  i have created table maintenace generator but when i open it in sm30 blnak screen is coming.
    Here my question is can we create a table maintenace generator with out key field other than MANDT.
    If it's possible please let me know.
    Regards
    hari

    >
    Mathews Joseph wrote:
    > I agree to the above points , but you can try one thing.
    >
    > When you create the table maintenance screen , from SE11 you assign a function group.
    >
    > Double click on the function group and you can go to the main program and open that in SE80, take screen generated and try manually adjusting the screen and putting the non key field details...
    >
    > Not sure this will work , but may be you can give it a try.
    >
    > Mathews
    But the table could hold at most a single record (per client). The design is lacking.
    Rob

  • How to Reduce  Finish Stock Quantity  with out sales

    Hi All
    My client wants to reduce the finish stock  with out sales, as they want it to maintain a particular Quantity for that finish from 1st of April 2010
    So how to achieve this & with which movement type , i should use in MB1A
    Or any other suggestion to map this scenario
    Thanks In advance
    Ashok

    Ashok
    in both cases the result will absolutely the sames in value, the only difference is where the amount is posted either  to Inventory difference account or to an Scrapping account.
    I would suggest no to run the Physical inventory to correct your stock, you will not be able to get around the auditor to explain why you have a huge nventory difference - like say 100.000 euro or 10.000 pieces. - it cannot be due to theft, or to erros in order picking.
    But if you scrap it, you can explain that the scrapped material was not good enough to market it and we decided to scrapp it.
    You may discuss this thouroughly with the business owners as it has a financial impact.
    Could you share why they need to decrease stock so suddenly?
    regards
    Sidi

  • SCD's implemention using T-SQL version 2005 (with out merge)

    Business logic:
    --we are quarterly updating data on table with respective of cus_ID’s
    --for your info, in a quarter Cus_ID transaction >80, then cus_ID is valid (pass)..in EXCEL extract date is nothing but every quarter starting date.
    Need to implement below logic:
    Quarter 1:
    1. Loaded 3 records in to the table in first quarter (1/1/2015), here cus_id(21) failed due to less transactions
    Quarter 2:
    We are again reran the data on the table. cus_id(21) passed so here we want to maintain old record history (21 failed and also 21 passed)and new inserted record. As well as have to update old record To_date (new record from date -1 day)
    Same thing applied for quarter 3 and quarter 4
    for your reference, 
    Thanks & Regards,

    Are you using BIDS?  Or just T_SQL?  If the former, use the SCD transformation, if the latter, please post:
    1. CREATE TABLE statements so we can see the schema of your tables
    2. INSERT INTO statements with sample data to populate the tables from step 1.
    3. THe query you have at the moment, so we can see where you work is at.
    4. the desired results, using a complete, correct query

  • How to use bootcamp in mackbook air  with out Disk drive..please help

    Please help me how to install windows 8 using boot camp with cd drive to install on patition mac HDD

    It is almost 99.9% in the FAQ and How To on the support page and inside Boot Camp Assistant instructions (and pdf)
    http://www.apple.com/support/bootcamp
    Walks you through how to use USB flash devices

  • How to use Read table with out key fields

    Hi Experts,
    I need to retrieve the 2 internal tables data into single table.
    I have 3 common fields between the 2 tables but I don't have the Key fields. Then how to use the read table in this.
    Thanks in Advance.
    Edited by: satish4abap on Mar 10, 2010 9:39 AM

    Hi Satish,
    Key fields are nothing but the common fields with which you can pick the data from the second internal table.
    If you can paste your Internal table fields then we will be able to assit you better.
    However, in genral scenarios you can use it as below :
    In this scenario, we are putting data from 3 internal table to another single internal table.
    LOOP AT T_PRGEN INTO WA_PRGEN.
           WA_FINAL-GUID_PR       = WA_PRGEN-GUID_PR.
           WA_FINAL-ATTR20A       = WA_PRGEN-ATTR20A.
           WA_FINAL-ATTR05A       = WA_PRGEN-ATTR05A.
           WA_FINAL-ATTR05B       = WA_PRGEN-ATTR05B.
           WA_FINAL-ATTR05C       = WA_PRGEN-ATTR05C. " + DG1K902190
           WA_FINAL-ATTR10A       = WA_PRGEN-ATTR10A.
        READ TABLE T_V_TCAV201 INTO WA_V_TCAV201 WITH KEY ATTRV20 = WA_PRGEN-ATTR20A BINARY SEARCH.
        IF SY-SUBRC = 0.
          WA_FINAL-TEXT1   = WA_V_TCAV201-TEXT1.    "SUBID-TEXT1
        ENDIF.
        READ TABLE T_PNTPR INTO WA_PNTPR WITH KEY GUID_PR = WA_PRGEN-GUID_PR BINARY SEARCH.
        IF SY-SUBRC = 0.
           WA_FINAL-PRVSY  = WA_PNTPR-PRVSY.   "PROD NO
           WA_FINAL-GRVSY  = WA_PNTPR-GRVSY.   "LOGICAL SYS GROUP
        ENDIF.
      append wa_final to t_final.
    endloop.

  • How do I use an IPhone for music with out using ITunes!!

    ITunes screws up my music files and duplicates music. I have finally started to use one computer for all of my good music, and only do my IPhone updates and downloading of music that I want on my IPhone on a totally seperate computer. My other computer the one that I keep ITunes off of runs fantasic now, no issues. The one that I run ITunes on I keep a current backup of. And restore it completely every time it screws up my music files.

    For what's it's worth, iTunes have no duplicated my music or messed it up. The only way to put music on your iPhone is to use iTunes. You'll have to copy your music to iTunes and then create a playlist to sync to the phone.

  • Using automator to delete files with out moving them to the trash

    My boss and I work for a school district and we have been fight the ever losing battle of keeping kids from using usb drives and ipods on the computers. We have it fixed on the server accounts so they can't. But the local accounts they can do as they please. So we have found the files that we need to remove Example ( IOUSBMassStorageClass.kext, IPodDriver.kext, ITunesPhoneDriver.kext ) I have tried to use automator to delete these files by creating an application. Well it can't remove them because its need sudo access. So no im trying to figure out how to create a apple script to do so. I know once the files are removed the machines needs to restarted. So im not sure how to include a restart command too.
    Any help on how to get this working would greatly appreciated. We have over a 600 machines to do this to. I know that there maybe mixed feeling about removing these functions but we have to fallow our board digital computer policy Primarily ever since the RIAA has been cracking down.

    Hi Northridge, and a warm welcome to the forums!
    I'd use the Terminal...
    In Terminal type man mv & man reboot
    You can execute those commands preceded by sudo, like...
    sudo mv /Library/Extensions/IOUSBMassStorageClass.kext /Library/Extensions/IOUSBMassStorageClass.kext.old
    This one just renames it, but you could move it wherever you want.

  • How to make entriesinto table with out first field not edited

    hi everyone,
    I'm new to SAP ,the task provided to me is to display the data in the display fields when the particular cell in table is selected
    at the same time a button is provided make new entries into the table by clicking a button
    but when iclick the new entry button the row which is already selected getting erased temporarily
    but when i update the new record and save it it is also shown along with new record
    the code i used is here below
    method onactioncreate .
    DATA:
          node_expenseset                     TYPE REF TO if_wd_context_node,
          elem_expenseset                    TYPE REF TO if_wd_context_element,
          stru_expenseset                    TYPE if_exp_main=>element_expenseset .
    *   navigate from <CONTEXT> to <EXPENSESET> via lead selection
        node_expenseset = wd_context->get_child_node( 'EXPENSESET' ).
    *   @TODO handle not set lead selection
        IF ( node_expenseset IS INITIAL ).
        ENDIF.
    *   get element via lead selection
        elem_expenseset = node_expenseset->get_element(  ).
    *   @TODO handle not set lead selection
        IF ( elem_expenseset IS INITIAL ).
        ENDIF.
      clear stru_expenseset.
    *   get all declared attributes
        elem_expenseset->set_static_attributes(
          exporting
            static_attributes = stru_expenseset ).
    *  data:
    *    node_expenseset1                    type ref to if_wd_context_node,
    *    elem_expenseset1                    type ref to if_wd_context_element,
    *    stru_expenseset1                    type if_exp_main=>element_expenseset1 .
    ** navigate from <CONTEXT> to <EXPENSESET1> via lead selection
    *  node_expenseset1 = wd_context->get_child_node( name = if_exp_main=>wdctx_expenseset1 ).
    ** get element via lead selection
    *  elem_expenseset1 = node_expenseset1->get_element(  ).
    ** alternative access  via index
    ** Elem_Expenseset1 = Node_Expenseset1->get_Element( Index = 1 ).
    ** @TODO handle non existant child
    ** if ( Elem_Expenseset1 is initial ).
    ** endif.
    *clear stru_expenseset1.
    ** get all declared attributes
    *  elem_expenseset1->get_static_attributes(
    *    importing
    *      static_attributes = stru_expenseset1   ).
    endmethod.
    here both table and drill down report are binded to same node
    can any one send me the code to clear only drill down report contents
    thanks & Regards
    Madhu

    Hi madhu,
    Try the following code to create new entries in the table on action of the create button
    DATA:
          node_expenseset                     TYPE REF TO if_wd_context_node,
          elem_expenseset                    TYPE REF TO if_wd_context_element,
          stru_expenseset                    TYPE if_exp_main=>element_expenseset .
      navigate from <CONTEXT> to <EXPENSESET> via lead selection
        node_expenseset = wd_context->get_child_node( 'EXPENSESET' ).
      @TODO handle not set lead selection
        IF ( node_expenseset IS INITIAL ).
        ENDIF.
      create new element
        elem_expenseset = node_expenseset->create_element(  ).
    *Bind the element to the node 
      node_expenseset->bind_element(
                   new_item = elem_expenseset
                   set_initial_elements = abap_false
    *set the created element as lead selected
      node_expenseset->set_lead_selection( element = elem_expenseset ).
    Edited by: krishna chandra on Nov 29, 2010 1:30 PM

  • Custom Datasource using View COVJ - R8359 Invalid extract structure

    I'm trying to build a custom datasource so I can get at plan line item data with partner object (I've tried using 0CO_OM_CCA_1 but I dont get the partner object for plan data - no idea why). So I thought if I create a datasource using COVJ I can get it out. However when I try and save the custom datasource (created using RSO2) I get the error R8359 Invalid extract structure: You tried to generate an extract structure with the template structure COVJ. This operation failed, because the template structure quantity fields or currency fields, for example, field WOG001 refer to a different table.
    I saw posts saying when people get this error thye should reference the table these fields come from in the view. So I've talked to our ABAP'er and I asked him to reference the table these fields come from but he said this cant be done because these come from a structure not a table.
    Any ideas?
    Thanks
    Joel

    The WOG* columns in table COEJ, one of the tables contributing to the COVJ view, use CCCUR-CURKY as the reference table-column for those quantities. The ABAPer you spoke to is correct that CCCUR is a structure. View value fields inherit their reference table-column from the source, in this case COEJ, and since this source table is an SAP delivered table it cannot be modified change this reference.
    This means that you're only option for extracting the data out of the COVJ view would be to create a Function Module and use that Function Module as the basis for your DataSource.

  • How can i use my id apple with out registering a credit cart in ipad ?

    please i need to know how to use me id of apple with out register an credit cart .. there ´s no any option for none credit cart hep my please

    On your iPad, Go To:
    Settings<iTunes and App Stores < View Apple ID < enter password < Payment Information < None

  • How to use NODIM func with out it's values being rounded

    I created a new calculated key figure in Query Designer 3.x, and used the function NODIM() - Value with out dimensions. When I use this function, the values are rounding off to the nearest value.
    For example, I have a value 0.000075 US$, when I use NODIM function the value is displayed as 0.000080. Value is getting rounded to nearest value.
    I tried using absolute value it did not work.
    Can any one tell me how to use NODIM function with out it's value being rounded to nearest value.
    Thanks,

    Hi,
    According to your description, you might want that "Notice" field has a default value when form is created and users can be able to change the value of that
    field.
    As a workaround, you can add an action rule in “Name” field via InfoPath to fill the default value in “Notice” field only when “Name” field is not blank and “Notice”
    field is blank.
    Settings of the rule are as below, you can modify it based on your need:
    Here is a link about how to add an action rule in InfoPath form, you can use it as a reference:
    https://support.office.microsoft.com/en-us/article/Add-rules-for-performing-other-actions-5322d726-b787-4e5f-8d37-ba6db68b451d?CorrelationId=8a64c12f-aa60-4d90-b1f9-a44fcc4e74b5&ui=en-US&rs=en-US&ad=US
    Best regards
    Patrick Liang
    TechNet Community Support

  • Is it possible to use Application Adapters with out having ESB, BPEL

    Hi,
    Is it possible to build and use application and DB adapters with out having ESB, BPEL in the project. We need to have Oracle E-business suite adapters in our application but we don't want to purchase ESB and BPEL.
    Is there any workaround possible or i need to go for ESB and BPEL.
    Thanks,
    Amit Kumar

    Hi,
    Application adapters and technology adapters are delivered with Oracle's SOA Suite. It can be used with BPEL, ESB, BAM or other products with SOA Suite.
    In theory, the JCA adapters can be accessed through JAVA CCI calls. Hence, any J2EE application can invoke the adapter. But, you will have to find from Oracle whether they provide support for such a access. Application adapters such as MySAP, Siebel, PeopleSoft and JDEdwards supports invocations only through BPEL and ESB. They do not support any other invocations such as JAVA CCI calls.

Maybe you are looking for