BBP_EXTREQ_Transfer and approval info table help?

hi dudes
Where is report BBP_EXTREQ_Transfer implemented. Does it need to be implemented in ECC backend system or does it need to be implemented in EBP/SUS.
what is table for approval information.
Regards
vinny novice

Hi,
To get approvers for a SC,use the FM BBP_PDH_WFL_APPROVER_GET or BBP_PDH_WFL_APPROVAL_SIMULATE.
With BBP_PDH_WFL_APPROVAL_SIMULATE entering the OBJECT_TYPE and OBJECT_ID you obtain the EV_DB_WORKITEM_ID...
Then with the BBP_BW_APPROVER_COUNT enter the IV_OBJECT_TYPE,
IV_DB_WORKITEM_ID and IV_GUID and then it will return the APPROVAL_ITEM_GUID, NODE_ID, NODE_AGENT and NODE_USER .

Similar Messages

  • I need to add my new ipod to itunes. it will only show the old dead ipod. i want to keep the music, but get rid of the info of the old dead ipod and add my new one and its info. please help.

    Hello,
    I need to add my new ipod to itunes.
    itunes will only show the old, dead ipod that my niece had given me secondhand.
    I just got a new one and want to put in it's serial number, etc. but keep the music.
    Please help, I've been going around in circles online for hours. I don't want to merely change the name of the old ipod, which is the only info I can find.
    Thanks.

    "In addition, I would like to get all of the music files that are already on my ipod on to my new computer"
    Open iTunes and select edit/preferences/advanced/general. Put a check mark in the box marked "copy files to iTunes music folder when adding to library" and also "keep iTunes music folder organized", then click 'ok'.
    Connect the iPod whilst holding down the shift/ctrl keys to prevent any auto sync, and if you see the dialogue window asking if you want to sync to this itunes library, click 'no'.
    Then go to file/add folder, open 'my computer', select your iPod and click 'ok'.
    The music files should transfer to your iTunes.
    However it appears that no playlists or any other info such as ratings/last played etc will transfer.
    If this is important to you, you may want to use other options.
    There's Yamipod. This is a free program that transfers music and playlists etc from iPod to iTunes.
    Once the music from your iPod is in your new iTunes library, you can go about adding new music as you did previously.

  • SAP Draft table and Approval stages table

    Dear All,
    We need to build a report to show each draft on which stage. I know Draft table is ODRF and the approval table is OWDD.
    How can we link this 2 tables? Tried ODRF.DocEntry and OWDD.WDDCode and it cannot work properly if we deleted some drafts from SAP (If not, we can use  ODRF.DocEntry = OWDD.WDDCode)
    Thanks in advance.
    Regards,
    Yuka

    Hi Gordon, they need to setup an alert to send out email. The email is a user query (report): what documents are waiting for this person to approve. The report needs
    SAP Doc# (draft doc#), posting date, doc type, stages, approve template, etc.
    If there is no direct link, is there anyway we can link them? In OWDD table, we can see internal key (docentry) and if I click the orange arrow, it gives me the request approve screen. Then if I click document number, it open the draft document for me.
    Regards,
    Yuka

  • TS3899 I am unable to setup my valornet email on my iphone5s, looked all over the web and no info to help. do you know how to set it up

    how do you set up valornet email on a iphone

    Hi there Mreel,
    You may find the information in the article below helpful.
    iOS: Adding an email account
    http://support.apple.com/kb/ht4810
    -Griff W. 

  • Table to track book and payment info-LSO

    Hi Folks,
    I am trying to find out book and payment info related table while booking in LSO, we have radio button against this book and payment information .
    We can capture the booking and follow up details in -HRP1001 and HRPAD25 but unable to find out which button selected while booking.
    Please share your thoughts on this.
    Thanks

    Hi Kumar,
    That information goes into the 'Priority' field of infotype 1001. The field name is HRP1001-PRIOX. You will have a record in both directions in HRP1001 i.e. for the employee and the course as well. You will see that the radiobutton you chose while booking the participant, gets mapped to the value of one of the switches(given below) in T77S0. As a result, HRP1001-PRIOX will have the corresponding value that has been set for the applicable(your selection of the radibutton) switch-
    SEMIN-MAXMU(Maximum priority for essential booking)
    SEMIN-NPRIO(Default priority for normal booking)
    SEMIN-MINWL(Minimum priority for waiting-list booking)
    The system I use I get the values: 50-Normal, 09-Essential, 90-Wailisted. Values in your system may be different.
    Hope this helps.
    Thanks
    Amit.

  • Populate and display internal table results using search help exit...

    I have copied F4IF_SHLP_EXIT_EXAMPLE and made changes. I want this search help exit to populate and display contents related to 'FIELD1' when the user enters a specific value for it in the search help screen, meaning when the user restricts the search by that value.  For field2, field3, field4, field5, field6, field7, and field8 I am using a custom view.
    Following is the code:
    TYPES:  BEGIN OF t_search,
                   field2 TYPE field2,
                   field3 TYPE field3,
                   field4 TYPE field4,
                   field5 TYPE field5,
                   field6 TYPE field6,
                   field7 TYPE field7,
                   field8 TYPE field8,
                   field1 TYPE field1,
                END OF t_search.
      DATA: it_itab TYPE TABLE OF t_search,
            wa TYPE t_search,
         wa_selopt TYPE ddshselopt,
            wa_fielddescr TYPE dfies.
    ranges: r_field1 for std_table1-field1
    STEP SELECT    (Select values)
        FREE: r_field1.
    **Get the value entered for FIELD1 in search help
        LOOP AT shlp-selopt INTO wa_selopt.
          CASE wa_selopt-shlpfield.
            WHEN 'FIELD1'.
              r_field1-sign = wa_selopt-sign.
              r_field1-option = wa_selopt-option.
              r_field1-low = wa_selopt-low.
              r_field1-high = wa_selopt-high.
              APPEND r_field1.
              CLEAR: r_field1.
          ENDCASE.
        ENDLOOP.
    **Select 'ID' and 'FIELD1' from table into lt_itab
        SELECT id field1
              INTO TABLE lt_itab
                FROM std_table1
                  WHERE field1 IN r_field1.
        IF sy-subrc = 0.
    **Now, based on the particular IDs from lt_itab, I need to select other values
    from other tables which also have 'ID' as the key.
           SELECT std_table2~field2
                std_table2~field3
                std_table3~field4
                std_table3~field5
                std_table3~field6
                std_table4~field7
                std_table4~field8
                std_table1~field1
              INTO CORRESPONDING FIELDS OF TABLE it_itab
              FROM std_table2
                         INNER JOIN std_table3 ON
                                std_table3mandt = std_table2mandt AND
                                std_table3id = std_table2id
                         INNER JOIN std_table4 ON
                                std_table4mandt = std_table2mandt AND
                                std_table4id = std_table2id
                         INNER JOIN std_table1 ON
                                std_table1mandt = std_table2mandt AND                                           std_table1id = std_table2id
              WHERE
                    std_table1~field1 IN r_field1.
    'id' is common in all the std_tables --> std_table1, std_table2, std_table3, std_table4.
    STEP DISP     (Display values)
    **Then I need to gather all the results in my internal table it_itab and display
    in search help results for the value of FIELD1 entered by the user in the search help.
        CALL FUNCTION 'F4UT_PARAMETER_RESULTS_PUT'
          EXPORTING
            parameter   = 'FIELD1'
            fieldname   = 'FIELD1'                          
          TABLES
            shlp_tab    = shlp_tab                                   
            record_tab  = record_tab
            source_tab  = it_itab
          CHANGING
            shlp        = shlp
            callcontrol = callcontrol.
    I am not getting all the data in my internal table and wanted to know if there is anyting wrong in my select statement.
    Any guidance will be appreciated and awarded appropriate points.
    Thanks.

    the webdynpro fieldname and the search help input parameter name were made same.

  • My requirement is to update 3 valuesets daily based on data coming to my staging table. What is the API used for this and how to map any API to our staging table? I am totally new to oracle and apps. Please help. Thanks!

    My requirement is to update 3 valuesets daily based on data coming to my staging table. What is the API used for this and how to map any API to our staging table? I am totally new to oracle and apps. Please help. Thanks!

    Hi,
    You could use FND_FLEX_LOADER_APIS.UP_VALUE_SET_VALUE to upload them from staging table (I suppose you mean value set values...).
    You can find a sample scripts if you google around.
    What do you mean "how to map any API to our staging table" ?
    You should do at least the following mapping (which column(s) in the staging table will provide these information):
    - the 3 value sets name which you're going to update/upload (I suppose these are existing value sets or which have been already created)
    - the value set values and  description
    Try to start with something and if there is any issues the community could then help... but for the time being with the description of the problem you have provided, that's the best I can do...

  • Review your billing info and approve it

    I recently changed my credit card. I updated my account with the new info. iTunes works fine, but when I order prints from iPhoto, I get a error "Your account information has changed. Please Review your billing info and approve it. I click "OK", go to Account Info, sign it, approve all three categories. However, I still get the error when I try to order prints. Any ideas? TY.

    For the record, an email response from Apple gave these instructions, which did work:
    "I understand you are having some difficulties with placing your print order and you are receiving a message saying that your account information has changed. I apologize for any frustration this may have caused you.
    I would like to recommend taking the following steps to troubleshoot the issue:
    1) Please go to store.apple.com/.
    2) Select "Account" at the top right hand corner of the page.
    3) Click "Login", and enter in your Apple ID and password.
    4) Click on "Change account information".
    5) Enter your password at the top in both the "Password (at least 6 characters)" and the "Retype your password" fields.
    6) Make sure the primary and shipping address information is correct. If not, make changes.
    7) Scroll down to the bottom of the screen to the "Method of Payment" section.
    8) Remove your credit card number, then click on "Continue".
    9) Open iPhoto and select "Buy Book".
    10) Click on "Account Info" (or "Set Up Account" if "Account Info" is greyed out)
    11) Enter in the same Apple ID and password you used to sign in to the Apple Store.
    12) You will be prompted to go through three different steps to enter in your billing information.
    13) Submit your order."

  • HT4972 The computer that I normally sync my iphone with has crashed and all info was lost.... Im trying to sync to my new laptop... how do I do this without losing iphone purchases, apps etc???? Help??

    The computer that I normally sync my iphone with has crashed and all info lost.... I'm trying to sync and update with my new laptop but I am getting an error meassage that if I continue all purchases, apps etc will be deleted..... How to I do this without losing all my stuff??? Help I have no clue about technology!!!!!

    The official way to do it is to restore the iTunes library that was on your old computer to your new computer using the backup of your whole system you regularly update.  Then you are syncing the phone with the same old library.
    Some of the information below is summarized by turingtest2 in the post at https://discussions.apple.com/message/18842615
    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was designed for you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchased content.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only media purchased from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software. Examples (check the web for others; this is not an exhaustive listing, nor do I have any idea if they are any good):
    - Senuti - http://www.fadingred.com/senuti/
    - Phoneview - http://www.ecamm.com/mac/phoneview/
    - MusicRescue - http://www.kennettnet.co.uk/products/musicrescue/ - Mac & Windows
    - Sharepod (free) - http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2 - Windows
    - Snowfox/iMedia - http://www.mac-videoconverter.com/imedia-transfer-mac.html - Mac & PC
    - iexplorer (free) - http://www.macroplant.com/iexplorer/ - Mac&PC
    - Yamipod (free) - http://www.yamipod.com/main/modules/downloads/ - PC, Linux, Mac [Still updated for use on newer devices? No edits to site since 2010.]
    - 2010 Post by Zevoneer: iPod media recovery options - https://discussions.apple.com/message/11624224 - this is an older post and many of the links are also for old posts, so bear this in mind when reading them.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive - https://discussions.apple.com/docs/DOC-3141 - dates from 2008 and some outdated information now.
    Copying Content from your iPod to your Computer - The Definitive Guide - http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/ - Information about use in disk mode pertains only to older model iPods.
    Get Your Music Off of Your iPod - http://howto.wired.com/wiki/Get_Your_Music_Off_of_Your_iPod - I am not sure but this may only work with some models and not newer Touch, iPhone, or iPad.
    Additional information here https://discussions.apple.com/message/18324797

  • I am running Lion 10.7.2 and I have an external drive hooked to my time machine. I can't rename folders and when trying, I get an error code 8076. The checkbox "ignore permissions for this device" does not show on volume info. Help please???

    I am running Lion 10.7.2 and I have an external drive hooked to my time machine. I can't rename folders and when trying, I get an error code 8076. The checkbox "ignore permissions for this device" does not show on volume info. Help please???

    The TIme Machine volume does not have that checkbox.
    I think the issue is with your Finder...
    Go to Finder "Go" menu hold the option key and choose Library. Then go to Preferences trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again.
    (You will have to reset a few finder prefs the way you like them.)

  • Table and Datasources info

    Hello All,
    Is there any table or function module where we can find infomation about the datasources and related underlaying tables/views?
    for example in RSO2 i have created a Datasource ZDS using a table ZTAB, now i want to know all the datasources built on ZTAB
    Regards,
    Ravi
    Message was edited by:
            Ravi Pasumarty

    You can get this info in table ROOSOURCE . In the EXTRACTOR field just give the name say 'ZTAB' .
    Regards.
    Sanjay

  • TS1702 On my Page Tool Bar I don't get the icons for info and insert. Please help

    When I open my Pages Program I don't get the icons for 'info' and 'insert'. Please help

    I'm having the exact same issue.  Any help is appreciated!
    Thanks!

  • My email only shows the "to" and "from" info but not the content of the email. Please help. Thanks

    My email only shows the "to" and "from" info. There is no information at all in the body of my email messages. Please help. Thanks.

    Close the mail app and reboot the iPad.
    Tap the home button once. Then tap the home button twice and the recents tray will appear at the bottom of the screen. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the mail icon. Tap the home button twice.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • New iTunes on Mac doesn't allow me anymore to select all songs and 'Get info' to adjust the volume, like the old one. It says"your selection contains more than one type of media". They are all songs! Help please!

    New iTunes on Mac doesn't allow me anymore to select all songs and 'Get info' to adjust the volume, like the old one. It says"your selection contains more than one type of media". They are all songs! Help please!

    Raya Alfa wrote:
    ...there are some that are mp3 and it will be extremely hard to pick them from the lot.
    Not true. Select "Kind" as a sort category by right clicking the headings
    Then click to sort by Kind
    If your Import Settings are for Apple Lossless, AIFF, AAC or whatever the majority of your files are, convert MP3s to that file type.
    I've presently got 17,000+ files in my library, and they're ALL MP3 or M4B(Audiobooks). If they weren't when I got them, I converted them.  Saves a LOT of hassels with just this type of situation. Besides I have two non Apple MP3 players that WON'T work with other file types besides MP3 so, EVERYTHING I have has to be MP3.

  • I was sold a refurbished Iphone 4 with 8 days talk time on it without being told, and Apple said it doesn't approve of that, help! What should I do? It was purchased at Wireless Wave

    I purchased a "new" iphone 4 after my first one was dropped in some water. I paid around $580. 4 days later, my wet iphone started working again, so I was pretty happy I could return the new one. When I went to the wireless wave location, they said there had to be less than thirty minutes talk time for it to be returned; no problem! Big problem! I had only owned the phone for 6 days, but there was 8 DAYS of TALK TIME on the phone in total! It wasn't even mathematically possible! The manager was more worried about whether or not I had actually used it for the 30 minutes. He couldn't have cared less that I had obviously paid full price for someone elses discarded cell phone without knowing it! I need some advice on how to handle this! I called an Apple location and they said they do NOT condone selling any refurbished Iphone products and were not aware of this. I sent an email to apple's legal email, but honestly I am just so frusturated. I tried contacting wireless wave, but obviously they don't want to talk to me. I was given no explanation at the time of return as to why there would be 8 days of talk time on a "brand new" iphone 4. They were actually trying to call my provider and make sure I hadn't used it for more than the allotted time. I was given a refund after just about losing my cool on the poor guy working there. He was in fact very nice and very understanding, but could offer no help besides giving me a refund.  My husband and I have purchased many phones from the certain wireless wave location, and I can't help but wonder how many other used products we have purchased!

    It's not an Apple issue and Apple has nothing to do with it.
    The only way to buy an iPhone officially refurbished by Apple is to buy it from an Apple store or via Apple's website.
    Refurbished iPhones sold via other retailers are not refurbished by Apple.
    Sounds like Wireless Wave did all they could... they refunded your money.
    Your only issue is with them.  Stop getting all worked up over it.

Maybe you are looking for

  • Printer selection to print Z report

    I have one classical report, At selection screen I want to have two Radio Button. Based on redia Button selection report should print to A3 or A4 page. What printer setting I need to do, what coding need to be done. Please reply

  • ORA-20001: PAY_7599_SYS_SUP_DT_OUTDATE when trying to create a new employee

    hello. I hope someone can help. My script below takes record(s) from a temporary table and loads them into ORACLE Financials via several APIs but on initial testing (using 1 NEW Record) it fails with the error message: Employee No: 00020206 ORACLE er

  • How to prolong hard drive life on a MBP i7? + Some User tips

    As well as the must-do's and must-not's. I know it it is bad to have the macbook pro on the laps though I would like to know why..

  • Can JMS be used with J2SE ?

    I wish to use message queue in non J2EE aplication. Is this possible ?

  • Regarding Configuration Set Up

    Hi Friends I need Configuaration Details for Transaction : PECM_PRINT_CRS. I need for this tcode how & where the Smart form : HR_ECM_CRS  and Driver Program : RHECM_PRINT_CRS are linked for the above tcode. Regards, Sree