Data Pump with parallel data ending up in 1st file!

Oracle 10g 10.2.0.3 EE
Ran the following command on a 16 core HPUX PA-RISC machine:
expdp normaluser/password@RDSPOC FULL=y directory=DMPDIR parallel=12 dumpfile=exp_RDSPOC_2nd_%U.dmp logfile=exp_RDSPOC_2nd.log
Database size, approx 900Gig of data
All things looked good at first. All cores close to 100% utilized, Disk also at 100% utilized
1h23m later I had 11 files all about the same size +- 40Gig
The first dump file continued to grow. After another 60 hours the first file is approx 500 Gig and growing (status says 85% complete)
One core is running max, and disk utilization is about 15%
Note, I am not sys but a normal user with full export privilege (If that could make a difference)
How do I get it to keep the machine running all cores and disks as hard as possible?
Thanks

Hi,
Metadata is never unloaded in parallel, but is sometimes loaded in parallel.
See Parallel Capabilities of Oracle Data Pump (Doc ID 365459.1)
Also check the status of expdp, if there is e.g. one big table only one worker will still have data to pump.
HTH,
Peter
Edited by: pa110564 on 05.08.2011 11:04

Similar Messages

  • Is it possible to have a phone line connected to a Mac Mini (OS X10.8.2) so you can use your computer with Parallels (Windows xp) to dial into a modem to download data being collected and stored at the remote location?

    Is it possible to have a phone line connected to a Mac Mini (OS X10.8.2) so you can use your computer with Parallels (Windows xp) to dial into a modem to download data being collected and stored at the remote location?

    Hi, do you mean a real Dial-up Modem as in the old days?
    As I recall, the Apple USB Modem won't work in 64 bit OSes, but there are others that will, I think this is one of them...
    http://www.zoomtel.com/products/dial_up_external_usb.html
    Or is the Modem on the other end Cable/DSL/FiberOptic?

  • Help with parallel arrays of different data types

    Hello all, I am having an issue with parallel arrays. My program requires me to read information from a text file into 4 parallel arrays (2 String and 2 double). My text file needs to look something like this:
    John Johnson
    0000004738294961
    502.67
    1000.000
    Jane Smith
    0000005296847913
    284.51
    1000.000
    ...and so on
    Where the first thing is the name (obviously), an account number, the balance in the account, and the credit limit. I just cant figure out how to read everything into the arrays. We havent learned anything too heavy, and this seems a little too advanced for my class, but I guess we will manage. Any help will be appreciated. Thanks guys.
    Casey

    Man this is a dumb homework assignment. The requirements scream out for a class along the lines of
    public class Account{
      private String name, number;
      private double balance,creditlimit;
       // more code here
    }and then to use a List of Account objects.
    Anyway what's your actual problem. There's nothing very hard about it. A loop. So....
    You should consider posting (formatted) code showing what you have done and where exactly you are stuck.

  • Open capacity -start date & end date in cprojects

    Hello,
    In cProject,system will show the open capacity for the resource but system will not show start date & end date of open capacity
    how i can find start date & end date for open capacity
    E.g. If Resource XYZ is staff from 01.11.2010 to 12.11.2010 & same resource is not allocated from 13.11.2010 to 20.11.2010
    Also Resource XYZ is staff from 21.11.2010 to 30.11.2010 on other project
    Here system will calculate open capacity but not showing date for open capacity
    Regards
    Ravindra

    Dear:
    Try my code.
    REPORT  ZPRO_GET_RESOURCE_LIST.
    TABLES DPR_PROJECT.
    SELECT-OPTIONS: S_PROID FOR DPR_PROJECT-PROJECT_ID.
    DATA: GT_DATA TYPE DPR_TT_XML_PROJECTS_TYPE.
    DATA: GS_DATA LIKE LINE OF GT_DATA.
    **Output table
    DATA: BEGIN OF ITAB OCCURS 0,
            PROJECT_ID       TYPE DPR_TV_PROJECT_ID,         "project id
            DESCRIPTION_DPO  TYPE DPR_TV_NAME,               "
            BU_PARTNER       TYPE      BU_PARTNER,           "
            FULL_NAME        TYPE BU_NAME1TX,                "
            SCHEDULED_START  TYPE  DPR_TV_SCHEDULED_START,   "
            SCHEDULED_FINISH TYPE     DPR_TV_SCHEDULED_FINISH,   "
          END OF ITAB.
    DATA: PROJECT_ID TYPE DPR_TV_PROJECT_ID OCCURS 0 WITH HEADER LINE.
    DATA: GS_ROLE TYPE DPR_TS_XML_PROJECT_ROLE_TYPE.
    DATA: DPR_TV_PROJECT_ID TYPE DPR_TV_PROJECT_ID.
    DATA: GS_ASGM TYPE DPR_TS_XML_RES_ASSGNMNT_TYPE.
    DATA: GS_RERS TYPE DPR_TS_XML_RESOURCE_TYPE.
    TYPE-POOLS SLIS.
    DATA: L_WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
          L_WA_LAYOUT TYPE SLIS_LAYOUT_ALV,
          IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    SELECT PROJECT_ID INTO TABLE PROJECT_ID FROM DPR_PROJECT WHERE PROJECT_ID IN S_PROID.
    LOOP AT PROJECT_ID INTO DPR_TV_PROJECT_ID.
      CLEAR: GT_DATA,GT_DATA[].
      CALL FUNCTION 'DPR_GET_PROJECT_XML'
       EXPORTING
    *   IV_PROJECT_GUID         =
         IV_PROJECT_ID           = DPR_TV_PROJECT_ID
       IMPORTING
         ET_PROJECTS             = GT_DATA
    *   EV_XML                  =
       EXCEPTIONS
         PROJECT_NOT_FOUND       = 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.
      LOOP AT GT_DATA INTO GS_DATA.
        CLEAR ITAB.
        ITAB-PROJECT_ID = GS_DATA-PROJECTDATA-NUMBER.
        ITAB-DESCRIPTION_DPO = GS_DATA-PROJECTDATA-DESCRIPTION.
        LOOP AT GS_DATA-PROJECT_ROLES INTO GS_ROLE.
          ITAB-DESCRIPTION_ROL = GS_ROLE-PROJECT_ROLE_DATA-DESCRIPTION.
          LOOP AT GS_ROLE-RESOURCE_ASSIGNMENTS INTO GS_ASGM .
            LOOP AT GS_DATA-RESOURCES INTO GS_RERS WHERE BU_PARTNER = GS_ASGM-BU_PARTNER.
              ITAB-BU_PARTNER = GS_RERS-BU_PARTNER.
              ITAB-FULL_NAME = GS_RERS-FULL_NAME.
              ITAB-SCHEDULED_START = GS_ASGM-SCHEDULED_START.
              ITAB-SCHEDULED_FINISH = GS_ASGM-SCHEDULED_FINISH.
              APPEND ITAB.
            ENDLOOP.
          ENDLOOP.
        ENDLOOP.
      ENDLOOP.
    ENDLOOP.
    *Assigning Values
    L_WA_LAYOUT-ZEBRA = 'X'.
    L_WA_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    *** Field cat
    L_WA_FIELDCAT-FIELDNAME = 'PROJECT_ID'.
    L_WA_FIELDCAT-SELTEXT_L = 'Project Number' .
    APPEND L_WA_FIELDCAT TO IT_FIELDCAT.
    L_WA_FIELDCAT-FIELDNAME = 'DESCRIPTION_DPO'.
    L_WA_FIELDCAT-SELTEXT_L = 'Project Name'.
    APPEND L_WA_FIELDCAT TO IT_FIELDCAT.
    L_WA_FIELDCAT-FIELDNAME = 'DESCRIPTION_ROL'.
    L_WA_FIELDCAT-SELTEXT_L = 'Role'.
    APPEND L_WA_FIELDCAT TO IT_FIELDCAT.
    L_WA_FIELDCAT-FIELDNAME = 'BU_PARTNER'.
    L_WA_FIELDCAT-SELTEXT_L = 'BP Number'.
    APPEND L_WA_FIELDCAT TO IT_FIELDCAT.
    L_WA_FIELDCAT-FIELDNAME = 'FULL_NAME'.
    L_WA_FIELDCAT-SELTEXT_L = 'Resource Name'.
    APPEND L_WA_FIELDCAT TO IT_FIELDCAT.
    L_WA_FIELDCAT-FIELDNAME = 'SCHEDULED_START'.
    L_WA_FIELDCAT-SELTEXT_L = 'Start Date'.
    APPEND L_WA_FIELDCAT TO IT_FIELDCAT.
    L_WA_FIELDCAT-FIELDNAME = 'SCHEDULED_FINISH'.
    L_WA_FIELDCAT-SELTEXT_L = 'End Date'.
    APPEND L_WA_FIELDCAT TO IT_FIELDCAT.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       I_CALLBACK_PROGRAM                = SY-REPID
    *     I_CALLBACK_USER_COMMAND           = 'USER_COMMAND'
       IS_LAYOUT                         = L_WA_LAYOUT
       IT_FIELDCAT                       = IT_FIELDCAT
       I_SAVE                            = 'A'
    *     IT_EVENTS                         = IT_EVENT
      TABLES
        T_OUTTAB                          = ITAB
    EXCEPTIONS
       PROGRAM_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.

  • Problem with SQL*Loader and different date formats in the same file

    DB: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    System: AIX 5.3.0.0
    Hello,
    I'm using SQL*Loader to import semi-colon separated values into a table. The files are delivered to us by a data provider who concatenates data from different sources and this results in us having different date formats within the same file. For example:
    ...;2010-12-31;22/11/1932;...
    I load this data using the following lines in the control file:
    EXECUTIONDATE1     TIMESTAMP     NULLIF EXECUTIONDATE1=BLANKS     "TO_DATE(:EXECUTIONDATE1, 'YYYY-MM-DD')",
    DELDOB          TIMESTAMP     NULLIF DELDOB=BLANKS          "TO_DATE(:DELDOB, 'DD/MM/YYYY')",
    The relevant NLS parameters:
    NLS_LANGUAGE=FRENCH
    NLS_DATE_FORMAT=DD/MM/RR
    NLS_DATE_LANGUAGE=FRENCH
    If I load this file as is the values loaded into the table are 31 dec 2010 and 22 nov *2032*, aven though the years are on 4 digits. If I change the NLS_DATE_FORMAT to DD/MM/YYYY then the second date value will be loaded correctly, but the first value will be loaded as 31 dec *2020* !!
    How can I get both date values to load correctly?
    Thanks!
    Sylvain

    This is very strange, after running a few tests I realized that if the year is 19XX then it will get loaded as 2019, and if it is 20XX then it will be 2020. I'm guessing it may have something to do with certain env variables that aren't set up properly because I'm fairly sure my SQL*Loader control file is correct... I'll run more tests :-(

  • Can data in a Project 2010 file be synced with PWA timesheet data submitted against an un-published task?

    I recently learned that best practice when you're mid-project and have a task that should no longer be charged to is to use the "Close Task to Update" option in Project Server 2010 instead of setting the "Publish" field to "No"
    to remove the task from team members' timesheets because removal of task entries can lead to data inconsistencies.
    Prior to learning this, one of these data inconsistencies was introduced into one of my project files. Specifically, I set the "Publish" status to "No" on completed task without realizing that a team member had submitted a correction
    to a previous time period's timesheet that had not yet been approved. These corrected data are now shown in the Reporting Database, but they did not get carried through to the project file.
    Is there a way to reconcile the data shown in the project file with the data in the Reporting Database?

    Prasanna,
    Here's what I think happened:
    User submitted incorrect actuals against Task A on his timesheet. (In addition to the expected hours against the current period [TS1], he had accidentally submitted actuals against a future time period [TS2] that was not part of my current review window.)
    Not realizing he had incorrectly reported his time, I accepted the actuals and published them to the project.
    I updated the project, changing the Publish flag for Task A to No since no further work was expected against the task.
    The following week, the user resubmitted a correct version of TS2.
    The reporting database got updated with the new TS2 data.
    Everything in my approval queue that was submitted by this user has been approved and published; however, the data in my project file does not match what I am seeing in the reporting database.
    Do I just need to change the Publish flag for Task A back to Yes to get my project file to capture the changes that were made during the resubmission of TS2?

  • Error while updating reimbursements Journey start date / End date missing

    Dear All,
    From ESS employee requested for Reimbursement of LTA from Benifits & Payments - Reimbursements & Claims.
    There is 3 level approval process and got the approval for reimbursement. We maintained Earned leave record for 6 days  in 2001 - Absences infotype.
    But while running the report HRPBSIN_AC_INFU - Advanced Claims: Infotype Update Report system is giving the error Journey Start date / End date is missing.
    help me how can I solve this issue.
    System details: ECC 6.0 - EHP1 and SP 63.
    Portal Details: Netweaver 7.0
    Regards,
    Potru.

    Hi Sangu,
    See if the following notes help you:
    Error when calling API from SQL*Developer, eg. ORA-01403 in API OE_ORDER_PUB.PROCESS_ORDER (Doc ID 1054295.1)
    Cancellation Of Transfer Orders Is Not Possible - ORA-01403: no data found in Package OE_Order_PVT Procedure Process_Order (Doc ID 391307.1)
    Thanks &
    Best Regards,

  • Error with the data format in the TXT file, sending as an Email attachment

    Hi all,
    I have an problem in the data formating in the TXT file while sending as an attachment via an email by using the FM "SO_DOCUMENT_SEND_API1".
    For eg:
    The data in the TXT file is looking like as follows:
    0 0 0 0 2        L O U D S P E A K R   O T H E R   3 8 W h i t e                  0 0
    0031  L O U D S P E A K R   O T H E R   3 8 Black                               0 000
    38    L O U D S P E A K R   O T H E R   3 8 Brown                                  0 00040
    L O U D S P E A K R   O T H E R   3 8 Brown                                         0 00042
    and so on
    But it should come as :
    0 0 0 0 2  L O U D S P E A K R   O T H E R   3 8 W h i t e
    0 0 0031   L O U D S P E A K R   O T H E R   3 8 Black
    0 00038    L O U D S P E A K R   O T H E R   3 8 Brown
    0 00040    L O U D S P E A K R   O T H E R   3 8 Brown
    All the internal tables are correctly filled.
    The code is as follows:
    gwa_objtxt = 'Please find attached DATA EXTRACT Sheet'.
      append gwa_objtxt to git_objtxt.
    describe table git_objtxt lines gv_cnt.
      clear git_doc_data.
      read table git_objtxt index gv_cnt.
      git_doc_data-doc_size = ( gv_cnt - 1 ) * 255 + strlen( gwa_objtxt ).
      git_doc_data-obj_langu = sy-langu.
      git_doc_data-obj_descr = lv_mtitle.
      append git_doc_data.
      clear git_packing_list.
      refresh git_packing_list.
    git_packing_list-transf_bin = space.
      git_packing_list-head_start = 1.
      git_packing_list-head_num = 0.
      git_packing_list-body_start = 1.
      git_packing_list-body_num   = gv_cnt.
      git_packing_list-doc_type = 'RAW'.
      append git_packing_list.
      Clear : gv_cnt.
      Describe table git_objbin lines gv_cnt.
      git_packing_list-transf_bin = 'X'.
      git_packing_list-head_start = 1.
      git_packing_list-head_num = 1.
      git_packing_list-body_start = 1.
      git_packing_list-body_num = gv_cnt.
      git_packing_list-doc_type = 'TXT'.
      git_packing_list-obj_descr = 'ATTACH.TXT'.
      git_packing_list-obj_name = 'book'.
      git_packing_list-doc_size = gv_cnt * 255.
      APPEND git_packing_list.
      clear git_receivers.
      refresh git_receivers.
      git_receivers-receiver = gv_eid.
      git_receivers-rec_type = 'U'.
      append git_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = git_doc_data
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = git_packing_list
          CONTENTS_BIN               = git_objbin
          CONTENTS_TXT               = git_objtxt
          RECEIVERS                  = git_receivers
        EXCEPTIONS
          TOO_MANY_RECEIVERS              = 1
          DOCUMENT_NOT_SENT                = 2
          DOCUMENT_TYPE_NOT_EXIST      = 3
          OPERATION_NO_AUTHORIZATION = 4
          PARAMETER_ERROR                    = 5
          X_ERROR                                      = 6
          ENQUEUE_ERROR                        = 7
          OTHERS                                        = 8.

    please give the code of
    contents bin =  git_objbin " how  this is getting populated.
    0 0 0 0 2 L O U D S P E A K R O T H E R 3 8 W h i t e <b>0 0</b>
    0031 L O U D S P E A K R O T H E R 3 8 Black
    0 000
    38
    from this im not able to understand is this over population or concatenation problem
    y dont u make a append to the final table
    like
    data : begin of itxt occurs 0, ,
    s1(132) type c ,
    end of itxt.
    loop at itab.
    itxt-s1+0(4) = itab-f1.
    itxt-s1+4(6) = itab-f2.
    itxt-s1+10(8) = itab-f3.
    itxts1+18(4) = itab-f4.
    append itxt.
    clear itxt.
    endloop.
    exchange this to the contents bin of hte Fm .
    regards,
    vijay.
    can u please mail the text file and the expected o/p to my mail id [email protected]  so that i can see the same from the data provided i m not able to check the result properly .

  • Issue with Date Conversion when loading XML File into Oracle 10g Database

    Hello all,
    I have the interface shown in the screenshot below. In it, amongst other actions, I'm mapping an XML file element representing a date to an Oracle table column defined as DATE. The source and target columns are highlighted in the screenshot.
    !http://img223.imageshack.us/img223/1565/odiscr275.jpg!
    When I execute the interface, I get the following error message:
    java.lang.IllegalArgumentException at java.sql.Date.valueOf(Date.java:103)
    I'm assuming this refers to the date conversion!
    I've already tried replacing SRC_TRADES.DEAL_DATE with TO_DATE( SRC_TRADES.DEAL_DATE, 'DD/MM/YYYY' ) in the Implementation tab. This function was not recognised when I executed the interface, so it didn't work! The date value in the XML file is in DD/MM/YYYY format.
    I'm guessing that Oracle SQL Date functions don't work in the Implementation tab. Please could somebody let me know:
    1. Which Date Conversion function I could use instead?
    2. Where I can find a reference for the methods/functions I can use in the Implementation tab (if such a reference exists)?
    Cheers.
    James

    Hi.
    Try to change the execution area to staging area. After You change it, write in the mapping box just SRC_TRADERS.DEAL_DATE. When You use TO_DATE, the source field typu should be varchar2, not date (as it is in your source datastore)

  • HT1347 I have an mp3 DVD with episodes of Gunsmoke.  iTunes imports them, but does not sort them correctly by date or episode.  One file name is GS 52-04-26 001 Billy the Kid.mp3

    I have an mp3 DVD with episodes of Gunsmoke.  iTunes imports them, but does not sort them correctly by date or episode.  One file name is GS 52-04-26 001 Billy the Kid.mp3.  iTunes sorts them by month/day/year.  How can I fix that?

    The weird thing is, it worked before. I encoded all the videos previously and had them all listed and didn't encounter this problem, but I noticed I'd forgotten to decomb/detelecine the videos so I deleted everything and re-encoded it all. AFter filling the tags out and setting poster frames again I was thinking of making life easier by just pasting the same artwork for every episode, so I did, but didn't like the results so I deleted it again (I selected every video, used Get Info and pasted the artwork that way).
    I think it was after this that the problem started to occur. In any case I've been through every episode and made sure the name, series, episode and episode id fields are all filled in with incremental values and they are. I even made sure the Sort Name field was filled in on every video. But this didn't work either.
    So, thinking another restart was needed I deleted every video again. Re-encoded them all, again. Set the tags for every video and poster frame again. Finished it all off nicely, checked cover flow and was highly annoyed to find it was STILL showing the same two pieces of art work for every video as shown in that image I posted.
    Ultimately, I wouldn't care so much that cover flow is screwing up like this as I always intended to sort by program anyway so it would only ever display one piece of artwork for an entire series of videos, however where-as when it was working it picked the artwork for the first episode of a series to display, its instead picking one of the latter episodes. I can't seem to find any way of choosing what artwork I want displayed.

  • Passing data to different internal tables with different columns from a comma delimited file

    Hi,
    I have a program wherein we upload a comma delimited file and based on the region( we have drop down in the selection screen to pick the region).  Based on the region, the data from the file is passed to internal table. For region A, we have 10 columns and for region B we have 9 columns.
    There is a split statement (split at comma) used to break the data into different columns.
    I need to add hard error messages if the no. of columns in the uploaded file are incorrect. For example, if the uploaded file is of type region A, then the uploaded file should be split into 10 columns. If the file contains lesser or more columns thenan error message should be added. Similar is the case with region B.
    I do not want to remove the existing split statement(existing code). Is there a way I can exactly pass the data into the internal table accurately? I have gone through some posts where in they have made use of the method cl_alv_table_create=>create_dynamic_table by passing the field catalog. But I cannot use this as I have two different internal tables to be populated based on the region. Appreciate help on this.
    Thanks,
    Pavan

    Hi Abhishek,
    I have no issues with the rows. I have a file with format like a1,b1,c1,d1,e1, the file should be uploaded and split at comma. So far its fine. After this, if the file is related to region A say Asia, then it should have 5 fields( as an example). So, all the 5 values a1,b1..e1 will be passed to 5 fields of itab1.
    I also have region B( say Europe)  whose file will have only 4 fields. So, file is of the form a2,b2,c2,d2. Again data is split at comma and passed to itab2.
    If some one loads file related to Asia and the file has only 4 fields  then the data would be incorrect. Similar is the case when someone tries to load Europe file with 5 fields related data. To avoid this, I want to validate the data uploaded. For this, I want to count the no. of fields (seperated by comma). If no. of fields is 5 then the file is related to Asia or if no. of fields is 4 then it is Europe file.
    Well, the no. of commas is nothing but no. of fields - 1. If the file is of the form a1,b1..e1 then I can say like if no. of commas = 4 then it is File Asia.But I am not sure how to write a code for this.Please advise.
    Thanks,
    Pavan

  • Can someone please help, I have a dvd disk containing lecture videos, on a Windows pc it works fine, and the disk opens to the dvd menu. However on my macbook pro running Mountain Lion, it opens as a data disk, with video and audio in two seprate files??

    Can someone please help, I have a dvd disk containing lecture videos, on a Windows pc it works fine, and the disk opens to the dvd menu. However on my macbook pro running Mountain Lion, it opens as a data disk, with video and audio in two seprate files??

    You may need a 3rd party application to view the DVD in a wWindows format such as
    http://flip4mac-3.en.softonic.com/mac
    https://www.macupdate.com/app/iphone/5758/vlc-media-player

  • Start Date, End Date Validation ?

    Hi
    I am new to OA framework world. I created a page and i have 2 columsn start date, end date
    I want to display msg to user, if start date greater than end date .
    My question is
    1) how to grab the values?
    or where do i need to write a validation code ? ( any of EOI/VOI/Rowimpl or ? )
    How to achieve this ?
    any suggestions..will make my work easier ..
    Thanks
    Ravi

    protected void validateEndDate(Date value)
    if (value != null)
    OADBTransaction transaction = getOADBTransaction();
    long sysdate = transaction.getCurrentDBDate().dateValue().getTime();
    long endDate = value.dateValue().getTime();
    if (endDate < sysdate)
    throw new OAAttrValException(OAException.TYP_ENTITY_OBJECT,
    getEntityDef().getFullName(), // EO name
    getPrimaryKey(), // EO PK
    "EndDate", // Attribute Name
    value, // Attribute value
    "AK", // Message product short name
    "FWK_TBX_T_END_DATE_PAST"); // Message name
    Thanks.

  • Need start date & end date for MMYYYY

    HI ,
    I need to find start date & end date of MMYYYY.
    Is there any FM to do this??
    thanks
    Moderator comments: 1st warning.
    Pl read the rules of engagement & [Date questions not allowed|/thread/1360534 [original link is broken];
    Awarded points are unassigned & the thread is locked.
    Edited by: Suresh Datti on Aug 6, 2009 4:14 AM

    Hi Karthik,
    Try this way.
    REPORT ZTEST_NOTEPAD.
    PARAMETERS :p_month(2) type n,
                p_year(4)  type n.
    data:first_day LIKE  VTBBEWE-DVALUT,
         last_day  type datum,
         days(2)   TYPE c.
    "First date of the month
    CONCATENATE p_year p_month '01' INTO first_day.
    CALL FUNCTION 'END_OF_MONTH_DETERMINE_2'
      EXPORTING
        i_datum        = first_day
    IMPORTING
       E_TT           = days.
    "Last date of the month
    CONCATENATE p_year p_month days INTO last_day.
    WRITE:/ first_day,
          / last_day.
    Thanks
    Venkat.O

  • Start Date,End Date prompt issue

    Hi
    I have a problem for prompts related to start Date and End Date selection i.e
    Start Date                   End Date
    01-Jan-2007                 31-Jan-2007
    01-Jul-2008                  31-Jul-2008
    The issue is if the user select the Start Date from a list of values(prompt) the End Date LOV's should appear only from its related Start Date i.e
    If Start Date is selected as 01-Apr-2007 then End Date LOV's should start only from 30-Apr-2007
    and the End Date LOV's should be seen only for the next 12 months i.e only till 31-Mar-2008
    Please suggest me how I can resolve this prompt issue

    hi there,,
    you can not do that at the prompt form
    coz every prompt is independent from the other.
    good luck
    Amr

Maybe you are looking for

  • Adobe Reader 9.0 Cannot Play Video Clips

    As caption, my pdf file has some video clips inside. When I open the videos, after answer the trust issue, an error message pop up: Warning: JavaScript Window - Acrobat has encountered an error while playing this media clip: 你的系統上未安裝任何驅動程式.(In Englis

  • Pasting links into Pages

    How can I copy text which contains links from a webpage, then paste the text with the links intact into a Pages document? The webpage is http://shotkit.com/ross-harvey (I am the website owner) Thank you

  • Preventing How to Crack a Wi-Fi Network's WPA Password with Reaver

    Hello, Are Cisco AP's vulnerable?     http://lifehacker.com/5873407/how-to-crack-a-wi+fi-networks-wpa-password-with-reaver Is their a new IOS available to handle this?

  • Photoshop CS6 and Photoshop CC have religiously crashed all day today!..

    Today's wonderful monitor all day today. I simply tried to open files... Several It's not just Photoshop(s). It's Illustrator too!I did the updates today. Anybody having or have had this issue before? This was pretty common 12 years ago but I knew ho

  • Which SAP module will suite my profile?

    Hi , I have just joined this forum. I am a MBA Finance graduate with 6.5 years of experiences- 4 years in Insurance operations ,2 years in real estate operations and 6 months as a Project Consultant- Project management in Hospitality Industry. Now I