DTW -How to use a Manual Series in PO

Hi Experts
I want to upload open purchase orders through DTW It is working fine if I choose a series. But In my case PO numbers are not sequence so I want to choose manual series in document numbering. For that I choose  -1 which it show when I select manual series. But when I import using DTW it gives message 'Record matching is not found'.  Please give your suggestions. What can be done If I want to enter Docnum as I want.
Thanks
Jitender

Jitender,
It is absolutely possible. The key is to set the HandWritten column to tYES and depending on the SAP version add the manual document number either in the DocNum or ManualNumber column (ManualNumber for the earlier versions and DocNum for newer ones, can't remember which is which so please try).
I hope this helps.
Regards,
Nat

Similar Messages

  • How to use the manually entered Hours/Days in the Duration field for BG_ABSENCE_DURATION

    Hi All,
    How to use the manually entered Hours/Days in the Duration field for BG_ABSENCE_DURATION fast formula?
    Requirement is to restrict employees for applying for leave more than the accrued balance. In SSHR, apply leave functionality, the employee enters the start date, end date and duration manually. The entered duration must be used in the fast formula to check against available balance.
    In the BG_ABSENCE_DURATION FF, I have a function to calculate the net accrual balance as on the calculation date.
    I want to add the logic as - If to_number(Duration) /*[manually entered value]*/ > net accrual balance then
    Duration = 'FAILED'
    invalid_msg = 'Error'
    return duration, invalid_msg
    Thanks!

    Hi,
    We have a standard functionality to override the duration calculation and you don't need to add a validation for the same. Please set the value of profile option HR: Absence Duration Auto Overwrite to Yes
    When you do this user will not have to enter the duration value manually. It will get auto calculated based on the duration calculation in BG_ABSENCE_DURATION when you click on the next button.
    For not allowing negative leaves to be applied, If you are on R12 then, this is a standard functionality and you need to set profile option HR Allow Absence Negative Balance to No
    If you are on 11i then refer Note: 268171.1: How Do You Stop Accrual Plans from Going Negative?
    Try and let me know in case you need further help.
    Thanks,
    Sanjay

  • How to use dynamic time series in formula

    I have Time dimension with active Dynamic Time Series for Y-T-D.
    I'd like to use it in member formula - e.g. IF (@ISMBR("Y-T-D(Aug)")) - but this doesn't work as I get error message Unknown variable or member name.
    Any idea how to work with dynamic time series members in formula?
    Still using Essbase 6.5 X-(.

    As Glenn mentioned, I also don't believe you can reference a DTS member in a formula, you would have to calc the YTD. Take a look at the @PTD function to calc Period to date numbers, I believe this function was available in v6.
    Having said that, we're assuming you want to calc a ptd number, but your example was based on an IF @ISMBR(). So the question becomes what are you trying to do? Given what I assume your time dim looks like, what would be the difference between @ISMBR("Y-T-D(Aug)") and @ISMBR("Aug")

  • How to use Dynamic Time Series YTD on a calc script / member formula?

    Hi,
    I activated Dynamic Time Series on Essbase and would like to use the YTD function of a measure for a certain month.
    I tried to use
    MeasureName->YTD(Dec)
    MeasureName->Y-T-D(Dec)
    But couldn't use it to syntax problems. How can I call this function instead of using @Accum or @SumRange?
    Thank you
    Edited by: Icebergue on 10/Ago/2011 11:07

    I could be wrong, but I don't think you can use DTS members in calc scripts or member formulas. As you probably know, they can be used in Financial Reports, SmartView and Excel Add-in.
    You can create an alternate hierarchy in your Time dimension though:
    Jan (YTD): Jan ->Jan is being a shared member
    Feb (YTD): Feb+Jan (YTD) ->Both Feb and Jan (YTD) are being a shared members
    Dec (YTD): Dec+Nov (YTD) ->Both Dec and Nov (YTD) are being a shared members
    Cheers,
    Mehmet

  • How to Use two E-Series cards in Labview

    I have two 6024E multifunction cards. I have to program a dual station machine - that work independently to each other. I am trying to generate 0-10 volts on the two cards independently at the same time, but when I try this, one of the cards generates the 0-10 ramp and only when this is complete the second ramp starts. I know that I could not accomplish the above with one card, but with two it should work ??
    Thanks

    The two cards should work independently from each other. It may be something in the way your program talks to the cards. Can you post a simplified VI showing how your program works? It is difficult to diagnose the problem without knowing how you are trying to do things. Also mention the version of LabVIEW and platform.
    Lynn

  • How to use BAPI  in series?

    Dear experts:
    when i use ['BAPI_BUS2054_CREATE_MULTI'] to create the WBS, the message type occurs s, means the wbs has been created sucessfully. but when i use [BAPI_BUS2054_SET_STATUS] to get the status, it tell me that wbs is not exist, anyone can tell me why.thanks.
          CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
            CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
              EXPORTING
                i_project_definition = l_project
              TABLES
                it_wbs_element       = lt_wbs_table
                et_return            = lt_message
                extensionin          = lt_extensionin
                extensionout         = lt_extensionout.
         ENDTRY.
          LOOP AT lt_message WHERE type = 'E'
                                OR type = 'I'.
            gt_log-messagetype = 'E'.
            gt_log-zmenum = c_create_menum_error.
            gt_log-zdate = sy-datum.
            gt_log-ztime = sy-uzeit.
            gt_log-zmessage = lt_message-message.
            APPEND gt_log.
          ENDLOOP.
          IF sy-subrc = 0.
            CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          ELSE.
            gt_log-messagetype = 'S'.
            gt_log-zmenum = c_create_menum_ok.
            gt_log-zdate = sy-datum.
            gt_log-ztime = sy-uzeit.
            gt_log-zmessage = 'WBS created'.
            APPEND gt_log.
            CALL FUNCTION 'BAPI_PS_PRECOMMIT'.
          CALL FUNCTION 'BAPI_PS_INITIALIZATION'.
          CALL FUNCTION 'BAPI_BUS2054_SET_STATUS'
    IMPORTING
      RETURN                    =
         TABLES
           i_wbs_system_status       = lt_system_satus
            i_wbs_user_status         = lt_user_satus
           e_result                  = lt_message_status.
          LOOP AT lt_message_status WHERE message_type = 'E'
                                       OR message_type = 'I'.
            gt_log-messagetype = 'E'.
            gt_log-zmenum = c_create_menum_error.
            gt_log-zdate = sy-datum.
            gt_log-ztime = sy-uzeit.
            gt_log-zmessage = lt_message_status-message_text.
            APPEND gt_log.
          ENDLOOP.
          IF sy-subrc = 0.
            CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          ELSE.
            gt_log-messagetype = 'S'.
            gt_log-zmenum = c_create_menum_ok.
            gt_log-zdate = sy-datum.
            gt_log-ztime = sy-uzeit.
            gt_log-zmessage = 'WBS updated status'
            APPEND gt_log.
            CALL FUNCTION 'BAPI_PS_PRECOMMIT'.
           CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
          ENDIF.
        ENDIF.
    Monson

    Hi experts,
    I want to create a WBS element using the BAPI's  BAPI_BUS2054_CREATE_MULTI .
    I did this sequence of test  :
    BAPI_PS_INITIALIZATION
    BAPI_BUS2054_CREATE_MULTI
    And I have this return
    S    CNIF_PI              004     Individual check for creating the object WBS Element U008-F033-001 required    
    CAn anyone tell me what to do in order to resolve this problem ( calling a commit after this sequence leads to 'DUMP' bacause no precommit is called before )
    Thanks in advance

  • Restrict users from using Manual series

    Hi SAP,
    Is there a way to restrict users from using the Manual series?
    Thanks,
    Janice

    Hi Rahul,
    Ok, i have seen already the authorization for document manual numbering and it is available only for 8.8 versions and not on 2007 version of SAP.
    Anyway, when im doing the testing i found out that for banking transactions like incoming, user can still use the manual series even if he has no authorization for manual document numbering.
    Another concern from our client was  the use of manual series only, is it also possible in SAP? I tried to give user authorization in the manual document numbering and no authorization to series group no but user cannot already open the transaction window. Let us know if their inquiry is possible so i could inform them that only manual series can be restricted.
    Thanks for your help.
    Regards,
    Janice

  • DTW Upload A/R Transactions for Manual Seris

    Hello Guys,
            Is it possible to upload the A/r transactions with Series : Manual with the Manual Numbering through DTW??
            In My Scenario, I am using manual numbering for my Invoices and now i want to upload the Invoices through the DTW but for which system is giving an error while uploading with Series=-1 in the csv. file
    Please help me out in this..
    Regards,
    Ranjit

    HI Gordon,
    The other series the Uploading is fine. The Only issue is with Manual Series.
    Thnx for for your prompt reply
    Regards,
    Ranjit

  • How can I encrypt my data links between switch uplink ports ? I'm unable to use "cts Manual" command in C3560X switch.suggest me

    How can I encrypt my data uplinks between switch trunk ports ? I'm unable to use "cts Manual" command in C3560X switch.suggest me as I want to encrypt my switch-to-switch link with Cisco TrustSec.

    Hi 
    Login to switch & go to interface..
    There you can give tags.. (ISL & DONT1Q)
    Command switch-port mode trunk
    Switch-port trunk encapsulation ssl or dot1Q

  • How to use series in business graphic ui element

    Hi All,
    How to use the series in business graphic ui element? my requirement is i have to display the sales in selected months in graph(these values dont know at design time).
    Regards
    Srikanth

    Hi,
    Use the dynamic node  and bind this node to the BG source node and series nodes.
    Create a node and bind this node to the BG source and the value that you want to shown in series has to be bound to that attribute of the node and similarly with the category.
    Check out for the dynamic node creation and bind this node to the BG.
    Regards,
    Lekha.

  • How To Use Dynamic Menus To Place Manually Created Jspx Pages On Sub-Level

    JHeadstarters,
    Back on the JHS trail and could use some help.
    I started using dynamic menus (see section 9.2 JHS Dev Guide) to setup a custom menu structure and found it could not be easier however I need to solve 2 issues;
    1. How to get more than 2 levels deep on the menus (parent, child, grand-child, etc.)? In the menu structure setup I have created a menu that is 3-levels deep however when it runs you only get 2 levels. Perhaps a template needs to be changed.
    2. How can I assign manually created jspx pages to sub-level menus?
    Scenerio;
    I have JHS generated pages *** AND *** manually created pages. Using dynamic menus to place the JHS genned pages works fine, the problem is how to do it with manually created pages.
    Using Dynamic Menu's I created a top-level menu tab named "warp-core", below it on the next level I have two sub-menus, one named "search" and one named "form" for displaying the results of the search and modifying the rows (don't ask me why they are seperate).
    The problem is how to assign the manually created jspx pages to those sub-menus? Or am I going abouth this the wrong way? Perhaps I could use JHS to generate seperate search and display pages.
    Thanks!
    BG...

    Bill,
    1. Yes, you need to decide yourself how and where you want to render this third level menu. You then create a region file similar to dynamicMenu2Tabs.jspx, just replace the references to level2MenuItems with level3MenuItems. Then create a custom template to call this menu 3 region file.
    For example, you could create a bulleted vertical list for level 3 as illustrated in section 9.1.3 of the Developers Guide (that example is with static menu, but you can use similar technique for dynamic menu)
    2. Instead of a group name, you can specify a JSF Navigation action in the menu administration application. So, you create a global navigation case to your custom page, and you enter this navigation case id in the menu admin app.
    Note that if you want to generate separate search pages, you can do so by setting the advanced search property to "separatePage".
    Steven Davelaar,
    JHeadstart Team.

  • How can I use a manually created help file

    Is it possible to use a manually crated help file *.hlp (microsoft help file) in a oracle forms application.
    I want to open the help file from in my help menu. How can I do that??
    Joury

    Hi,
    Have you tried WIN_API_SHELL.winhelp and WIN_API_SHELL.winhelpex?
    Both are available in D2KWUtil.PLL, usually included in Forms demos.
    Pedro
    null

  • How can you build time series measures in OBIEE without using TODATE AGO fu

    How can you build time series measures in OBIEE without using TODATE and AGO function?
    Please provide steps to build time series
    measures in OBIEE without using TODATE and
    AGO function. Dashboard results not storing
    in cache when using TODATE and AGO functions.
    eventhough its cached users queries not
    hitting cache because queries doesn't match
    exact date time when using TODATE and AGO
    functions. so I want to build queries using
    sysdate and some simple calculations. Please
    send your inputs/ideas for my questions..
    Thanks in Advance

    This can be using Msum function in answers. Use the following formula, here dollars is my metric. Change the formula based on your metric.
    Msum("Sales Measures".Dollars ,2) - "Sales Measures".Dollars
    the report will be cached and better performed compared with time series. check ti
    - Madan Thota

  • How to use DTW

    hi experts,
    can any body help me by giving any PDF or Elearning document , how to use DTw for importing data ? how to use templates ?
    can i get any document for how to use it ?

    Hi
    To find out more about DTW, please go to the following link:
    http://service.sap.com/smb/sbo/documentation
    Select SAP Business One Add-Ons 2007 > Data Transfer Workbench
    There is plenty of documentation here, and a very useful eLearning session called " Data Transfer Workbench - DTW Part 1 and Part 2"
    Regards,
    Vijay Kumar
    SAP Business One Forums Team

  • How I download a MP4 series of videolectures (that the seller has stored in Amazon S3 and has sent to my iPad email address--which is different from the one I use from the MacBookPro) from my iPad to my MacBookPro-.

    How I download a MP4 series of videolectures (that the seller has stored in Amazon S3 and has sent to my iPad email address--which is different from the one I use from the MacBookPro) from my iPad to my MacBookPro (so that I can the save them in iTunes and then synchronize some of the videolectures to the iPad?)

    To set it up as POP you need to delete the account, reboot the phone by holding the HOME and SLEEP buttons at the same time until an Apple logo appears (about 10 seconds), then add it back following these instructions: Forcing creation of a POP or IMAP email account
    I understand that you have used the same account for many years, but the technology is also changing constantly. Years ago the standard was POP (Post Office Protocol), which was designed at a time when it was inconceivable that anyone would access their email from more than one device. When people started using multiple devices, for the most part they wanted to see changes on one device mirrored on another. A new standard, IMAP (Internet Mail Access Protocol) was developed. With iMAP the master copy of all messages resides on a server, and multiple devices are kept in sync with the server. So if you delete a message from one device it is removed from the server, and then removed from all other devices when they next sync. This is the same way Microsoft Exchange works. Other benefits of IMAP include the ability to have multiple mail folders that are kept in sync across devices. In your case you could use this to create a separate folder for each family member, so they could move messages to their own folder and not clutter up the shared Inbox. Most computer mail readers can even automatically sort incoming mail into folders based on the contents of the message.
    IMAP is considered a "higher level" standard than POP. When you create a mail account iOS devices query the server and ask what it supports; if it says it supports IMAP then the account is automatically configured for IMAP. So if you really want POP you must fool it, as described in the link above. In my experience Android devices default to the highest level protocol also, and I suspect newer Blackberries do (although it has been 15 years since I used a BB).

Maybe you are looking for

  • Oracle 11.2.0.3 - Lob space usage

    Hi Everyone, I would like some advise about how to interrupt LOB space usage given the following statistics. And would appreciate any feedback on whether my understanding of the following is correct: We have a table with BLOB column which is located

  • Thin blue line

    my imac recently developed a thin blue vertical line in the screen, why and how can i fix it?

  • G4 Wireless Problem

    Shortly after it was new, I installed a wireless card in my 667 MHz G4 Powerbook. It has worked with my Airport Extreme Mushroom, but never well in "remote" corners of the house. The Touch, iMac, Graphite iMac and other more recent Mac laptops connec

  • Field Selection Keys related to Purchase Order

    Hi,        I have a query regarding Field Selection Key. When we go to Field Selection Screen connected to Purchase Order, we can find so many Field Selection Keys viz., $$$$, $$$2, AKTH, ME21N, etc. How to judge which is to be used when? I like to k

  • WD Component performance

    Hi All, We have created an assistance class methods which connects to database through various function modules to avoid select statements. I knew that we can directly write the select statements inside class methods. Now i wanted to know is there an