Urgent - SAP generated structures (like /BI0/C_00**) are missing.

Hi Guys,
I am working on a mySAP upgrade project (4.5b to ECC6).
After BAT box built ( refersh from Prod box and then upgraded ), I find that there are some SAP generated structures missing. These structures like /BI0/C_00**, such as /BI0/C_0053 ("Extr. struct. version 0001 of DataSource 2LIS_02_HDR") missed, while corresponding generated program /BI0/LQI2LIS_02_HDRU02 still refer to that structure, so generated program /BI0/LQI2LIS_02_HDRU02 is invalid. And there's no delta queue in RSA7.
Then I executed initial loading on 2LIS_02_HDR, it worked fine. But while executing delta loading with data, it dumped for structure missing. And while I try to see content in delta queue of 2LIS_02_HDR ( using RSA7), it also dumped for same reason.
How can I fix such missing structure?
Btw, I know that such structure and program are generated by SAP while executed delta loading. And it can be removed while delete corresponding delta queue in RSA7. But my scenario is currently structure missed while program still exists with invalid status and no delta queue in RSA7.
Expect your suggestions.
Thanks,
Edited by: Yun Feng Lu on Jun 27, 2008 5:51 AM

Any helps?  Thanks,

Similar Messages

  • All fonts are missing in indesign

    I closed my file last night with master pages items and text layers locked in the layers pallette.
    The file is to the point that I have master pages set with columns, and guides, and pages, and footer with text.  It is all layed out with images, ready to start typography.  I used Myriad pro, and I think Bell ( this may have been brought in from dafont, not sure).
    When I opened the file this morning it said that the fonts were missing.  I tried to find the missing fonts, but ALL the fonts are missing in the font selection window.
    This was when I realized that the layers were locked.  I dont know if this had anything to do with it, but Ive never used layers before, so assume it is a connection.
    I tried opening a new document and there are no fonts available there either.  It says times, but you cant change it.  It is showing pink backgound like when fonts are missing, and just Os'.
    I opened illustrator to see if the fonts are available there, and they are, no problem.  It is just indesign that is affected. 
    Can anyone help?
    Mary

    Try these solutions
    http://forums.adobe.com/thread/526990
    http://forums.adobe.com/thread/526991

  • UNICODE and sap generated programs

    Hi folks,
    we're just in a project unicode-conversion of R/3 Enterprise, now we figured out some problems:
    a lot of programs which are generated from info-structures like S0* structures reside in the sap-namespace and these are local objects, not transportable.
    As these reports don't have the unicode-flag, they make syntax-errors in unicode-systems. So how to deal with them, do we have to generate these sources from customizing - or is there one report from SAP how can do this job????
    kind regars,
    oliver

    Hello Oliver,
    Did you get a report to fix this problem?
    regards
    Sven

  • Create object/structure like dynamic internal table

    Hi,
    We have created dynamic internal table with some fields.
    for the above how to create structure or internal table like dynamic internal table structure .
    Scenario: internal table itab1 ( with header line) have 5 fields.
    Based on some of the conditions in layout of the report.
    we have to create dynamic internal table.
    field-symbols: <FS> type standard table.
    we are able to create dynamic internal table with 3 fields
    with assignment <fs> = itab1[]
    the columns are not appearing but data appearing in next column.
    how to solve this one
    Thanks
    Ramesh

    Hi Ramesh,
      I hope this code works...
    report  yup_alv_datbase                         .
    *-Display Database table contents in ALV Grid Format
    >********************************************************************
    This report displays data from SAP tables, views (like SE16)        *
    FM : REUSE_ALV_GRID_DISPLAY                                         *
    tables:
      dd02l,                               " SAP tables
      dd03l.                               " Table Fields
    type-pools: slis.                      " ALV Global Types
    selection-screen :
    begin of line, comment 1(35) v_1 for field p_table.         "#EC NEEDED
    parameters p_table like dd03l-tabname obligatory memory id dtb.
    selection-screen end of line.
    selection-screen :
    begin of line, comment 1(35) v_2 for field p_max.           "#EC NEEDED
    parameters p_max(2) type n default '20' obligatory.
    selection-screen end of line.
    at selection-screen.
      select single * from dd02l where tabname  = p_table
                                   and as4local = 'A'
                                   and as4vers  = '0000'.
      if sy-subrc ne 0.
      Table & is not active in the Dictionary
        message e402(mo) with p_table.
      elseif dd02l-tabclass = 'INTTAB'.
      & is a structure, not a table
        message e403(mo) with p_table.
      endif.
    initialization.
      v_1 = 'Table'.
      v_2 = 'Maximum of records'.
    start-of-selection.
      perform f_display_data.
         Form  F_DISPLAY_DATA
    form f_display_data.
    Macro definition
      define m_sort.
        add 1 to ls_sort-spos.
        ls_sort-fieldname = &1.
        ls_sort-up = 'X'.
        append ls_sort to lt_sort.
      end-of-definition.
      data:
        l_long type i,
        lp_struct   type ref to data,
        lp_table    type ref to data,      " Pointer to dynamic table
        of_sdescr   type ref to cl_abap_structdescr,
        ls_lvc_cat  type lvc_s_fcat,
        lt_lvc_cat  type lvc_t_fcat,       " Field catalog
        ls_fieldcat type slis_fieldcat_alv,
        lt_fieldcat type slis_t_fieldcat_alv,  " Field catalog
        ls_layout   type slis_layout_alv,
        lt_sort     type slis_t_sortinfo_alv,  " Sort table
        ls_sort     type slis_sortinfo_alv.
      field-symbols :
        <fieldcat>   type slis_fieldcat_alv,
        <lt_data>    type table,           " Data to display
        <fs>         type any,
        <components> type abap_compdescr.
    Dynamic creation of a structure
      create data lp_struct type (p_table).
      assign lp_struct->* to <fs>.
    Fields Structure
      of_sdescr ?= cl_abap_typedescr=>describe_by_data( <fs> ).
      loop at of_sdescr->components assigning <components>.
      Field MANDT not displayed
        if sy-tabix = 1 and <components>-name = 'MANDT'.
          continue.                        " Next loop
        endif.
      Build Fieldcatalog
        ls_lvc_cat-fieldname = <components>-name.
        ls_lvc_cat-ref_table = p_table.
        append ls_lvc_cat to lt_lvc_cat.
      Build Fieldcatalog
        ls_fieldcat-fieldname = <components>-name.
        ls_fieldcat-ref_tabname = p_table.
        append ls_fieldcat to lt_fieldcat.
      endloop.
    Create internal table
      call method cl_alv_table_create=>create_dynamic_table
        exporting it_fieldcatalog = lt_lvc_cat
        importing ep_table = lp_table.
      assign lp_table->* to <lt_data>.
    Read data
      select * from (p_table) up to p_max rows
        into corresponding fields of table <lt_data>
       order by primary key.
      if <lt_data>[] is initial.
      No table entries found for specified key
        message i429(mo).
        exit.
      endif.
    Read key field to Build Sort Table
      select * from dd03l where tabname  = p_table
                            and fieldname <> '.INCLUDE'
                            and as4vers  = '0000'
                            and as4local = 'A'
                          order by position.
        read table lt_fieldcat assigning <fieldcat>
                                with key fieldname = dd03l-fieldname.
        check sy-subrc eq 0.
        add dd03l-leng to l_long.
        if dd03l-keyflag = 'X'.
        Build Sort Table
          m_sort dd03l-fieldname.
          <fieldcat>-key = 'X'.
        elseif l_long > 150.
          <fieldcat>-tech = 'X'.
        endif.
      endselect.
      ls_layout-zebra = 'X'.
      ls_layout-colwidth_optimize = 'X'.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
                is_layout   = ls_layout
                it_fieldcat = lt_fieldcat
                it_sort     = lt_sort
           tables
                t_outtab    = <lt_data>.
    endform.                               " F_DISPLAY_DATA
    END OF PROGRAM Z_ALV_DYNAMIC_DATA *********************
    Regards,
    Sampath

  • Risk Analysis for SAP HR structural authorization

    Hi experts, for those who are familiar with SAP HR structural authorization setup, can you advice what tools out there are able to implement risk based on Structural Authorization as well.
    SAP RAR/CC is not able to do this at the moment, but i am not sure if tools like CSI has the capabilities.
    Appreciate the advice.

    Hi,
    Structural Authorizations "sits" on Standard authorizations. These Structural Authorizations   will need to be defined manually ( as far as I know) depending on the "Evaluation Path".
    Award points if answer was useful.
    Thanks

  • How to generate profile like report in APEX

    Hi,
    I am trying to create a report similar to Image: !http://www.nomagic.ie/sample_report.jpg! . I thought this will be easy if I create a form and fetch rows for reach section seperately during page rendering. Each each is coming from different table . I am okay with this approach, However there are couple sections that have multiple rows . I am wondering, If there is any better way in APEX to generate profile like report.
    Thanks
    Aali

    Hi Aali
    You could do this using reports rather than forms and you'd just need to have two columns returned by each query and change the alignment to mimic that look.
    Then just create a custom report template that looks the same as that (removing all borders etc).
    >
    I am okay with this approach, However there are couple sections that have multiple rows
    >
    I don't understand what you mean by this?
    Cheers
    Ben

  • Preview: PDFs generated with Oracle RS are missing letters

    Hi,
    When I open PDFs in Preview which were created using "Oracle10gR2 AS Reports Services", some letters are missing. The documents aren't corrupted and appear valid on other platforms or in other applications. Is there any solution/fix for Preview? As I'm quite happy with Preview I don't want to install the Adobe reader and I can't change the document generator, as my University's support says "it works on Win/Adobe, hence use them instead..."
    TIA, JC

    Same exact issue. Very annoying. My workaround is to Cntrl-click on the pdf report and choose Open With... and use Adobe Reader. But I like using Preview because it's so easy to highlight or circle items, and add other annotations. I don't want to have Adobe Reader be my default reader.
    I wish someone would trouble-shoot this and offer up a real fix. I may contact our IT folks--but there aren't that many Macs where I work, so it won't be a high priority for them.

  • How to send sap generated invoice numbers using rffoedi1 program

    Hi all
    we are generating PEXR2002 IDocs using RFFOEDI1 program . The program is populating the invoice number field in IDoc with the value from reference number field in MIRO screen. Is there any way that we can populate the SAP generated invoice number also in the IDoc.

    Hi Steve,
    Have you tried the user-exits or BADi available.
    Regards,
    Atish

  • SAP HR Structural Authorizations

    Hi Experts,
    I need a help regarding SAP HR Structural Authorizations.
    Currently our HR System is set with structural authorizations were in
    users will be accessing HR Org structure with different pd-profile and HR relationships (with Org units ex:
    assistant relation, manager relation).
    Now we want to design the roles based on company codes, where users should be able to see
    all organization units within company code 'xyz'.
    Do we need to create new pd-profile or new HR relationships or just restrict within existing HR roles for
    accessing organizations units within different company codes.
    Please guide me steps to proceed with this requirement?
    Your early response is highly appreciated, thanks in advance......

    You will need to talk to the HR folks about this and whether any employee grouping on the HR side matches a company code unit on the FI side to use in the authorizations.
    This means that HR data and processes are also aligned to finance processes, which was often the case with local HR systems but less so with global ones.
    The answer is on your side in the data and the processes. There is no single field which you can use for both, let alone an org. level field known to structural authorizations.
    Cheers
    Julius

  • To offer integrated forms, so like Jotform, there are templates that can be used and upload options to FTP client as well as other built in widgets.

    To offer integrated forms, so like Jotform, there are templates that can be used and upload options to FTP client as well as other built in widgets.

    What you need is merged help.
    You generate a parent and all the child projects. You always install the parent and then whichever child projects you require. The TOC, search and index automatically adjust. See the pages on my site.
    Note though that many people take another view to your Product Development. Show all the help and then people see information about something and realise they need it!
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • SAP memeory Structure

    Hi,
    1. What is SAP memeory Structure?
    2. While sending 5lacs of data through BDC what are
    the problems we will encounter?
    3. How to Simulate production client when we are
    sending 5 lacs of data?.
    Pls help me out.
    Thanks & Regards

    Hi,
    SAP Memory
    SAP memory is a memory area to which all main sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session, or to pass data from one session to another.  Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters). These parameters can be set either for a particular user or for a particular program using the SET PARAMETER statement. Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement. The most frequent use of SPA/GPA parameters is to fill input fields on screens
    ABAP/4 Memory
    ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data
    to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory. If control is then returned to the program which made the initial call, the same process operates in reverse.
    SAP memory 
    The SAP memory, otherwise known as the global memory, is available to a user during the entire duration of a terminal session. Its contents are retained across transaction boundaries as well as external and internal sessions. The SET PARAMETER and GET PARAMETER statements allow you to write to, or read from, the SAP memory. 
    ABAP/4 memory 
    The contents of the ABAP/4 memory are retained only during the lifetime of an external session (see also Organization of Modularization Units). You can retain or pass data across internal sessions. The EXPORT TO MEMORY and IMPORT FROM MEMORY statements allow you to write data to, or read data from, the ABAP memory. 
    Regards,
    swaminath.

  • Few folders like Forwarding order management, Freight order management, Planning are missing in NWBC menu.

    Hi Experts,
    I found in my new system few folders like Forwarding order management, Freight order management, Planning are missing in NWBC menu (Ref. menuarea marked red in the attachment.).
    So please suggest if any settings are missing for NWBC.
    Thanks,
    Shakti

    Hi,
    These are all the user parameters. We dont need to set anything here.
      Please check your user roles.  Goto SU01-> enter your sap user id-> press display-> Navigate  to Roles tab and check all the specified roles are exist for your user.
      Also please check the screenshots for the better understanding.
    Regards,
    Dinesh

  • Generating structured XML file based on relational data base

    Hi,
    I need to use XML DB to generate a structured XML file based on the relational oracle database. I start by using Oracle default table, emp,
    Here is EMP data,
    EMPNO ENAME DEPNO SAL
    123.00 E1 20.00 1,000.00
    124.00 E2 20.00 2,000.00
    125.00 E3 20.00 2,000.00
    126.00 E4 30.00 3,000.00
    127.00 E5 30.00 3,000.00
    128.00 E6 30.00 4,000.00
    129.00 E7 40.00 7,000.00
    I used this SQL statement to generate an XML output,
    select XMLElement ("Department",
    XMLAttributes(deptno as "DEPARTMENTNO"),
    XMLElement("EmployeeName", ename),
    XMLElement("Salary", sal)
    ) "Result"
    from
    emp
    where
    deptno=20
    The result was
    <Department DEPARTMENTNO="20">
    <EmployeeName>E1</EmployeeName>
    <Salary>1000</Salary>
    </Department>
    <Department DEPARTMENTNO="20">
    <EmployeeName>E2</EmployeeName>
    <Salary>2000</Salary>
    </Department>
    <Department DEPARTMENTNO="20">
    <EmployeeName>E3</EmployeeName>
    <Salary>2000</Salary>
    </Department>
    but I need this structure instead,
    <Department DEPARTMENTNO="20">
    <EmployeeName>E1</EmployeeName>
    <Salary>1000</Salary>
    <EmployeeName>E2</EmployeeName>
    <Salary>2000</Salary>
    <EmployeeName>E3</EmployeeName>
    <Salary>2000</Salary>
    </Department>
    Could you guide me how I can generate this kind of structure like master-detail structure and which document you recommend to obtain this point.
    Thanks,
    Shiva

    Hi,
    If you want to write an xml into file, I think you should use PL/SQL.
    Is it even possible to spool output into file without the query itself?
    doen't show me a proper xml fileTo get well-formed xml, you also have to make a root element.
    If you want <?xml version="1.0"?> also then use xmlroot(), but I haven't figure out
    how to specify the encoding.
    SQL> WITH xtab AS(SELECT 'E1' ename,20 depno,1000 sal FROM dual
      2               UNION ALL
      3               SELECT 'E2',20,2000 FROM dual
      4               UNION ALL
      5               SELECT 'E3',40,3000 FROM dual
      6               UNION ALL
      7               SELECT 'E4',30,4000 FROM dual)
      8  SELECT XMLRoot(XMLElement("Company",XMLAgg(XMLElement("Department",
      9           XMLattributes(depno as "DEPARTMENTNO"),
    10             XMLAgg(XMLForest(
    11                      ename AS "EmployeeName",
    12                      sal   AS "Salary"))))),version '1.0') company_xml
    13  FROM xtab
    14  GROUP BY depno;
    COMPANY_XML                                                                    
    <?xml version="1.0"?>                                                          
    <Company>                                                                      
      <Department DEPARTMENTNO="20">                                               
        <EmployeeName>E1</EmployeeName>                                            
        <Salary>1000</Salary>                                                      
        <EmployeeName>E2</EmployeeName>                                            
        <Salary>2000</Salary>                                                      
      </Department>                                                                
      <Department DEPARTMENTNO="30">                                               
        <EmployeeName>E4</EmployeeName>                                            
        <Salary>4000</Salary>                                                      
      </Department>                                                                
      <Department DEPARTMENTNO="40">                                               
        <EmployeeName>E3</EmployeeName>                                            
        <Salary>3000</Salary>                                                      
      </Department>                                                                
    </Company>
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Validation in SAP Regional structure

    Hi All,
    I have a situation here.
    If the Postal department of a country sends a record(address) which is either to be added or deleted in the SAP Regional structure,but my client(ISU company) wants somebody from his team to review or validate that address record before it is updated in the Regional structure.
    This is because they think that they might be a year or so ahead from the Postal department in terms of addresses and might either have that record already present in the system or do not want to delete it as it might impact their assets on that address.
    Could anyone tell me what all validations can be done corresponding to that record and what is the procedure for the same.We are only updating the Postal Codes,Streets and the Cities through the SAP standard report RSADRLSM02.
    Remember that the person reviewing or validating the address will not have much knowledge of SAP,so he would expect some user friendly approach to do this.
    Kindly suggest some feasible approach for the same.
    Regards,
    Puneet Jhari.

    Puneet
    I have a question related to address validation / verification. We want to understand the extent of checks SAP offers by using RSADRLSM02.
    We have been suggested by some to go with external software for address checks as opposed to using SAP regional structures.
    We are looking for some feedback from customers who have used SAP regional structures before we proceed one way or the other.
    Would you mind sharing your experience or point me to a contact ?
    Thanks
    Sudhakar

  • I have a water damage iPhone 5s would like to change to new set with top up the money. But the staff told me it couldn't be done due to some of my minor parts are missing according to company policy. I need advise as I want to change it.

    Hi all,
    I have a water damage iPhone 5s was bring to service center to have new set change with top up the money. Well, the staff were told me that the phone can't be change due to some of minor parts are missing in the phone. He said this is due to company policy. I would like to check is that nothing can do with this missing minor parts? I really doubt the policy of the Apple as I was told as long as you bring to the service center, they will assists. As Apple is a well known brand top of the world, but the servicing is really make me so disappointed! I really doubt should I still continue to support the Apple product with helpless service!
    Would like to take this opportunity to seek the professional advise in order to get my phone change back.
    Appreciate very much!
    Thanks.

    Well, your service is handled by an Authorized Apple Service Center. If they refuse to handle the claim, that is well within their rights. Apple as well could void a claim under the same circumstances. I'm not saying that you did or did not modify the device, but you could try and talk to a supervisor there and make another request. You can also try and contact Apple by obtaining a number with this support document and describe your problem. http://support.apple.com/kb/HE57

Maybe you are looking for

  • What is the difference  between ws_upload and gui_upload

    what is the difference  between ws_upload and gui_upload what is the difference  between ws_download and gui_down load pls tell  briefly

  • I want to download an image from the url and image is in byte format

    hi i want to download an image from the url http://www.tidelinesonline.com/mobile/j2me_v1?reqType=imageJoin&imageCount=1&month=1&day=1&year=2008&id=1&imageWidth=230&imageHeight=216&imageDepth=8&imageUnits=feet&imageType=JPG&msisdn=456 first 5 digits

  • Daer friends

    can anybody tell me that which RAID is better for shared disk . What I did is I just partitioned my server in to 3. C = operating system. D= for file and E= for shared disk. then I made c= RAID 0, D= RAID 1, and E = RAID 5. is that good? and I got on

  • IPhoto won't import .mov video from iPhone

    I just got my wife a new Mac mini.  It is running the latest versions of Mountain Lion and iPhoto. She's recorded some short videos of the kids with her iPhone (4s), and wants to organize these in iPhoto alongside pictures of the kids (she's done thi

  • How do I save my profile of ASPHALT6?

    I had my pod replced couple of times and I had to reset all apps and I am expecting another replacement now I would like to know if I can save my ASPHALT 6 profile somehow? I don't wish to race whole series every time I replace my pod. any suggestion