Scheduler(Maintain Infopackage)-Only PSA

Hi,
When I try to schedule a load from a <i>DataSource</i> created on a <i>ZTable</i>, I dont see the other radio buttons(only <i>Only PSA</i> is enabled) enabled under the processing tab.
All <i>TransferRules</i> and <i>UpdateRules</i> were activated.
Kindly help.
Regards,
Sam.

> Hi Sam,
>
> Check the loading job is still running in SM37.
> Also Check  the  RFC connection in SM58,
>
> In RSMO go to the Details and Check the Transfer
> (Idocs and TRFC ) status as well
>
> Hope this helps,
>
> Sudhakar.
Hi Sudhakar,
I checked SM37 and could not find any jobs there.
Under SM58, I got this error,
<i>SALEXA       IDOC_INBOUND_ASYNCHRONOUS      DE6CLNT900                       12.07.2007 07:17:25 Password logon no longer possible - too many faile C0A8E610010C469637F50E8B sdsap03                       SAPMSSY1                                 001 0000
SALEXA       IDOC_INBOUND_ASYNCHRONOUS      DE6CLNT900                       12.07.2007 07:19:39 Password logon no longer possible - too many faile C0A8E610010C469637F50E8B sdsap03                       SAPMSSY1                                 001 0000
SALEXA      IDOC_INBOUND_ASYNCHRONOUS      DE6CLNT900                       12.07.2007 04:54:34 Password logon no longer possible - too many faile C0A8E610010C469637F50E8B sdsap03                       SAPMSSY1                                 001 0000</i>
And also, in the InfoPackage, against the InfoSource text field, I see "(No text found)()"
Could this be related to this issue? Have I done something wrong before creating InfoPackage(either in UpdateRules or TransferRules) ?
Thanking you in advance,
Sam.

Similar Messages

  • Eventhough multipl schedule maintained in PO w.r.to PR - full qty in GR?

    EVen though multiple delivery schedule maintained in PO (third party sale scenario) during GR it is taking only main schedule with full qty.. kindly let me know the reasons for the same,
    regards,
    Sanju

    Hi,
    Check notes
    0498162
    0549583
    0550388
    Thanks
    Diwakar

  • Only PSA with the 'Update subsequently in data targets'- BI 7.0

    Hello friends,
    We are currently on BI7.0 and my concern is with the InfoPackage Processing of 'Only PSA' with the 'Update subsequently in data targets'checked. When I load the data it loads into the PSA and I can see it in the monitor and in the Manage of the DSO it shows me Transferred '328' and Added Record '0'/. How do I manually update it from the PSA into the data target from this point?
    When I select  'PSA and then into Data Targets (package by package)' in the DSO manage screen it shows me Transferred 328 and Added Record '123'. So certainly that means that the data is not being subsequently loaded from the PSA when 'Only PSA' with the 'Update subsequently in data targets'checked option is used. Please tell me how to update data from PSA into Data Target when 'Only PSA' with the 'Update subsequently in data targets'checked is selected.
    Many thanks.

    Hi,
    In BW 3.x data flow, 'Only PSA' with the 'Update subsequently in data targets' option in Info package will load up to PSA only in case of the Process chains.
    After this info package we must add the additional step "Update from PSA to Target" in order to load to the target.
    Hope this will fix ur issue.

  • Error when scheduling an infopackage

    Gurus,
    when I try to schedule an infopackage, the system prompts the following error:
    @5C@     02.08.2006     11:29:20     Data target '0BBP_QUO ' removed from list of loadable targets; not loadable     RSM     33     
    @5D@     02.08.2006     11:29:20     Data target '0BBP_QUO ' does not belong to BWAPPL 'BI'; data target not loadable     RSM     34     
    I've tried to reinstall the related objetcs from the BCT and the problem continues. Could someone help me? Thanks

    Hello Thiago. Were you able to fix the bug. I'm getting the same error. I tried the solution suggested it dont seem to work..
    Wondering if u were able to fix.
    Pl let me know.
    thanks
    mayil
    <removed by moderator>
    Edited by: Siegfried Szameitat on Jan 19, 2009 5:15 PM

  • Schedule a infopackage

    suri,
    custom scheduling of infopackages is a very common topic discussed in the forums - please search the forums before posting
    Hi Experts
    We have a requirement to schedule a infopackage for 10 days(fixed) in every month.
    What settings should I provide in the scheduling options?
    Regards,
    Suri.
    Edited by: Arun Varadarajan on Feb 3, 2009 1:14 PM

    Hi,
    If the days are consecutive,  In the bacground
    In Option Scheduled Start give the first day,
    In option No start after  Give the last day.
    and schedule periodic monthly.
    Please correct me if I am wrong.
    Regards,
    Srikanth

  • How to schedule an infopackage

    Hi guys,
                 I want to schedule an infopackage to run periodically . how can i schedule it..?can anyone explain me the steps to do it
    pls its urgent
    ravi

    Hi Ravi,
    you can do the same through a process chain RSPC
    have a look in this link:
    http://help.sap.com/saphelp_nw70/helpdata/en/21/15843b74f7be0fe10000000a114084/frameset.htm
    cheers
    Sunil

  • How to Schedule Jobs to only run during a time window

    I have a long running task that needs to schedule jobs to process data.
    I only want these scheduled jobs to start during a specific window of time each day, probably 10:00 PM to 6:00 AM.
    If the scheduled jobs do not begin during the specified time frame, they must wait until the next day to start running.
    Each scheduled job will only be executed once and then auto dropped.
    How should I go about creating these scheduled jobs?

    Hi Jeff,
    I agree that the documentation isn't clear enough about the purpose of windows.
    You can indeed use windows for changing the resource plan, but you can also use them for scheduling your jobs.
    I did a simple test in real-time to illustrate the latter.
    At around 10.30 am today I created a table that will populated by a job:
    CREATE TABLE TEST_WINDOW_TABLE(EVENT_DATE DATE);
    Then, I created a window whose start_date is today at 10.40 am :
    dbms_scheduler.create_window(
                                 window_name     =>'TEST_WINDOW',
                                 resource_plan   => NULL,
                                 start_date      => to_date('10/04/2014 10:40:00', 'dd/mm/yyyy hh24:mi:ss'),
                                 repeat_interval => NULL,
                                 duration        =>interval '5' minute
    You can see that this window doesn't have a resource plan, and its repeat interval is NULL (so it will be opened only once).
    The window will stay open for 5 minutes.
    Finally, I created a one-off job whose schedule is the previously created window:
    DBMS_SCHEDULER.create_job (
                               job_name      => 'TEST_WINDOW_JOB',
                               job_type      => 'PLSQL_BLOCK',
                               job_action    => 'BEGIN insert into test_window_table values (sysdate); COMMIT; END;',
                               schedule_name => 'SYS.TEST_WINDOW',
                               enabled       => true,
                               auto_drop     => true
    Checking the user_scheduler_job_log before 10.40 would return no rows, which mean the job hasn't started yet since the window was not open.
    Now, from 10.40, it shows one entry:
    SQL> select log_date, status from user_scheduler_job_log where job_name = 'TEST_WINDOW_JOB';
    LOG_DATE                                                                         STATUS
    10/04/14 10:40:02,106000 +02:00                                                  SUCCEEDED
    The TEST_WINDOW_TABLE has also got the row:
    SQL> select * from TEST_WINDOW_TABLE;
    EVENT_DATE
    10/04/2014 10:40:02
    Voilà.
    In your case, since you want to run the jobs daily between 10 pm and 6 am (duration of 8 hours), the window would look like this:
    dbms_scheduler.create_window(
                                 window_name     =>'YOUR_WINDOW',
                                 resource_plan   => NULL,
                                 repeat_interval => 'freq=daily;byhour=22;byminute=0;bysecond=0',
                                 duration        =>interval '8' hour
    For your jobs, you may need to specify an end_date if you want to make sure the job gets dropped if it couldn't run in its window.

  • Error while scheduling  in infopackage!!

    Heya all,
         i need immediate help in this area.Plz help me out.I am having these problems
      I created infoobjects IO_MATNO(from fufu book   example)and created 2 infopackage 1 for attr and another for text and tried loading them.Everything went well and got activated but when i tried scheduling it  said data requested..i clicked monitor and then it showed me yellow light with 3 warnings saying:
    Error when updating Idocs in Business Information Warehouse
    Diagnosis
    Errors have been reported in Business Information Warehouse during IDoc update:
    EDI: Partner profile not available
    System response
    There are IDocs with incorrect status.
    Procedure
    Check the IDocs in Business Information Warehouse . You can get here using the BW Monitor.
    Removing errors:
    How you remove the errors depends on the error message you receive.
    Can anyone tell me why this is happening?Should i proceed further ignoring this as it is only warning sign or how shld i rectify this?
    Immediate help is appreciated.
    Thanks

    Hi,
      Thanks for the reply but it didn't help me at all as i can't understand the error at all.It says
    Overall status:Errors occured:or:missing messeges:
      Request(messeges):Everything ok
           Data request arranged
           Confirmed with:OK 
      Extraction messeges:Missing messeges {This is yellow)
      Transfer(IDOCS and TRFC):Errors ocurred
           Info Idoc1:IDoc with errors added
           Info Idoc3:IDoc with errors added 
           Info Idoc2:IDoc with errors added
           Data Package 1:arrived in BW:Processing:selected no:does not agree with transferred n
       Processing(Data Packet):EVERYTING OK
         Data Package 1:Everything ok
    plzz help me out.

  • Scheduling a load from PSA tabstrip

    I am having load problems when trying to load to an object from a package.  To overcome
    I have loaded to PSA (which works fine) and then from the PSA tabstrip have scheduled a
    load into the object. This works fine, is there any issues with me taking this approach?
    It is only to demo the model and not the final loading model which we will look to
    resolve seperately. Thanks

    Hi,
    No, it may have a practical side.
    For example,
    1. if you load data upto PSA, verify them there (probably, using ABAP program). After correcting errors you load data further.
    2. you load transaction data upto PSA, then load master data and after that update data targets from PSA.
    3. This is done almost always in case of using process chains.
    Best regards,
    Eugene

  • InfoPackage (Only for Vishvesh and Olav)

    Sorry!!!
    This posting is made ONLY for Vishvesh and Olav to give points
    which I was not able to give them in another thread because of my mistake.
    Thank you very much for your understanding.
    Hi All.
    If anybody knows the solution for my question, please let me know.
    I am now using these objects.
    &#12539;2 InfoCubes (same structure, each cube includes DTP)
    &#12539;1 InfoSource
    &#12539;1 DataSource (Flat File)
    &#12539;1 InfoPackage (Used for 2 InfoCubes above)
    I would like to upload data only to one of those 2 Infocubes, but it seems the check-box
    which we were able to chose the data target in BW3.5 on the InfoPackage screen no more exists...
    In 2004s BI, Do we always have to upload data to both data targets(DTP) ???
    Please let me know.
    Thank you .

    Hi Daijiro,
    The DTP does not offer any selection to update certain targets or not as stated in one of the answers.
    The whole concept of DTP is to have a target based delta mechanism as opposed to the source driven delta mechanism of the previous releases.
    You need a separate DTP per target you want to load.
    In this DTP you can filter, but not (yet) on request-id.
    You can try to include a identifying characteristic into the source and use that for filtering or as you suggested, use delta updates to both targets using PSA deletion to control the updates.
    Best regards,
    Olav

  • Authorization Check for Update Rules Modify during Scheduling of InfoPackag

    Hello Everyone....
    We have recently upgraded our Testing Environment to NW2004s SP10, and the system is currently Non-Changeable and all the other changes have been brought in via transports.
    After SGEN has completed, when I try to open up an existing InfoPackage and click on the "Start" button it gives me the "You have only authorization to display the "InfoProvider" name".
    If it is the load into DSO it complains about Activity 23 not available for the Subobject UPDATERULE of the object S_RS_ODS and if it is an InfoCube it complains about Activity 23 again for the Subobject UPDATERULE of the object S_RS_ICUBE.
    Which doesn't really make sense as the Activity 23 would allow the change to the Update Rules for the InfoProviders.
    Please advice if there is any other Role or Profile which needs to be maintained or a system setting to avoid this Auth Check.
    Also, the same when repeated in the Development environment shows the message "Generating the Update Program" in the status bar below and once that has completed, the extract works fine.
    Please advice......
    Any help would be really appreciated as we are kind of stuck on this issue.
    Thanks
    Dharma.

    Hi,
    You should use transaction ST01 then you can see the objects asked for with the value needed. Also transaction SU53 gives you information about the object you want to use. The new transaction RSECADMIN with the tab analyses gives you information that is not in SU53 and releated to the data selection. If it is an analyses authorization problem add authorization object 0BI_ALL to a role in the autorisation object S_RS_AUTH. I think you can get the information you need this way.
    Bye Jan

  • Scheduling Maintainance plan

    .I created a maintainance plan, single cycle plan , cycle duration 1 day for 10 days
    I schedule it , system created plans for all days but mainatinance call only for the first day
    i tried dead line monitoring , there also it created  miantainance call only for 1st day.
    Please suggest wat i shud do to have calls also created for all 10 days

    Hi Pete A,
    Is it means that, for a maint plan,
    Cycle Length: 1month
    Scheduling period: 1 Year
    & i want all calls should be called immediately after scheduling. In this case I need to provide,
    Interval for Call Object = 1 Year  (ie. Scheduling Period)
    so that we can get all calls get scheduled for the Scheduling period of 1 Year.
    Plz reply immediately...
    Amol.

  • Error 8 while scheduling the infopackage

    I have created an infopackage, and when i try to schedule it, i get the following error :
    Error 8 when compiling the upload program: row
    227, message: Data type /BIC/CCADZMSRBLS_ATTR was
    found in a new
    What does this error mean?
    How do i solve it?
    Is there document available for the different types of errors?

    Thnx for your inputs, but still i am getting errors in all the records that i have loaded.
    I tried to diagnose the error. I am getting the following error for all the records :
    Eg : For record "Project Milestones", i am getting the error as:
    Data record & with the key "Project Milestones &" is invalid in value "Project Milestones &" of the attribute/characteristic ZINTIATVE &.
    ZINTIATVE is the characteristic for which i am loading the master data.
    Kindly help.............I need it to be resolved urgently.
    Regards,
    Apeksha.

  • Error when scheduling the infopackage for loading Master data attributes

    Hi,
    Iam getting the following error message when scheduling this Master data Attributes ZIP_0PLANT_ATTR_FULL..( Flexible update of Master data info objects)..
    In Data load monitor error i got this following error message.
    Error message when processing in the Business Warehouse
    Diagnosis
    An error occurred in the SAP BW when processing the data. The error is documented in an error message.
    System response
    A caller 01, 02 or equal to or greater than 20 contains an error meesage.
    Further analysis:
    The error message(s) was (were) sent by:
    Update rules
    Thanks

    HI,
    A caller 01, 02 or equal to or greater than 20 contains an error meesage This is an Idoc error. Please check the Idocs :
    1) SM37 job log (In source system if load is from R/3 or in BW if its a datamart load) (give request name) and it should give you the details about the request. If its active make sure that the job log is getting updated at frequent intervals.
    Also see if there is any 'sysfail' for any datapacket in SM37.
    2) SM66 get the job details (server name PID etc from SM37) and see in SM66 if the job is running or not. (In source system if load is from R/3 or in BW if its a datamart load). See if its accessing/updating some tables or is not doing anything at all.
    3) RSMO see what is available in details tab. It may be in update rules.
    4) ST22 check if any short dump has occured.(In source system if load is from R/3 or in BW if its a datamart load)
    5) Check in SM58 and BD87 for pending tRFCs and IDOCS.
    Once you identify you can rectify the error.
    If all the records are in PSA you can pull it from the PSA to target. Else you may have to pull it again from source infoprovider.
    If its running and if you are able to see it active in SM66 you can wait for some time to let it finish. You can also try SM50 / SM51 to see what is happening in the system level like reading/inserting tables etc.
    If you feel its active and running you can verify by checking if the number of records has increased in the data tables.
    SM21 - System log can also be helpful.
    Thanks,....
    Shambhu

  • More than one schedule line when 'Only complete delibery allowed'

    Hi guys!!
    I need your help to solve a problem with the shipping of our sales orders. We have a customer which has been set with 'C' 'Only complete delibery allowed' in the field 'partial delibery per item', but if a sales order is blocked because credit limit has been exceeded and we try to release the order, the system automatically set several schedule lines in the schedule lines tab of the sales order. I know afterwards the system will not allow us to delibery the order unless we ship the whole line, but Is there any way to avoid the system set more than one schedule line?
    Thanks in advance for your answers

    Hi
    How many schedules are created. Normally if the system couldn't confirm the stock on the Requested Delivery date, then it will create one schedule line with zero quantity for that requested del date. Since it is a complete delivery, it should have only one more schedule line. If you have only two schedule lines, then it is working fine. If not, pl check the sales order whether that complete delivery is determined or not.
    Thanks,
    Ravi

Maybe you are looking for

  • Microsoft Messenger for Mac

    I installed Microsoft Messenger for mac, but it could not login automatically. Everytime I have to type my ID and password. What's the problem?

  • Ipod 4th generation from mac to pc

    I apologize if this question has been posted before but I want to make sure I am doing the right thing. I understood that if you had an ipod formatted to work on a mac, you could not use it on a PC. What I need is to sell my 4th Generation mono-displ

  • LR Color Balance shift upon export to PDF or Blurb

    I am attempting to create a custom layout for a Blurb book by creating pages in Photoshop, importing these files into LR, and pasting them into my Blurb book. I've noticed two issues: 1) if I set the background color in LR for the blurb book to the h

  • Physical address verification

    We're dealing with the headache of duplicate address entries ("123 W. 25TH" vs "123 West 25th Avenue") and so we're trying to find a solution. We own Enterprise licenses for Oracle 10gR1, and so we can use the geo-spatial datatypes in the Oracle Spat

  • Test Engineer & Software Engineer positions (permanent) in the Watford area (London, UK)

    For more information, please have a look at http://www.silixa.com/careers/.