MOST URGENT - PLS GO THROW IT

HI BELOW INFO IS GIVEN FOR ME ABOUT TICKET WITH PROGRAMS. IF U PLS GO THROW IT. AND LET ME KNOW THE SOLUTION OF IT.
EMAIL IN 08-Jun-07 14:17:28 emailclerkmts Action Type: Update Received Via Email
Subject:FW: Service Request for PS Create Version
Subject:Service Request for PS Create Version
Bryan attached is the service request form for changes to the programs
for the PS extract versions.
Thanks,
Richard Hutton
*Attachment*
Service Request Title:
PS Extract Create Current Version and Create Historical Version
Originator Name:
Originator Phone:
Originator Department:
(204) 941-7591
Capital Budgets
SAP Module(s) Affected:PS && IM
Requested Due Date:June 30th 2007
Existing Situation
When job PS_DAY_CREATE_VERSION runs the program ZJIMU002 with variant DEL
CURVERSION the last version created by program ZJIMU003 is deleted prior
to program ZJIMU003 creating a new current version using variant CURRENT
YEAR and updating the TVARV variable PS_NEWEST_REPORTING_VERSION. Job
PS_ZJIMU003_CREATE_VERSION_HIST. also uses program ZJIMU003 with variant
ANNUAL HIST. and updates the same TVARV variable. When
PS_DAY_CREATE_VERSION runs again the following day it deletes the Version
created by PS_ZJIMU003_CREATE_VERSION_HIST.
Impact Statement (impact to business if request is not completed)
Inability to run Project Systems (PS) ZJ02 reports for current, future,
and historical information.
Requirements
Require program change so that the historical version created by
PS_ZJIMU003_CREATE_VERSION_HIST is created with a number prefaced with an
?H? so it is not deleted by PS_DAY_CREATE_VERSION, thus enabling the
ability to run ZJ02 reports on projects for all dates. We will require
changes to the PS_ZJIMU003_CREATE_VERSION_HIST that would delete the last
Historical ?H? version.
Benefits
Ability to report on and manage projects.
*end of attachment*
ZJIMU002: Summarize Project Information For IM - Investment Management
*=======================================================================
ABAP: ZJIMU002
1999.11.22 Paul Robert renamed r0NN to ronn
replaced program with ZPSPROJDTL version
2001-09-11 Paul Sparling Changed program to run in background only
and associated with transaction
zdelvers
*=======================================================================
REPORT ZJIMU002 LINE-SIZE 250 NO STANDARD PAGE HEADING.
T A B L E S ***
TABLES:
M_ZVSNA,
TVARV, " SELECTION VARIABLES
ZPSPROJDTL. " Project Summary
I N T E R N A L T A B L E S ***
DATA: CUR_REC TYPE I,
RECS_DELETED TYPE I,
RECS_DELETED_SY-DBCNT TYPE I,
DELETED_SY-DBCNT(10) TYPE N,
NUM_RECS TYPE I,
NUM_RECS_NUM(10) TYPE N,
DELETED_TEXT(50) TYPE C.
D A T A D E C L A R A T I O N S ***
DATA:
LC_SYSTEM(7) TYPE C,
UPDATE_T_ZPSPROJDTL LIKE ZPSPROJDTL OCCURS 0 WITH HEADER LINE,
T_ZPSPROJDTL LIKE ZPSPROJDTL OCCURS 0 WITH HEADER LINE.
SELECT-OPTIONS S_VERSN FOR ZPSPROJDTL-VERSN NO INTERVALS
OBLIGATORY
MATCHCODE OBJECT ZVSN
MEMORY ID ZVR.
*=======================================================================
Start of changes 12/15/98 - Authorization Check
INCLUDE ZYIMUTLA.
End of changes 12/15/98 - Authorization Check
INITIALIZATION.
SELECT * FROM TVARV
WHERE NAME = 'PS_NEWEST_REPORTING_VERSION'
AND TYPE = 'S'
AND NUMB = 0.
IF SY-SUBRC = 0.
S_VERSN-SIGN = TVARV-SIGN.
S_VERSN-OPTION = TVARV-OPTI.
S_VERSN-LOW = TVARV-LOW.
S_VERSN-HIGH = TVARV-HIGH.
APPEND S_VERSN.
ENDIF.
ENDSELECT.
START-OF-SELECTION.
END-OF-SELECTION.
IF SY-BATCH <> 'X'.
WRITE: /,/,/,'Error, program can be run in background only!'.
STOP.
ENDIF.
PERFORM DELETE_PROJECT_VERSIONS.
write: / sy-repid color col_normal, " Report/ABAP Name
/ lc_system color col_normal. " System (DEV)
uline.
LOOP AT S_VERSN.
CLEAR UPDATE_T_ZPSPROJDTL.
MOVE S_VERSN-LOW TO UPDATE_T_ZPSPROJDTL-VERSN.
SELECT SINGLE * FROM ZPSPROJDTL
WHERE VERSN = UPDATE_T_ZPSPROJDTL-VERSN.
IF SY-SUBRC <> 0.
SELECT SINGLE * INTO CORRESPONDING FIELDS OF UPDATE_T_ZPSPROJDTL
FROM M_ZVSNA
WHERE VERSN = S_VERSN-LOW.
IF SY-SUBRC = 0.
APPEND UPDATE_T_ZPSPROJDTL.
ENDIF.
WRITE: / 'VERSION: ', S_VERSN-LOW, ' DELETED'.
ELSE.
WRITE: / 'VERSION:', S_VERSN-LOW, ' WAS NOT COMPLETELY DELETED'.
ENDIF.
ENDLOOP.
CALL FUNCTION 'MC_UPDATE_ZVSN'
EXPORTING
KZZPSPROJDTL_DEL = 0
KZZPSPROJDTL_INS = 0
TABLES
ZPSPROJDTL_DEL = UPDATE_T_ZPSPROJDTL
zpsprojdtl_ins =
EXCEPTIONS
LANG_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.
*=======================================================================
FORM DELETE_PROJECT_VERSIONS.
*=======================================================================
CLEAR CUR_REC.
CLEAR NUM_RECS.
CLEAR RECS_DELETED_SY-DBCNT.
SELECT VERSN PRNAM GJAHR F_YEAR WRTTP
INTO CORRESPONDING FIELDS OF T_ZPSPROJDTL
FROM ZPSPROJDTL
WHERE VERSN IN S_VERSN.
COLLECT T_ZPSPROJDTL.
ENDSELECT.
SELECT COUNT(*) INTO NUM_RECS
FROM ZPSPROJDTL
WHERE VERSN IN S_VERSN.
NUM_RECS_NUM = NUM_RECS.
describe table t_zpsprojdtl lines num_recs.
*Loop through int table deleting corresponding recs from DB table
LOOP AT T_ZPSPROJDTL.
RECS_DELETED = RECS_DELETED + 1.
CUR_REC = CUR_REC + 1.
DELETE FROM ZPSPROJDTL
WHERE VERSN = T_ZPSPROJDTL-VERSN
AND PRNAM = T_ZPSPROJDTL-PRNAM
AND GJAHR = T_ZPSPROJDTL-GJAHR
AND F_YEAR = T_ZPSPROJDTL-F_YEAR
AND WRTTP = T_ZPSPROJDTL-WRTTP.
COMMIT WORK.
RECS_DELETED_SY-DBCNT = RECS_DELETED_SY-DBCNT + SY-DBCNT.
*Display progress bar
DELETED_SY-DBCNT = RECS_DELETED_SY-DBCNT.
CONCATENATE DELETED_SY-DBCNT 'Records deleted of'
NUM_RECS_NUM
INTO DELETED_TEXT SEPARATED BY SPACE.
PERFORM DISPLAY_PROGRESS USING
RECS_DELETED_SY-DBCNT
NUM_RECS
DELETED_TEXT.
ENDLOOP.
WRITE: / DELETED_TEXT.
COMMIT WORK.
ENDFORM.
*& Form DISPLAY_PROGRESS
Displays a progress bar and text or just text at bottom of scrn
--> PROCESSED_CNT - Number of records processed
--> TABLE_ENTRIES - Total number of entries in internal table
--> DISPLAY_TEXT - Text message to be displayed
FORM DISPLAY_PROGRESS USING PROCESSED_CNT TYPE I
TABLE_ENTRIES LIKE SY-TFILL
DISPLAY_TEXT TYPE C.
local variables used for percentage bar
DATA:
CUR_PERCENT TYPE P DECIMALS 1,
IND_TEXT(50) TYPE C,
PERCENT_TEXT(05) TYPE C.
P E R C E N T A G E B A R ********
IF NOT ( PROCESSED_CNT IS INITIAL ).
CUR_PERCENT = PROCESSED_CNT / TABLE_ENTRIES * 100.
start pr19990916 change
if remain = 0.
end pr19990916 change
PERCENT_TEXT = CUR_PERCENT.
CONCATENATE PERCENT_TEXT
DISPLAY_TEXT INTO
IND_TEXT
SEPARATED BY SPACE.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = CUR_PERCENT
TEXT = IND_TEXT
EXCEPTIONS
OTHERS = 1.
start pr19990916 change
endif.
end pr19990916 change
ELSE.
*Display text only
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = 0
TEXT = DISPLAY_TEXT
EXCEPTIONS
OTHERS = 1.
ENDIF.
E N D O F P E R C E N T B A R *****
ENDFORM. " DISPLAY_PROGRESS
ANOTHER PROGRAM--Z--
ZJIMU002: Summarize Project Information For IM - Investment Management
*=======================================================================
ABAP: ZJIMU002
1999.11.22 Paul Robert renamed r0NN to ronn
replaced program with ZPSPROJDTL version
2001-09-11 Paul Sparling Changed program to run in background only
and associated with transaction
zdelvers
*=======================================================================
REPORT ZJIMU002 LINE-SIZE 250 NO STANDARD PAGE HEADING.
T A B L E S ***
TABLES:
M_ZVSNA,
TVARV, " SELECTION VARIABLES
ZPSPROJDTL. " Project Summary
I N T E R N A L T A B L E S ***
DATA: CUR_REC TYPE I,
RECS_DELETED TYPE I,
RECS_DELETED_SY-DBCNT TYPE I,
DELETED_SY-DBCNT(10) TYPE N,
NUM_RECS TYPE I,
NUM_RECS_NUM(10) TYPE N,
DELETED_TEXT(50) TYPE C.
D A T A D E C L A R A T I O N S ***
DATA:
LC_SYSTEM(7) TYPE C,
UPDATE_T_ZPSPROJDTL LIKE ZPSPROJDTL OCCURS 0 WITH HEADER LINE,
T_ZPSPROJDTL LIKE ZPSPROJDTL OCCURS 0 WITH HEADER LINE.
SELECT-OPTIONS S_VERSN FOR ZPSPROJDTL-VERSN NO INTERVALS
OBLIGATORY
MATCHCODE OBJECT ZVSN
MEMORY ID ZVR.
*=======================================================================
Start of changes 12/15/98 - Authorization Check
INCLUDE ZYIMUTLA.
End of changes 12/15/98 - Authorization Check
INITIALIZATION.
SELECT * FROM TVARV
WHERE NAME = 'PS_NEWEST_REPORTING_VERSION'
AND TYPE = 'S'
AND NUMB = 0.
IF SY-SUBRC = 0.
S_VERSN-SIGN = TVARV-SIGN.
S_VERSN-OPTION = TVARV-OPTI.
S_VERSN-LOW = TVARV-LOW.
S_VERSN-HIGH = TVARV-HIGH.
APPEND S_VERSN.
ENDIF.
ENDSELECT.
START-OF-SELECTION.
END-OF-SELECTION.
IF SY-BATCH <> 'X'.
WRITE: /,/,/,'Error, program can be run in background only!'.
STOP.
ENDIF.
PERFORM DELETE_PROJECT_VERSIONS.
write: / sy-repid color col_normal, " Report/ABAP Name
/ lc_system color col_normal. " System (DEV)
uline.
LOOP AT S_VERSN.
CLEAR UPDATE_T_ZPSPROJDTL.
MOVE S_VERSN-LOW TO UPDATE_T_ZPSPROJDTL-VERSN.
SELECT SINGLE * FROM ZPSPROJDTL
WHERE VERSN = UPDATE_T_ZPSPROJDTL-VERSN.
IF SY-SUBRC <> 0.
SELECT SINGLE * INTO CORRESPONDING FIELDS OF UPDATE_T_ZPSPROJDTL
FROM M_ZVSNA
WHERE VERSN = S_VERSN-LOW.
IF SY-SUBRC = 0.
APPEND UPDATE_T_ZPSPROJDTL.
ENDIF.
WRITE: / 'VERSION: ', S_VERSN-LOW, ' DELETED'.
ELSE.
WRITE: / 'VERSION:', S_VERSN-LOW, ' WAS NOT COMPLETELY DELETED'.
ENDIF.
ENDLOOP.
CALL FUNCTION 'MC_UPDATE_ZVSN'
EXPORTING
KZZPSPROJDTL_DEL = 0
KZZPSPROJDTL_INS = 0
TABLES
ZPSPROJDTL_DEL = UPDATE_T_ZPSPROJDTL
zpsprojdtl_ins =
EXCEPTIONS
LANG_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.
*=======================================================================
FORM DELETE_PROJECT_VERSIONS.
*=======================================================================
CLEAR CUR_REC.
CLEAR NUM_RECS.
CLEAR RECS_DELETED_SY-DBCNT.
SELECT VERSN PRNAM GJAHR F_YEAR WRTTP
INTO CORRESPONDING FIELDS OF T_ZPSPROJDTL
FROM ZPSPROJDTL
WHERE VERSN IN S_VERSN.
COLLECT T_ZPSPROJDTL.
ENDSELECT.
SELECT COUNT(*) INTO NUM_RECS
FROM ZPSPROJDTL
WHERE VERSN IN S_VERSN.
NUM_RECS_NUM = NUM_RECS.
describe table t_zpsprojdtl lines num_recs.
*Loop through int table deleting corresponding recs from DB table
LOOP AT T_ZPSPROJDTL.
RECS_DELETED = RECS_DELETED + 1.
CUR_REC = CUR_REC + 1.
DELETE FROM ZPSPROJDTL
WHERE VERSN = T_ZPSPROJDTL-VERSN
AND PRNAM = T_ZPSPROJDTL-PRNAM
AND GJAHR = T_ZPSPROJDTL-GJAHR
AND F_YEAR = T_ZPSPROJDTL-F_YEAR
AND WRTTP = T_ZPSPROJDTL-WRTTP.
COMMIT WORK.
RECS_DELETED_SY-DBCNT = RECS_DELETED_SY-DBCNT + SY-DBCNT.
*Display progress bar
DELETED_SY-DBCNT = RECS_DELETED_SY-DBCNT.
CONCATENATE DELETED_SY-DBCNT 'Records deleted of'
NUM_RECS_NUM
INTO DELETED_TEXT SEPARATED BY SPACE.
PERFORM DISPLAY_PROGRESS USING
RECS_DELETED_SY-DBCNT
NUM_RECS
DELETED_TEXT.
ENDLOOP.
WRITE: / DELETED_TEXT.
COMMIT WORK.
ENDFORM.
*& Form DISPLAY_PROGRESS
Displays a progress bar and text or just text at bottom of scrn
--> PROCESSED_CNT - Number of records processed
--> TABLE_ENTRIES - Total number of entries in internal table
--> DISPLAY_TEXT - Text message to be displayed
FORM DISPLAY_PROGRESS USING PROCESSED_CNT TYPE I
TABLE_ENTRIES LIKE SY-TFILL
DISPLAY_TEXT TYPE C.
local variables used for percentage bar
DATA:
CUR_PERCENT TYPE P DECIMALS 1,
IND_TEXT(50) TYPE C,
PERCENT_TEXT(05) TYPE C.
P E R C E N T A G E B A R ********
IF NOT ( PROCESSED_CNT IS INITIAL ).
CUR_PERCENT = PROCESSED_CNT / TABLE_ENTRIES * 100.
start pr19990916 change
if remain = 0.
end pr19990916 change
PERCENT_TEXT = CUR_PERCENT.
CONCATENATE PERCENT_TEXT
DISPLAY_TEXT INTO
IND_TEXT
SEPARATED BY SPACE.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = CUR_PERCENT
TEXT = IND_TEXT
EXCEPTIONS
OTHERS = 1.
start pr19990916 change
endif.
end pr19990916 change
ELSE.
*Display text only
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = 0
TEXT = DISPLAY_TEXT
EXCEPTIONS
OTHERS = 1.
ENDIF.
E N D O F P E R C E N T B A R *****
ENDFORM. " DISPLAY_PROGRESS
Thanks in Advance,
Jalaluddin.Syed

Hi Jalal,
If you are making use of the function module
SO_NEW_DOCUMENT_ATT_SEND_API1 , check for the internal table being passed to the RECEIVERS tables parameter of thhis function module...
This is the place where the receipient's email address is stored...
If you want to change the receipeint email address, just modify the content of the RECEIVERS table s parameter of this function module...
Regards,
Mamata.

Similar Messages

  • FI Reports ***Pls Most Urgent***

    Hi Friends,
    Can you please help out for FI reports.
    Reports are: 1. Balance sheets by profit center 2. Income statement by functional area.
    Here my question is:
    1. Is this reports are available in SAP?
    2. if not How to develop because which are very big and complex it looks.
    3. what is the best way to develop these reports..
    4. Is it need to develop from top to bottom. Pls advice me and help me out how to do it. if any body develop send me some outlines.
    Can pls help most urgent and immediate need for my client.
    I will highly appreciate and reward points  as well.
    Yoga.

    Well, I would suggest you retrieve the data from the database, parse it, convert it to gif/jpeg and then show it.

  • I have a MacBook Pro 13.3 OS- MAC OS X LION.Whenever I am staring the computer, it says You need to restart your computer by pressing the power button.I did this number of times and everytime it freezes to the same screen.Solution needed urgently pls.

    I have a MacBook Pro 13.3 OS- MAC OS X LION.
    Whenever I am staring the computer, it says You need to restart your computer by pressing the power button.
    I did this number of times and everytime it freezes to the same screen.Solution needed urgently pls.
    Thank you for any help in this regard that comes fast.

    The details of the kernel-panic report is as follows-
    Interval Since Last Panic Report:  1458653 sec
    Panics Since Last Report:          6
    Anonymous UUID:                    70BA6A**************************************************
    Sun Sep 16 23:00:13 2012
    panic(cpu 0 caller 0xffffff80002c4794): Kernel trap at 0xffffff8000290560, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000000800028, CR3: 0x000000000a509005, CR4: 0x00000000001606e0
    RAX: 0x0000000000000001, RBX: 0x0000000000820000, RCX: 0xffffff801122dc40, RDX: 0x0000000000020501
    RSP: 0xffffff80ef3d3da0, RBP: 0xffffff80ef3d3dc0, RSI: 0x000000002b1d78b6, RDI: 0xffffff800342d280
    R8:  0xffffff80ef3d3f08, R9:  0xffffff80ef3d3ef8, R10: 0x000000010d901000, R11: 0x0000000000000206
    R12: 0xffffff800342d280, R13: 0x0000000000000000, R14: 0xffffff8011cd6500, R15: 0x0000000000800000
    RFL: 0x0000000000010206, RIP: 0xffffff8000290560, CS:  0x0000000000000008, SS:  0x0000000000000000
    CR2: 0x0000000000800028, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80ef3d3a50 : 0xffffff8000220792
    0xffffff80ef3d3ad0 : 0xffffff80002c4794
    0xffffff80ef3d3c80 : 0xffffff80002da55d
    0xffffff80ef3d3ca0 : 0xffffff8000290560
    0xffffff80ef3d3dc0 : 0xffffff800026c9c3
    0xffffff80ef3d3f40 : 0xffffff80002c3fbb
    0xffffff80ef3d3fb0 : 0xffffff80002da481
    BSD process name corresponding to current thread: fsck_hfs
    Mac OS version:
    11E2620
    Kernel version:
    Darwin Kernel Version 11.4.2: Wed May 30 20:13:51 PDT 2012; root:xnu-1699.31.2~1/RELEASE_X86_64
    Kernel UUID: 25EC645A-8793-3201-8D0A-23EA280EC755
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 4850001132
    last loaded kext at 1796984176: com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.7f2 (addr 0xffffff7f80e16000, size 57344)
    loaded kexts:
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.7f2
    com.apple.driver.AppleUSBTCButtons    227.6
    com.apple.driver.AppleUSBTCKeyEventDriver    227.6
    com.apple.driver.AppleUSBTCKeyboard    227.6
    com.apple.driver.AppleIRController    312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.0.4
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    560.7.21
    com.apple.driver.AppleSDXC    1.2.2
    com.apple.driver.AppleUSBHub    5.0.8
    com.apple.iokit.AppleBCM5701Ethernet    3.2.4b8
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleAHCIPort    2.3.0
    com.apple.driver.AppleUSBEHCI    5.0.7
    com.apple.driver.AppleUSBXHCI    1.0.7
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    195.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.3
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    195.0.0
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.7f2
    com.apple.iokit.IOBluetoothFamily    4.0.7f2
    com.apple.driver.AppleFileSystemDriver    13
    com.apple.driver.AppleUSBMultitouch    230.5
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.4
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.4
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.5
    com.apple.iokit.IOUSBHIDDriver    5.0.0
    com.apple.driver.AppleUSBMergeNub    5.0.7
    com.apple.driver.AppleUSBComposite    5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.driver.AppleThunderboltNHI    1.6.0
    com.apple.iokit.IOThunderboltFamily    2.0.3
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.1
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOUSBUserClient    5.0.0
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    5.0.8
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.5
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    331.7
    com.apple.iokit.IOStorageFamily    1.7.2
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.7
    com.apple.iokit.IOACPIFamily    1.4

  • Global_attribute20 field in ap_payment_schedules_all table - Urgent Pls

    All,
    Version: 11.5.10.2
    I created an invoice, from the 'Scheduled Payments' tab I checked the 'Hold' flag. After the flag is checked in the UI, I noticed the global_attribute20 field in the ap_payment_schedules_all updates to 'EP' along with the hold_flag='Y'. I want to know the significance of global_attribute20 and what are all the other possible values of this field like 'EP'??
    this is quite urgent, pls help.
    rgds
    sen

    Have you tried to enable trace on this form to find out how this column gets populated?
    FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1] -- 3. How does one enable trace in the Oracle Application screens / forms?
    Can you reproduce the issue with other invoices?
    Do you have any other instance where you can try the same and see if the issue is reproducible?
    Thanks,
    Hussein

  • Calling Smartforms from Module pool: Most Urgent

    Hi, Exeperts
    how can I call smartforms from module pool.
    I have done like below.
    First Created a push button on screen and used
    these code in user command through PAI
    FORM CALL_SMARTFORMS .
    DATA: V_FORM_NAME TYPE RS38L_FNAM.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME           = 'ZSMART'
      IMPORTING
        FM_NAME            = V_FORM_NAME
      EXCEPTIONS
        NO_FORM            = 1
        NO_FUNCTION_MODULE = 2
        OTHERS             = 3.
    ENDFORM.                    " CALL_SMARTFORMS
    now I am getting form name in v_form_name, but it is not executing.
    Please help me out.
    Regards
    Rajiv singh.

    Well, as it's most urgent....
    One you have a value in V_FORM_NAME you need to call this function module, passing the fields and strucures that make up the interface to your form.
    Eg.
    DATA: DEVICE TYPE SSFCTRLOP .
    DEVICE-DEVICE = 'PRINTER'.
    DEVICE-NO_DIALOG = 'X'.
    CALL FUNCTION V_FORM_NAME
    EXPORTING
       CONTROL_PARAMETERS         = device
       USER_SETTINGS              = 'X'
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5.
    Regards,
    Nick

  • Routine in Bex - urgent pls.

    I have 2 columns A and B in the report:
    A     B     C
    1234     1234     1234     
    5903     0     5903
    0     3287     3287
    I want to get the column C.
    So, the condition for the column C would be :
    if A<>0 and B <>0 then A
    else if A==0 then B
    else if B==0 then A
    I heared that this can be done by routines . I need the code to do this . Also let me know where to put the code.
    This is urgent pls.
    Vaishali

    Hi,
    No need to write coding.....directly u can get these by unsing formula as told in the above forum....there u get all these conditions in Boolean operators. so just make use of them..
    Thanks & Regards

  • Urgent pls...sql query

    Hi
    I have a sample table of empno,sal and hiredate. I have 2 duplicate rows for example
    empno sal Hiredate
    7900 1000 1-mar-03
    7900 2000 2-mar-03
    I want to eliminate the duplicate row. My query should be like this ...
    Select empno,sal,min(hiredate) .... and not any other type. Also I should not use subquery or correlated subquery within this query. It should be a single query only. In real I am using many tables. I found the duplicate rows in one table as I mentioned above for example. Thats why my query should start with those columns and it must be a single query. Can any one help me out to solve this. Please reply as early as possible. I am in most urgent.
    thanks in advance.

    Hi Andrew!
    Thanks for ur response. Eliminate in the sense, just to omit the uplicate rows while displaying and not to delete. I didnt mean to delete, I meant for display. Just to query omiting the duplicate rows. If I use sub query its getting hanged as there r 5 tables and each got more than 50,000 records in live. So I want it to be in a single query using group functions and joins and not sub query or multiple query or correlated sub query.
    The problem is if we didn't select sal column then this will work ...
    select empno,min(hiredate) from emp group by empno.
    But I must use sal column also to display, thats the problem!

  • Depreciation Posting in AFAB (urgent Pls)

    Hi All,
    pls let me know y the depreciation posting is not hapenning when it is showing Document created in Test run. It is not showing any errors nor is it posting. urgent pls.
    Chatura.

    Hi,
    Thanks for replying. It did not create any RABUSH Session .
    1) I created an Asset and gave the Depreciation Start date as     01.09.07.
    2) then i posted an entry in F-90 with transaction type 100, on     01.09.07.
    3) The periods are kept open only.
    4) The number Ranges for AF Document exists.
    5)i did an unplanned posting run for 1 to 8 periods. for 9th period i did the Repeat run . It generated an accounting entry with AF document type.
    6) now if i'm trying to do the test run for 10 th period it shows that the Document is created but in the repeat run it is neither posting the document nor is it showing the error.
    I was not able to analyse the reason.
    Pls help me out. Also pls let me know where to select the direct FI posting in asset accounting. Points will be awarded infull if the issue is solved.
    Regards,
    Chatura.

  • I need one recurcive(unended loop) pl/sql example, its very urgent pls

    Hi,
    I need one recurcive (unended loop) pl/sql example, its very urgent pls
    Thanks,
    Sathis.

    I suppose you'll want to know how to get out of your undended loop too (although that does stop it being unended).
    Example...
    SQL> ed
    Wrote file afiedt.buf
      1  DECLARE
      2    v_cnt NUMBER := 0;
      3  BEGIN
      4    LOOP
      5      EXIT WHEN v_cnt = 1000;
      6      v_cnt := v_cnt + 1;
      7    END LOOP;
      8* END;
    SQL> /
    PL/SQL procedure successfully completed.
    SQL>

  • CC-Configuration(adapter)-Most Urgent

    HI all,
    In ComplianceCalibrator, configuration tab after clicking the last option SAP Adapter, the diamond shaped button should change from gray to green.So Sod violations can be checked .But after clicking on SAP Adapter its showing the following error.
    "java.lang.NullPointerException".
    Kindly do the needful,its most urgent issue
    Thanks & Regards

    Hi Karunakar,
    Following is the complete procedure:
    System ID:                         System ID (User Defined)
    System Name:                   Host Name
    System Type:                     SAP
    Connection Type:                Adaptive RFC
    JCO Destination:                 Name of the JCO connection created by you
    System ID:                         System ID (User Defined)
    SAP Gateway:                   sapgw00
    Report Name:                     Name of the Report defined by you in R/3
    Outbound Connection:          Select the check box
    Unicode System:                Select the check box
    Then check, it should come. Kindly let me know if you have any more queries.
    Regards,
    Faisal

  • Its urgent pls help me .

    how can i call a portal from webdynpro application
    my requirment is
    i was created webdynpro application.
    in that i was created one view . in that i was created one button (go).
    if i click that button i want move some other portal.
    how can i acchive pls help me.
    its urgent.
    pls send any example programe
    Message was edited by:
            madipadiga nagaraju
    Message was edited by:
            madipadiga nagaraju

    hi,
    there is no direct tcode for going to webdynpro component/interfaces in ecc 6.0.
    but u have se58 in ecc 5.0,as webdynpro convertor.u give ur program name and click web dynpro convertor button then it takes u to se80 .but this wda(webdynpro abap) component comes as in application tree hierarchy .
    i can say in wda component refers a class .if u select webdynpro component/interface,it ask u to create a class or interface.
    after that it automatically generate component controller(it is also a class),
    interface view and windows.all these 3 are classes.for every window one interface view will be created.ie.. window is internal visible where as interface view is external visible.
    u create view and embed these views in windows.by going to the window layout,right click on the window name and click embed view.u can enbed as many view as u wish.in order to navigate from one view to other view ,click  "create navigation" by right clicking the view plugs.
    by default windows and view have inbound plugs.this is literally a event of that class.
    if u want to navigate from view1 to view2 ,create outbound plug for view1,the click outbound plug of view1 and right click the click create navigation the select inbound plug of view2.
    then create a application .this is simillar of creating an object.
    click on this object and test .this will open in browser.
    for deploying u have use "sap webdynpro iview".

  • Telnet connection---urgent pls

    each time i try to telnet using my LAPTOP.I get command not recognised.can somebody help me out now.Other PC works except mine.This is very urgent pls.

    Download Putty
    Search on google " Putty ".... using putty telnet.
    You can open Hyperterminal and choose TCP/IP option instead of COM1.
    Click on OK
    You will telnet into device.
    Putty use is very good very secure.
    Regards,
    Dharmesh Purohit

  • DBA PASSWORD (MOST URGENT)

    Is there any way to find the DBA password if I forgot my current password. can anybody help me. I tried with my current password. But it is not working. I don't know whether any body changed or not. If I am reinstalling it how can I retrieve the datas?
    Please treat the matter as most urgent.
    thanks
    george

    Do you know a password of a user with DBA priviledges? If so, use that one. Otherwise try to change the internal password with orapwd.

  • /001, /002, /003 (MOST URGENT)

    Hello
    How do i assign these to my WT's at V_512W_D & V_512W_B
    WT 's are :
    1. O/Time @ 1.25
    2. Night Differential @ 26%
    3. OT Transport (Valaution - 1 Daily Unit = 150 PHP)
    PHP - Currency
    4. Rice Allowance (1 daily rate * no of worked days in the period) Daily rate = allowance/26
    Help me MOST URGENT
    NSN

    Hi NSN
    once you maintained in processing calss 1 for your wage type the amount will be trasferred to techinical wage type as per the sepcification you used thorug PCR X010.
    amount in the techincal wage type will be converted into hours or days through PCR X012.  PCR X015 checks the Valuation base table accordingly calculation will be made.
    you can refer the documentation for the PCR's
    srinivas

  • How can i detect if my PC is not on Network..... Urgent Pls Help Soon !!!!!

    Hello Everyone,
    We all know whenever we try to connect to a PC which is not on network, we get UnKnownHostException etc..... by which we can detect that the corresponding PC is not an network(intranet/internet)
    But when i send a msg from my PC to my PC, it works fine even if the network is down. I hv provided my PC's IP address instead of using localhost or 127.0.0.1 which reduces the possibility that the msg will not be traversed thru the network.
    Any IDEA how this works.
    Is There any possible way by which i can detect that my PC is not on network or the PC to which i'm trying to connect is not on network .......
    Pls help me out, its really urgent as to be implemented in my Project
    Thanks In Advance
    Sahil Shaikh

    Hello Surtee
    I have developed a Messeging Service for the eCRM Apllication my company is developing and we r in the final stage of debugging.
    Now whenever a user sends a msg to a PC which is not on network, the messaging service automatically sends an Offline mssg to that PC. But know i want ot distinguish wheather the PC to which i'm sending the msg is not on network or am I not on network based on this i need to perform diff. actions, hence i wanted to know that how can i detect .......
    Pls see if u canhelp me out ......
    Thanks
    Sahil Shaikh

Maybe you are looking for

  • ITunes takes forever to load

    When i first got my computer and installed iTunes, everything worked fine. then when my Norton internet security expired it really slowed down. like it takes 10 minutes to just go to the iTunes homepage, ON A GOOD DAY. About a month ago i installed N

  • How can i use my Virus TI Keyboard as a softsyth in GarageBand '11?

    Hey everyone! I am trying to connect my Virus TI to GarageBand '11 but don't seem to find a way of integrating any VST plugins as SoftSynths. I read about a way to add a soft syth in the software instrument tab where a down arrow should lead me to ex

  • Remove OLD Slave iFolders from iFolder Master

    I have a old iFolder slave server that appears unders "Servers" when viewing servers in the iFolder 3.7 server administration tab. This server is no longer around. When you click on the server it returns an error. How does one go about removing a "de

  • Is there a manual for Lion?

    Does anyone know where I can find a manual for OS X 10.7 Lion? Thanks!

  • Prerequisites check error for English language pack

    Hi All, We are installing Diagnostics Agent on Windows Server 2008 R2 Enterprise. While installing in prerequisites checker we are getting error about language pack. The error log from sapinst_dev is as follows: TRACE      2011-11-22 12:29:46.571 tPR