Replacement of OMGS in ECC 6.0

Hi,
Actually in 4.6c, in a report a statement which calls TCode: OMGS by using
Call Transaction 'OMGS'.
I need to replicate the same program in ECC 6.0, How do we call the Release procedure for Purchase Orders ?
Instead of navigating through OLME -> Purchase Order -> Release procedure for Purchase Orders, is there any direct calling of Release procedure for Purchase Orders ? or Please let me know the best way to call it ?
As of now i am thinking to change the code to CALL TRANSACTION 'OLME', but user has to again navigate from there to Release Procedure. User needs a provision to call directly 'Release procedure for Purchase Orders' instead of navigation from OLME.
Thanks,
Ravi

TYPES: BEGIN to T_RANGE,
             sign(1) type c,
             option(2) type c,
             low type <data type>,
             high type <data type>,
            end of t_range.
DATA: <your range> type table of t_range.

Similar Messages

  • Replacement for HELP_VALUES_GET_WITH_MATCHCODE in ECC 6.0

    Hi Friends,
                    should the FM HELP_VALUES_GET_WITH_MATCHCODE bereplaced with the new one in ECC 6.0 or not.if so what is the replacement for it.Please provide.
    Regards,
    Pradeep P

    Hi,
      HELP_VALUES_GET_WITH_MACO is the one which is obsolete but is called from within the HELP_VALUES_GET_WITH_MATCHCODE function module which is not obsolete. I don't why it is like that, but may be for compatibility reasons, they left it out like that.
    But as of now your function module is not obsolete.
    Regards
    Kiran Sure

  • Replacement for CONVERT_DATE_INPUT in ECC 6.0

    Hi,
    I'm working in ECC 6.0. The Function Module CONVERT_DATE_INPUT  is obsolete in ECC 6.0. Please suggest me the correct function module.
    Thanks,
    Ramya Reddy.

    hii
    use this
    <b>CONVERT_DATE_INPUT
    CONVERT_DATE_TO_INTERNAL
    CONVERT_DATE_TO_INTERN_FORMAT</b>
    To get the Format of the Date:  <b>SLS_MISC_GET_USER_DATE_FORMAT</b>
    Otherwise use this simple logic
    <b>data: date_1 (8).
    write date to date_1 yy/mm/dd.
    WRITE LIKP-LFDAT MM/DD/YY.</b>
    or using concatenation .
    data : date_time(20) value '060102125033'.
    data : date(8) , time(8) , count type i.
    date = date_time+(6).
    time = date_time+6(6).
    concatenate date(2) '/' date2(2) '/' date+4(2) into date.
    concatenate time(2) ':' time2(2) ':' time+4(2) into time.
    write : time , date .
    Reward points if helpful
    Regards
    Naresh

  • Replacement of Ranges in ECC 6.0

    Hi Experts,
    I am working on ECC 6.0. Here Ranges are obselete. But in my case i want ot use them. Is there any alternative.

    TYPES: BEGIN to T_RANGE,
                 sign(1) type c,
                 option(2) type c,
                 low type <data type>,
                 high type <data type>,
                end of t_range.
    DATA: <your range> type table of t_range.

  • Difference between SAP R/3 , ECC and MySAP

    Hi,
    I would like to know the difference between SAP R/3 ,ECC and MySAP. Please let me know the difference , the links earlier found were not getting into my brains.
    To my understanding the SAP R/3 4.5b,4.6c - earlier versions contains the basic modules like Logistics(MM,SD) and PP (core functional modules), on technical point the little function modules were obsolete in these version.
    4.7 (included the Web application server,for web based and integrating with XI,Enterprise core ,Enterprise Extensions ) + core functional modules +.HR + FI/CO+ SCM (MM,WM,PP) + PLM
    ECC (Enterprise Core Component) - ?
    MySAP - ?
    Correct me and also your answer will help me understand better.
    Regards
    Shawn

    ECC 6.0 means it is an latest version of SAP ERP package (ERP Central components). it will support for netweaver and BW.
    Chk this links for more details.
    ECC 6.0 clarification
    Replacement for CONVERT_DATE_INPUT in ECC 6.0
    Upgrade from sap 4.7 to ECC 6.0
    Upgradation to ERP 6.0 '2005'
    Differences between 4.6C and 4.7 EE
    To know the functionality changes you can refer:
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://www.sap.com/solutions/business-suite/erp/pdf/BWP_ERP2006_Upgrade.pdf
    http://service.sap.com/releasenotes
    http://service.sap.com/upgrade
    Rewards if useful.

  • Replace of function module

    iam using the function module HELP_VALUES_GET_WITH_TABLE in 4.6c which is replaced by
    F4IF_INT_TABLE_VALUE_REQUEST in ecc 6.0.But i want to know the parameters passed to this new FM in ecc.could you please help

    Hi,
    check this example.
    TABLES: mara, makt.
    DATA mat LIKE mara-matnr.
    DATA: BEGIN OF itab OCCURS 0,
    matnr LIKE mara-matnr,
    END OF itab.
    DATA : BEGIN OF btab OCCURS 0,
    maktx LIKE makt-maktx,
    END OF btab.
    DATA : return LIKE ddshretval OCCURS 0 WITH HEADER LINE.
    SELECT-OPTIONS: so_matnr FOR mara-matnr,
    so_maktx FOR makt-maktx.
    INITIALIZATION.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_matnr-low.
    PERFORM matnr.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_matnr-high.
    PERFORM matnr.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_maktx-low.
    PERFORM maktx.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_maktx-high.
    PERFORM maktx.
    *& Form matnr
    text
    FORM matnr.
    REFRESH itab.
    SELECT matnr FROM mara INTO TABLE itab.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'MATNR '
    dynprofield = 'P_MATNR '
    dynpprog = sy-repid
    dynpnr = sy-dynnr
    value_org = 'S'
    TABLES
    value_tab = itab
    return_tab = return.
    mat = return-fieldval.
    UNPACK mat TO mat.
    so_matnr = return-fieldval.
    REFRESH return.
    CLEAR return.
    ENDFORM. "matnr
    *& Form maktx
    FORM maktx.
    REFRESH btab.
    SELECT maktx FROM makt INTO TABLE btab WHERE matnr = mat AND spras =
    sy-langu.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'MAKTX'
    dynprofield = 'SO_MAKTX '
    dynpprog = sy-repid
    dynpnr = sy-dynnr
    value_org = 'S'
    TABLES
    value_tab = btab
    return_tab = return.
    so_maktx = return-fieldval.
    REFRESH return.
    CLEAR return.
    ENDFORM. "maktx

  • Difference betweenn R/3 and ECC?

    Hai
    what are the differences we find between SAP r/3 4.7 and ECC servers?
    thaks in advance
    Praveen

    Hi Praveen,
    ECC 6.0 means it is an latest version of SAP ERP package (ERP Central components). it will support for netweaver and BW.
    Chk this links for more details.
    ECC 6.0 clarification
    Replacement for CONVERT_DATE_INPUT in ECC 6.0
    Upgrade from sap 4.7 to ECC 6.0
    Upgradation to ERP 6.0 '2005'
    Differences between 4.6C and 4.7 EE
    To know the functionality changes you can refer:
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://www.sap.com/solutions/business-suite/erp/pdf/BWP_ERP2006_Upgrade.pdf
    http://service.sap.com/releasenotes
    http://service.sap.com/upgrade
    <b>Kindly Reward points if you found this reply helpful</b>,
    Cheers,
    Chaitanya.

  • Hard drive not recognized​, Lenovo Care button not responding

    I have a Lenovo 3000 N100 laptop.   Type 0768
    When powered up, it will not boot to the operating system.  I just have a white screen with "lenovo" and "To interrupt normal startup, press Lenovo Care button.  It will not respond to the Lenovo Care button.  Pushing F12 changes the message to "Press [F1] for SETUP, Entering boot device selection menu..." but nothing else happens.  Pressing F1 changes the message to "Please Wait...", but again, nothing ever happens. 
    I followed the troubleshooting guide which said to try reseating the hard drive, but nothing changed.
    Is it dead?

    I had the same exact problem as b4blackhad
    "I have a Lenovo 3000 N100 laptop.   Type 0768
     When powered up, it will not boot to the operating system.  I just have a white screen with "lenovo" and "To interrupt normal startup, press Lenovo Care button.  It will not respond to the Lenovo Care button.  Pushing F12 changes the message to "Press [F1] for SETUP, Entering boot device selection menu..." but nothing else happens.  Pressing F1 changes the message to "Please Wait...", but again, nothing  happens. 
    Word for Word same problem I faced.
    I turned on my laptop while continuously pressing the  "PrtSc" button upper right corner and it started up as normal!
    I am not all that PC. Smart, very average. I saw solutions saying to press F1 TO F12 tried them all and nothing worked.
     I saw "Remove hard drive" or "Replace Memory" OMG what am I gonna do now!!! Took a chance with "PrtSc" now I'm sooooooooooooo relieved, thanks Lenovo Community for all the tips that put me in the right direction : )

  • Problems in r/3

    what are the problems in r/3 system?

    Differences between R/3 and ECC
    ECC 6.0 means it is an latest version of SAP ERP package (ERP Central components). it will support for netweaver and BW.
    Chk this links for more details.
    ECC 6.0 clarification
    Replacement for CONVERT_DATE_INPUT in ECC 6.0
    Upgrade from sap 4.7 to ECC 6.0
    Upgradation to ERP 6.0 '2005'
    Differences between 4.6C and 4.7 EE
    To know the functionality changes you can refer:
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://www.sap.com/solutions/business-suite/erp/pdf/BWP_ERP2006_Upgrade.pdf
    http://service.sap.com/releasenotes
    http://service.sap.com/upgrade
    http://www.ryerson.ca/~ppille/sap/Resources/EnterpriseResourcePlanningSAP2.htm
    Regards.
    Edited by: Sravan Prakash.V on Jan 9, 2008 5:31 PM

  • Exposure of BI Content/Generic DataSources in Data Services XI 3.x

    We were told by SAP Business Objects personnel back in May 2009 that SAP DataSources (standard content and generic) would be exposed in SAP Business Objects Data Services XI 3.2. We have recently upgraded Data Services, in a sandbox environment, to XI 3.2 and found that this isn't there.
    After pinging some others that we know at SAP, we're now hearing that this won't be available until SP4. Is this correct? Right now, the unrestricted shipment version is SP0 and we're wondering if it truly is SP4 or SP0 FP4 when then is scheduled to be in unrestricted shipment and when these are scheduled to be released for general customer consumption. Can anyone from SAP monitoring this forum comment?

    Hi Dennis:
    BW uses the business content extractors. In 4.0 Data Services will also use the Business Content extractors.
    This does not mean BW customers have to start using Data Services; SAP is not replacing the connectivity between ECC and BW.  Data Services is added as an option to the landscape and adds the option of accessing other 3rd party sources u2013 one single tool to extract data.
    With Data Services, you have the possibility to consolidate extraction rules into one platform. You can also make sure you can load correct and clean data into target application with the data quality components of Data Services.
    You just need to know the name of the extractor and connect. No ABAP programs are generated, making it easier to deploy and maintain.
    Since you originally posted your question almost two years ago you might be aware of this     but I think people visiting this forum in the future may find very useful information on the blog by Tammy Powlas.
    SAP BusinessObjects Data Services - What is new in 4.0?
    /people/tammy.powlas3/blog/2011/04/18/sap-businessobjects-data-services--what-is-new-in-40
    Regards,
    Francisco Milán.
    Edited by: Francisco Milan on May 24, 2011 4:12 PM

  • $300 charge for the phone i did not ask for!!!

    Hello,
    my name is Irina , phone number xxx-xxx-xxxx.
    I came to a Verizon store (Harbor east branch on Fleet street, Baltimore., MD) two months ago to purchase screen protectors for my iphone. Before i left the assistant asked if there was anything else they could help me with. I said the home button wasn't working properly so they offered to take a look at it.
    After inspecting the iphone the assistant said the issue could not be fixed and offered to order a replacement iphone for no additional charges, since the inspection had not detected water damage.
    I gladly agreed! Received my replacement ipone, mailed the old one back. it was two months ago.
    Now two months later i see a $299 charge for the replacement phone i received in march because  they detected water damage in my old iphone.
    How ridiculous is that? I did not ask for it. If i knew there was a chace of water damage why would i risk a $300 charge replacing my iphone when i could just wait a few months for the iphone 5 free upgrade?! My old phone worked fine, except for the home button being not sensitive.
    And now you're expecting me to pay $300 for what?
    The store has to take responsibility for this. The charge needs to be taken off my account. My whole family and i have been verizon customers for 5 years and i cant believe this is happening now!
    If no action is taken to resolve this problem im going to file a complain to FFC Better Business Bureau.
    I'm hoping to hear from a verizon representative as soon as possible. Customer service on the phone would not help.
    I can not believe how difficult it is to find contact information to get in touch with the right people who will be in position to help.
    Thank you for your coordination,
    Irina
    >Personal info removed<
    Message was edited by: Verizon Moderator

    So, my son's iPhone 4s was having issues with the power button and the home button.  I bought it less than a year ago and have also purchased the insurance.  That said these kept sticking and didn't work, so we took it into the Verizon store where a sales clerk took it to the back and after 15 minutes came back to tell us that his iPhone was broken, and that the problems were common and we could get a new phone under the warranty.  We asked 5 questions along the lines of are you sure?  They said yes.  They looked up our information and NOT ONCE did they advise us to go thru the Insurance option that I pay $9.99 a month for.  This issue would be covered by warranty for SURE!  They gave us a box to ship it back to Verizon in, ordered him a new phone, and wala it came in the mail 3-5 days later.  THEN 10 days AFTER that, I get an email from Verizon telling me that they "disallowed" the warranty claim as the issue was not due to a malfunction of the phone but some kind of damage -- which then they included a picture of (and the picture did NOT even show on the email).  They also wanted me to know that I would be seeing a $299 charge for the replacement phone.  I didn't even PAY $299 for the original phone back when I bought it - there was a $199 promo deal going on.  I called customer service - what a CLUSTER!  They pulled up the email and could SEE the picture I couldn't  - and the notation apparently saying that the phone had suffered WATER DAMAGE.  This PHONE has been treated like GOLD -- it never had ANY Water damage, they are just trying to get out of honoring the Warranty.  WHY would the service tech @ the Verizon store tell us it was a common issue covered under warranty AFTER inspection?  WHY would he tell us that it would be taken care of and to send the phone into Verizon with a new replacement on the way??  The Customer Service person then shared with me "oh - I see you have the Asurion Insurance" - I said YES, I did get that when we bought the phone.  She said we should have SENT the damaged phone thru Insurance for replacement.  OMG!  We RELIED UPON THEIR OWN employee to discern the nature of the issue.  If they had looked up the account and saw I had insurance, why did they not go that route?  What a *****.  So net net - I AM NOT PAYING $299 for that phone - they can send me to a collection agency.  Honestly what a racket and what kind of employees are working there - incompetent.  I will NOT pay for that phone.  The worst case should have been I had to pay the insurance deductible, but we relied on the Verizon store employee to diagnose the problem and provide recommended action - which WAS WRONG!

  • Unable to log with the SID OFR, SID OPR or SID ADM Id

    Hi,
    We are trying to set up a high availability instance of our XIP
    production system. We are planning to run a test to start up the double
    stack with the network cable unplugged on the target machine this
    weekend. However, we are unable to log into the target system with the
    XIPOFR, XIPADM or XIPOPR user ID's.
    We have replicated the IFS and libraries R3XIPDATA, R3XIP400, R3XIPOPT
    along with the userID's, Groups, Etc. The hostname naturally has not
    changed yet.
    When I try to call R3XIP400/R3INLPGM from my personal ID, I get the
    following message -
    "R3XIP400/R3INLPGM: Could not retrieve system environment information"
    Any idea of what I'm missing?
    Thanks,
    Craig

    Hi Thomas and Jim,
    I'm recieved a similar thought from Ronny at OSS. I hadn't really thought it through since we can log into our mimix solution with the ofr ID, but there has been several switches done to replace hardware for our ECC system in the past since we were on 4.6B.
    IMy thought was that if we just replicated the user profiles, /sapmnt/XIP and /usr/sap/XIP and all the libraries, that we could do a rename of the hostname if we needed to switch.
    Thanks,
    Craig

  • Diff between versions

    hi all ,
    can anybody tell me what is diff between sap versions like
    4.7 enterprise , ecc5.0 and ecc6.0.....?
    regards saurabh .

    Hi Saurabh,
    ECC 6.0 means it is an latest version of SAP ERP package (ERP Central components). it will support for netweaver and BW. and some function modules also absolute. then occur statements also there is No longer support in ECC 6.0, so u can use standard table to declare the internal table.
    Chk this links for more details.
    ECC 6.0 clarification
    Replacement for CONVERT_DATE_INPUT in ECC 6.0
    Upgrade from sap 4.7 to ECC 6.0
    Upgradation to ERP 6.0 '2005'
    The Basic and the most Important Difference between the two is.,.
    Object Oriented concepts were not in use before 4.7.,.,and the EE is basically Enterprise Edition.,.,
    Watch this thread and u'l find the links to ur answer.,.
    Differences between 4.6C and 4.7 EE
    Please visit the following links:
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    Thanks,
    Swati

  • Delta differences between SAP R/3 FI and mySAP Financials

    Hi Expert,
    Could you please help me to find out the 5 major delta differences between SAP R/3 FI and my SAP Financails on ECC 6.0.
    Regards
    Yogesh.

    ECC 6.0 means it is an latest version of SAP ERP package (ERP Central components). it will support for netweaver and BW.
    Chk this links for more details.
    ECC 6.0 clarification
    Replacement for CONVERT_DATE_INPUT in ECC 6.0
    Upgrade from sap 4.7 to ECC 6.0
    Upgradation to ERP 6.0 '2005'
    Differences between 4.6C and 4.7 EE
    To know the functionality changes you can refer:
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://www.sap.com/solutions/business-suite/erp/pdf/BWP_ERP2006_Upgrade.pdf
    http://service.sap.com/releasenotes
    http://service.sap.com/upgrade
    Rewards if useful.

  • Same number range in Different system

    Hi Gurus,
    I am working on a scenario where the HR system is in 4.7 and all the other modules are in ECC 6.0. I need to move HR masterdata from 4.7 to 6.0. I am moving the same through standard ALE/idocs.
    The problem is there is already some existing HR data belonging to a different company code in ECC 6.0 and the objects have the same number range and as such if I trigger idocs from 4.7 they will replace existing data in ECC 6.0 which I cannot afford to happen.
    I can change the number range in 6.0 in future but right now what do i do with the existing Org units, postions, Jobs which are clashing?
    TIA
    Adithya

    Actually I need both phones (phone on the CCM & phone on the SIP Trunk) ring at the same time without user interaction. It works fine if you have two phones on the same CSS and partition (for example, Line 1), but how to make the number to ring when phones are in different partitions?

Maybe you are looking for

  • Acrobat 9 compatibility with Office 2010?

    Am I correct in understanding that Acrob at Pro 9.4.5 is not compatible with Office 2010 and that I need to upgrade to AcrobatX to provide the same functionality that existed between Office 2007 and Acrobat 9? I hope this not the case. As a small bus

  • According to my account info, I have 4 authorized computers and 3 associated devices: ar

    According to my account info, I have 4 authorized computers and 3 associated devices: are "authorized computers" and "associated devices" the same thing? I don't think so, but want to be sure.

  • Static text is not appearing from the form designer

    Hi, We are using Adobe Live Cycle designer 6.0 to design print forms. The problem we are facing is, sometimes static text element created on the Body Page of the form does not appear at all(when we open the form designer after creating the Static tex

  • Setting Stop Bits for Serial Port

    I am using the serial communication VI (in examples/instr/smplserl.llb) to send hexidecimal commands through the serial port. I am hooked up to an oscilloscope to make sure that the commands are being sent correctly, and I have found that no matter w

  • ALV Display using Factory Settings

    Hi, I have been using this for quite sometime, CALL METHOD cl_salv_table=>factory to display the output in ALV. Now, I have a requirement to display an internal table which has field 'message' which has a length of 480 characters. The output is trimm