Appened Structure.

When i try to appened this ZZFAKWR-FAKWR at the activating i am getting this error
ZZFAKWR-FAKWR  specify table and reference field.
what is the reference table and reference field should i take.
Thankyou

Hi,
The field that you have added to your append structure is probably referring to another table for getting some other connected info.
You will have to add that fields also into your append structure.
Assign Points if useful
Regards
Venkata Devaraj

Similar Messages

  • Help me Pl.. Changing APPENDED STRUCTURE

    Hi ,
    I am trying to Change the Appened structure to add extra fields. That Append structure was created by Other developer. So I took Owner for that request, But still it's not allowing me change to Structure. Saying error
    <b>"Transport objets from Package Z001 to target /RELEASED/ only". </b>
    The object is stored in Z001 package. In change request there is no Target system specified...
    Pl.. Help me  how can i add field into Appended Structure( main sturcutre is -LISTVBAP)
    Thanks,
    Suba

    Hi Suba,
           You can create your own structure. All you have to do is that...
    1. Goto Transaction Code SE11 and type a new structure name zxxxx or yxxxx.
    2. Click the fields tab.( After finishing the techniqual settings & maintenance settings)
    3. There in the first column type <b>'.include'</b>
    4. In the second column type <b>'type'</b>
    5. In the third column type <b>'listvbap'</b>
    i.e is the structure name.
    6. Now you can add the fields you want to add in your new created structure zxxxx or yxxxx.
    7. It's always good practice to do like this.
    Hope it helps.
    Regards,
    Maheswaran.B

  • Abap error on pa30

    The following error is displayed when u click on back.
    Error in ABAP application program.                                                                               
    The current ABAP program "CL_HR_ST_ADHOC_SELECTION======CP" had to be    
    terminated because one of the                                           
    statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                                                               
    In program "/1BCDWBEN/SAPLPEN0001 ", the following syntax error occurred 
    in the Include "/1BCDWBEN/LPEN0001U78 " in line 51:                      
    "No component exists with the name "USUARIO". "USUARIO"."                
    Author and last person to change the Include are:                        
    Author "GTANAMACHI "                                                     
    Last changed by "GTANAMACHI "            
      In program "/1BCDWBEN/SAPLPEN0001 ", the following syntax error occurred:         
      "No component exists with the name "USUARIO". "USUARIO"."                         
    Programa                                CL_HR_ST_ADHOC_SELECTION======CP          
      Include                                 CL_HR_ST_ADHOC_SELECTION======CM005       
      Línea                                   37                                        
      Tp.módulo                               (METHOD)                                  
      Nombre módulo                           DELETE_FROM_DB_STACK                                                                               
    i create and deleted an appen structure to PAKEY include (PAnnnn tables), after this change this error is happening.
    I think that some table is using the reference usuario but i deleted that one...
    any ideas?

    Hello
    Check this part
    "No component exists with the name "USUARIO". "USUARIO"."
    in the method
    DELETE_FROM_DB_STACK
    you are trying to do something not posible
    Check on se38 /1BCDWBEN/SAPLPEN0001, and make a sintax check...you will have the error....I Think...
    Bye
    Gabriel

  • RSA6 doesn't show appended fields

    Hello group,
    I added some fields in an append structure of BIW_PROJ for my 0PROJECT_ATTR extractor. When I call 0PROJECT_ATTR in RSA^I don't see these new fields. Former fields in the appens structure such as XSTAT and BWSTACQU (a status according to the status concept) do show, but the new fields PLFAZ and PLSEZ don't show.
    In RSA2 these fields are set with fieldattribute A, but I would like to change that.
    Thanks in advance, points will be rewarded.

    Hello Leon,
    Have u activated the append structure? Please activate the same. Also the logic needs to be written to populate these fields in Rsap0001.
    Check in RSA6, if the new fields are now seen. if yes, remove the hide box selection so taht they are availble in the BW side. Please also replicate the datasource before loading data.
    Hope it helps..
    thanks,

  • Set type creation and updation of the structure COMT_PROD_MAT_MAINTAIN_API

    Hello Experts,
    I've the below scenario,
    I created new Org dependent Z set type and assigned to a category.
    And I'm using the API - COM_PRODUCT_GETDETAIL_API to get the details about the material via the export parameter ES_MATERIAL_DATA which has the structure of COMT_PROD_MAT_MAINTAIN_API.
    My doubt :
    Whether the newly created Z set type structure will be automatically updated to this COMT_PROD_MAT_MAINTAIN_API? (In my case it has not happened)
    I hope system has to append this structure automatically.
    If not how to get this job done. Is there any settings to be done?
    If not Whether I can append this structure manually? will it affect anywhere?
    Kindly help me on this regard.
    Thanks in Advance!
    Regards,
    Senthil.

    Also Senthil,
    I am pasting some sample code for your help. this should solve your issue
    Also make sure the set type structures are appened in COM PRODUCT MAINTAIN API Structure else the updation logic doesn't work.
    DATA:         ls_detail1          TYPE zmsr_detail_maintain,
            gs_set_typ      TYPE comt_prod_mat_maintain_api,
           gt_product_api       TYPE comt_product_maintain_api_tab,
            gs_product_api  TYPE comt_product_maintain_api,
            gs_text1        TYPE comt_prlgtext_maintain,
        fill the new comm_product
        gs_product_api-com_product-product_guid = g_product_guid.
        gs_product_api-com_product-product_type  = c_product_type.
        gs_product_api-com_product-logsys        = g_logsys.
        gs_product_api-com_product-valid_from    = g_valid_from.
        gs_product_api-com_product-valid_to      = g_valid_to.
        gs_product_api-categories                = gt_categories.
        gs_text1-data-stxh-mandt         = sy-mandt.
        gs_text1-data-stxh-tdobject      = c_product.                            "'PRODUCT'.
        gs_text1-data-stxh-tdid          = c_base.                               "'BASE'.
        gs_text1-data-stxh-tdspras       = c_en.                                 "'EN'.
        ls_line-tdline                   = gs_upload1-lg_text.
        APPEND ls_line TO lt_lines.
        CLEAR ls_line.
        ls_longtxt-lines    = lt_lines.
        gs_text1-data-lines = ls_longtxt-lines.
        APPEND gs_text1 TO gs_product_api-long_texts.
        gs_text-data-langu      = c_en.                                          "'EN'.
        gs_text-data-short_text = gs_upload1-msr_desc.
        gs_text-data-valid_from = g_valid_from.
        gs_text-data-valid_to   = g_valid_to.
        gs_text-data-logsys     = g_logsys.
        APPEND gs_text TO gs_product_api-short_texts.
        CLEAR gs_text.
        APPEND gs_product_api TO gt_product_api.
          ls_detail1-data-zz0010       = gs_upload1-zz0010_1.
          ls_detail1-data-zz0011       = gs_upload1-zz0011_1.
          ls_detail1-data-zz0012       = gs_upload1-zz0012_1.
          ls_detail1-data-zz0013       = gs_upload1-zz0013_1.
          ls_detail1-data-zz0014       = gs_upload1-zz0014_1.
          ls_detail1-data-zz0015       = gs_upload1-zz0015_1.
          ls_detail1-data-zz0016       = gs_upload1-zz0016_1.
          ls_detail1-data-zz0017       = gs_upload1-zz0017_1.
          ls_detail1-data-zz0018       = gs_upload1-zz0018_1.
          ls_detail1-data-zz0019       = gs_upload1-zz0019_1.
          ls_detail1-data-zz0020       = gs_upload1-zz0020_1.
          ls_detail1-data-zz0021       = gs_upload1-zz0021_1.
          ls_detail1-data-zz0022       = gs_upload1-zfil_nbr.
          ls_detail1-data-product_guid = g_product_guid.
          ls_detail1-data-logsys       = g_logsys.
          ls_detail1-data-valid_from   = g_valid_from.
          ls_detail1-data-valid_to     = g_valid_to.
          APPEND ls_detail1 TO gs_set_typ-zmsr_detail.
          CLEAR ls_detail1.
          APPEND gs_set_typ  TO gt_set_typ.
          CLEAR gs_set_typ.
          CALL FUNCTION 'IB_CONVERT_INTO_TIMESTAMP'
            EXPORTING
              i_datlo     = sy-datum
              i_timlo     = sy-uzeit
            IMPORTING
              e_timestamp = g_valid_from.
          APPEND gs_set_typ  TO gt_set_typ.
          CLEAR gs_set_typ.
    *-------Mainten. Functions for Materials
          CALL FUNCTION 'COM_PROD_MATERIAL_MAINTAIN_API'
            EXPORTING
              it_product      = gt_product_api
              it_set          = gt_set_typ
              iv_commit_work  = 'X'
              iv_update_task  = 'X'
              iv_enqueue_mode = 'E'
            IMPORTING
              et_bapireturn   = gt_bapireturn.
          IF sy-subrc = 0.
          Commit the BAPI
            COMMIT WORK .
            CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    HOpe this helps !!!!!

  • SAP ISU extarct structure

    How to appened extacrt structure in ISU side?
    Can any one help me on this?

    If the fields of the DataSource are not sufficient, you can use the customer append structure to insert additional fields in the structure of the installation, the installation contract and the billing documents. This also applies to a user-defined field. When it has the same name as an existing field it is automatically assigned the value of the field.
    Additionally, you are able to access the Exit BWESTA01 that enables you to carry out modifications whilst data records are being formatted. This is a higher-performance enhancement than the standard function module for DataSources.
    http://help.sap.com/saphelp_nw70/helpdata/en/87/c299397f3d11d5b3430050dadf08a4/frameset.htm

  • Dout in append structure

    Hi
    good day to all experts
    how to find values from appen structure

    The values that are avialable in database table itself is the values in append structure..no other special values are stores in append structure..
    it seems u not gone perfect documentation of append strcutute..keep on looking i will just have a look..
    Reawrd points if usefull
    Please check this document perhaps it may help.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1570a990-0201-0010-1280-bcc9c10c99ee
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ebc9446011d189700000e8322d00/content.htm
    Regards,
    Regards
    sas
    Edited by: saslove sap on Apr 7, 2008 7:49 AM

  • How to use one Account dimension for multiple account structures

    We are implementing a HFM application to replace two general ledger applications, one being Corporate and the other a new subsidiary. We need to maintain both of the chart of accounts and their unique rollup structures. We are facing the difficulty in attempting to combine the two chart of accounts into one HFM Account Dimension because a few of the subsidiary accounts have the same account numbers but they are meant different things. 
    Question:
    How can we set up two distinct account structures in HFM and also have the subsidiary accounts rolled into the Corporate accounts for consolidation reporting? 
    Appreciate your help.

    Hope this help.
    _http://technet.microsoft.com/en-us/library/cc164331(v=exchg.65) .aspx

  • Message: "The database structure has been modified" every time I log to SAP

    Hello,
    "The database structure has been modified. In order to resume this process, all open windows will be closed". Every time I log to one of my companies in SAP Business One this message appears.
    I haven't installed any new addons and made no changes in database structure (and any other user hasn't done any changes), but this message appears always when I log to company for the first time (when I try to log on another user or log to another company there is no message). Can anyone help me with this problem?
    Best regards
    Ela Świderska

    Hi Ela Świderska,
    You may check this thread first:
    UDFs disappeared
    Thanks,
    Gordon

  • Transfer structure

    Hi All
    i have to create a transfer structure.
    in dso and cube i have 27 fields.
    but in tranfer structure it is showing 50 fields.
    i have to select the 27 fields out of 50 or i have to activate 50 fields in transfer structure.
    Thanks & Regards
    krishna

    Hi,
    Basically when creating the transfer structure you need to map the transfer structure fields with the ODS/Cube fields that are present in the communication structure.
    You just need to Transfer the fields, that you have identified in Data source to the transfer structure and map the relevant fields in the Transfer structure.
    Once the mapping is done. Just activate the Transfer structure.
    Most importatnt would be to decide on the mapping between data source and Communication structure fields.
    Hope it helps!!!
    Regards,

  • Loops in arrays or structures

    Loops in arrays or structures
    I was given a project on html reports and
    They have advised me to use Loops in arrays or structures
    At this point I am a novice at this html reporting system. I
    would like to know how I can use loops in arrays or structures.
    How is it beneficial are
    1. Structures
    2. Arrays
    3. loops in for both
    for my reports.
    Countless thanks in advance

    Structures are great if you understand them, they are
    basically just arrays organized by keywords rather than index
    numbers.
    Arrays are very nice, as you can just run through loops to
    access each element, as they are all indexed by numbers 0-x.
    loops are great to navigate through both. All you have to do
    is set an loop to run through x amount of iterations of the array
    or structure (where x is the length of the array, or number of
    elements in the structure). Loops are great due to the small amount
    of code they require.

  • How to delete the one of cost centers in Splitting Structure(OKEW)?

    Dear All,
    I have a question about Splitting Structure as below? Could I get favor from you? Thanks a lot.
    How to delete the one of cost centers in Splitting Structure(OKEW)?
    Jocha

    Hi Chang
    Welcome to SDN! Its our pleasure to help you here
    Step 1: Select your Cost Center in OKEW which is assigned to the Splitting Str
    Eg: Cost Ctr 1001 is assigned to Splitting Str Z1... Tick the Check box against 1001 under Z1 Splitting Str
    Step 2: Do a Single Click on the text "Non Assigned Cost Centers"
    Step 3: Press Shift +F6 (Or Click on the Assign Button, next to the Pencil icon)
    Br, Ajay M

  • How do I move photos in a Smart Collection and keep folder structure?

    HI there I am on a trial of Lightroom and loving it so far.  One seemingly simple task I would like to try out is moving all my RAW files (which are all mixed up with JPGs and PSDs to a new location and keep the current folder structure.
    Currently I have files strcutured like this: <main disk>\<year>\<month>\<filename>.cr2 and I would like to move these to <different disk>\<year>\<month>\<filename>.cr2
    The Export functions look as if they will put them all in to one big folder?  Any ideas?
    Many thanks in advance.

    There are several approaches to this problem. You could do this via the Folders panel in LR. You can do just about everything in the Folders panel that you can do in Explorer or Finder. Just create folder and drag and drop.
    Another way is to do this outside LR use Explorer (Windows) or FInder (Mac). after you're done then go back into LR and tell LR where to find the moved files. Depending on how many you have this could be a bit tedious.
    Another method is to choose the files you want then Export them as a Catalog. When you do this be sure to include the option to export the negatives. Point the new catalog at you other drive. It will recreate the folder structure during the export. Then remove the images from your present catalog. Don't delete from disk just remove. Now import from catalog and choose the newly exported catalog. This time choose the option to add the files without moving them. Once you are sure everything is back and is fine you can use Explorer or Finder to go into your original file structure and delete the files that were moved to the new drive.  Be careful to only choose the moved files. If you are separating the RAWs out this should be relatively easy.
    I hope that helps!

  • How can I batch move files to the same folder structure in a different location?

    Hi,
    I recently had an issue with my iTunes Library so I used the Organize Library feature to have iTunes organise my library.  What happened was that it put all of my music in a folder called 'Music' on my external hard drive, whereas previously it was not in a folder at all, e.g.
    BEFORE: External Hard Drive / Abba / Greatest Hits / Mama Mia.m4a
    AFTER: External Hard Drive / Music / Abba / Greatest Hits / Mama Mia.m4a
    I don't have any particular issue with the updated folder structure, except that I had copies of the artwork for each album in my album folders, and these weren't moved when the audio files were moved/consolidated/organised.  So I need to find a way of moving all of the artwork to the new folders, e.g.
    External Hard Drive / Abba / Greatest Hits / folder.jpg
    needs to become:
    External Hard Drive / Music / Abba / Greatest Hits / folder.jpg
    I have to do this for 3,000+ albums, and I have multiple artwork files for some albums, so I am hoping that there is a way of doing this using a batch/automated method of some kind, but I haven't been able to turn up anything yet.
    Can someone help with this?
    Thanks,
    Nick

    You can make a smart playlist containing episodes of both series and play from that. Podcasts are linked together by the URL they are served from so merging ongoing series isn't really practical.
    tt2

  • Can you share FP Controls between different Event Structures

    I'm creating a program that will either read real-time data from an VNA on the GPIB bus, or read a saved s2p (Agilent) file and analyze it. The FP consists of 5 graphs, and various controls which handle events like printing, changing filters, or exiting. on the BD I have a case structure controlled by an operator selection pop-up. I tried using the same FP controls in the event structures I have setup in each case, as only one event structure would ever be executing at any given time, but the program doesn't seem to like it ast run-time. I've worked around the issue by creating "duplicate" controls and using the property setting to make them visible/disabled, etc., but the is seriously congesting my BD.
    Anyone know a way to share controls with seperate event structures?

    It sounds like the root problem is the overall structure of your program. I highly recommend that you check out the Queued Message Handler project template in LabVIEW 2012, that will show you how to utilize a single event structure and pass events to a consumer loop. If you program is too large to consider an architecture change at this stage of the game, then there is a workaround for your problem.
    What is most likely happening is that you have the event structures all set to lock the front panel until the event completes. However the case structure that you have wrapped around these event structures is causing all but one of these event structures to be unreachable thus preventing you from handling the event. Again, as I stated above, the "RIGHT WAY" to fix this is to select a better program structure but the "kluge work-around" fix is this: Dynamically register for the value change event on all of the controls you are trying to trap events for. Dynamic events can be deregistered and re-registered at run time. This will allow only the event structure in the active owning case structure to be registered for the events, thus no other event structures will get in your way.
    Disclaimer: This advice is given based on very minimal information and a great deal of speculation and may not be correct. Please include your code if you need further assistance.
    Charles Chickering
    Architecture is art with rules.
    ...and the rules are more like guidelines

Maybe you are looking for

  • Short dump in transfer dataset  help me out

    hi to all experts,   my requirement is to extract some records from z table.insert some records and download it in a text file and upload into the program and bring the file into application server using open dataset close and transfer dataset .here

  • Import Procurment, Capital Procurement

    Hello All, Please tell Import Procurement, Capital Procurement process and how to implement in sap. I am new for the import procurement. Thanks In advance.

  • Savenow popups in Firefox

    Hello, I'm using Firefox 16.0.2 and recently I've been getting popups from savenow at the buttom right of the windows everytime I get on a web site like costo, newegg and such. I'm not sure how i got infected but I want to find a way to get rid of th

  • Transcoding proxy files from the sony f5

    I shot with a sony f5 and used the media browser to import the fotage and all works well, I just need to transcode the footage so that when I edit on premier it will link to the 4k files in my harddrive. Any suggestions on how to do this?

  • Missing TNS Listner Service

    I'm missing my service called OracleBS1920TNSListener for my BS1 system. Any ideas on how to get it back as a service without installing Oracle again?