Coding Block Error in Challan Updation Process (T-code J1INCHLN)

Hello,
We are planning to migrate to Extended Withholding Tax from 1st April 2010. However we are facing some issue in the Challan Updation Process (J1INCHLN)
After entering the selection screen parameters and on clicking the execute button, the Bank Line Item with Posting key 50 shows the amount as 1.00 with the following coding block message u201CField COBL-GSBER does not exist in screen SAPLKACB 0002u201D
Steps:
1) After entering the relevant parameters,when we click on execute, a coding block popup is displayed for the Bank Line Item with amount 1.00.
2) On clicking the Continue Button, nothing happens. However on clicking the Cancel Button, the document overview screen is displayed
3) When we click on Process Open Items,The Bank Line Item with posting key 50 does not appear and due to this there is a difference of amount which is displayed in the u201CNot assignedu201D Text Box
4) We even tried to implement the SAP Note 1077602 (Error in field 'COBL-GSBER' - screen SAPLKACB 0002) but this note is not getting implemented stating SAP Note does not contain valid correction instructions
5) We have even set the field status of Business Area (GSBER) to Optional in both GL field status group as well as the Posting key. But still this issue remains unresolved
Request you to please provide a solution for the above issue
Thanks and Regards,
Sumita

Have u got the solution?
Pls let me know....

Similar Messages

  • Coding block error in MB21

    hi,
      i recorded the BDC for TCODE: MB21 only for 2 screens.
      My  requiremnt is to display the items.  the user can modify the items and save the same.
      while saving systems shows the coding block error.
      how to remove that coding block error.
      regards,
      Subu.

    avoid bdc and use BAPI_RESERVATION_CREATE

  • HT201210 what is error 6 during update process

    What is an error 6 during update process?

    Not a gppd error:
    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    The "device may need service" means a hardware problem. in that case make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Error in Challan Update

    Dear Sir,
       While I am going to put inputs in the T code J1inbank, then I can not see my company code in the field bank key. If put my existing bank key then the following error message is coming.
    House bank SBI21 does not exist for the company code
    Message no. 8I713
    Please help me.
    Regards,
    David

    Hi,
    Please find the below link hope it will help full for you,
    Error in Bank Challan update
    Naresh

  • Getting Coding Blocked Error while recording MB1C

    Hi,
    While recording TCode MB1C when I enter the material number and quantity and press Enter I get a message "Coding Blocked". When I click on OK I'm able to proceed further. But, when I'm not recoding I'am able to make entries in the same without this message. Is it okay to record MB1C even if I get this message. I don't know the reason why I get this message.
    Please help.
    Regards,
    Sriram.

    Hi,
    the t-codes MB1B and MB1C need to record with Not a Batch input session..
    try this way..
    go to SHDB > create new record> etner t-code MB1C and check Not a Batch input session and record..
    later in the coding assign the field not bacth input session = 'X" and default screen size..
    prabhudas

  • HT4623 Why does my iphone say "Activation Error" during the updating process?

    after updating my iphone, the process is like asking the language, then the country, and then the wifi right? after i connected to the wifi, i pressed "next" then it says "Activating your Iphone" then suddenly it says "Activation Error". what does this mean? can i just restore the previous version of this iphone again?

    You cannot install the previous version. "Activaton error" usually means that the phone was hacked or jailbroken to unlock it from the carrier it was locked to. It is now locked again to that carrier.

  • Coding block error in LSMW

    Hi Guys,
    I am using RFBIBL00 standard program in LSMW (Direct Input method). All the steps are executing fine and the data is mapped accordingly. When i am running the session in Foreground, I am getting a error msg "Account 53012000 requires an assignment to a CO object". The problem is, when the data is posted in FB01 screens, the Profit segment button is not getting triggered and the remaining data is not getting posted in those screens. I have checked the technical setting of that button, but couldnot find the field in the program.
    If any one encounted this situation, plz help me...
    Can ask for any clarification..
    Bye,
    kamal.

    Check out this thread
    Unexpected  u0093Coding Blocku0094 pop-up in RFBIBL00

  • Reg:Challan Updation in J1INMIS

    Hi,
    I am trying to update the challan in J1INMIS but system giving the error Message unpaid tax lines exist for the given selection criteria.Message no. 8I702 .but i have checked all inputs in the documents like Business place and section code  and i have checked in the vendor master tax codes, types and recipient type.
    Can anybody tell the solution its going to great helpfull for me.
    Thanks & Reg
    Reddy

    Hi,
    For Challan updation use T.Code J1INCHLN.
    J1INMIS is the report for the different seelctions like Chllan Updated Status, Bank Challan Status,Certificate Status and Consolidated Report we can view as per the given input data.
    Regards,
    Rama Mohan

  • Challan update

    Hello,
    When i post the vendor invoice through fb60 then system generate the challan update process but when vendor invoice comes through the purchase process (miro) then in j1inmis when i post the document system gives error"Number group not maintained for CO code SHAL section 1000 and business place 194C,
    i had maintained the number group erwry where but dont know where is the problem.
    suggest

    Check whether Number group is maintained for section code in table J_1IEWTNUMGR_1 & J_1IEWTNUMGR_N

  • Ora -20001 error coming while updating from a tabular form

    Hi
    I have a tabular form , which updates a table in the database.
    Whenever I update the record first time I getting an error as
    Error in MRU internal routine ORA-20001.Error in MRU:row=1,
    ORA-1403 no_data_found, update abc.sale_forcast_temp set "PK_ID"=:b1,"W27"=:b2
    Error unable to update process
    But when I press Ok return to the form and then again try to update , records gets successfully updated
    Regards
    Shashi

    Kamal,
    This will be the pseudocode.
    Procedure A()
    select * from EMP bulk collect into records_array; --Of type RECORD_ARRAY
    batch_count = (records_array.length) / batch_size;
    --batch_size is say 5000 rows and batch_count is the number of batches  
    for i in 1..(batch_count+1)
    B( records_array);
    C();
    commit;
    Procedure B(records_array in RECORD_ARRAY )
    INSERT /*+PARALLEL(EMP_DUMMY, 2) */
    INTO TABLE EMP_DUMMY
    SELECT * from TABLE(CAST(records_array as RECORD_ARRAY) ;
    Procedure C()
    Other operations which include reads on the EMP_DUMMY table;
    This is the top view of how it looks like. Actually the Select statement for the insert statement is very complex and I do a join on the records that are being passed in by casting it into a table. This query is taking about 40 minutes for 10,000 rows in the records_array. I need to parellelise this query because each row of the records_array yields a different row for the EMP_DUMMY table.
    I hope that I made it clear for you.
    Can you also tell me if procedure C in which I shall be doing a read on the EMP_DUMMY table, has any affect of the parallel insert
    Thanks for your help.

  • IOS8 - How can I "inhibit" the update process?

    Hi, I need to know if there is a way to block \ inhibit the iOS update process.
    I can't block the web site http://mesu.apple.com/assets/com_apple_MobileAsset_SoftwareUpdate/com_apple_Mobi leAsset_SoftwareUpdate.xml
    in the internet proxy or in the career network because we work in multinational environment.
    We have the AFARIA MDM and we tried to configure a policy to block the web site above reported.
    The device receive correctly the policy and if we try to open that web site in SAFARI we are not able to open it, but we are able to update iOS... so it seems that the device goes to some other sites to update iOS.
    We need to inhibit the iOS8 update process because some of our applications are not yet certificated with iOS8.
    Please help us.
    thanks a lot

    The only way i've read about preventing the ios8 download it to "trust" the user's not to update or blocking the internet web site ( mesu.apple.com ) / ip address.
    Robert

  • Error in Update Process for optimistic locking

    Hello,
    I tried to create a tabular form according to this How-To:
    http://www.oracle.com/technology/products/database/application_express/howtos/tabular_form.html
    which worked fine until I tried to implement the optimistic locking.
    I use the same update process:
    declare
    l_cks wwv_flow_global.vc_arr2;
    j pls_integer := 1;
    begin
    -- Get original MD5 checksum
    select wwv_flow_item.md5(job,mgr,hiredate,sal,comm,deptno) cks
    BULK COLLECT INTO
    l_cks
    from emp;
    -- Compare the original checksum, l_cks,
    -- with submitted checksum, htmldb_application.g_fcs.
    -- If they are different, raise an error.
    for i in 1..l_cks.count
    loop
    if htmldb_application.g_fcs(i) != l_cks(i) then
    rollback;
    raise_application_error(
              -20001,
         'Current version of data in database has changed '||
              'since user initiated update process.');
    return;
    end if;
    end loop;
    but as soon as I try to apply the changes in the update process I get an error message saying: PLS-00503: RETURN statement required for this return from function
    So, if i delete the row with the "return;" statement, I get no error anymore, but when I test the optimistic locking I get an error as soon as I try to update a row in the first place.
    What am I doing wrong?
    Johnny
    P.S. : I am using Apex 1.6

    Hi Ant, of course......here is the customized pl/sql block I use:
    declare
    l_cks wwv_flow_global.vc_arr2;
    j pls_integer := 1;
    begin
    -- Get original MD5 checksum
    select wwv_flow_item.md5(partition,desig) cks
    BULK COLLECT INTO
    l_cks
    from UNITS;
    -- Compare the original checksum, l_cks,
    -- with submitted checksum, htmldb_application.g_fcs.
    -- If they are different, raise an error.
    for i in 1..l_cks.count
    loop
    if htmldb_application.g_fcs(i) != l_cks(i) then
    rollback;
    raise_application_error(-20001,'Current version of data in database has changed ' || 'since user initiated update process.');
    -- return;
    end if;
    end loop;
    -- update UNITS
    for i in 1..htmldb_application.g_f08.count
    loop
    if htmldb_application.g_f08(i) is not null then
    update UNITS
    set report_id = :P2_REPORT_ID,
    partition = htmldb_application.g_f10(i),
    desig = htmldb_application.g_f11(i)
    where unit_id = htmldb_application.g_f08(i);
    else
    if htmldb_application.g_f10(i) is not null then
    insert into UNITS
    (report_id,
    partition,
    desig)
    values
    (:P2_REPORT_ID,
    htmldb_application.g_f10(i),
    htmldb_application.g_f11(i));
    end if;
    end if;
    end loop;
    end;
    Thanks
    Johnny

  • There's a error occured during the updating process

    when the updating process goes to the "calculating the required diskspace" step, there's a error occured saying "Could not access network location /startup" and then the updating process was suspended.
    this problem also occured during the unistallation process.
    P. S. there's only one solution about this problem, which is to delete the information of excrescent version of MS OFFICE, but this isn't working.
    So if anyone konws how to solve this problem please let me know. this borthers me for a long time.

    Error 20, 21, 23, 26, 28, 29, 34, 36, 37, 40
    These errors typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.

  • Error While updating Process form data Using Scheduler

    Hi All,
    I am trying to update Process form data (ex : lastname) using a scheduled task Code. I am getting Error while updating Field.
    Code :
    HashMap<String, String> map = new HashMap<String, String>();
    map.put("UD_EBS_PF_LASTNAME", "lastname");
    formintf.setProcessFormData(instancekey, map);  //I AM GETTING AT THIS LINE
    Saying
    Thor.API.Exceptions.tcAPIException: The following required fields have not been given values:EBS IT Resource : The following required fields have not been given values:EBS IT Resource
        at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
        at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
        at Thor.API.Operations.tcFormInstanceOperationsIntfEJB_h6wb8n_tcFormInstanceOperationsIntfRemoteImpl_1036_WLStub.setProcessFormDatax(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
        at $Proxy2.setProcessFormDatax(Unknown Source)
        at Thor.API.Operations.tcFormInstanceOperationsIntfDelegate.setProcessFormData(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at Thor.API.Base.SecurityInvocationHandler$1.run(SecurityInvocationHandler.java:68)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.security.Security.runAs(Security.java:41)
        at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
        at Thor.API.Base.SecurityInvocationHandler.invoke(SecurityInvocationHandler.java:79)
        at $Proxy3.setProcessFormData(Unknown Source)
        at com.wyndham.tasks.AssignRandomPasswordToAllUsersSchedulerTest.execute(AssignRandomPasswordToAllUsersSchedulerTest.java:182)
        at com.wyndham.tasks.AssignRandomPasswordToAllUsersSchedulerTest.main(AssignRandomPasswordToAllUsersSchedulerTest.java:63)
    Caused by: Thor.API.Exceptions.tcAPIException: The following required fields have not been given values:EBS IT Resource : The following required fields have not been given values:EBS IT Resource
        at com.thortech.xl.ejb.beansimpl.tcFormInstanceOperationsBean.setProcessFormData(tcFormInstanceOperationsBean.java:761)
        at com.thortech.xl.ejb.beansimpl.tcFormInstanceOperationsBean.setProcessFormData(tcFormInstanceOperationsBean.java:426)
        at Thor.API.Operations.tcFormInstanceOperationsIntfEJB.setProcessFormDatax(Unknown Source)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    Is that possible there was the field ZDATE in your form interface/ context and now it is not? I guess some source has changed so the field in the form (binding to the not existing field) cannot be processed. Otto

  • Error in Bank Challan update

    Hi Experts,
    Am a fresher in SAP and your help would be highly appreciated.
    The issue is regarding the bank challan update. My client has paid TDS through an intercompany bank account and while bank challan update the intercompany bank is not accepted. To elaborate further with an example : For Company Code OPQR ,they have paid TDS through bank account 11010415 & house bank  60001 which pertains to company code  WXYZ.  Now when they are updating the bank challan for company code  OPQR  the same house  bank is not getting accepted and the error says:
    House Bank 60001 dosent exist for OPQR company code.
    Message No 8I713
    I have checked and found out that the particular housebank has not been created for company code OPQR. But am not sure whether the creation of this particualr housebank for the particular company code is the actual way to resolve this error or may be some other concepts are involved.
    Would be great if you can pls guide.
    Thanks in advance for your support.
    Rgds
    DB

    Dear Debjani,
    Sorry by late. I thought my imputs wasn't helpful.
    I suggest you create same bank for required company code. Copy all entries in t-code FBZP from original home bank and define also: OBBA, OBBB, OBBD, OB47 and OT55.
    About Business Place, it is an organizational unit below company code level that is primarily used for reporting taxes on sales/purchases.
    In some countries, the business place is also used to assign official document numbers to outgoing documents. In Brazil we assign it in invoices to be able change some company code data in DME generation during F110.
    Read more here:
    http://help.sap.com/saphelp_dimp50/helpdata/en/36/41913ab525fb23e10000000a114084/content.htm
    Let me know if it clarifies
    Regards

Maybe you are looking for