Quantcast
Channel: SCN: Message List
Viewing all 8667 articles
Browse latest View live

Re: Execute button missing after displaying the error message on selection screen

$
0
0

Hi Uday,

 

After ERROR Message the report execution will be terminated and whatever code after that message statement will not be triggered.

 

As you written in the "At Selection Screen"

 

Message s001 display like 'E'.

"When you have specified message as "S", execution will not be terminated and no use of it in your case.

 

You can write like this, (ofcourse Aniket Zanzan mentioned)

 

AT SELECTION-SCREEN.

 

IF FIELD IS INITIAL.

     MESSAGE E000(<message_class>).

ENDIF.

 

 

Thanks & Regards,

Vijay


Re: What means rating for a question ?

$
0
0

The rating feature feature is standard on the platform for all content types. Rating a discussion thread is voluntary and provides wither SCN members and visitors with feedback on it. This information is visible to other and can be used to generate activities that can be seen in the activity stream, trending content lists and top rated content widgets that, I admin, aren't frequently used on SCN. It's just another way to engagement and provide feedback on content.

 

Again, it is voluntary just as clicking Like is. If you see something good, you can rate it up and/or like it.  If not, do the opposite.

Re: Check if an XML table exists

$
0
0

I am using IsNull on a field in a table in an XML database to filter records.  works great.

However...

If the table I'm using my filter on has No Records, All the records go through the filter instead of  None !

 

So... it is a bug... No records should make it through the filter... but instead ALL the records pass.

Re: Module Pool Requirement

$
0
0

Dear Naveen,

 

I m writing the syntax  of report.

 

PAI of  screen 103

 

perform get_prg.

 

 

 

 

form get_prg .

 

Submit Prg_name and return via selection screen .

 

endform.

 

Pass input from PAI of 103 which is required for alv report using export statement / Set parameter.

 

Write a prg which should satisfy the output required in alv format.

inside the program u use import statement / Get parameter  to get input from the sub screen.

Re: Disp+Work.exe stopped

$
0
0

Hi Challoju Ravi,

 

As Graham Slater updated in above, blog for startup troubleshooting will help to identify where the proble is

 

http://scn.sap.com/community/netweaver-administrator/blog/2013/06/20/logical-basic-abap-system-start-troubleshooting-sequence

 

Capture.JPG

Please check as above and attach the relevant log file here

 

You can also check memory parameters with sappfpar

logon as <SID>adm and run sappfpar check pf=<instnace_profile>

 

You will get more details about this here,

http://help.sap.com/SAPhelp_nw70/helpdata/en/66/380fb7d43d11d188bd0000e83539c3/content.htm

 

Best regards,

Praveen

Re: Logic for Parallel Processing

Re: How do I pass fields from a custom floorplan to a Sales Order or a Purchase Order?

$
0
0

Simon,

 

You'll basically need to pass data using OBN navigation, by passing it through inports and outports.

Re: HTTP request not receiving-SAP PI 7.3 -Java stack only

$
0
0

Hi,

 

What is the exact error your are getting back in the Test tool? Also which format of PI URL you are using?

Check this:

http://help.sap.com/saphelp_nw73ehp1/helpdata/en/03/e2d70a626342feaef7f2f9f04a1776/content.htm

URL: http://<hostname:port>/<path>?<query-string>

Where,

  • path= /HttpAdapter/HttpMessageServlet
  • query-string= ?interfaceNamespace=<interfaceNamespace>&interface=<interface>>& senderService=<senderService>&senderParty=<senderParty>&receiverParty=<receiverParty>&receiverService=<receiverService>&qos=<qos>&queueid=<queueid>&msgguid=<msgguid>

 


Regards,

Nabendu.


Re: Restrict PO approval on Company Code (ME28)

$
0
0

Hi Ravi,

 

Thanks for Reply..

Well i already have Auth-object. the userexit which is mentioned  in the post is triggering after displaying output.my concern is to filter the PO's  when transaction is executed.

 

Thanks,

Ahmed..

Re: Fill GOHEAD structure from a field symbol

$
0
0

now it's giving me an error ,

 

 

Overwritten protected field.

Should access to this space be open?

$
0
0

Why can I start a discussion in this space, but when I try to look at existing discussions, blogs, or documents I get blocked by an "unauthorized" message?

Re: Service PO with BAPI_PO_CREATE1

$
0
0

Hi Gopi,

Can you close the thread by marking answer as correct or helpful as applicable

Regards

Re: How is SAP HANA Live content delivered/installed?

$
0
0

Hi Justin,

 

Yes, follow the PDF and SAP Notes informed on it to load tables (if you aren't running Suite on HANA).

There are also other prerequisites like run scripts.

 

The deploy part itself is Import on Studio.

 

Regards, Fernando Da Rós

http://scn.sap.com/thread/3395884

Re: Set data source location

$
0
0

to add to Abhilash's suggestion...vissu bab, do you have businessobjects enterprise or crystal reports server?

 

if you do, you could create a business view with a dynamic data connection. that way you could switch the data foundation to different data sources...good for situations where you're going from dev to testing to production environments.

Re: Retrieve x Amount of records in a internal table

$
0
0

Hi Jannus,

 

You have few options to avoid the time out error.

 

Option 1:

 

Check the Internal tablelt_gty_vendormain value is not initial is the best way to avoid the time out error.

 

Option 2:

 

Check the KNUMH value is not initial in internal tablelt_gty_vendormain. If you have any line with no KNUMH value in internal table lt_gty_vendormain then the select query will try to fetch all the values from the table KONP.

 

Option 3:

 

If you still get the timeout error then add some more field in the where condition like Condition Type, Tax Code, Application which will improve the select query performance.

 

Let me know if you need any more help.

 

Regards,

Saravanan Madhappan



Re: DG - Packing list ; DG - Printing documents for a given regulation

$
0
0

Dear Sruthi

 

this is all "standard" and part of integration of SAP SD with SAP EHS DG. Please check SAP EHS online help.

 

C.B.

Re: CE_PROJECTION possible to order the result

$
0
0

Hi Steven,

 

Just by creating a graphical calculation view you can process your sample statement in the calculation engine. However you should not think about "converting" your statement but more on what you want to achieve..

 

  • Processed in CE engine:

SELECT "FIRST_NAME", "LAST_NAME", count("M_KEY") AS "M_KEY" FROM "_SYS_BIC"."demohana.customers/EMPLOYEE"

WHERE "FIRST_NAME" = 'John'

GROUP BY "FIRST_NAME", "LAST_NAME"

ORDER BY "LAST_NAME" DESC;

 

  • Processed in Join engine:

SELECT "FIRST_NAME", "LAST_NAME", count("M_KEY") AS "M_KEY" FROM "I053626"."EMPLOYEE"

WHERE "FIRST_NAME" = 'John'

GROUP BY "FIRST_NAME", "LAST_NAME"

ORDER BY "LAST_NAME" DESC;

 

Have a look at the visualize plan (by right-click on your statement).

 

In the 1st case you will see CE operations meaning Calculation Engine and in the second one you will see JE as Join engine.

VIZ_PLANS.jpg

Check out the webinar from Lars if you want more infos about viz plan:

http://scn.sap.com/community/hana-in-memory/blog/2013/07/03/advertisment--webinar-performance-in-sap-hana-databases-slide-deck

 

Alex.

Re: Regi mergeTool

$
0
0

>By the way: I didn't change the file. When I compare the file with the active version or any version from local history (ContextMenu>Compare with>...), I cannot detect any differences.

 

If you compared the version from the HANA Studio and they are the same, then just use the Revert option or do a Check Out of the project.  This should overwrite the local version with the version from the server and remove any conflicts.  If it were a true conflict you could use the merge tools within the HANA Studio. The message you receive about the REGI merge tool is not actually correct. This is message comes through because HANA Studio calls REGI behind the scenes and just passes back any error messages produced by REGI.  There shouldn't actually be a reason to use REGI directly.

Re: How is SAP HANA Live content delivered/installed?

$
0
0

Hi Fernando - Thanks for the response, there are two items in question that are not in the document that we are referring to, can you describe more?

 

What are the other prerequisites "run scripts" you mention?

 

Can you elaborate more on the import step in Studio?

 

Thanks,

Justin

Re: Report of last count date, by batch

$
0
0

Hello Jammy,

 

This kind of helps, but looking more for a selection field of "last count date". As the client wants to be able to report on materials that have not been counted since X date.

 

It is starting to look like we will just have to develop a query against MCHB.

 

Thanks!

Viewing all 8667 articles
Browse latest View live




Latest Images