Problem during creating delivary and PGI

Hello Friends,
I am facing a problem in creating the Delivary document.
The error is "date in item 000010 of document does not exist"
Please help me out.
With Regards
Sharan

Are you sure you posted in the correct forum? if it's related enterprise services and you're having problem with one of them, please clarify. thanks.

Similar Messages

  • Problem in Creating Delivery  and PGI

    Hi Guru's
           My sales process is  Sales Order-- Delivery( PGI is not done here)- Billing-- (PGI is done after doing Invoicing)
          (1)  My user created one delivery for a quantity of ( say 100 quantity) and forgot to pick and assign batch in the delivery and created an invoice for the delivery. (Usually the system will ensure the delivery quantity and picked quantity is same when doing PGI and since we are not doing PGI before Billing the system allowed to create an invoice)
          While doing PGI the system is not considering this quantity because quantity is assigned and an excess quantity is showing in Stock Overview.how to correct this. and my situation is i cant cancel the invoice and assing the batch and do PGI.
        how to correct this quantity difference ?
      (2) Recently when doing Physical inventory they adjusted the quantity in the system by decreasing the quantity by said 100 quantity but there is a problem in doing new delivery( short of 100 quantity) because the already invoiced delivery is showing a requirement of 100 quantity. In order to do delivery they added that  100 quantity with same batch number.
             I want a solution for this please help me
    regards,
    Ravi Kiran
          I

    Hi Ravi kiran
    As your process is different so you need to go with the new sub-routine and you need to assign that   sub-routine in VTFL .then only the problem can be solved. . But if you are doing order related billing then in VTFA you need to maintain the item category . and also check the feild Overdelivery in 0VLP Then you can change the quantity in the delivery level
    Regards
    Srinath

  • PROBLEM DURING CREATING AN AR INVOICE

    Dear Sir,
    I am having a problem during creating the AR invoice from the delivery. I am getting the message: (2) Message Sales Employee is Must. I am unable to create AR invoice for this reason. But when i am going to create AR invoice for the same delivery in different numbering series it is saying that Error in Numbering file, restorer it. I am really unable to cope up this problem. Please help me to resolve it asap.
    Regards
    Anupam

    Hi,
    Do you have any addtional code in the SP_TransactionNotification? If yes, try removing the code and then try to add the AR Invoice.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • While creating sales order I am getting  Sanctioned party list blocked  but I am able to create delivery, and PGI

    Dear GTS Experts,
    While creating sales order I am getting  Sanctioned party list blocked, but I am able to create delivery, and PGI.
    Where Is the wrong ?
    Thanks a lot
    Venu gopal

    Dear Venu
    Based on your message shown in the system, can you check the field in Control Settings for System Reaction in the Document type settings via Application Levels in the feeder system. This Field '' System Response in Feeder system if SAP GTS fails'' should be maintained with ''A''. I think in your case it could be 'Blank'' Thats why the system is allowing you to create the subsequent documents accordingly.
    Please let me know if any further inputs required.

  • Problem during creating delivery from PO in intra-co stock transport

    Hi All,
    during the intra co stock transport process between 2 company codes after the PO is saved as the 1st step of the process,im trying to create a delivery wrt the PO in the transaction code VL10B.
    this is giving the following errors
    1.documet is incomplete:u cannot save the delivery
    2.serial number reqt.not satisfied (V50UC-SERIAL),error group:L1
    immediate help on this issues will be appreciable.
    thanx
    vishal degaonkar

    to add more information bout the problem.....
    we've assigned serial no's during delivery creation which is done manually.as the delivery creation process in VL10B is in the background it is not picking up the serial no's and hence the incompletion error.
    is there any other method to create deliveries from purchase orders???

  • Problem in creating EJB and WebService using complex class structure

    Hi All,
    My requirement is like :
    I have a class with very complex structure.
    I have also used external .jars.
    Now when I have created an EJB with a method's return parameter as above class.
    But when I am creating a Webservice, it doesnot allow me to select this method.
    Not able to configure why ?
    Please Help.
    Thanks.

    Hi,
    I have gone through your code and the problem is that when you create jar it takes a complete path address (which is called using getAbsolutePath ) (when you extract you see the path; C:\..\...\..\ )
    You need to truncate this complete path and take only the path address where your files are stored and the problem must be solved.

  • Problem in creating function and it is too much urgent!!

    I am a new to Oracle function,
    And i am facing the following problem,plz make reply.......
    CREATE OR REPLACE FUNCTION
    get_working_period(JOINING_DATE IN DATE,EMPLOYEE_ID IN VARCHAR2)
    RETURN date is
    STATUS date;
    ID varchar2(10);
    PSTATUS DATE;
    BEGIN
    Select JOINING_DATE
    into STATUS
    from EMPLOYEE
    where ID=EMPLOYEE_ID;
    IF STATUS<SYSDATE
    THEN
    PSTATUS:=(SYSDATE-STATUS);[Problem is here,is it correct or any other way,plz reply]     
    END IF;     
    RETURN PSTATUS;
    END get_working_period;
    Regards --
    Mamun

    [Problem is here,is it correct or any other way,plz reply] One thing I hate is looking at other people's code and trying to understand what they mean. Particularly when its author is "a new to Oracle function" and so I can't rely on them understanding the conventions. It would be nice if people just told us what their code was supposed to do.
    From the name of the function - get_working_period - I presume your trying to derive the number of days the given employee has been working for the company. The clue there is number of days. That's a numeric data type not a date. So PSTATUS ought to be a NUMBER and your function ought to return a NUMBER.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

  • Facing Many Problems About Creating Directory and an External Table

    Question:
    The weird thing is if you look at question 10-b in page 3-41, it says:
    (page 3-41 "Oracle Database 10g SQL Fund. II Vol.1")
    Merge the data in the EMP_DATA table created in the last lab into the data in the emp_hist table. Assume
    that the data in external EMP_DATA table matches the EMP_HIST table, update the email column
    of the EMP_HIST table to match the EMP_DATA table row. If a row in the EMP_DATA table does not
    match, insert into the EMP_HIST tables. Rows are considered matching when the employee's first and
    last name are identical.
    To me, this question is constructed wrongly. First of all in the last lab we have not been asked to create EMP_DATA. Secondly, EMP_DATA is empty.
    Thirdly, this question asks us to merge into EMP_HIST table while EMP_DATA is empty.
    EMP_HIST table currently has copied data from employees table. EMP_HIST structure:
    FIRST_NAME VARCHAR2(20)
    LAST_NAME NOT NULL VARCHAR2(25)
    EMAIL NOT NULL VARCHAR2(45)
    Anway, i did the merge as following:
    merge into emp_hist e
    using emp_data d
    on (e.first_name = d.first_name)
    when matched then
    update set
    e.last_name = d.last_name,
    e.email = d.email
    when not matched then
    insert values (d.first_name, d.last_name, d.email);
    I get this error:
    Error report:
    SQL Error: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file emp.dat in EMP_DIR not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    On the other hand, i said let me try this:
    merge into emp_data d
    using emp_hist e
    on (d.first_name = e.first_name)
    when matched then
    update set
    d.last_name = e.last_name,
    d.email = e.email
    when not matched then
    insert values (e.first_name, e.last_name, e.email);
    I get this error because external table is final once its created as far as i know:
    Error report:
    SQL Error: ORA-30657: operation not supported on external organized table
    30657.0000 - "operation not supported on external organized table"
    *Cause:    User attempted on operation on an external table which is
    not supported.
    *Action:   Don't do that!
    I do not know what to do. I did my best, please help.
    Edited by: user11164565 on Jul 27, 2009 2:43 AM

    user11164565 wrote:
    NOTE: I did my best, i did all what i can do, but the problem persists. Please help
    I will mention all the steps i did clearly....
    I gave scott the following grants:
    grant create any directory to scott;
    grant read on directory emp_dir to scott;
    1. Created a directory and its been created successfully:
    create or replace directory emp_dir
    as 'F:\emp_dir';
    Then i did the following just to make sure my directory is recognized:
    SELECT *
    FROM dba_directories;
    I found the drive amongst the results...
    OWNER DIRECTORY_NAME
    DIRECTORY_PATH
    SYS EMP_DIR
    F:\emp_dir
    SYS SUBDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\/2002/Sep
    SYS XMLDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\
    2. I created an external table emp_data (the script is given by the text book): done successfully
    drop table emp_data;
    CREATE TABLE emp_data
    (first_name VARCHAR2(20)
    ,last_name VARCHAR2(20)
    , email VARCHAR2(30)
    ORGANIZATION EXTERNAL
    TYPE oracle_loader
    DEFAULT DIRECTORY emp_dir
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE CHARACTERSET US7ASCII
    NOBADFILE
    NOLOGFILE
    FIELDS
    ( first_name POSITION ( 1:20) CHAR
    , last_name POSITION (22:41) CHAR
    , email POSITION (43:72) CHAR )
    LOCATION ('emp.dat') ) ;
    3. I went to F:\ drive to see if emp_dir folder exist or not! I did not see it. I checked hidden files, nothing there. Anyway, i ignored it and did step 4.
    <snip>
    "Anyway, I ignored it . . . "
    and hence the rest of your problems. I did not see in the steps you recounted that you acually created a directory ("folder") named "\emp_dir" on your f: drive. Nothing you create within the database will actually create that directory on the OS. Createing a directory in Oracle, createing an external table in Oracle, will only create pointers to objects that Oracle will simply assume actually exists.

  • 9i - Problem during create DB

    I seem to be successfully installed 9i for Linux on Redhat7.1.
    I have already prepare some script to create database, so I skipped DB configuration assistant section during OUI installation.
    Afterward I want to use "svrmgrl" as usual to run the script, but there is no "svrmgrl" in $ORACLE_HOME/bin. And also, if I can create DB, how can I start the server?
    Dose the "dbstart" script in $ORACLE_HOME/bin work? I have take a look in the script, it use "sqldba" to start the DBs but I cannot find "sqldba" in $ORACLE_HOME/bin, what happened?
    null

    This little script starts the database on my system. As you found out, svrmgrl has been 'deprecated'
    The key part of the script is, of course,
    sqlplus "/ as sysdba"
    lsnrctl start ; sqlplus "/ as sysdba" << _EOF
    startup
    exit
    _EOF
    Cheers, Malte
    null

  • PROBLEM DURING CREATING AP INVOICE

    DEAR SAP EXPERT,
    I AM HAVING A PROBLEM WHEN I AM GOING TO CREATE AN INVOICE FROM THE DELIVERY. ITS IS GIVING ME THE MESSAGE (2) SALES PERSON IS MISSING. BUT THE THING IS THAT I HAVE ALREADY MENTIONED THE SALES PERSON IN SALES PERSON FIELD. PLEASE GIVE ME THE SOLUTION REGARDING THIS. I AM USING SAP B1 2007 PL10. PLEASE REVERT ASAP

    Hi,
    find this one as what Gordon suggested.
    you can check the SP code from your SQL Management Studio with this path Databases -->> NameOfDatabase -->> Programability -->> Stored Procedure -->> SBO_SP_TransactionNotification
    from this Stored Procedure you need to find this "(@object_type = '18')" 18 is the Object type for A/P invoices.
    hope it helps.
    regards,
    Fidel

  • Problems in creating OU and O

    I've 2 scenarios which I don't how to handle:
    Suppose I have a department in an organisation that have many smaller sub-department & these sub-departments may have groups within them (so sort like nesting), how do I create such entries?
    For the top level department, I could do this:
    dn: ou=ACC, o=abc.com.tw
    objectClass: top
    objectClass: organizationalUnit
    ou: ACC
    description: Accounts Department
    Lets say I want to create a sub-department call payroll within this Accounts department, how should my LDIF be?
    For my 2nd situation:
    Usually, there'll be only 1 top level organisation like this:
    dn: o=abc.com.tw
    objectClass: top
    objectClass: organization
    o: abc.com.tw
    Suppose this particular organisation is actually co-owned by two companies, like the Sun-Netscape Alliance. What can I do since now instead of one top level organisation, I've 2 or even more.
    Any help or suggestion is greatly appreciated.

    1) ou=Payroll,ou=ACC,o=abc.com.tw
    I think you may be under the impression that ou, o, etc. are somehow significant, that they can only be used in certain levels of the tree. This is not so in LDAP, and especially iDS. Perhaps you are confused about DIT Structure Rules in X.500.
    2) You can create up to 99 suffixes - each suffix would correspond to a top level organization.
    You sure ask a lot of questions. Perhaps you should invest in an LDAP book. The one by Howes, Smith, and Good is quite good. After you read that, take a look at the iDS Admin Guide and the iDS Deployment Guide.

  • Set custom generated password during create user and email to user

    Hi,
    In OIM 11g r2, I want to  generate password using some logic and send a notification to the user with the generated password during user creation.
    Please let me know how to achive that..
    can I use some post process event handler?? if yes then how to set the custom password to the user.

    Refer:
    How To Use The OIM 11g Password Generator Feature To Generate Random Password For A User (Doc ID 1273464.1)

  • Problem in Create Appointment and instant messaging.

    Hi All,
    When i send a mail through creat appointment using RTC. DAte and time which the user gets in his mail are different then what i have mentioned in create appointment mail.
    Is there any way to change the instant messening layout. I want to increase the size of message box.
    Thanks in advance
    Sarang

    Hi Prabhakar,
    When i check the availability of any person actually it is showing the status as busy defaultly, although we have not mention it anywhere. i want to change the status  from busy to available. What i need to know is where can i change the status .
    Thanx ....
    Sarang

  • Problem with Create PDF and linked data

    Using Acrobat X standard.
    I have a Word 2010 doc with links to Visio and Excel data. 
    When using the CreatePDF option from Word, I consistently get a prompt asking whether I want to update the linked data before creating pdf.  I would like to either (1) turn this prompt off or (2) -- less preferable -- have the linked data always update without prompting.
    Is thre a setting that would accomplish one of these two solutions?
    Thanks,
    Craig
    PS.  All settings in Word have been set such that data IS NOT updated when printing on a regular printer.

    You can print to Adobe PDF.

  • Adobe Acrobate XI and SecCommerce SecSigner have a problem during signing of a document, creating/verification of the signature is not possible - solutions?

    Adobe Acrobate XI and SecCommerce SecSigner have a problem during signing of a document, creating/verification of the signature is not possible - solutions? SecSigner is not responding.

    Well, I contacted SecCommerce about the issue, the response was, that I should sign the file later (afterwards). This is a solution, but not the best in my opinion.
    When I sign the document the SecSigner window/Java window appears and freezes. Adobe is not responding. I have to terminate Adobe because the program is not responding.
    I only found this support website, so I have realized that this is a User 2 User site, but it was a try to get some help.

Maybe you are looking for

  • How To Set Parameters in a SOAP-Message for QUERY_VIEW_DATA Web Service

    Hi all, I want to use the QUERY_VIEW_DATA Web Service to get data from BI through an existing BEx-query. How can I set a navigation status as it is stated in the SAP documentation [Web Service for Accessing Query Data|http://help.sap.com/saphelp_nw04

  • Help hooking up new-Blu Ray player to old receiver

    Hi, I just bought a Blu-Ray player and was hoping to just pull the cables out of my old Proscan DVD player (which is hooked up properly to my receiver) and plug them into the new player. However, the new player has space for two audio-out cables and

  • 2011 13" Air average cycles on battery after 1 year?

    Just bought a used 2011 "13 for a super deal and the battery cycles say 495. Does this sound a bit high? Health is 89%. I haven't done a recalibration after doing a fresh install and pram and SMC reset. What are yours saying after a year of use?

  • 24p Advanced problems

    Hi there. If anyone who can help me with this issue I would greatly appreciate it. Ok so I am using a Panasonic DVX100a and shot a bunch of footage. I shot it in 24p advanced. I'm using Adobe Premiere CS4 and captured the footage via firewire into a

  • Special characters for iweb

    Anyone know where the umlaut is?