Execute many Broadcasting Settings at one time

Hello Gurus,
I have ~ 20 broadcasting settings defined in my system and I am searching for a way (Transaction, Program etc.) to execute them in one step.
What I currenty do is:
Open each setting in Bex broadcaster in the Portal, press execute, and wait, and this for 20 times.
I have defined a broadcasting event in a process chain, that executes scheduled settings. But when errors in the chain occur, I have to start the settings manually.
Points will be awarded for every good tip!
br
klaus

HI,
Try Using RSBATCH and shcdule all these jobs in Process chain parallel.
Hope this helps,
Let me know if this works out for u...
Andy

Similar Messages

  • How to re-execute the error items at one time in SMQ2(t-code)

    Hi Experts,
    today i went to check the Inbound Queues using SMQ2, there are so many error queues, how can i re-execute these error queues at one time?
    Thanks&Regards,
    Su

    Hi Su,
    While you are inside a particular error queue, choose 'Unlock' and in the popup give CF* (or whatever queue prefix you have) and run. It will execute all the error queues / LUWs starting with CF*, for example.
    Regards,
    biplab

  • Hi iwant to execute the 4 reports at one time

    Hi Friends,
    Actuall iam getting one issue as they r given 4 reports
    So finally is there any solution for executing these 4 reports at a time and at the same time pls provide the logic also
    Thaks & Regards
    Mohan Reddy

    Duplicate post
    Reported to SCN
    pk

  • How can I open the selected many xml files at one time in framemaker?

    I want to open the selected xml files at one time in framemaker,but it allows to select one xml file at one time,if i want to select many files ,
    How can i to do?

    Please repost in the FrameMaker forum.
    Mike

  • How can i download many file from server one times.

    Hi,
    I want to create the service to download multi-files from web server one time
    from browser. It seems no way to do it. My soulition is compressing the files
    to zip before download it. The problem is that when the user uncompresses the
    files,full path of downloaded files are setted. Look like this:
    /usr/tmp/test/file1
    /usr/tmp/test/file2
    /usr/tmp/test/file3
    My question is :
    1. Is there any way not to specify the full path of a file when
    add the file to zip.
    Here is the source
    BufferedInputStream bis
    = new BufferedInputStream(
    new FileInputStream( file ) );
    //if not full path . can is works?????
    ZipEntry target = new ZipEntry( file.getPath() );
    // zos is ZipOutputStream
    zos.putNextEntry( target );
    int c;
    while( ( c = bis.read() ) != EOF ) {
    zos.write( (byte)c );
    2. Is there any way to get and change the current work directory of my server ?
    Please help!!

    If i use file.getName(). I will lost the struct of path.
    I means that,if i compress the list of files:
    /usr/tmp/test1/file1
    /usr/tmp/test1/file2
    /usr/tmp/test2/file3
    can i keep the part of path's strcut. (usr/tmp/../.. etc.)
    I tried to do as this:
    target = new ZipEntry( file.getPath.substring(1));
    an error be reported when uncompressed the zip file.
    error message:
    warning [zt000002.zip]: extra 28 bytes at beginning or within Zip file (attempting to process anyway)
    Error in file #1: bad Zip file offset (Error local header signature not found): 0
    (attempting to re-compensate)
    Extracting 20030109.xls
    Error: unexpected end of file encountered
    Error: invalid compressed data to inflate
    Why? can i set "any" entry name??

  • How do I rename many photos all at one time with one click?

    I have got many photos of a sery and want to rename it all with one click only (instead of clicking through it all in single actions and wasting time).
    How can I rename many pictures/photos all together with one click only? -
    1) I have OS X Yosemite
    2) Aperture
    3) Automator App
    to use for this purpose, but I do not see through with any of it.
    Detailed Support for 1) and 2) and 3)  please!
    jona li

    Here is an article on how to batch rename files in Yosemite using just the Finder. This is a new feature in Yosemite. See if this article helps you get your files renamed.

  • How do you accept many contact requests at one time?

    We host a talk show program on Skype and get many contact requests. We'd like to accept them all at once if we could. Skype tends to hang up (spinning wheel and no response) when we go and accept them one by one. Any suggestions?

    We host a talk show program on Skype and get many contact requests. We'd like to accept them all at once if we could. Skype tends to hang up (spinning wheel and no response) when we go and accept them one by one. Any suggestions?

  • How to execute multiple sql query in one time?

    HI
    I'm trying to convert my sql project In Oracle. In sql i could run multiple select statement/query in once and they return in multiple table result respectively. but in oracle its not executed.
    like:
    sqlQry := "Select * from abc; select * from qwe; select * from kkk; select * from xyz"
    its return 4 table abc, qwe,kkk,xyz to my dataset result
    how it is possible in oracle 10g

    Saten Chamoli wrote:
    I'm trying to convert my sql project In Oracle. In sql i could run multiple select statement/query in once and they return in multiple table result respectively. but in oracle its not executed.
    like:
    sqlQry := "Select * from abc; select * from qwe; select * from kkk; select * from xyz"
    its return 4 table abc, qwe,kkk,xyz to my dataset result That is pretty much a hack - there are no ANSI SQL standards supporting this syntax. It makes no sense either.
    If you want to combine 4 data sets, there are the UNION and UNION ALL set commands.
    If you want to create 4 cursors with a single call, then use the following (anonymous PL/SQL block) call:
    begin
      open :c1 for select * from abc;
      open :c2 for select * from qwe;
      open :c3 for select * from kkk;
      open :c4 for select * from xyz;
    end;Bind 4 client cursor variables to the ref cursors c1 to c4 and make the call to Oracle.
    And I suggest that you read up on Oracle concepts and fundamentals as your approach with you "sql project" shows ignorance in this regard.

  • Hi iwant to execute 3 reports at one time

    Hi Friends,
          Actually iam getting one issue as they r given 3 reports so iwant to execute the 3 reports at one time ie... i waant to execute the two reports from the first one ok
         So iwant the solution for this one so pls provide the solution and at the same time logic also pls
    Thanks & Regards
    Mohan  Reddy

    >
    Partha sarathy wrote:
    > Rewards if useful.
    NO.
    Reason here [stated|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement]

  • The problem with writing  BLOB arrays in table at one time?

    i want to write many blobs in at one time , And i use the OCIBindArrayOfStruct()
    My code is blow, I want you guys to help me find my BUG, thank you very much.
    the Program always pops the ERROR message :ORA-22275: invalid LOB locator specified
    STATUS status;
              OCILobLocator **lArray;
              lArray = new OCILobLocator*[nCount];
              for (size_t i = 0;i < nCount;i++)
                        if((status = OCIDescriptorAlloc((dvoid *)env->envhp,(dvoid **)&lArray,
                             (ub4)OCI_DTYPE_LOB,(size_t)0,(dvoid **)0)) != OCI_SUCCESS)
                             return(status);
              text sqlstats[300];
              strcpy_s((char*)sqlstats,300,"insert into ");
              strcat_s((char*)sqlstats,300,texTableName);
              strcat_s((char*)sqlstats,300,"(TEXID,TEXNAME,TEXDATA) values (:texid,:texname,:lblob)");
              OCIBind bndhp1 = (OCIBind )0;
              OCIBind bndhp2 = (OCIBind )0;
              OCIBind bndhp3 = (OCIBind )0;
              PREPARE_RETURN(sqlstats);
              BIND_CTR(bndhp1,":texid",texinfo[0].texid,30);
              if ((status = OCIBindArrayOfStruct(bndhp1,env->errhp,nSize,sizeof(sb2),sizeof(ub2),sizeof(ub2))) != OCI_SUCCESS)
                   for(size_t j = 0;j < nCount;j++)
                        FREE_LOB_LOCATOR(lArray[j]);
                   delete[] texinfo;
                   char err[512];
                   OraError_Proc(status,err,512);
                   AfxMessageBox(err);
                   return status;
              BIND_CTR(bndhp2,":texname",texinfo[0].texname,MAX_NAME);
              if ((status = OCIBindArrayOfStruct(bndhp2,env->errhp,nSize,sizeof(sb2),sizeof(ub2),sizeof(ub2))) != OCI_SUCCESS)
                   for(size_t j = 0;j < nCount;j++)
                        FREE_LOB_LOCATOR(lArray[j]);
                   delete[] texinfo;
                   char err[512];
                   OraError_Proc(status,err,512);
                   AfxMessageBox(err);
                   return status;
              if((status = OCIBindByName(env->stmthp,&bndhp3,env->errhp,
                   (CONST text *)":lblob",(sb4)-1,(dvoid *)lArray,(sword)-1,SQLT_BLOB,
                   (dvoid *)0,(ub2 *)0,(ub2 *)0,(ub4)0,(ub4 *)0,OCI_DEFAULT)) != OCI_SUCCESS)
                   return(status);
              if ((status = OCIBindArrayOfStruct(bndhp4,env->errhp,sizeof(lArray[0]),sizeof(sb2),sizeof(ub2),sizeof(ub2))) != OCI_SUCCESS)
                   for(size_t j = 0;j < nCount;j++)
                        FREE_LOB_LOCATOR(lArray[j]);
                   delete[] texinfo;
                   char err[512];
                   OraError_Proc(status,err,512);
                   AfxMessageBox(err);
                   return status;
    //this line will not succeed
              if((status = OCIStmtExecute(env->svchp,env->stmthp,env->errhp,
                   (ub4)nCount,(ub4)0,(CONST OCISnapshot *)0,(OCISnapshot *)0,(ub4)OCI_DEFAULT)) != OCI_SUCCESS)
                   char err[512];
                   OraError_Proc(status,err,512);
                   AfxMessageBox(err);
                   for(size_t j = 0;j < nCount;j++)
                        FREE_LOB_LOCATOR(lArray[j]);
                   delete[] texinfo;
                   return status;

    [Edit : oops...misread the post...]
    Regards

  • I want to know HOW to CLOSE Multiple Open Apps at ONCE. I keep mistakenly opening lots of things at one time.

    I want to know HOW to CLOSE Multiple Open Apps at ONCE. If I have many apps going at one time and want to stop fast, surely there is a way to hit like(alt-F4 in Windows) and BAM! They all go down. I need a feature like that...

    Alt+F4 in Windows only closes the active program.
    Command+Q does the same thing for Mac. Just keep hitting that key combo untill all are closed.

  • HT4059 When I try to load an ePub book it says out of memory.  How many books can you read at one time?

    When I try to load a second book it says out of memory.  How many books can be read at one time?

    Thank you so much...
    1. I don't have that fat format I checked as I saw this on another answer...BUT...you are right the project was very bloated and I made a new project with the sequence and moved a bunch of projects off to an outside drive and things are flying again...this effect "twirl" was on three clips and this seemed to be creating a problem along with it being a bloated project. Don't know why this effect renders easily then the next second doesn't it's on three clips on the entire project and one or another might not render all of a sudden.
    2. I understand what you said about the timeline export...I decided to export the sequence without the matte it was nested in and that sequence did have the chapter markers on the timeline and they again didn't export??? I'll look tomorrow at this it makes no sense if what you're saying is how to do it...the final cut pro book said they should have showed up if I export from the browser and that didn't work either.
    3. I then matted that output and rendered it to output but I am worried this will degrade and compress the sequence more than I want by outputting the same sequence with current settings twice???...the couple of outputs I could make nested looked very good as this was one render...however, I tried doing a quicktime "current settings" with the dvd studio pro info still trying to export chapter markers and maybe it's my imagination but the output didn't look as sharp as just an output with just chapter markers???
    r. I did look at the final cut pro book and it says that mpeg 2 movies will not read chapter markers anyway if you create one in compressor...if this is true it makes no difference if the quicktime output isn't having chapter markers show up. I assume when I go to author though I can put an mpeg 2 movie into dvd studio pro and create chapter markers at that point!! It seems weird it says it can do it with an mpeg 1 but not an mpeg 2 when everyone is using that for dvds.

  • I have itunes directory on an external hard drive and want to direct a new installation of itunes on windows 8 to use it. I tried holding down ctrl and clicking itunes and after many tries got it to work one time. When I went back in later it had reverted

    I have itunes directory on an external hard drive and want to direct a new installation of itunes on windows 8 to use it. I tried holding down ctrl and clicking itunes and after many tries got it to work one time. When I went back in later it had reverted back to a blank version of itunes and I cant get ctrl to work again. Any other ideas?

    This is sometimes caused by a problem with the iTunesPrefs.xml file, normally found at C:\Users\<User>\AppData\Local\Apple Computer\iTunes\iTunesPrefs.xml. Try dragging this to the desktop and trying again.
    Alternatively the problem may be that you have McAfee AV and it is preventing iTunes from updating the same file and thus causing the problem. See Why does iTunes delete my itunesprefs.xml? for details.
    tt2

  • How many Users online at any one time?

    Is there any better (/more accurate) way of determining how many users are using Planning at any one time then "Administration >Application>Statistics"?
    I've been using the Statistics up until now but it's hardly fit for purpose. The timings look dubious and the same users can be there 20+ times in the same list.
    It's not a deal breaker, but would be nice to see if anyone else had any hints on this.
    Regards
    Ed

    Even after a reset the numbers look very weird. Apparently it's been 6 weeks since I last accessed Planning... I should be fired!
    Slightly off topic: My Supporting Detail Detection Cache Usage is at 100%, am I right in thinking I should DECREASE the cache size in the Application Properties as per the Documentation (http://download.oracle.com/docs/cd/E17236_01/epm.1112/hp_admin.pdf - P83)?
    Sounds wrong to me.
    Any ideas anyone?

  • How many users can I import at one time?

    Is there a limit on how many users I can import at one time?
    Also, how about other record types (Lead, Opportunity, Contacts ...etc.) Is there a limit on these also?
    Where in the documentation that I can find info for this please?
    I'm using CRMOD Release 18
    Thanks

    Account
    30,000
    Account Team
    50,000
    Appointment
    30,000
    Appointment Contact
    50,000
    Appointment User
    50,000
    Asset
    80,000
    Campaign
    50,000
    Contact (Admin)
    30,000
    Contact (Personal)
    2,000
    Contact Role
    50,000
    Contact Team
    50,000
    Lead
    30,000
    Notes
    50,000
    Opportunity
    30,000
    Opportunity Product
    80,000
    Opportunity Team
    50,000
    Portfolio
    30,000
    Product
    80,000
    Service Request
    30,000
    Solution
    50,000
    Task
    30,000
    Task Contact
    50,000
    Task User
    50,000
    User
    500
    Campaign Recipient
    50,000
    Custom Objects
    30,000
    Dealer
    80,000
    Vehicle
    80,000

Maybe you are looking for

  • My Apple ID account have the security error

    My Apple ID : A Alternate Email Addresses : B 1) I am using normal my Apple ID account. One day, I changed the primary email account (A)  to another email account (B) So I did not get any information from the Apple. Maybe have error in the Apple serv

  • TimeCapsule as external harddisk for Mac and PC

    Hi, we set up TimeCapsule as basestation for our wireless network yesterday. We chose TC over Airport E. in order to use it as a backup with Timemachine for me (Mac), and at the same time use it as storage for shared files and music (hubby has window

  • Error: 130200 upon updating Acrobat 9.0 Pro

    Hi all, Acrobat 9.0 Pro keeps telling me that there is an update available. When trying to install the update there is an error message appearing: (translated from german): screenshot see below "Update Error An error has occured. Please try again to

  • IDOC Structure

    Hi.. How do we know which message type is appropriate for our document type.? Can any one give the whole list of message types used in interface. Regards Sampath

  • Just installed.  Now can't open many  Word for Mac files.  How fix?

    I just installed Snow Leopard. Now I find I have many Word documents in file folders that I can double click on, but they won't open. Even when I try other ways to open, they won't. I have a big need for a quick fix. Any suggestions? Thanks! Duncan