Reg: PO text

hi,
how to get the relationship between eeko,ekpo and po text table , to display the po text in the output.
(po text from: mm03).
already developed a report to display the output joining ekko and ekpo.
regards
chandra

hi pushpraj,
exactly you got my point.
what i did is i developed a report which displays the details by joining (in select) two tables ekko,ekpo.
now i need to have PO text in output.
this is the addition i did:
CALL FUNCTION 'READ_TEXT'
  EXPORTING
    CLIENT                        = SY-MANDT
    id                            = 'A03'
    language                      = sy-langu
    name                          = name
    object                        = 'EKPO'
  ARCHIVE_HANDLE                = 0
  LOCAL_CAT                     = ' '
IMPORTING
  HEADER                        = HEADER
  TABLES
    lines                         = TEXTLINES
EXCEPTIONS
   ID                            = 1
   LANGUAGE                      = 2
   NAME                          = 3
   NOT_FOUND                     = 4
   OBJECT                        = 5
   REFERENCE_CHECK               = 6
   WRONG_ACCESS_TO_ARCHIVE       = 7
loop at textlines into wa_textlines.
READ TABLE TEXTLINEs INTO wa_textlines with key TDLINE = textlines-TDLINE.
wa_result-tdline = wa_textlines-tdline.
append wa_result to it_result.
clear wa_result.
endloop.
again loop the final table it_result to display PO text
NOT ABLE TO GET THE PO TEXT by using this code
regards
chandra
Edited by: chandrakanth kummari on Feb 12, 2009 6:23 PM
Edited by: chandrakanth kummari on Feb 12, 2009 7:33 PM

Similar Messages

  • Reg OTR text display in Email as HTML

    Is there any function module is there to display the Text in email.

    You can use the concept of class  and all to display text.. or use fm SO_SEND*AP11
    For class refer the below code.
    DATA: send_request       TYPE REF TO cl_bcs.
      DATA: text               TYPE bcsy_text.
      DATA: binary_content     TYPE solix_tab.
      DATA: document           TYPE REF TO cl_document_bcs.
      DATA: sender             TYPE REF TO cl_sapuser_bcs.
      DATA: recipient          TYPE REF TO if_recipient_bcs.
      DATA: bcs_exception      TYPE REF TO cx_bcs.
      DATA: sent_to_all        TYPE os_boolean.
      DATA:lv_fax TYPE ad_fxnmbr,
           lv_filename_cl TYPE sood-objdes.
             Convert the OTF file format ino the PDF format.
            CALL FUNCTION 'CONVERT_OTF_2_PDF'
              IMPORTING
                bin_filesize           = lwa_bin_filesize
              TABLES
                otf                    = lt_otf
                doctab_archive         = lt_doctab_archive
                lines                  = lt_pdf_lines
              EXCEPTIONS
                err_conv_not_possible  = 1
                err_otf_mc_noendmarker = 2
                OTHERS                 = 3.
             get the pdf data into the attachment table .
            CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
              EXPORTING
                line_width_dst              = 255
              TABLES
                content_in                  = lt_pdf_lines
                content_out                 = lt_objbin
              EXCEPTIONS
                err_line_width_src_too_long = 1
                err_line_width_dst_too_long = 2
                err_conv_failed             = 3
                OTHERS                      = 4.
             Refresh the local tables and workareas.
            REFRESH: lt_reclist,
                     lt_objtxt,
                     lt_objpack.
            TRY.
        -------- create persistent send request ------------------------
                send_request = cl_bcs=>create_persistent( ).
        -------- create and set document with attachment ---------------
        create document from internal table with text
                APPEND 'test1' TO text.
                APPEND 'test2.' TO text.
                APPEND 'test3' TO text.
                document = cl_document_bcs=>create_document(
                                i_type    = 'RAW'
                                i_text    = text
                                i_length  = '12'
                                i_subject = 'Electronic Payment Notification' ).
                FIELD-SYMBOLS <fs_x> TYPE x.
                DATA lv_content  TYPE xstring.
                LOOP AT lt_objbin INTO lwa_objbin.
                  ASSIGN lwa_objbin TO <fs_x> CASTING.
                  CONCATENATE lv_content <fs_x> INTO lv_content IN BYTE MODE.
                ENDLOOP.
                pdf_content = cl_document_bcs=>xstring_to_solix(
                        ip_xstring = lv_content ).
        add attachment to document
        BCS expects document content here e.g. from document upload
        binary_content = ...
                CONCATENATE 'test_' sy-datum sy-uzeit '.pdf' INTO lv_filename_cl.
                CALL METHOD document->add_attachment
                  EXPORTING
                    i_attachment_type    = 'PDF'
                    i_attachment_subject = lv_filename_cl
                    i_att_content_hex    = pdf_content.
        add document to send request
                CALL METHOD send_request->set_document( document ).
        --------- set sender -------------------------------------------
        note: this is necessary only if you want to set the sender
              different from actual user (SY-UNAME). Otherwise sender is
              set automatically with actual user.
                sender = cl_sapuser_bcs=>create( sy-uname ).
                CALL METHOD send_request->set_sender
                  EXPORTING
                    i_sender = sender.
                CALL METHOD send_request->set_status_attributes(
                  EXPORTING
                  i_requested_status = 'N'
                  i_status_mail = 'N' ).
             Fill the receiver for the email with PDF attachemnt.
                CLEAR : lwa_reclist,
                        lwa_lfa1,
                        lwa_adr6.
                READ TABLE lt_lfa1
                      INTO lwa_lfa1
                      WITH KEY lifnr = lwa_reguh-lifnr.
                IF sy-subrc EQ 0.
                  READ TABLE lt_adr6
                        INTO lwa_adr6
                        WITH KEY addrnumber = lwa_lfa1-adrnr.
                  IF ( sy-subrc EQ 0 )
                    AND ( lwa_adr6-smtp_addr IS NOT INITIAL ).
        --------- add recipient (e-mail address) -----------------------
        create recipient - please replace e-mail address !!!
                    recipient = cl_cam_address_bcs=>create_internet_address(
                                                     lwa_adr6-smtp_addr ).
                  ELSE.
                    lv_fax = lwa_lfa1-telfx.
                    recipient = cl_cam_address_bcs=>create_fax_address(
                    i_country = lwa_lfa1-land1
                     i_number = lv_fax ).
                  ENDIF.
                ENDIF.
        add recipient with its respective attributes to send request
                CALL METHOD send_request->add_recipient
                  EXPORTING
                    i_recipient = recipient
                    i_express   = 'X'.
        ---------- send document ---------------------------------------
                CALL METHOD send_request->send(
                  EXPORTING
                    i_with_error_screen = 'X'
                  RECEIVING
                    result              = sent_to_all ).
                IF sent_to_all = 'X'.
                  WRITE text-003.
                ENDIF.
                COMMIT WORK.
              CATCH cx_bcs INTO bcs_exception.
                WRITE: 'Error Occured'.
                WRITE: 'Error', bcs_exception->error_type.
                EXIT.
            ENDTRY.
           endif.
    Thanks
    Nabheet

  • Reg: Subtotal text in alv grid.

    Hi All,
    I need to display the subtotal text in ALV.
    If:
    data: i_layout type slis_layout_alv.
    Then, we can used
    i_layout-subtotal_text = ‘my subtotal text’.
    But my declaration is :
    Data: ls_layout   type lvc_s_layo.
    This dosnt have subtotaltext.
    I have tried the method:
    method subtotal_text.
        perform event_subtotal_text using es_subtottxt_info
                                          ep_subtot_line
                                          e_event_data.
    and also used the handle.
    as per the coding in : BCALV_TEST_GRID_EVENTS
    Still its not working.
    Waiting for your valuable inputs.
    Thanks & Regards,
    Anjali

    Hi Anjali,
    Try this sample code.
    REPORT z_demo_alv_sort.
    TABLES : vbak.
    TYPE-POOLS: slis.                      " ALV Global types
    SELECT-OPTIONS :
      s_vkorg FOR vbak-vkorg,              " Sales organization
      s_kunnr FOR vbak-kunnr,              " Sold-to party
      s_vbeln FOR vbak-vbeln.              " Sales document
    SELECTION-SCREEN :
      SKIP, BEGIN OF LINE,COMMENT 5(27) v_1 FOR FIELD p_max.
    PARAMETERS p_max(2) TYPE n DEFAULT '20' OBLIGATORY.
    SELECTION-SCREEN END OF LINE.
    DATA:
      BEGIN OF gt_vbak OCCURS 0,
        vkorg LIKE vbak-vkorg,             " Sales organization
        kunnr LIKE vbak-kunnr,             " Sold-to party
        vbeln LIKE vbak-vbeln,             " Sales document
        netwr LIKE vbak-netwr,             " Net Value of the Sales Order
        waerk LIKE vbak-waerk,             " Document currency
      END OF gt_vbak.
    INITIALIZATION.
      v_1 = 'Maximum of records to read'.
    START-OF-SELECTION.
      PERFORM f_read_data.
      PERFORM f_display_data.
         Form  f_read_data
    FORM f_read_data.
      SELECT * INTO CORRESPONDING FIELDS OF TABLE gt_vbak
               FROM vbak
                 UP TO p_max ROWS
              WHERE kunnr IN s_kunnr
                AND vbeln IN s_vbeln
                AND vkorg IN s_vkorg.
    ENDFORM.                               " F_READ_DATA
         Form  f_display_data
    FORM f_display_data.
      DEFINE m_fieldcat.
        add 1 to ls_fieldcat-col_pos.
        ls_fieldcat-fieldname   = &1.
        ls_fieldcat-ref_tabname = 'VBAK'.
        ls_fieldcat-do_sum      = &2.
        ls_fieldcat-cfieldname  = &3.
        append ls_fieldcat to lt_fieldcat.
      END-OF-DEFINITION.
      DEFINE m_sort.
        add 1 to ls_sort-spos.
        ls_sort-fieldname = &1.
        ls_sort-up        = 'X'.
        ls_sort-subtot    = &2.
        append ls_sort to lt_sort.
      END-OF-DEFINITION.
      DATA:
        ls_fieldcat TYPE slis_fieldcat_alv,
        lt_fieldcat TYPE slis_t_fieldcat_alv,
        lt_sort     TYPE slis_t_sortinfo_alv,
        ls_sort     TYPE slis_sortinfo_alv,
        ls_layout   TYPE slis_layout_alv.
      m_fieldcat 'VKORG' ''  ''.
      m_fieldcat 'KUNNR' ''  ''.
      m_fieldcat 'VBELN' ''  ''.
      m_fieldcat 'NETWR' 'X' 'WAERK'.
      m_fieldcat 'WAERK' ''  ''.
      m_sort 'VKORG' 'X'.                  " Sort by vkorg and subtotal
      m_sort 'KUNNR' 'X'.                  " Sort by kunnr and subtotal
      m_sort 'VBELN' ''.                   " Sort by vbeln
      ls_layout-cell_merge = 'X'.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                is_layout   = ls_layout
                it_fieldcat = lt_fieldcat
                it_sort     = lt_sort
           TABLES
                t_outtab    = gt_vbak.
    ENDFORM.                               " F_DISPLAY_DATA
    Hope this helps,
    Thanks,
    Priya.

  • Reg: Header text updation in VL02n transaction

    Hi Experts,
    i have one requirement in return delivery.
    I am executing one customizing trasaction, and it displays screen.
    In that screen i am editing the fileds and when i click on the save button i need to update in delivery transaction header texts (VL02n transaction goto header texts).

    Hi,
    Use the SAVE-TEXT FM as below.
      CALL FUNCTION 'SAVE_TEXT'
           EXPORTING
                HEADER    = LS_THEAD
           IMPORTING
                NEWHEADER = LS_THEAD
           TABLES
                LINES     = TLINETAB
           EXCEPTIONS
                ID        = 1
                LANGUAGE  = 2
                NAME      = 3
                OBJECT    = 4
                OTHERS    = 5.
      IF SY-SUBRC = 0.
    Where LS_THEAD, CONTAINS:
                                            TDOBJECT                                             VBBK
                                            TDNAME                                             00999999(Your delivery no)
                                            TDID                                                         Z950
                                            TDSPRAS                                             E.
    You can find this details, when you go to the transaction(VL02N) and enter some text and do the debug on  SAVE_TEXT FM, then get the values it uses to save the text, use the same in you program.
    Hope this helps,
    Cheers,
    Srini.

  • Reg. copy text in FD32 through BDC

    Hi all,
    Can you please tell me the code to fill text area in FD32 using BDC?
    actually i am trying to use BDC  to update or insert customer credit management data to copy the data which is in excel file over to the text area(If you go to FD32, the status view, there is a button 'text'
    which is where I have to copy this data) .
    I am using classical BDC (i.e. i am giving file name , from line,to line ,from column and to column as input )
    HELP!
    Regards
    shailesh

    Bhanu,
    I've modified the previous message with a correction that, I had used this for uploading Activity lines Longtexts.
    One more thing: After I faced some problem, I used split text  in the code. i.e., Splitting the longtext into several lines (72 char each). Show these code lines to your ABAPer, may be he might be able to draw some clues.
    In the BDC lines alongwith other fields the gold line below
    PERFORM FILL_BDC_DATA       USING  ' '  ' '  ' '  'BDC_OKCODE'  '=MX07'.
    PERFORM FILL_BDC_DATA       USING  ' '  ' '  ' '   'BDC_CURSOR' 'QMICON-LTAKTION(07)'.
    PERFORM FILL_BDC_DATA       USING ' '  ' '  ' '   'VIQMMA-MATXT(07)' FS_FIELD-MNTXT7.
    PERFORM SPLIT_LONGTEXT USING COL_COUNT.
    Code for Form SPLIT_LONGTEXT is attached herewith (MATXT1 to MATXT7 are longtext split into 7lines )
    Best of luck
    KJogeswaraRao

  • REG : Workitem Text for Global Workflow Administrator

    Hi SRM Gurus,
    I have a requirement wherein if the approver id is invalid the work item should go to the GLOBAL WORKFLOW ADMINISTRATOR.
    I am achieving this in the RESP RESOVLER BADI, by checking the user is valid or not using the function module ' BBPU_CHECK_USER', in the in the method using the function module  'SWD_WF_DEFINITION_ADMIN_GET' and passing the same to the internal table ' rt_approver'.
    Everything is working fine and I am able to get the GLOBAL ADMINISTRATOR, but the requirement is when the WORKITEM is sent to the ADMIN, a custom Work item text should be sent to the WF Admin as 'Work item text is ‘Shopping Cart number xxxx Technical Completion Approver determination failed.'.
    Where should I give this text, I mean do I need to create an event along with an expression, and a new process level for the same.
    If yes, where should I code for the approver check, as this should trigger only when the user is invalid.
    Please help.
    Regards,
    Aakash Awasthi.

    Hi,
    Go to PFTC transaction and display the task.
    Menu Edit -> Workitem Text -> Redefine
    Synchronize runtime buffer by SWU_OBUF transaction.
    Regards,
    Masa

  • Reg subtotal text in ALV

    Hi,
    How to change the subtotal text in ALV grid display using classes.

    i think if you refresh the grid the subtotals will be refreshed
    CALL METHOD gr_alvgrid->REFRESH_TABLE_DISPLAY.

  • Reg. TEXT Table

    Hi,
    While creating TEXT table is it that the language field (SPRAS) is mandatory?
    and
    if mandatory then field name in the TEXT table will always be SPRAS, whether we can create the TEXT table with language field as YSPARS?
    Thanks
    aRs

    Hi All,
    Thanks for your replies.
    If am using language field YSPRAS then in SM30 if i am editing the main (parent) table whether the YSPRAS field appear in the table control (SM30).
    or
    If i am using SPRAS then it is not displaying the partent table thru SM30
    Thanks
    aRs
    Note : Points given

  • Reg: Backgroud Text

    Hi All,
    In Script i Want to Print some Text  with Back groud.
    Ex : 'Test Data' as to come each page back groud.
    Can any one help me on this
    Regards,
    Brahmaji

    Am printing the letter from custom infotype screen,
    i hav written that letter in so10 ,  when am taking the print ,
    page numbers are appearing at the top of each page . its giving  default
    page numbers , how to aviod that.

  • MF70- separated backflushing  issues-COST COLLECTOR BLOCKED -reg

    Hiiiiiiiiiii,
    Short Text .   
    MF70-Separated Back Flush Process Encountering issues -reg    
    Long Text    
    While performing MF 70-Separated Back Flush Process System is
    encountering Major Errors
    1.Cost Collector Blocked
    2.Maximum No.of FI items reached
    Checked for up to date costing, need inputs to resolve the above
    issues       
    Steps for Reconstruction    
    MF70-CHECK " Post goods issue" -check "make to stock "---
    plant "H001"-Material "G51900305R"--Posting date "01.04.2008 to
    13.05.2008"----
    check "parallel processes " in
    Settings
    ( Step wise details are atatched in the atatchment )
    Cost collector blocked is the major issue as max no.of FI items reached needs a decesion to make on  some customization
    Madhu Kiran,,,,,,,,

    Hi,
    Refer the OSS Notes: 562387 & 539452.
    It may be useful.
    Regards,
    Siva

  • Default Novell Login mode for Windows 2008 R2 servers?

    We're using Novell Client 2 SP3 for Windows 7 (IR6).
    All our Windows 7 workstations behave so that the Novell Logon is always the default (ie: you do CTRL-ALT-DEL and always get the Novell Logon first), then of course you get logged into ZCM and then our MS AD environment.
    However, using the SAME client with the SAME settings (unattend.txt or whatever) on a Windows 2008 R2 server with Citrix OR TS enabled, yields different results.
    Sometimes you get just the Windows logon (and then of course, you're not logged into eDirectory), sometimes you get the Novell one first.
    Any ideas on what setting to check?
    On 4.951 SP5 there was Gina chaining, but Windows7/2008 use credential provider order (I think), but I have no idea why it would behave differently.
    Thanks!

    Originally Posted by Alan Adams
    kjhurni <[email protected]> wrote:
    > So we tested on a non-Citrix server (but it still has Terminal Services
    > enabled).
    >
    > It seems if someone goes in via the console (vmware or rdp) and does a
    > "workstation only" login (I should say specifically where you pick the
    > option to NOT use the Novell Client), that's where the issue arises.
    >
    > So is there a Novell Client setting to use to always make it use the
    > Client? (I thought I had that set already)
    > Or is this a Terminal Server issue and we need to look somewhere in MS
    > land?
    I'm not clear exactly on what you're seeing, but it sounds like you're
    describing going to the interactive console login process and picking
    "a completely non-Novell Client-related credential".
    Meaning once you have selected the credential and can see the username
    and the password field you need to enter the password in to, there is
    NEITHER a "Novell Logon" nor "Computer Only Logon" link offered on
    that credential, because that credential isn't one generated by Novell
    Client / NCCredProvider at all.
    I agree, if that's what you mean, that it sound like the kind of
    process we were suspecting could be occurring, where Windows now
    defaults to "the last credential provider you used" and that's NOT
    Novell Client because some other credential was selected and used
    during the previous login.
    Normally, simply having "Novell Login = ON" does cause "Novell Client
    to be the only credential provider available", but that statement
    really only holds true on a "standard Windows machine" where only the
    Microsoft-supplied in-box credential providers are present.
    The way Novell Client achieves this is to actually "filter out" a
    couple of the Microsoft in-box credential providers, so that instead
    of seeing "both the Microsoft-generated credential tiles and the
    Novell Client NCCredProvider-generated credential tiles as ones you
    can choose from", by filtering out the Microsoft credential providers
    you end up seeing only NCCredProvider-generated credentials.
    Meaning, instead of getting a Windows-only credential tile generated
    by Microsoft's in-box "PasswordProvider" credential provider
    (AUTHUI.DLL) /AND/ the Novell Client NCCredProvider-generated
    credential tiles, you instead only get the NCCredProvider-generated
    tiles, and if you want to login Windows-only you have to select
    "Computer Only Logon" from the NCCredProvider-generated credential.
    But the behavior you're seeing, and a behavior not uncommon with
    third-party credential providers, is that some other product wanted to
    extend the functionality of Microsoft's in-box "PasswordProvider"
    credential provider. So this third-party /also/ filters Microsoft's
    "PasswordProvider" credential provider out (just like NCCredProvider
    does), but then internally the third-party "wraps" the Microsoft
    "PasswordProvider" credential provider in order to present "99% normal
    PasswordProvider behavior, but with 1% of new third-party-specific
    behavior."
    Which means, from a Windows perspective, these credentials are now
    being created by the third-party "wrapper", not the Microsoft
    "PasswordProvider" credential provider directly. So even though
    Novell Client filtered "PasswordProvider" out, there is this new
    unique third-party wrapper's credential tiles still being shown, which
    just happen to "look at feel just like PasswordProvider but with 1% of
    additional third-party-specific functionality."
    From your perspective, it simply looks like "Novell Client never
    disabled Microsoft's PasswordProvider", which in actuality we have
    filtered it out, but some other third-party is "making their own
    instances of Microsoft's PasswordProvider credentials." Since the
    credentials are no longer being created by a credential provider which
    has Microsoft's well-known GUID for the "PasswordProvider" credential
    provider, filtering out that GUID no longer stops the credentials from
    "appearing anyway".
    One option is to add the GUID of the third-party wrapper (whomever
    that is) to the Novell Client's "FilterList" value under
    [HKEY_LOCAL_MACHINE\Software\Novell\Authentication\ NCCredProvider].
    This is where the Microsoft "PasswordProvider" GUID is already listed,
    and you would just add the additional GUID(s) to this REG_MULTI_SZ
    list value.
    Maybe the third-party has some additional functionality or utility
    knowledge that they learn by wrapping Microsoft's credential provider,
    but in your case you are wanting to select the NCCredProvider-based
    credential anyway, so you're not going to be selecting the
    third-party's "wrapped" Microsoft PasswordProvider credential. And
    the fact that the third-party's "extra" credential tiles are being
    offered and can be "accidentally" selected is breaking your desired
    default behavior of "always send the end-users to NCCredProvider."
    If it's not clear what credential provider / wrapper on the system may
    be doing this, export
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential
    Providers] to a .REG file and then just cut-n-paste the .REG file text
    contents into a post here.
    Alan Adams
    Novell Client CPR Group
    [email protected]
    Novell, Inc.
    www.novell.com
    Thanks Alan,
    In this case it seems simply putting the Novell Client on a Windows server with Terminal Services enabled is enough to cause the issue.
    On an actual server login (ie: Vmware console) you press CTRL-ALT-DEL
    You see the Novell Login section (this is server 2012 R2, BTW) with the userid/password
    2 lines below it it says:
    Computer Only Logon
    If you choose Computer Only Logon
    Then it "stays" at Computer Only Logon for all subsequent logons/reboots.
    I'm going to guess it's probably a Windows setting (we only have a few GPO settings pushed out to servers via AD).
    Anyway, here's the reg key contents:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers]
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{1b283861-754f-4022-ad47-a5eaaa618894}]
    @="Smartcard Reader Selection Provider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{1D7BE727-4560-4adf-9ED8-5EEC78C6ECFF}]
    @="CtxKerbProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{1ee7337f-85ac-45e2-a23c-37c753209769}]
    @="Smartcard WinRT Provider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{2135f72a-90b5-4ed3-a7f1-8bb705ac276a}]
    @="PicturePasswordLogonProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{25CBB996-92ED-457e-B28C-4774084BD562}]
    @="GenericProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{3dd6bec0-8193-4ffe-ae25-e08e39ea4063}]
    @="NPProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{600e7adb-da3e-41a4-9225-3c0399e88c0c}]
    @="CngCredUICredentialProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{60b78e88-ead8-445c-9cfd-0b87f74ea6cd}]
    @="PasswordProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{60b78e88-ead8-445c-9cfd-0b87f74ea6cd}\LogonPasswordReset]
    @="{8841d728-1a76-4682-bb6f-a9ea53b4b3ba}"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{8FD7E19C-3BF7-489B-A72C-846AB3678C96}]
    @="Smartcard Credential Provider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{94596c7e-3744-41ce-893e-bbf09122f76a}]
    @="Smartcard Pin Provider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{cb82ea12-9f71-446d-89e1-8d0924e1256e}]
    @="PINLogonProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{e74e57b0-6c6d-44d5-9cda-fb2df5ed7435}]
    @="CertCredProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{F8A0B131-5F68-486c-8040-7E8FC3C85BB6}]
    @="WLIDCredentialProvider"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Authentication\Credential Providers\{f9cf286d-a029-41f9-86f6-90acf0618aa4}]
    @="NcCredProvider"
    Hope this helps.

  • HELP: Checkpointing/Regression Scripts/SIMS Command in OpenSPARC T1???

    Hi,
    Does anyone know how to insert checkpoints/perform checkpointing in the OpenSPARC T1? I want to perform some error injection simulations and have a check point at a specific time so I can inject errors at the same time each time. Is there a way to do this??
    Also, does anyone know where to find some regression scripts or an example of some regression scripts that represent an application?
    With the sims command, since it does all of the compiling at the time when running after calling the sims command, is there a way to bypass all of this? Meaning, have it compiled once and then run the simulation many times without having to recompile again? This would save much time!
    Please help...this is for a class project!
    Thanks,
    Stephanie =o)
    Edited by: Perfectpixie2004 on May 17, 2009 1:42 PM

    It's about 5000 lines long in emacs...the whole log file. So I'll just post the last portion of it only because I don't know how much is needed.
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(xsxs.o)(.text+0x6b4a): In function `bbOqdvr':
    : warning: `sys_nerr' is deprecated; use `strerror' or `strerror_r' instead
    /cad/synopsys/vcs_mx7.2/gui/virsim/linux/vcdplus/vcs7_2/libvirsim.a(vcspli.o)(.text+0x2ec2a): In function `vs_clStrCmpCI(char *, char *)':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/vcs_mx7.2/gui/virsim/linux/vcdplus/vcs7_2/libvirsim.a(vcspli.o)(.text+0x2ec8f): In function `vs_clStrCmpCI(char *, char *)':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/vcs_mx7.2/gui/virsim/linux/vcdplus/vcs7_2/libvirsim.a(vcspli.o)(.text+0x2eca8): In function `vs_clStrCmpCI(char *, char *)':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/vcs_mx7.2/gui/virsim/linux/vcdplus/vcs7_2/libvirsim.a(vcspli.o)(.text+0x2ed05): In function `vs_clStrToLower(char *)':
    : undefined reference to `__ctype_tolower'
    /cad/synopsys/vcs_mx7.2/gui/virsim/linux/vcdplus/vcs7_2/libvirsim.a(vcspli.o)(.text+0x2f035): In function `vs_clStrToUpper(char *)':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vmc_sapi.o)(.text+0x36b6): In function `setup_defines':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vmc_sapi.o)(.text+0x372a): In function `setup_defines':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vmc_sapi.o)(.text+0x3750): In function `setup_defines':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vmc_sapi.o)(.text+0xdd91): In function `set_profiling_interval':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vmc_sapi.o)(.text+0xe083): In function `set_profiling_range':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vmc_syscov_old.o)(.text+0x197b): more undefined references to `__ctype_b' follow
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(st.o)(.text+0xd37): In function `vera__st_strhash_case':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(string.o)(.text+0x306): In function `vera__string_split':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(string.o)(.text+0x32d): In function `vera__string_split':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(string.o)(.text+0xa02): In function `vera__string_toupper':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(string.o)(.text+0xa27): In function `vera__string_tolower':
    : undefined reference to `__ctype_tolower'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(string.o)(.text+0xb95): In function `vera__string_debug':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(string.o)(.text+0xc35): In function `vera__string_print':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(string_stdio.o)(.text+0xc2): In function `vera__string_vsprintf_concat':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(string_stdio.o)(.text+0x132): In function `vera__string_vsprintf_concat':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(tdebug_win.o)(.text+0xdec): In function `InitExprFmt':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(tdebug_win.o)(.text+0xe31): more undefined references to `__ctype_b' follow
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(util_string.o)(.text+0x199): In function `vera__util_strcmp_case':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(util_string.o)(.text+0x21f): In function `vera__util_strncmp_case':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(util_string.o)(.text+0x3bd): In function `vera__util_str_isint':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(util_string.o)(.text+0x3e1): In function `vera__util_str_isint':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(util_string.o)(.text+0x456): In function `vera__util_str_isreal':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(util_string.o)(.text+0x48c): In function `vera__util_str_isreal':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vera_inp.o)(.text+0x26d): In function `get_tok':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vera_inp.o)(.text+0x290): more undefined references to `__ctype_b' follow
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(vmc_string.o)(.text+0x2ac2): In function `vmc_sys_string_icompare':
    : undefined reference to `__ctype_toupper'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(ar.o)(.text+0x878): In function `show_memory_as_text':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(covgVal.o)(.text+0xe86): In function `CovgValFromString':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(mem_block.o)(.text+0xad5): In function `vera__mem_display_block':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(reg.o)(.text+0x2003): In function `s_regexec':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(reg.o)(.text+0x2069): In function `s_regexec':
    : undefined reference to `__ctype_b'
    /cad/synopsys/Vera/vera-6.3.10-linux2.4.7/lib/vlog/libVeraVcs.a(reg.o)(.text+0x214b): more undefined references to `__ctype_b' follow
    collect2: ld returned 1 exit status
    make: *** [product_timestamp] Error 1
    Make exited with status 2
    CPU time: 45.358 seconds to compile + .578 seconds to link
    sims: Caught a SIGDIE. failed building model at /project2/smwang/OpenSPARCT1_J/tools/src/sims/sims,1.262 line 2019.
    Also, is there way to only run 10 of the regressions from thread1_mini? How could I do this? Thank you so much!
    Edited by: Perfectpixie2004 on May 20, 2009 5:49 PM

  • How to Insert the Text in Selected Text Frame-Reg.

    Dear all,
    I am using the SnipperRunner - SDK, and create the TextFrame, but I can't insert the Text in the Particular Frame. so please give me the soultions,
    (*) Create TextFrame is ok,
    (*) Select TextFrame is also ok,
    (*) now, my Query ->
    How to Insert the Text in the Selected Frame?. (or)
    How to Link the Selectable Frame and my Text.? (or)
    How come to know the TextFrame is select?.
    Please any one can suggest me through the Coding....I will appreciate you...
    Thanks & Regards,
    T.R.Harihara SudhaN

    Hi,
    you have to get the TextModel associated with the textframe. Once you got that, ITextModel has an Insert()-method. You could also process kInsertTextCmdBoss - there are quite a few examples around. I believe WriteFishPrice also inserts text into a frame, just as an example. Good luck ...
    Bernt

  • Since my last firefox update, I have been unable to type an email - the text box does not appear when I press 'reply' , or press 'compose'. The email provider is '123-reg.co.uk. I have been using both firefox and the provider ['webfusion Ltd/webmail123] s

    Hello. Since my last firefox update, I have been unable to type an email - the box within which one would usually type does not appear when I press 'reply' to a received email, or press 'compose'. The email provider is '123-reg.co.uk. I have been using both firefox and the provider ['webfusion Ltd/webmail123] successfully for well over a year. The provider says it is a browser problem. I can still add an attachment to the email header, which successfully can be sent, but the recipient gets my standard email 'signature' with font messages and the attachment. Can anyone help? My email addresses are [email protected] [this is the one with the issue] and [email protected] in English
    == today

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • Reg:Getting error text from a channel into a file or into a variable

    Hi,
    Can we get the error text such as u201Cjava.lang.NegativeArraySizeExceptionu201D  from a communication channel into a variable or in the form of an xml message so that based on kind of error further processing can be done.
    Regards,
    Rahul

    You can decide further processing based on the data available in the mapping. If the value comes in the source field for a list element as you expected do UDF and return error as string and decide the mapping as per business need. I talk about something like enhanced interface determination. That's one way. Reading the error message from the communication channel and decide does not seem to be better option.

Maybe you are looking for

  • How do you get rid of white space when you are printing multiple pages to one sheet of paper?

    How do you get rid of extra white space when you are printing multiple pages to one sheet of paper?  When printing multiple pages to one sheet of paper Acrobat won't let you select the "zoom" for printing. Thanks

  • N8 menu button not woking correctly

    If i press the menu button when the device is locked it works fine and brings up the clock. However when i press the menu button on the home scrren the menu does not appear. How should i go about solving this problem?

  • How to judge inspection lot is LTCA status?

    Hi all, How to judge inspection lot is LTCA status? Can we see it in QALS table? But which field is for this status? Many thanks!

  • ChaRM problem

    Hi everyone, I'm having an issue creating a maintenance cycle. 1. I have created the system landscape for the R/3 logical component. It consists of a Dev, Q, and Prod box. 2. I have create a maintenance project 3. In the maintenance project, I have c

  • Lost format in Appleworks -- user error

    Hello. I'm stumped by a problem I'm sure I inadvertently created. While becoming acquainted with Font Book, I managed to trash all the fonts, an embarrassment for someone who started years ago with a 512K Mac. I rescued them, dumped them back in the