Help on loading by schedule infoPackage

Hi all
take a look at the picture first.
http://img2.freeimagehosting.net/image.php?2b2cadc249.jpg
I wanna load data to ODS "Assignment of Role to Project Element" When I schedule 5 infopackage immediately, they're all yellow. and the details have been shown in the right Panel.
Im very new to BI. Please show me on step by step.
I'll assign point for every answere.
Thanks
Chuong Hoang

Hi,
    did you checked in  New Table of the ODS? are you able to see yellow request in ODS with this no.of records. did you checked the job in source system. in monitor -> goto environment -> job details -> job in source system -> check if it is finished -> you can change the technical status of this request to Green and do activation. sub.sequent process here you have to activate the request once the load finish, so there is no issues.
Regards
Sankar

Similar Messages

  • Error while Scheduling InfoPackage

    When i am scheduling a full load in the infopackage to load data to PSA but am getting an DBIF_RSQL_INVALID_REQUEST error. The desciption is "An invalid request was made to the SAP database interface in a statement  in which the table "EDID4 " was accessed".
    Can anyone help me overcome this and resolve the issue, please.
    Thanks
    Neha

    check OSS Note 89384 if it is relevant to ur issue.

  • Load Masterdata with Infopackage and DTP..Is there any other way simplier ?

    Dear all:
    We are currently working under BI 2004s SP09. And we are trying to loading Masterdata from R3. For Attributes and text, we have to create Infopackage for DS, load data from R3 into PSA(Not able to into Char directly), then create transformation and DTP to upload data into characteristics.
    If we work with transformation and DTP directly, we got nothing!!?? But if that is the only way we can upload InfoObject, the whole process seems more complexe then what happened in BW 3.X.
    Or there is way to allow us upload data into Infoobject directly with DTP?
    Thank you all very much
    BR
    SF

    Hi Kenneth,
    Am wondering whether the DTP was created at the wrong level, the top level as you have suggested, i.e the Infocube (or Infoprovider) level is the correct place to place the DTP.
    As for a simpler method, I'd stay clear of the do not access PSA.  We found numerous problems with moving to PRD and daily deltas not working correctly.
    Hence as such changed loads to OLTP > Infopackage > DTP > Data Target(be it master data).
    Hope it helps.
    Pom

  • Parameterized Data Selection in Scheduler Infopackage in BW

    hei...is there any way that i can parameterized the data selection in the scheduler infopackage? When i wanna load the data from the scheduler, the data selection will change based on the source systems. Let say today got data in the source system, then the scheduler can auto select today's date to load the data, if let say next monday 25th of feb got data, then the scheduler will auto select the date 25th of feb and load the data from the source system to BW.
    thanks...

    Hi,
    Not sure I understood this fully.
    For each source system there would be 1 infoapckage as it is created on the datasource.
    Now for your requirement you can write a routine inside the infoapckage to load the data for the current data.
    Bye
    Dinesh

  • Help in loading Sims 3 Monte Vista

    Help in loading Sims 3 Monte Vista on MacBook Pro when trying to registering after program is loaded it error message that no internet connection is located and I am logged on to the internet.

    Thanks for your reply, But we use to get as a flatfile from R/3 system, we already mounted this file in bw,but the data file in cognos is like a text file and there is no separation. it's works in cognos on basis of control file.
    Can you help in what is the purpose of data file and control file in infopackage at data selection tab.
    if you have any codes to write on control file, requesting you to please post .
    Thank you

  • Error when scheduling infopackage

    hi all,
    when i am trying to scheduling infopackage its giving error like
    Runtime Errors         DBIF_RSQL_SQL_ERROR
    Except.                   CX_SY_OPEN_SQL_DB
    SQL ERROR IN DATABASE WHEN ACCESSING A TABLE.
    This error is occuring in production system.please guide me how to resolve this issue.
    regards
    Vamshi D Krishna

    Hi,
    these type of error will usually occur for tablespace or disk space not enough.
    pls check ur oracle database for tablespace.just make a try to increase the space and again try ur process.
    thnks.

  • Short dump while scheduling infopackage

    Hi,
    im getting short dump while scheduling infopackage  for( 0cfm_init_positions )as it is giving  dump like MESSAGE_TYPE_X runtime error in BI test system but in dev it's working fine if anybody knows how to resolve??.

    hi
    this is due to existence of TRFC-Packages for old failed requests in the source system.
    so for this QM-Action in the request monitor change manually to red.
    if you wont find the solution contact basis team.
    or
    use SE16. Look at RSSDLINIT table. Match up the LOGSYS with your OLTPSOURCE (for the infopackage that is causing the problem). Delete that line(s) Now you can open the infopackage. (be sure to delete the initialization) before you run the info pack again.)
    Also you can check SAP Note : 852443
    check this links
    Short dump MESSAGE_TYPE_X while trying to open infopackage
    DUMP IS COMMING WHILE CREATING INFOPACKAGE

  • Loading data from infopackage via application server

    Hi Gurus,
    I have a requirement where i need to load data present in the internal table to a CSV file in the application server (AL11) via open data set, and then read the file from the aplication server, via infopackage ( routine ) then load it to the PSA.
    Now i have created a custom program to load data to AL11 application server and i have used the below code.
    DATA : BEGIN OF XX,
      NODE_ID     TYPE N LENGTH 8,
      INFOOBJECT  TYPE C LENGTH 30,
      NODENAME  TYPE C LENGTH 60,
      PARENT_ID  TYPE N LENGTH 8,
      END OF XX.
    DATA : I_TAB LIKE STANDARD TABLE OF XX.
    DATA: FILE_NAME TYPE RLGRAP-FILENAME.
    FILE_NAME = './SIMMA2.CSV'.
    OPEN DATASET FILE_NAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    XX-NODE_ID = '5'.
    XX-INFOOBJECT = 'ZEMP_H'.
    XX-NODENAME = '5'.
    XX-PARENT_ID  = '1'.
    APPEND XX TO I_TAB.
    XX-NODE_ID = '6'.
    XX-INFOOBJECT = 'ZEMP_H'.
    XX-NODENAME = '6'.
    XX-PARENT_ID  = '1'.
    APPEND XX TO I_TAB.
    LOOP AT I_TAB INTO XX.
      TRANSFER XX TO FILE_NAME.
    ENDLOOP.
    now i can see the data in the application server AL11.
    Then in my infopackage i have the following code,
    form compute_flat_file_filename
         using p_infopackage type rslogdpid
      changing p_filename    like rsldpsel-filename
               p_subrc       like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
      P_FILENAME = './SIMMA2.CSV'.
      DATA : BEGIN OF XX,
      NODE_ID     TYPE N LENGTH 8,
    INFOOBJECT  TYPE C LENGTH 30,
      NODENAME  TYPE C LENGTH 60,
      PARENT_ID  TYPE N LENGTH 8,
      END OF XX.
      DATA : I_TAB LIKE STANDARD TABLE OF XX.
      OPEN DATASET P_FILENAME FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF SY-SUBRC = 0.
        DO.
          READ DATASET P_FILENAME INTO XX.
          IF SY-SUBRC <> 0.
            EXIT.
          ELSE.
            APPEND XX TO I_TAB.
          ENDIF.
        ENDDO.
      ENDIF.
    CLOSE DATASET P_FILENAME.
      P_SUBRC = 0.
    i have the following doubt,
    while loading the data from internal table to application server, do i need to add any "data seperator" character and "escape sign" character?
    Also in the infopackage level i will select the "file type" as "CSV file", what characters do i need to give in the "data seperator" and "escape sign" boxes?  Please provide if there is any clear tutorial for the same and can we use process chain to load data for infopackage using file from application server and this is a 3.x datasource where we are loading hierarchy via flat file in the application server.
    Edited by: Raghavendraprasad.N on Sep 6, 2011 4:24 PM

    Hi,
    Correct me if my understanding is wrong.. I think u are trying to load data to the initial ODS and from that ODS the data is going to t2 targets thru PSA(Cube and ODS)....
    I think u are working on 3.x version right now.. make sure the following process in ur PC.
    Start process
    Load to Initia ODS
    Activation of the Initial ODS
    Further Update thru the PSA(which will update both ODS and Cube).
    make sure that u have proper Update rules and Init for both the targets from the Lower ODS and then load the data.
    Thanks

  • Need help in loading master data.

    Hi everyone,
              I am just a beginner in BI 7.0 . I know Bw 3.5 . I need help in loading master data(flat file) in a step by step manner.
    Before posting this forum i searched and checked out other related forums too, as i am a beginner i am unable to follow them. Lots of the forums gave the help.sap.com link which i used and got a little help but not fully, so please don't send that link.  I need a step by step guideline from somebody, which says everything from the beginning till monitoring say like
    e.g.. 1) create a InfoObject by right clicking on InfoObject catalog.
    something like that.
    please help me get a clear and detail step by step procedure to load a master data (Flat File should be good) which may help me get a start will other things without much help.
    Please help me learn.
    Thanks.
    Ranjani.

    HI,
         Thanks for your reply. This is what i did.
    1) Created a Info Area.
    2) Created Info object catalog & activated
    3) created info object with nothing except some 4 attributes.
    4) Created Application compound in Infosource tab.
    5) Right clicked on Application compound and chose create Infosource in which chose a option with 3.x and chose the flexible update and gave the info object name.
    6) In info provider tab , in the Info Area right clicked and chose the Insert char as data target option.
    Now, i am stuck. I have no idea what to do next.
    I know i have to create a transformation - There are two tabs in Transformation box, what should i do there.
    Please help me from point 6 to cont., to load the data.
    Thanks.

  • I have just installed Captivate 7 but I can't get Help to load, any ideas?

    I have just installed Captivate 7 but I can't get Help to load, any ideas?

    Hi hazelplt,
    When you say you can't load does that mean Captivate does not launch?
    Try launching the application as 'Administrator' and check.
    You might also want to check by launching it in 'compatibility mode' and see.
    In case you still face issues, try resetting Captivate preferences and then check by launching the application.
    To reset the preferences, please follow the steps below :
    Close Adobe Captivate.
    Locate the preference folder:
    Windows Vista and Windows 7: C:\Users\[user name]\AppData\Local\Adobe\Adobe Captivate 7 folder
    Rename the Captivate folder.
    Restart Adobe Captivate. A new folder is automatically created.

  • Can someone help me load up ios 8 on my ipad

    can someone help me load up ios 8 on my ipad    

    What Model of iPad do you have?
    If your iPad does not have a camera, its a First Generation iPad and cannot be updated past iOS 5.1.1.
    For any other model of iPad: Update your iPhone, iPad, or iPod touch iOS software

  • Need help to load data from PSA TO deta targets

    Hello BW Gurus,
    I have done the INIT for 2LSI_11_VAHDR and data target I have selected is OSD_CO3. after doing INIT I realized that I have other two ODS which I want select as data target with same datasource.
    My question is
    1) Is it possible / recommended to create another infopackage and do the INIT for pending ODS.
    2) If I want to add the remaining two ODS in existing
      request, can you please suggest me how I can do that.
    Thank you very much
    Krish

    Hi Krish,
    I don't think it is necessary to create another InfoPack to load the other two DataTargets(ODS. Instead you can delete the Initialization for source systems from the cube and then delete the same from the InfoPack (scheduler option -->Init for Source system) and then check the other two ODS as Datatargets and then schedule with Initialization option.
    Otherwise also you can create IPack for the 2 ODS as datatargets and then do the Init. But i prefer the 1st way unless you have huge data in the cube for the init request.
    Hope it helps...
    Best Regards,
    DMK
    *Assign points if it helps...

  • Error when scheduling infopackage for PA_PA OEMPLOYEE

    hi all,
    when iam scheduling info package for OEMPLOYEE it is giving error like "0EMPLOYEE : Overlapping time intervals of data record 298 with 305 : '['20040831'/'20040324'] '[to/from]     RSDMD 190 ".
    iam unable to solve it.please help me in this issue.
    thanx
    Vamshi D Krishna

    Hi,
    This is a problem of time overlapping. As this is a master data, if for the same employee, the date overlaps then it will show you this error. Let me explain with example..
    EID      Valid from      Valid to
    1001    01.01.1000     10.01.2009
    1001    08.01.2009     31.12.9999
    In the above case, the dates for EID 1001 is overlapping. When you load this data, it will show you the dates are ovelapping.
    So, first correct the data into the saource i.e. record number 298 with 305 and then upload again..
    This will solve your problem...

  • Need help in loading data from a csv file to a table in Oracle DB

    Hi,
    I am using sqlplus as a client to connect to the server.
    I am trying to load data from a csv file from a client to a table in Oracle DB server.
    I am trying to use the below command
    " LOAD DATA INFILE 'test.csv' INTO TABLE testTable FIELDS TERMINATED BY ',' (test1,test2,testc3,testc4); "
    But, I am encountered with the following error
    "SP2-0042: unknown command "load data" - rest of line ignored."
    Thanks in advance.
    SB

    Hey Frostmann,
    That was a nice post....
    I changed my mind to use an 'Insert into' statement from a shell script.
    I created a DB table named test and I tried using the below shell script to insert a row in the table.
    sqlplus test/test@test <<ENDOFSQL
    INSERT INTO test VALUES('test1',123,'test2','test3');
    exit
    ENDOFSQL
    A row is succesfully inserted into the table when I run the script manually, but it does not insert rows when a cron job is scheduled.
    Could you please help me with this?
    Thanks in advance.
    SB

  • F4 help for Selection fields in Infopackage not available

    Hello Friends,
    I have created a datasource in Bi7.0 .while creating this i have put selection option X(selection possible) and Selection option 3(EQ & BT) for the three characteristics in the datasource and activated it.
    When i am creating the Infopackage for loading the data to PSA, with in infopackage in Data selection tab, when i am selecting the characteristic value for the above chars, the system says "Datasource does not exist in the source system of version A"
    Why am i not able to select the values here?
    Please let me know friends if you have any idea?
    Thanks
    mv_d

    Hello Balakrishnachaitanya,
    I am also trying to do the same, i am getting dynamic f4 help but when i try to select value from it, it doesnt appear in the UI...
    Could you please tell me how to do it?
    Thanks in advance,
    Viral

Maybe you are looking for

  • Interest calculation on overdue customer open items

    Hi. I need to calculate the interest on the customer overdue open items. for that i have configured the following steps. OB46 - Interest Settlement Calculation Type OB82 - Interest Terms  OBAC - Define Reference Interest Rates  OB83 - Enter the Refer

  • Error while clicking on Load Metadata in DMW from InForm

    Hi Team, We are getting the below error, whenever we try to load metadata from InForm in DMW. 2014/11/06-23:29:56-EST [36F0B7F8][CDR_RTREPOS.CDR_RTREPOS] oracle.wh.runtime.platform.adapter.InfrastructureException: RPE-01003: An infrastructure conditi

  • The change to a different font was not done because the chosen font and the font encodings in the do

    Hi, I created a PDF from a Word document that used Cambria font, and when I select it in Acrobat to try to change the font I get "The change to a different font was not done because the chosen font and the font encodings in the document differ and co

  • "Edit in Photoshop": Why is Photoshop is greyed out?

    I have LR 3.2 and PS CS5 Extended installed on a Win 7 64 bit PC.  Preferences|External Editing shows Photoshop but when I choose an image and right click, Edit in shows Photoshop greyed out.  (Also when chossing Edit In from the Photo drop-down menu

  • Can I set a custom Preflight Profile as my default?

    The Basic preflight profile in InDesign doesn't catch text and boxes in RGB, so I've set up a custom profile that does. I always need this checked, so I'd prefer my custom profile be my default when I open any InDesign document. Is there a way of doi