Update Metadada via Batch

Hello
Guys,
Is there any way to update a metadata via Batch?
The Batch Loader will not work for me, because I don´t want to publish new documents.

Hi
There is a massmetadataupdate component that is a custom gig done by consultants to do the sort of the requirement which you are looking for . You should be able to get hold of it from any consultants at Oracle. Apart from that BatchLoader is best option for metadata update and I am not sure " what are you referring to as not to be published" .
Metadata update does not create a new revision of the content .It's only a checkout and checkin operation that creates a new revision for the existing content and sends it to the indexer for getting published / released.
Hope this helps
Thanks
Srinath

Similar Messages

  • Creating/updating Workcenter via batch file

    Hello,
    I need to update/create workcenters via batch file, including the cost, capacity and scheduling views.
    Concerning the capacity views (table CRCA), could somebody tells me how to initialize the key field CRCA-CANUM (capacity allocation number) ?
    Thank you in advance

    hi
    good
    Definition:Operations are carried out at a work center. In the R/3 System work centers are business objects that can represent the following real work centers, for example:
    Machines, machine groups
    Production lines
    Assembly work centers
    Employees, groups of employees
    Use
    Together with bills of material and routings, work centers belong to the most important master data in the R/3 production planning and control system. Work centers are used in task list operations and work orders. Task lists are for example routings, maintenance task lists, inspection plans and standard networks. Work orders are created for production, quality assurance, plant maintenance and for the Project System as networks.
    Data in work centers is used for
    Scheduling
    Operating times and formulas are entered in the work center, so that the duration of an operation can be calculated.
    Costing
    Formulas are entered in the work center, so that the costs of an operation can be calculated. A work center is also assigned to a cost center.
    Capacity planning
    The available capacity and formulas for calculating capacity requirements are entered in the work center.
    Simplifying operation maintenance
    Various default values for operations can be entered in the work center.
    Look at CR01 ,CR02,CR03 Transaction
    table : CRHD Table
    thanks
    mrutyun^

  • Batch Updation with new Batch via IDoc

    Hi,
    Is it possible to update the existing batch at the delivery level with the new batch from the IDoc during the Picking or PGI
    I checked the FM WS_DELVRY_UPDATE2 which is not allowing to do this...
    Any pointers on this will be helpful
    Any Clue on the above issue ?
    Thanks in Advance
    Rajesh
    Edited by: Rajesh on Mar 6, 2012 8:39 PM

    Possibly, have a look at OSS 748216.
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=748216
    Regards,
    Nick

  • How to send an updated list using batch job

    Hi All,
      The program displays data on the screen, if the data looks ok, then there is an option to update.
    When I run update, the program submits a batch job and the basic list gets updated, but my batch job is still sending the data on the screen. how can i send the updated list using batch job.
      Ex: output of the program
                    1         2
           there is an update button on the screen, when i press update button, my program submits in batch job, the above list becomes
                    1        2
                    3        4
    but when i check the spool, it shows the o/p as         1           2 ..it is not sending the updated list.
    Please suggest me how to send the updated data
    Thanks,
    Kumar

    Hi Krishna,
      I have added a button on the alv list. when i press update button, my program updates the list, then submits the batch job. I am attaching the sample test program i am trying with, please suggest me how can i get the updated list.
    *& Report  ZTESTSSSSS
    REPORT  ZTESTSSSSS.
    DATA: gt_fieldcat TYPE slis_fieldcat_alv,
          lt_fieldcat type slis_t_fieldcat_alv,
          gt_sort     TYPE slis_t_sortinfo_alv,
          g_repid     LIKE sy-repid,
          gt_layout   TYPE slis_layout_alv.
    start-of-selection.
      lt_return-type = 'S'.
      lt_return-message = 'test message'.
      append lt_return.
      CLEAR gt_fieldcat.
      gt_fieldcat-fieldname = 'TYPE'.
      gt_fieldcat-outputlen = '3'.
      gt_fieldcat-tabname   = 'LT_RETURN'.
      gt_fieldcat-seltext_l  =  'Type'.
      gt_fieldcat-seltext_m  =  'Type'.
      gt_fieldcat-seltext_s  =  'Type'.
      APPEND gt_fieldcat TO lt_fieldcat.
      CLEAR gt_fieldcat.
      gt_fieldcat-fieldname = 'MESSAGE'.
      gt_fieldcat-outputlen = '15'.
      gt_fieldcat-tabname   = 'LT_RETURN'.
      gt_fieldcat-seltext_l  =  'Message'.
      gt_fieldcat-seltext_m  =  'Message'.
      gt_fieldcat-seltext_s  =  'Message'.
      APPEND gt_fieldcat TO lt_fieldcat.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM       = sy-repid
          I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
          I_CALLBACK_USER_COMMAND  = 'USER_COMMAND'
          IT_FIELDCAT              = lt_fieldcat
        TABLES
          T_OUTTAB                 = lt_return
        EXCEPTIONS
          PROGRAM_ERROR            = 1
          OTHERS                   = 2.
    *&      Form  set_pf_status
          text
         -->RT_EXTAB   text
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'STANDARD'.
    ENDFORM. "Set_pf_status
    *&      Form  user_command
          text
         -->R_UCOMM      text
         -->RS_SELFIELD  text
    FORM user_command USING r_ucomm     LIKE sy-ucomm
                            rs_selfield TYPE slis_selfield.
      DATA: li_count TYPE I.
      IF r_ucomm EQ 'UPD'.
    Adding another message
        lt_return-type = 'S'.
        lt_return-message = 'Another test message'.
        APPEND lt_return.
        rs_selfield-refresh = 'X'.
        rs_selfield-col_stable = 'X'.
        rs_selfield-row_stable = 'X'.
        l_upd = 'X'.
       LOOP AT lt_return.
         WRITE: / lt_return-type, lt_return-message.
       ENDLOOP.
        IF sy-batch IS INITIAL.
          l_upd = 'X'.
    Open the Job
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              jobname          = w_name
            IMPORTING
              jobcount         = w_number
            EXCEPTIONS
              cant_create_job  = 1
              invalid_job_data = 2
              jobname_missing  = 3
              OTHERS           = 4.
          IF sy-subrc = 0.
            SUBMIT ('ZTESTSSSSS') VIA JOB w_name NUMBER w_number
                    AND RETURN
                    WITH p_recnnr = p_recnnr.
            CALL FUNCTION 'JOB_CLOSE'
              EXPORTING
                jobcount             = w_number
                jobname              = w_name
                strtimmed            = 'X'
              EXCEPTIONS
                cant_start_immediate = 1
                invalid_startdate    = 2
                jobname_missing      = 3
                job_close_failed     = 4
                job_nosteps          = 5
                job_notex            = 6
                lock_failed          = 7
                OTHERS               = 8.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.  "User_command
    Thanks,
    Kumar

  • Software update check via iTunes with error message (1664).

    I had a recent experience with my new Ipad '4'. It is running IOS 6.0.1. When I perform a software update check via iTunes, it returned a message saying that an unknown error had occured (1664). When I connect my iPad 2, and did the same check, it returned the nomal "softawre is current version (IOS 6.0.1)" message. However when I checked the software update via Settings in my Ipad '4'. it returned the msaage "your software is up to date". I had completely rebooted (totally switched off) the Ipad '4' and it still gave me the same message via Itune. not sure what is truly going on here.

    The above is from here:
    Resolve iOS update and restore errors - Apple Support

  • My ipod touch 4g doesn't show option for os update in setting-general page. Can i update it via itunes by connecting it to computer?

    My ipod touch 4g doesn't show option for ios update in setting-general page. Can i update it via itunes by connecting it to computer?

    Try:
    - iOS: Not responding or does not turn on
    When it says place the iPod in recovery mode ue one of these programs:
    For PC
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    If necessary:
    Download QTMLClient.dll & iTunesMobileDevice.dll for RecBoot
    For MAC or PC
    The Firmware Umbrella - TinyUmbrella
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Delete retail material via batch job?

    Hey guys,
    is there a way to delete a retail material via batch job? I know with transaction MM16 you can schedule a job to do that. But how can i do that without using transaction MM16. Is it possible to this via IDoc?
        thx,
          Wei-Ming

    Check OSS 35615 & 93732.
    Cheers

  • How to update for single batch id in one a table by using mutiple parametrs

    Hi Everyone,
    I need simple pl/sql logic to update one table using with some parametrs.I need a logic for single batch_id there will be 100 of records are there .how do i update my custom table ? how do i show how many records have been updated for each batch ? how to handle excpetions while updating ?Som body could help me it will be great.
    -- Sample Code
    PROCEDURE UPDATE_table (P_IN_BATCH_ID IN Number,
    P_IN_TRANS_ID IN number,
    P_IN_TRANS_STATUS IN varchar2,
    P_IN_ERROR_MSSG IN varchar2
                                                 ) is
    cursor
    select*from xx_cust_table
    BEGIN
    UPDATE xx_cust_table
    SET TRANSMISSION_ID=P_IN_TRANS_ID
    TRANSMISSION_MSG=P_IN_TRANS_STATUS     
    PROCESSED_FLAG=P_IN_ERROR_MSSG
    where BATCH_ID=P_IN_BATCH_ID
    END UPDATE_table;

    PROCEDURE UPDATE_table (P_IN_BATCH_ID IN Number,
    P_IN_TRANS_ID IN number,
    P_IN_TRANS_STATUS IN varchar2,
    P_IN_ERROR_MSSG IN varchar2
    ) IS
    BEGIN
    UPDATE xx_cust_table
           SET TRANSMISSION_ID=P_IN_TRANS_ID
                  TRANSMISSION_MSG=P_IN_TRANS_STATUS
                   PROCESSED_FLAG=P_IN_ERROR_MSSG
      WHERE BATCH_ID=P_IN_BATCH_ID;
    DBMS_OUTPUT.PUT_LINE(SQL%ROWCOUNT||' rows updated!');
    --EXCEPTION
    --  WHEN DUP_VAL_ON_INDEX THEN
    --    DBMS_OUTPUT.PUT_LINE('Duplicate value');
    --  WHEN OTHERS THEN
    --   <display sqlcode and sqlerrm>
    END UPDATE_table;

  • Can't install/update Apps via App Store * ios 8.1 iPhone 5s

    Hi,
    since the ios update 8.1 i can't install or update apps via App Store. I can't even download free apps or do the free updates for installed apps. Have tried to soft reset my phone, tried to outlog and log in again in the app store, turned wlan off and on and tried to download without wlan. Nothing works.
    I got an 1 year old iPhone 5s with the new ios 8.1. Never got any problems with the phone before, since this update!
    Thanks for your help and greetings,
    Falcon2k10

    If i click for example on the update button in app store, there is just this ''downloading circle'' and shows loading.. and loading.. and loading and just nothing happens. Also the sympol of the updating app gets grey and there stands ''waiting''.
    If i try to download an App, there is the same on the install/download button and there shows up a grey symbol of the app and nothing else happens.
    No error message or something else. Just shows that it ''loads'' and nothing happens.

  • Linksys srw2048 unable to update firmware via xmodem (using hyperterm)

    I have three srw2048 series switches at my new job. One updated fine via the web interface the other two (after I found a windows machine to use the web interface) looked as though they were uploading the new file but after a reboot I was still on the old verison. So I broke out the console cable. What I have done is to Download Software to the switch (option 1) this kicks me over into xmodem. Once I am in xmodem I choose to send a file (the latest rom) using the 1K Xmodem protocol it immediately gives me retries and errors until it reaches a threshold that ends the session. During this whole process zero k is transferred.
    Boot Version 1.0.0.04
    Software Version 1.0.0.49
    Hardware Version 00.03.10
    The only thing I can think is that I must need older files to upgrade to an intermediary version before loading the latest 1.22 rom file.

    You might want to pose this question in the Linksys forums at http://homecommunity.cisco.com/
    Also, try another terminal program like Teraterm Pro.  Maybe it needs "classic" xmodem?

  • What is defference between updating Firmware via P...

    I'm N85 user and I want to know What is defference between updating Firmware via PC an Via Device manager on phone?

    Firmware updates are usually released via one method or the other, rarely via both.
    The NSU method downloads entire ROM images from Nokia's servers, resulting in downloads of more than 100MB in some cases.
    The FOTA method only downloads what has changed from the version running on your phone to the latest version available. This means much less data to download, usually around 4-6 megabytes, which is important if you don't have access to a wireless network and have to use your operator's packet data service.
    The FOTA method is safer (because it doesn't involve a computer running a notoriously flaky operating system) and faster (because there's less data to download).
    Otherwise, the end result is the same.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • LSMW for Listings via Batch Input recording - Help ?

    Hi
    Has anyone had any luck with trying to upload Listings via LSMW at all ?
    I have created on, via batch input recording
    I have lots of records with entries from 1 to 16
    I have recorded enough entries to cope with 16
    However when i try to execute the batch session, if there is only 1 material that requires an entry, then i cannot get past this screen, the LSMW is wanting entries for the next line and so on
    I presume I must have to put some sort of a ruling in per Material number it is expecting, so if it is not poupulated then to move on, but to save the entries that have already been made
    I do not have much experience in writing rules into LSMW so
    Any ideas / help would be much appreciated
    Thanks
    Tony

    Hello Tony,
    In the past I have suggested this to few people and were successful with this link, please try, but only thing you need to take care is use VB02 instead of XK01 with reference to this link what I am trying to say.
    http://youtu.be/fz94PcvtdZw
    Regards,
    Sridhar.

  • Business scenario to define material combination via batch characteristics.

    Dear all,
    There is one business scenario. Condition is some of the raw material just could only be available for some special material and not available for normal mixture on BOM master.
    Could you please help whether we can define the below scenario on SAP system via batch characteristic ? thanks.
    Case 1: In some condition, raw material only allow for some specific customer products
    Case 2: In some condition, raw material only available for some specific mixture code
    Case 3: In some condition, Normal raw materials could be available for all mixture except some mixture materials.
    Thanks,
    Brijesh

    Dear all,
    What I mention was within the same raw material but different batch situation. for example, if the material A batch 123 could only available for Finish good F,G,H,I,J and the Material A batch 124 and Batch 125 could only for Finish good H and J. this is one scenario. For the second case , the Material A Batch 126 could not be used for finish good F and G. could you please help me to clarify those two scenario on SAP ? thanks.
    Regards,
    Brijesh

  • Updated Facebook via the Apps store.  Icon is "grayed" and will not open.  It also will not let me delete, to download again.  Anyone have this problem?

    Updated Facebook via the apps store.  Now, icon is "grayed" &amp; will not open, nor will it let me delete it, so I can re-download.  Has anyone had this problem?

    Do you have another disk or Mac connected that has Pages '09 from the Mac App Store installed? If so, the MAS will "see" it & will report it as installed. Unmount any & all drives, including Time Machine backups, that might have Pages '09 on them & then relaunch the MAS & see if you can download it.

  • How should i execute file transfer via batch job scheduling

    Hi guys,
        i want to call unix transfer script via batch job scheduling. Executing the system commands witin ABAP is as below:
             DATA: BEGIN OF ITAB occurs 0,
                         LINE(200),
                        END OF ITAB.
            UNIXCOMM = '/usr/sap/trans/data/*******'
            CALL 'SYSTEM' ID 'COMMAND' FIELD UNIXCOMM
                    ID 'TAB'     FIELD itab-sys.
    Now i plan to assign application server ('Exec Target') to it and let it implement in the background.
      Should i do it via batch job?
    Any info is appreciated very much.

    Instead of using
    CALL 'SYSTEM' u can use FM..
    SXPG_COMMAND_EXECUTE  .. in which u have to pass a command name which u can create or get from SM49...
    In CALL 'SYSTEM' .. u can not catch exceptions.. but in FM given above u can check
    SY-SUBRC, STATUS and EXITCODE  for successful  command execution..
    for successful command execution..
    sy-subrc = 0
    STATUS = 'O'  " Capital O
    exitcode = 0
    For batch scheduling, you can use this FM in a report  with one parameter for additional parameter which u need to pass to this FM  and create a JOB for that report and schedule it..
    I've used it and  find it useful even for batch scheduling..
    Reward if useful
    Regards
    Prax

Maybe you are looking for

  • Project wise cost center

    Hello, Can we consider each project as a cost center in an organization? Thanks

  • Time Machine Error - sparsebundle could not be accessed

    I have a time capsule shared by an old MacPro and a new MacBook.  I get this message when trying to run a backup from the MacPro: Time Machine Could Not Complete the Backup.  The backup disk image "/Volumes/Data/XXX.sparsebundle" could not be accesse

  • Component label and style

    Is it possible to get the component's single lable without having all the labels of the component appearing? Like, I'm trying to include the label into a text's .text the code I'm using now is MoVName.text=MoV.labels; but it gave me all the labels th

  • Wireless Lan not getting Installed

    Hi, 

  • My contacts and appointments have vanished

    I have an iphone 3gs and a pc running Vista and use Microsoft Outlook  2007. I installed iOS5 and icloud and now all of my contacts and appointments have vanished from Outlook. What should I do? I was due to buy a mac laptop this week to replace my p