URGENT: Update euipment to IBASE?

Hi,
Can anyone tell me how to update the equipment to ibase?
is there any function module for this?

Hi Cady,
now back to square...
please look at the code below and let me know wht more needs to be done...
METHOD if_ex_crm_equi_load~perform_load.
  DATA: i_s_struc TYPE crmt_iloa_mess,
        i_t_struc TYPE crmt_equi_dmbdoc,
        g_sort    TYPE smo3eqfnr,
        g_guid    TYPE crmt_object_guid,
        g_object_id TYPE crmt_object_id_db.
*Internal tables
  DATA : l_thdr_guid   TYPE crmt_object_guid_tab       ,
         l_treq_obj    TYPE crmt_object_name_tab       .
  DATA : l_i_tpartner    TYPE crmt_partner_external_wrkt ,
         l_i_tapp        TYPE crmt_appointment_wrkt      ,
         l_i_torderadm_i TYPE crmt_orderadm_i_wrkt       ,
         l_i_torderadm_h TYPE crmt_orderadm_h_wrkt       ,
         l_i_tpricing    TYPE crmt_pricing_wrkt          ,
         l_i_tordprp_objl  TYPE crmt_ordprp_objl_i_d_wrkt,
          i_s_ordprp_objl  TYPE crmt_ordprp_objl_i_d_wrk  ,
          i_s_orderadm_i   TYPE crmt_orderadm_i_wrk       ,
         l_i_tproduct    TYPE crmt_product_i_wrkt        ,
         l_i_tpricing_i  TYPE crmt_pricing_i_wrkt        ,
         l_i_tschedlin   TYPE crmt_schedlin_wrkt         .
*Work Area
  DATA : l_shdr_guid   TYPE crmt_object_guid          ,
         l_sreq_obj    TYPE crmt_object_name          ,
         i_s_ibase     TYPE ibap_dat1,
         i_t_equi      TYPE crmt_equi_mess_t,
         i_s_equi      TYPE crmt_equi_mess,
         i_s_object    TYPE comt_product_maintain_api,
         i_t_index     TYPE ibequiindx,
         i_s_index     TYPE ibequichild,
         i_t_error     TYPE smw_errtab.
  break sunilch.
do 3 times.
    i_t_struc = it_equi_dmbdoc.
    LOOP AT i_t_struc-iloa INTO i_s_struc.
      g_sort = i_s_struc-eqfnr.
      g_object_id = g_sort.
      EXIT.
    ENDLOOP.
if there is value in sort field
get this as SO and use it to get the IBASE
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input  = g_object_id
      IMPORTING
        output = g_object_id.
get the guid of the sales order
    CALL FUNCTION 'CRM_HEADER_OBJ_ID_GET_GUID'
      EXPORTING
        iv_obj_id      = g_object_id
      IMPORTING
        ev_guid        = g_guid
      EXCEPTIONS
        error_occurred = 1
        OTHERS         = 2.
    IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    l_shdr_guid = g_guid.
    INSERT l_shdr_guid INTO TABLE l_thdr_guid.
*Fill requested objects
    l_sreq_obj = 'ORDERADM_H'.
    INSERT l_sreq_obj INTO TABLE l_treq_obj.
    l_sreq_obj = 'ORDPRP_I'.
    INSERT l_sreq_obj INTO TABLE l_treq_obj.
    l_sreq_obj = 'ORDERADM_I'.
    INSERT l_sreq_obj INTO TABLE l_treq_obj.
*Call FM
    CALL FUNCTION 'CRM_ORDER_READ'
      EXPORTING
        it_header_guid       = l_thdr_guid
        it_requested_objects = l_treq_obj
      IMPORTING
        et_orderadm_h        = l_i_torderadm_h
        et_ordprp_objl_i_d   = l_i_tordprp_objl
        et_orderadm_i        = l_i_torderadm_i
      EXCEPTIONS
        document_not_found   = 1
        error_occurred       = 2
        document_locked      = 3
        no_change_authority  = 4
        no_display_authority = 5
        no_change_allowed    = 6
        OTHERS               = 7.
    IF sy-subrc = 0.
Read the Serial Numebr for the item
      READ TABLE l_i_torderadm_i INTO i_s_orderadm_i
                        WITH KEY header = g_guid.
      IF sy-subrc = 0.
        READ TABLE l_i_tordprp_objl INTO i_s_ordprp_objl
                          WITH KEY ref_guid = i_s_orderadm_i-guid.
        IF sy-subrc = 0.
          i_s_ibase-ibase = i_s_ordprp_objl-ibase_header.
          i_s_ibase-guid_comp = i_s_ordprp_objl-ibase_header_guid.
        ENDIF.
      ENDIF.
try updating the ibase with equipment.
      IF NOT i_s_ibase IS INITIAL.
        LOOP AT i_t_struc-equi INTO i_s_equi.
i_t_equi = i_t_struc-EQUI.
   CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
       EXPORTING
         input  = i_s_equi-equnr
       IMPORTING
         output = i_s_equi-equnr.
     CALL FUNCTION 'CONVERSION_EXIT_PRID1_INPUT'
       EXPORTING
         input        = i_s_equi-equnr
       IMPORTING
         output       = i_s_object-com_product-product_id
       EXCEPTIONS
         lenght_error = 1
         OTHERS       = 2.
         i_s_object-com_product-product_id = i_s_equi-equnr.
          i_s_index-father = i_s_ibase-ibase.
          i_s_index-cHILD = i_s_equi-equnr.
          i_s_index-ibase = i_s_ibase-ibase.
          i_s_index-guid_comp = i_s_ibase-guid_comp.
          APPEND i_s_index TO i_t_index.
          EXIT.
        ENDLOOP.
*READ TABLE  i_t_equi INTO i_s_equi index 1.
        i_s_object-com_product-object_family = '0401'.
        i_s_object-com_product-product_type = '01'.
        i_s_object-update_type               = 'I'.
populate the changing parameter i_t_index
        CALL FUNCTION 'CRM_UPDATE_IBASE_FROM_EQUI'
          EXPORTING
            is_equipment      = i_s_equi
            is_equi_dmbdoc    = it_equi_dmbdoc
            is_object         = i_s_object
          CHANGING
            ct_equi_index     = i_t_index
            ct_error_segments = i_t_error
          EXCEPTIONS
            update_error      = 1
            OTHERS            = 2.
        IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF. " if not ibase is initial
    ENDIF.
ENDDO.
ENDMETHOD.

Similar Messages

  • I keep getting window up saying urgent update recommending download, but when i do try, all i get is a blue and white bar moving . i have left it run for hours and nothing happens. what is it?

    i downloaded new FF 2 weeks ago. Since then i keep getting update window coming up every day highly recommending i update but when i try, nothing happens except blue/white moving bar at top of window. i have left it run for hours and no progress, so i close it. The next time I open FF, it appears again and again same happens.
    If there is an urgent update, how urgent is it if I cannot download it.It's worries me that i can,t load it and how it might affect my security.

    It would be a great idea to uninstall Norton - you don't need it and it has a pretty poor reputation for mucking up otherwise healthy Macs.
    Have a look at this User Tip from klaus1: https://discussions.apple.com/docs/DOC-2435
    To uninstall Norton:
    https://support.norton.com/sp/en/us/home/current/solutions/kb20080427024142EN_En dUserProfile_en_us
    Edit: To see whether you actually have Norton installed launch Activity Monitor in the Utilities folder. If it's installed you'll likely see some Norton entries there.
    Also, in System Preferences>Users & Groups or Accounts, depending on OS)>Login Items, it might be listed.

  • Push urgent update via WSUS?

    Hello, 
    I am using WSUS 2012 and have a couple of questions.  We have created multiple Computer Groups in the WSUS console to manage the different departments and regional offices and it is working great,wih our GPOs.  Once we approve the updates then
    afer a couple of days they will have them.
    1.) If we need to push an urgent update out or remove one very quickly how can we do this?
    2.) What is the best way to show what Computer groups we have approve updates on?
    Thanks

    Hello TB303,
    1.) The best to force an update to be catch out of your WSUS settings is to force the computer to get the last updates from the server with the following command line :
    wuauclt /detectnow (see :
    http://technet.microsoft.com/en-us/library/cc720477%28v=ws.10%29.aspx)
    You'll just have to wait for about 15-30 minutes and the computer will have the updates been downloaded.
    But you have to take in consideration that the settings you put in your GPO on the way updates are treated (Download and wait for install, Download and install, etc.) will be applied even with the command line
    2.) The best is to create Filtered View and to manage the Columns to see the Install counts or the last connection date.
    TiGrOu.

  • URGENT : Updating Saudi Payment Output File

    Dear Fellow Boarders,
    We had an urgent requirement to add a new line at the end of "Saudi Payment Output File"
    I had created the formula for same and attached at the "Organizational Payment Method" Level, via "Further Information" in "Other" Tab.
    However when I run the Saudi Payment Output File , nothing is changed.
    I have a feeling that I am missing some step.
    Any assistance will be highly appreciated.
    Regards
    Shah Alam , Jeddah

    Thanks Vignesh,
    This issue is resolved now. We had a Sev 1 SR and got the resolution.
    They provided script to update seeded balance "Total Pay" it was not considering one element's classification.
    Thanks,
    Avinash

  • URGENT: Updating FISTL field using BAPI_PO_CHANGE

    HI Friends,
    I am about to update the field FISTL and GEBER in EKKN .
    I am using BAPI_PO_CHANGE to update those fields . I have tried passing the fields to the table
    POITEM  and POACCOUNT in BAPI.
    i have also given the values to POITEMX  and POACCOUNTX tables .
    I have given the BAPI_COMMIT_TRANSACTION also . i have given wait time also . Even then the value is not updated in EKKN table .
    What could be reason for value not getting updated .
    Is the table to which i am passing in BAPI is ok?
    Please help me in this issue , its urgent.
    Reward is sure

    Hi Gokul,
    Try 'BAPI_PO_CREATE1' and see if you can achieve the result.
    *& Report  YDM_PO_CREATE                                               *
    REPORT  ydm_po_create.
    *-- Input File Declaration
    TYPES: BEGIN OF ty_input_file,
           column1 TYPE char50,
           column2 TYPE char50,
           column3 TYPE char50,
           column4 TYPE char50,
           column5 TYPE char50,
           column6 TYPE char50,
           column7 TYPE char50,
           column8 TYPE char50,
           column9 TYPE char50,
           column10 TYPE char50,
           column11 TYPE char50,
           column12 TYPE char50,
           column13 TYPE char50,
           column14 TYPE char50,
           column15 TYPE char50,
           column16 TYPE char50,
           column17 TYPE char50,
           column18 TYPE char50,
    END OF ty_input_file.
    DATA: i_input_file  TYPE STANDARD TABLE OF ty_input_file,
          wa_input_file TYPE ty_input_file.
    CONSTANTS: c_path     TYPE char20 VALUE 'C:\',
               c_mask     TYPE char9  VALUE ',*.*,*.*.',
               c_mode     TYPE char1  VALUE 'O',
               c_filetype TYPE char10 VALUE 'ASC',
               c_x        TYPE char01 VALUE 'X'.
    PARAMETERS : p_fname   LIKE rlgrap-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fname.
    *-- Browse Presentation Server
      PERFORM f4_presentation_file.
    START-OF-SELECTION..
    *-- Read presentation server file
      PERFORM f1003_upload_file.
      IF NOT i_input_file[] IS INITIAL.
        PERFORM split_data.
      ENDIF.
    *&                  Form  f4_presentation_file
    *&                F4 Help for presentation server
    FORM f4_presentation_file .
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_path         = c_path
          mask             = c_mask
          mode             = c_mode
          title            = text-001
        IMPORTING
          filename         = p_fname
        EXCEPTIONS
          inv_winsys       = 1
          no_batch         = 2
          selection_cancel = 3
          selection_error  = 4
          OTHERS           = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " f4_presentation_file
    *&                      Form  f1003_upload_file
    *&                         Upload File
    FORM f1003_upload_file .
      DATA: lcl_filename TYPE string.
      lcl_filename = p_fname.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = lcl_filename
          filetype                = c_filetype
          has_field_separator     = c_x
        TABLES
          data_tab                = i_input_file
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        EXIT.
      ENDIF.
    ENDFORM.                    " f1003_upload_file
    *&      Form  split_data
          Collect data for creating Purchase Order
    FORM split_data .
      DATA: i_poitem        TYPE STANDARD TABLE OF bapimepoitem,
            i_poitemx       TYPE STANDARD TABLE OF bapimepoitemx,
            i_poitem_sch    TYPE STANDARD TABLE OF bapimeposchedule,
            i_poitem_schx   TYPE STANDARD TABLE OF bapimeposchedulx,
            i_acct_***      TYPE STANDARD TABLE OF bapimepoaccount,
            i_acct_assx     TYPE STANDARD TABLE OF bapimepoaccountx,
            i_services      TYPE STANDARD TABLE OF bapiesllc ,
            i_srvacc        TYPE STANDARD TABLE OF bapiesklc,
            i_return        TYPE STANDARD TABLE OF bapiret2,
            wa_header       TYPE bapimepoheader,
            wa_headerx      TYPE bapimepoheaderx,
            wa_poitem       TYPE bapimepoitem,
            wa_poitemx      TYPE bapimepoitemx,
            wa_poitem_sch   TYPE bapimeposchedule,
            wa_poitem_schx  TYPE bapimeposchedulx,
            wa_acct_***     TYPE bapimepoaccount,
            wa_acct_assx    TYPE bapimepoaccountx,
            wa_services     TYPE bapiesllc,
            wa_srvacc       TYPE bapiesklc,
            wa_return       TYPE bapiret2,
            ws_po           TYPE bapimepoheader-po_number.
      break gbpra8.
      wa_services-pckg_no = 10.
      wa_services-line_no = 1.
      wa_services-outl_no = '0'.
      wa_services-outl_ind = c_x.
      wa_services-subpckg_no = 20.
      APPEND wa_services TO i_services.
      wa_srvacc-pckg_no = 10.
      wa_srvacc-line_no = 1.
      wa_srvacc-serno_line = 01.
      wa_srvacc-serial_no = 01.
      wa_srvacc-percentage = 100.
      APPEND wa_srvacc TO i_srvacc.
      LOOP AT i_input_file INTO wa_input_file.
        IF wa_input_file-column2 EQ 'HD'.
          wa_header-doc_type = wa_input_file-column3.
          wa_header-creat_date = sy-datum.
          wa_header-created_by = sy-uname.
          wa_header-vendor = wa_input_file-column4.
          PERFORM conversion_output USING wa_header-vendor
                                    CHANGING wa_header-vendor.
          wa_header-comp_code = 'DE03'.
          wa_header-purch_org = 'DE03'.
          wa_header-pur_group = 'DE1'.
          wa_header-vper_start = wa_input_file-column9.
          wa_header-vper_end = wa_input_file-column10.
          wa_headerx-comp_code = c_x.
          wa_headerx-doc_type = c_x.
          wa_headerx-creat_date = c_x.
          wa_headerx-created_by = c_x.
          wa_headerx-vendor = c_x.
          wa_headerx-purch_org = c_x.
          wa_headerx-pur_group = c_x.
          wa_headerx-vper_start = c_x.
          wa_headerx-vper_end = c_x.
        ENDIF.
        IF wa_input_file-column2 EQ 'IT'.
          wa_poitem-po_item = wa_input_file-column3.
          wa_poitem-short_text = wa_input_file-column6.
          wa_poitem-plant = wa_input_file-column8.
          wa_poitem-quantity = '1'.
          wa_poitem-tax_code = 'V0'.
          wa_poitem-item_cat = 'D'.
          wa_poitem-acctasscat = 'K'.
          wa_poitem-matl_group = wa_input_file-column7.
          wa_poitem-pckg_no = '10'.
          APPEND wa_poitem TO i_poitem .
          wa_poitemx-po_item = wa_input_file-column3.
          wa_poitemx-po_itemx = c_x.
          wa_poitemx-short_text = c_x.
          wa_poitemx-plant = c_x.
          wa_poitemx-quantity = c_x.
          wa_poitemx-tax_code = c_x.
          wa_poitemx-item_cat = c_x.
          wa_poitemx-acctasscat = c_x.
          wa_poitemx-matl_group = c_x.
          wa_poitemx-pckg_no = c_x.
          APPEND wa_poitemx TO i_poitemx.
          wa_poitem_sch-po_item = wa_input_file-column3.
          wa_poitem_sch-delivery_date = sy-datum.
          APPEND wa_poitem_sch TO i_poitem_sch.
          wa_poitem_schx-po_item = wa_input_file-column3.
          wa_poitem_schx-po_itemx = c_x.
          wa_poitem_schx-delivery_date = c_x.
          APPEND wa_poitem_schx TO i_poitem_schx.
          wa_acct_***-po_item = 10.
          wa_acct_***-serial_no = 01.
          wa_acct_***-gl_account = '0006360100'.
          wa_acct_***-co_area  = '1000'.
          wa_acct_***-costcenter = 'KC010000'.
          APPEND wa_acct_*** TO i_acct_***.
          wa_acct_***-po_item = 10.
          wa_acct_***-serial_no = 02.
          wa_acct_***-gl_account = '0006360100'.
          wa_acct_***-co_area  = '1000'.
          wa_acct_***-costcenter = 'KC010000'.
          APPEND wa_acct_*** TO i_acct_***.
          wa_acct_assx-po_item = 10.
          wa_acct_assx-serial_no = 01.
          wa_acct_assx-po_itemx = c_x.
          wa_acct_assx-serial_nox = c_x.
          wa_acct_assx-gl_account = c_x.
          wa_acct_assx-co_area  = c_x.
          wa_acct_assx-costcenter = c_x.
          APPEND wa_acct_assx TO i_acct_assx.
          wa_acct_assx-po_item = 10.
          wa_acct_assx-serial_no = 02.
          wa_acct_assx-po_itemx = c_x.
          wa_acct_assx-serial_nox = c_x.
          wa_acct_assx-gl_account = c_x.
          wa_acct_assx-co_area  = c_x.
          wa_acct_assx-costcenter = c_x.
          APPEND wa_acct_assx TO i_acct_assx.
          wa_services-pckg_no = 20.
          wa_services-line_no = 2.
          wa_services-service = wa_input_file-column9.
          wa_services-quantity = '100'.
          wa_services-gr_price = '100'.
          wa_services-userf1_txt = wa_input_file-column13.
          APPEND wa_services TO i_services.
          wa_srvacc-pckg_no = 20.
          wa_srvacc-line_no = 1.
          wa_srvacc-serno_line = 02.
          wa_srvacc-serial_no = 02.
          wa_srvacc-percentage = 100.
          APPEND wa_srvacc TO i_srvacc.
        ENDIF.
      ENDLOOP.
      CALL FUNCTION 'BAPI_PO_CREATE1'
        EXPORTING
          poheader                     = wa_header
          poheaderx                    = wa_headerx
      POADDRVENDOR                 =
      TESTRUN                      =
      MEMORY_UNCOMPLETE            =
      MEMORY_COMPLETE              =
      POEXPIMPHEADER               =
      POEXPIMPHEADERX              =
      VERSIONS                     =
      NO_MESSAGING                 =
      NO_MESSAGE_REQ               =
      NO_AUTHORITY                 =
      NO_PRICE_FROM_PO             =
       IMPORTING
         exppurchaseorder             = ws_po
      EXPHEADER                    =
      EXPPOEXPIMPHEADER            =
       TABLES
         return                       = i_return
         poitem                       = i_poitem
         poitemx                      = i_poitemx
      POADDRDELIVERY               =
         poschedule                   = i_poitem_sch
         poschedulex                  = i_poitem_schx
         poaccount                    = i_acct_***
      POACCOUNTPROFITSEGMENT       =
         poaccountx                   = i_acct_assx
      POCONDHEADER                 =
      POCONDHEADERX                =
      POCOND                       =
      POCONDX                      =
      POLIMITS                     =
      POCONTRACTLIMITS             =
         poservices                   = i_services
         posrvaccessvalues            = i_srvacc
      POSERVICESTEXT               =
      EXTENSIONIN                  =
      EXTENSIONOUT                 =
      POEXPIMPITEM                 =
      POEXPIMPITEMX                =
      POTEXTHEADER                 =
      POTEXTITEM                   =
      ALLVERSIONS                  =
      POPARTNER                    =
      break gbpra8.
      LOOP AT i_return INTO wa_return.
      ENDLOOP.
    ENDFORM.                    " split_data
    *&      Form  conversion_output
          Conversion exit input
    FORM conversion_output  USING    p_ip
                            CHANGING p_op.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = p_ip
        IMPORTING
          output = p_op.
    ENDFORM.                    " conversion_output
    <b>Reward points if this helps.
    Manish</b>

  • Urgent updates to a CS3 page

    I have a couple of pages in my CS3 site to which I need to allow a few users to send urgent status updates.
    In my mind, they will email their updates - but in reality in DW CS3, How do I do this?
    Helpful suggestions will be so appreciated.
    JMW

    It's really not clear exactly what you're trying to accomplish. Are you looking for the users to make the updates themselves, or notify you that a particular page needs to be updated?
    Danilo Celic
    | http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • URGENT : Update OS to Maverick, won´t restart

    Recently updated the OS to Maverick.   First thing I noticed is that the new OS does not recognize the RAID (internal disc raid + Apple Raid card).
    Then I restarted the computer but it got stuck forever on a light grey screen.   No beachball, no error. no nothing.
    This is a 2009 (if I remember well) 4.1 Mac Pro, Dual 2.26 Quad Core Xeon processor, 32GB Ram, Apple Raid card, AJA Kona LHI video card.
    I have a vital job in progress on this computer.   It´s both in the RAID as well as a safety copy in the start up disc Macintosh HD.
    Please advice on how to get this Mac started.    One thing that comes to my mind is to disconnect the PCI Raid card and try restart, but I guess might mean to loss all the data. 
    Please advice, need urgent Help !!!!!

    Have you tried safe mode boot: just pressing and holding shift key down with starting the machine (powering on), at least from the "chime" sound for a few seconds (when a progress bar start to show you can release the shift key)?
    If that won't work, have you tried "single user mode" (Cmd+S) returning a black screen with white text (kinda startup log to show eventual problems)?
    Can you start your Mac in "Recovery" mode (Cmd+R) if all above fails?
    When all your machinery is switched off, taking out the RAID card should not make you lose any data. However, since the data is on the disks that are connected to the card you might not be able to see the data without the card being plugged in. But since you seem to have a safety copy, you might still access the data?
    If you have good reason to suspect the card, taking it out might help to see your mac start again (without the volumes on the RAID disks though). But I would only do so when all above (safe mode, single user mode, recovery mode) fails. On my machines just starting up in safe mode, shutting down and then start the machine helped quite often, fortunately.
    How does your Mac start (at all) without the RAID?

  • FM to update Settypes of Ibase

    Hi All,
    I want to update the Settypes of Ibase , is there any FM avaialable to update the settypes?
    Please help.
    Thanks,
    SUshant

    solved using CRMXIF_PROD .. FM.

  • Urgent - Updating single license app

    Dear all,
    I am confused on the update process when correcting minor issues using Adobe DPS.
    I have made an app. I have bought a license. The app is ready to download in the app builder.
    Now, I need to update some minor typos and rearrange the chapters and I can not for the life of me figure out how to rebuild the app, using the same license, and push it out so it is ready for distribution.
    I have updated the Folio and updated the publication in the Folio Producer online and updated it there. Then I enter the App builder and edit the final app and press finish (the hourglass appears and I can see that the links for donwloading the Developer and Distribution apps reappear. In my world, this should now be links to the updated app with my corrected typos and rearranged chapters. But when I install the app on my iPad, no changes are applied. What am I doing wrong?
    Can anyone enlighten me? This is pretty urgent.
    Best regards,
    Kim

    Hi Himanshu,
    I have the same issue with my test app, I saw some things to change so I did in my folio, updating it in the cloud, working good on the iPad preview etc But it doesn't work when I update my app. in App Builder with "Manage" and "Edit", it's still creating an .ipa of the first version.
    I tried to create a new app but when I try to use my serial number it does work as I already used it to build the first version. Can I send you my serial number and Adobe ID so I can re-use them as well to recreate my app with the changes I had to make?
    Thanks for your help
    j.

  • Firefox 6.0 does not work. You keep advising an urgent update is required but the update nevers connects, will not hide and completely does not work?

    Firefox 6.0 always disappears after closing. I have to search for it and it opens as though it has never been installed or used before.
    An urgent stability update keeps being issued but that doesn't work either. No matter how long I leave it running, it never connects to the update centre. The hide button doesn't work which I think affirms and demonstrates it is also faulty.

    If you have problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 6.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data.
    * http://kb.mozillazine.org/Profile_folder_-_Firefox

  • URGENT  update a table with a text that has a single quote in it

    Hello, I am trying to update a table with a text that has a single quote in it. I believe I need to use two singles quotes but I am not sure how.
    For example:
    UPDATE TEST
    SET DESCRLONG='Aux fins d'exportations'
    WHERE etc...
    Should I put 2 singles quotes before the quote in the text?
    UPDATE TEST
    SET DESCRLONG='Aux fins d'''exportations'
    WHERE etc...
    Thank you very much :)

    The best way depends on the version of Oracle.
    But, the quick and universal answer is to use two single quotes
    SQL> connect test/test
    Connected.
    SQL> create table test (descrlong varchar2(128));
    Table created.
    SQL> insert into test values ('This is a string with a '' single quote');
    1 row created.
    SQL> select * from test;
    DESCRLONG
    This is a string with a ' single quote
    SQL> update test set descrlong='Aux fins d''exportations'
      2  where descrlong like 'T%';
    1 row updated.
    SQL> select * from test;
    DESCRLONG
    Aux fins d'exportations
    SQL>                                             

  • Very urgent:Updating maintenance view

    Hi
    I would like to know that if i update a maintenance view and attach the same to the
    request,will it be included in the correction instructions ?
    Or do i need to do anything special for the same?
    Please let me know
    Regards
    Leon

    Any relavance to Oracle?

  • Very urgent : Update maintenance view

    Hi
    I would like to know if i update a maintenance view ,will that change be included
    in the correction instruction or do i need to do anything special for the same.
    Regards
    Leon

    Hi,
           it should update the data in views( and corresponding tables ) .
    and we need these changes should be stored in change request also .
    you can use FM
    VIEW_MAINTENANCE_NO_DIALOG
    with action parameter = 'SAVE'
    just do a where used list of this FM to check how this can be used
    <b>Reward points</b>
    Regards

  • Sql help - URGENT update info

    I ran a query to find 1)the current distribution group and corresponding account id number and 2) the historical distribution group and corresponding account id number from checks written in contract year 2008.
    Here is the sql statement from my query:
    SELECT EMPLOYEE_MASTER.EMPLOYEE_NO, EMPLOYEE_DISTRIBUTIONS.DISTRIBUTION_GROUP, EMPLOYEE_DISTRIBUTIONS.ACCOUNT_ID, PAYS_HISTORY.DISTRIBUTION_GROUP, ACCOUNT_HISTORY.ACCOUNT_ID, ACCOUNT_HISTORY.CHECK_KEY
    FROM HRS.ACCOUNT_HISTORY ACCOUNT_HISTORY, HRS.EMPLOYEE_DISTRIBUTIONS EMPLOYEE_DISTRIBUTIONS, HRS.EMPLOYEE_MASTER EMPLOYEE_MASTER, HRS.PAYS_HISTORY PAYS_HISTORY
    WHERE EMPLOYEE_DISTRIBUTIONS.EMPLOYEE_NO = EMPLOYEE_MASTER.EMPLOYEE_NO AND PAYS_HISTORY.EMPLOYEE_NO = EMPLOYEE_MASTER.EMPLOYEE_NO AND ACCOUNT_HISTORY.CHECK_KEY = PAYS_HISTORY.CHECK_KEY AND ((PAYS_HISTORY.CONTRACT_YEAR=2008) AND (ACCOUNT_HISTORY.TRANSACTION_TYPE='GRS'))
    What I need to do now is update the distribution_group from the pays_history to match the distribution_group from the employee_distribution where the account_id is the same as the account_history.account_id.
    Any ideas?
    Thanks!

    Are you asking me to create an update statement? Isn't it you want to achieve ?
    If I could I wouldn't have posted here! (smiling)Yes, learning is made by tries and errors.
    Your statement not so bad ;-)
    So what about (with forum tags usage for post readability) :
    &#091;pre&#093;Update hrs.pays_history ph
    set    distribution_group = (select ed.distribution_group
                                 from   hrs.employee_distributions ed
                                 where  ph.employee_no   = ed.employee_no
                                 and    ph.account_id    = ed.account_id
                                 and    ph.contract_year = 2008)
    where exists (select  null
                   from   hrs.employee_distributions ed
                   where  ph.employee_no   = ed.employee_no
                   and    ph.account_id    = ed.account_id
                   and    ph.contract_year = 2008)&#091;/pre&#093;
    Not sure about the requirements, but at least that should run.
    Nicolas.

  • Urgent: Updating Item Text  Via SAVE_TEXT

    HI Friends,
    I need to update the item text in me22n via some FM.
    Can somebody suggest some FM with eg..
    I have found SAVE_TEXT FM to update the item text.
    i am not sure about the parameters and value could any body help me with some code ..
    I have written a code like this
    I have got a error like the length of the header table passed is higher ...and goes to short dump.
    GW_THEAD-TDNAME   = 'Concatenated value of Ebeln and Ebelp".
    GW_THEAD-TDID     = ?F01?.
    GW_THEAD-TDSPRAS  = SY-LANGU.
    GW_THEAD-TDOBJECT = ?EKPO?.
      IT_LINE-TDFORMAT = ?*?.
      IT_LINE-TDLINE   = ?Test Create Text?.
      APPEND IT_LINE.
    CALL FUNCTION ?SAVE_TEXT?
        EXPORTING
        CLIENT                = SY-MANDT
          HEADER                = GW_THEAD
        INSERT                = ? ?
        SAVEMODE_DIRECT       = ? ?
        OWNER_SPECIFIED       = ? ?
        LOCAL_CAT             = ? ?
      IMPORTING
        FUNCTION              =
        NEWHEADER             =
        TABLES
          LINES                 = IT_LINE
        EXCEPTIONS
          ID                    = 1
          LANGUAGE              = 2
          NAME                  = 3
          OBJECT                = 4
          OTHERS                = 5
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Please help with some code /

    Hi
    thank you very much for your reply.
    Can you explain more about the inport parameters of the FM. lets say for example I need to update "item note" in the item of a outbound delivery with text " I am doind the testing". for this scenario what the are the parameters i need to send to the FM
    thanks
    sankar

Maybe you are looking for

  • TO Display the row data as column in ALV

    Hi experts , Need to display the row data in ALV as column. The column of an ALV has the fieldnames of a table , this needs to be displayed as row data , that is as single row. How can this can be achieved?

  • XSL Processor Parser C++

    I want to get a XSL Processor Parser C++ but, Now XSL Processor is a java, pl/sql version. I want to know when a XSL Processor Parser C++ is coming soon.. null

  • Tomcat/Websphere JVM Crashes due to JCO / sapjcorfc.dll

    We have developed a web application on Tomcat/Websphere that uses JCO to connect to SAP/R3 and request data. When requesting more than aproximately 60.000 records the JVM crashes with: Unhandled exception Type=GPF vmState=0xffffffff Target=20030915 (

  • Audio and video out of synch on TV

    I've connected my Lenovo to my Sony Bravia TV using seperate VGA and audio cables. However, lip synch is lost. Does anyone have a solution? Incidentally, I used separate cables, having failed to get any audio with a VGA cable. I take there is no audi

  • Yosemite and MS Word (2011)

    I recently upgraded to Yosemite and have a problem with MS Word (2011).  I can't recolor a graphic.  When I click on a color option, nothing happens.  Is there now a different way to recolor a graphic in Word under Yosemite?  This feature worked just